/*============= ALIGNES ===============*/

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}
/* =========== BASE CONFIG =========== */
:root {
  --primary: #A9C0D6;
  --vk: #0076FE;
  --viber: #665CAC;
  --wa: #25D366;
  --tel: #229ED9;
  --primary-hover: #8DA8C2;
  --white: #fff;
  --txt: #4A4B51;
  --background: #F3F2F2;
  --bg-dark: #9E9E9E;
  --black: #26282C;
  --stoke: #DDDDDD;
  --stoke-2: #838383;
  --error: #ED4040;
  --font-size-140-300: clamp(140px,calc((100vw - 320px)/(1970 - 320) * (300 - 140) + 140px),300px);
  --font-size-28-52: clamp(28px,calc((100vw - 320px)/(1970 - 320) * (52 - 28) + 28px),52px);
  --font-size-26-42: clamp(28px,calc((100vw - 320px)/(1970 - 320) * (42 - 26) + 26px),42px);
  --font-size-22-32: clamp(22px,calc((100vw - 320px)/(1970 - 320) * (32 - 22) + 22px),32px);
  --font-size-18-24: clamp(18px,calc((100vw - 320px)/(1970 - 320) * (24 - 18) + 18px),24px);
  --font-size-16-20: clamp(16px,calc((100vw - 320px)/(1970 - 320) * (20 - 16) + 16px),20px);
  --font-size-14-16: clamp(16px,calc((100vw - 320px)/(1970 - 320) * (16 - 14) + 14px),16px);
  --font-size-14: 14px;
}
@media (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
::-webkit-scrollbar {
  width: 4px;
  }
  ::-webkit-scrollbar-track {
  background: var(--stoke);
  width: 2px;
  }
  
  ::-webkit-scrollbar-thumb {
  background-color: var(--primary) !important; 
  border-radius: 100px;
  width: 4px;
  }
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}
a:hover {
  color: #F6C4DF;
}

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  /* margin-bottom: 15px; */
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: var(--font-size-28-52);
  line-height: 120%;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  text-transform: uppercase;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
body:not(.home) main {
	padding-top: 100px;
}

.breadcrumbs {
  padding: 20px 0;
  font-size: var(--font-size-14-16);
  line-height: 150%;
  color: var(--txt);
}
.breadcrumbs * {
  font-size: var(--font-size-14-16);
  line-height: 150%;
  color: var(--txt);
	padding-right: 2px;
}
.breadcrumbs span {
  padding-left: 2px;
	padding-right: 2px;
}
.breadcrumbs .itemListElement a span {
	transition: all .3s;	
}
.breadcrumbs .itemListElement a:hover span {
	color: var(--primary);
}
.container,
.privacy-policy main {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.privacy-policy main .container {
  padding: 0;
}

.privacy-policy main p,
.privacy-policy main h2 {
  margin-bottom: 15px;
} 

.container-margin-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

.container-margin-bottom-120 {
  margin-bottom: 120px;
}
.btn-show-more {
  background-color: transparent;
  color: var(--black);
  font-size: var(--font-size-14-16);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .3s;
}
.btn-show-more:hover {
  color: var(--primary);
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 225px;
  width: 100%;
  height: 60px;
  background: transparent;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  outline: none;
  font-family: 'Manrope', sans-serif;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in;
  text-transform: uppercase;
  text-align: center;
}
.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}
.btn svg path {
  transition: all 0.3s ease-in;
}
.btn.white {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}
.btn.dark {
  border: 1px solid var(--black);
  color: var(--black);
  background-color: var(--white);
}
.btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn.white:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}
.btn.dark:hover {
  color: var(--white);
}
.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}
.btn:focus {
  letter-spacing: normal;
}
.btn.invert {
  background-color: #f6c4df;
  color: #fff;
}
.width-100 {
  max-width: 100% !important;
  width: 100% !important;
}
.width-fit-content {
  max-width: 100%;
  width: fit-content;
}
.title-block {
  margin-bottom: 40px;
  font-size: var(--font-size-26-42);
  font-weight: 700;
  line-height: 125%;
  color: var(--black);
  text-transform: uppercase;
}
.hover-zoom__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hover-zoom__wrapper::before {
  content: '';
  width: 100%;
  height: 100%;  
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.hover-zoom__wrapper:hover::before {
  opacity: 1;
  visibility: visible; 
}
.hover-zoom {
  width: 30px;
  height: 30px;
  object-fit: cover;
  background-image: url('../images/zoom.svg');
  background-repeat: repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
.hover-zoom__wrapper:hover .hover-zoom {
  visibility: visible;
  opacity: 1;
}
#main,
#primary {
  min-height: 83vh;
}
/* .scroll {
  background-color: var(--black);
  border-bottom: none !important;
} */
.btn-review-show {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: var(--font-size-14-16);
  line-height: 150%;
  font-weight: 700;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  padding-right: 29px;
  height: 24px;
  margin-top: 10px;
}
.btn-review-show::after {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url('../images/arrow-btn.svg');
  transition: all .3s;
}
.btn-review-show:hover {
  color: var(--primary);
}
.btn-review-show:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(36%) sepia(63%) saturate(5234%) hue-rotate(204deg) brightness(102%) contrast(99%);
}
.btn-review-show.opend {
  transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .container-margin-bottom-120 {
    margin-bottom: 40px;
  } 
  .container-margin-120 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .title-block {
    margin-bottom: 20px;
  }
}
/*============ INPUT =================*/
.input__wrapper {
  position: relative;
  width: 100%;
}
.input__placeholder {
  position: absolute;
  left: 30px;
  top: 18px;
  color: var(--stoke-2);
  font-size: var(--font-size-14-16);
  line-height: 125%;
  font-weight: 500;
  background-color: var(--white);
  transition: all 0.3s;
  padding-bottom: 8px;
}
.input {
  height: 60px;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--stoke-2);
  outline: none;
  padding-top: 28px;
  padding-left: 30px;
  padding-bottom: 8px;
}
.textarea {
  height: 200px;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--stoke-2);
  outline: none;
  padding-top: 28px;
  padding-left: 30px;
  padding-bottom: 8px;
  resize: none;
}
.theme-modal .input {
  height: 50px;
  border: 1px solid var(--txt);
}
.theme-modal .textarea {
  border: 1px solid var(--txt);
}
.input::placeholder {
  opacity: 1;
  color: var(--stoke-2);
}
.input:focus::placeholder {
  color: var(--black);
} 
.input__wrapper.focus .input__placeholder {
  top: 4px;
  left: 23px;
  transform: scale(0.8);
  background-color: transparent;
}
.input__wrapper.focus .input {
  border: 1px solid var(--black);
}
.input.error,
.textarea.error {
  border: 1px solid var(--error);
}
.input.error::placeholder,
.textarea.error::placeholder {
  color: var(--error) !important;
}
.input.error:focus:placeholder,
.textarea.error:focus:placeholder {
  color: var(--error) !important;
}
.input.error + .input__placeholder,
.textarea.error + .input__placeholder {
  color: var(--error);
}
.privice {
  color: var(--white);
  font-size: var(--font-size-14);
  line-height: 120%;
  font-weight: 500;
}
.privice a {
  color: var(--white);
  font-size: var(--font-size-14);
  line-height: 120%;
  font-weight: 500;
  text-decoration: underline;
  transition: all .3s;
}
.privice a:hover {
  color: var(--primary);
}
/*============ ERROR 404 =================*/
.error-page {
  display: flex;
  align-items: center;
}
.container-404 {
  max-width: 1293px;
  padding: 0 15px;
  width: 100%;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
}
.error-404 {
  font-size: var(--font-size-140-300);
  font-weight: 700;
  line-height: 135%;
  color: var(--primary);
}
.error-404 span{
  font-size: var(--font-size-140-300);
  font-weight: 700;
  line-height: 135%;
  color: var(--primary-hover);
}
.error-404__content {
  max-width: 570px;
  width: 100%;
}
.error-404__title {
  font-weight: 700;
  font-size: var(--font-size-28-52);
  line-height: 120%;
  color: var(--black);
  margin-bottom: 20px;
}
.error-404__text {
  font-size: var(--font-size-16-20);
  font-weight: 500;
  color: var(--txt);
  line-height: 125%;
  margin-bottom: 40px;
}
.error-404__content .btn {
  max-width: 174px;
}
@media (max-width: 1024px) {
  .container-404 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/*============ SWIPER =================*/
.swiper {
  width: 100%;
  overflow: hidden;
}
.castop-paginator-button__holder {
  display: flex;
  gap: 20px;
}
.castop-paginator-button {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--stoke);
  transition: all .3s;
}
.castop-paginator-button:not(.swiper-button-disabled) {
  cursor: pointer;
}
.castop-paginator-button.swiper-button-disabled svg path{
  fill: var(--stoke);
}
.castop-paginator__next svg {
  transform: rotate(180deg);
}
.castop-paginator-button svg path {
  transition: all .3s;
}
.castop-paginator-button:not(.swiper-button-disabled):hover {
  background-color: var(--primary-hover);
}
.castop-paginator-button:not(.swiper-button-disabled):hover svg path {
  fill: var(--white);
}
.castop-paginator {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .castop-paginator {
    flex-direction: column;
  }
}
/*============ HEADER =================*/

#header {
  width: 100%;
  position: fixed;
  border-bottom: 1px solid var(--stoke-2);
  z-index: 9999;
}
/* .home #header:not(.scroll) {
	background-color: transparent;
} */
#header {
	background-color: var(--white) !important; 
}
.logo {
  max-width: 120px;
  max-height: 60px;
  min-width: 70px;
  min-height: 46px;
  width: 100%;
  height: 100%;
}
#header .logo .logo-black {
	display: block;
}
#header .logo .logo-white {
	display: none;
}
/* .home #header .logo .logo-white {
	display: block;
  border-radius: 10px;
} 
.home #header .logo .logo-black {
	display: none;
}  */
/* #header.scroll .logo .logo-white {
	display: block;
  border-radius: 10px;
}
#header.scroll .logo .logo-black {
	display: none;
}  */
.logo__image {
  height: 100%;
  object-fit: cover;
}
.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
  gap: 10px;
}
.nav-menu-element {
  list-style: none;
}
.header-menu .nav-menu-element > a {
  font-size: var(--font-size-14-16);
  font-weight: 700;
  line-height: 150%;
  transition: all .3s;
  white-space: nowrap;
}
/* .home .header-menu .nav-menu-element > a {
	color: var(--white);	
} */
.header-menu .nav-menu-element > a {
	color: var(--black);
}
/* #header.scroll .header-menu #menu-menyu > .nav-menu-element > a {
	color: var(--white);
} */
.header-menu .nav-menu-element.has-childs {
  position: relative;
  padding-right: 29px;
}
.header-menu .nav-menu-element.has-childs::after {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  right: 0;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  transition: all .3s;
}
body #header .nav-menu-element.has-childs::after {
	filter: brightness(0) saturate(100%) invert(0%) sepia(26%) saturate(7454%) hue-rotate(140deg) brightness(106%) contrast(96%);
	transition: filter 0;
}
body #header .nav-menu-element.has-childs:hover::after {
	filter: brightness(0) saturate(100%) invert(69%) sepia(15%) saturate(529%) hue-rotate(168deg) brightness(91%) contrast(93%);
}
.header-menu .nav-menu-element.has-childs:hover::after {
  background-image: url('../images/arrow-hover.svg');
  transform: rotate(180deg);
}
.header-menu .nav-menu-element:hover > a {
  color: var(--primary-hover) !important;
}
.header-menu .sub-menu {
  position: absolute;
  background-color: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 15px;
  top: 70px;
  transition: all .3s;
  visibility: hidden;
  opacity: 0;
}
.header-menu .nav-menu-element.has-childs:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header-menu .sub-menu::after {
  content: '';
  width: 100%;
  height: 100%;
  top: -48px;
  left: 0;
  position: absolute;
}
.header-menu .sub-menu .nav-menu-element {
  position: relative;
  z-index: 2;
}
.header-menu .sub-menu .nav-menu-element > a {
  color: var(--txt);
  font-size: var(--font-size-14-16);
  line-height: 150%;
  font-weight: 500;
  transition: all .3s;
  position: relative;
}
.header-menu .sub-menu .nav-menu-element::before {
  content: '';
  width: 16px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 8px;
  background-image: url('../images/line.svg');
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
	filter: brightness(0) saturate(100%) invert(69%) sepia(15%) saturate(529%) hue-rotate(168deg) brightness(91%) contrast(93%);
}
.header-menu .sub-menu .nav-menu-element:hover > a {
  color: var(--primary);
  padding-left: 26px;
}
.header-menu .sub-menu .nav-menu-element:hover::before {
  opacity: 1;
  visibility: visible;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 436px;
  width: 100%;
}
.header-contact-data {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header-data-phone {
  font-weight: 700;
  font-size: var(--font-size-16-20);
  color: var(--white);
  line-height: 125%;
  transition: all .3s;
}
.header-data-email {
  font-weight: 700;
  font-size: var(--font-size-14-16);
  color: var(--white);
  line-height: 150%;
  transition: all .3s;
}
.header-contact-data a {
  white-space: nowrap;
}
.header-contact-data a:hover
 {
  color: var(--primary) !important;
}
.header-contact .btn {
  flex-grow: 1;
}
body .header-data-phone,
body .header-data-email {
  color: var(--black);
}
#menu-menyu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1350px) {
  .header-contact {
    width: fit-content;
  }
  .header-contact .btn {
    display: none;
  }
}
@media (max-width: 1170px) {
  #menu-menyu {
    gap: 10px;
  }
}
@media (max-width: 1100px) {
  .header-menu .sub-menu {
    top: 67px;
  }
  .header-menu .nav-menu-element.has-childs {
    padding-right: 22px;
  }
}
@media (max-width: 1024px) {
  .header-menu #menu-menyu {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-contact {
    gap: 5px;
  }
}
/*================ REVIEWS =============*/
.reviews-text {
  width: 750px;
  padding: 30px 40px;
  background-color: var(--background);
  /* min-height: 500px; */
}
.reviews-image {
  min-height: 500px;
  position: relative;
  width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: fit-content;
}
#reviews-block .reviews-text {
  width: 750px !important;
  height: auto;
}
#reviews-block .reviews-image {
  width: 360px !important;
}
.reviews-text__top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.reviews__name {
  font-size: var(--font-size-16-20);
  font-weight: 700;
  line-height: 120%;
  color: var(--black);
}
.reviews__date {
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--stoke-2);
  line-height: 120%;
}
.reviews-text__text--wrapper {
  margin-bottom: 35px;
}
.reviews-text__text p {
  font-size: var(--font-size-14-16);
  color: var(--txt);
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
}
.reviews-text__text p:empty {
  display: none;
}
.reviews-text__text.hide {
  -webkit-line-clamp: 8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-text-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.reviews-text-gallery {
  display: flex;
  gap: 10px;
}
.reviews-text-gallery__image--wrapper {
  max-width: 150px;
  max-height: 100px;
  width: 100%;
  height: 100%;
}
.reviews-text-gallery__image--wrapper:hover .reviews-text-gallery__image {
  transform: scale(1.2);
}
.reviews-image__date {
  position: absolute;
  padding: 10px 15px;
  background-color: var(--white);
  right: 15px;
  top: 15px;
  z-index: 3;
}
.reviews-image--wrapper {
  max-width: 360px;
  max-height: 450px;
  margin-bottom: 20px;
}
.reviews-image:hover .reviews-image__image {
  transform: scale(1.08);
}
.reviews-image__image {
  width: 100%;
  height: 100%;
  transition: all .3s;
}
#reviews-block .btn  {
  max-width: 288px;
  width: 100%;
}
.reviews-archive__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense row;
  gap: 30px;
}
.reviews-archive__holder .reviews-text,
.reviews-archive__holder .reviews-image,
.reviews-archive__holder .reviews-image--wrapper {
  width: 100%;
  max-width: 100%;
}
.reviews-container {
  display: flex;
  gap: 30px;
}
.reviews-archive {
  flex: 1;
}
.reviews-callback {
  padding: 30px;
  background-color: var(--bg-dark);
  height: fit-content;
  position: sticky;
  top: 140px;
  min-width: 300px;
  max-width: 360px;
  width: 100%;
}
.reviews-callback__title {
  font-weight: 700;
  font-size: var(--font-size-26-42);
  color: var(--white);
  line-height: 125%;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.reviews-callback__text {
  color: var(--white);
  font-size: var(--font-size-14-16);
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 40px;
}
.reviews-callback .btn {
  max-width: 100%;
  width: 100%;
}
.reviews-archive__holder .reviews-text__text.hide {
  -webkit-line-clamp: 10;
}
@media (max-width: 1570px) {
  .reviews-text,
  .reviews-image {
      width: 100%;
  }
  .reviews-image--wrapper {
      max-width: 100%;
  }
  .reviews-text__text.hide {
      -webkit-line-clamp: 12;
  }
  .reviews-archive__holder .reviews-text__text.hide {
    -webkit-line-clamp: 12;
  }
  .reviews-text {
      padding: 20px;
  }
  .reviews-image--wrapper {
      max-height: 510px;
  }
}
@media (max-width: 1300px) {
  .reviews-archive__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .reviews-text {
      min-height: 490px;
  }
  .reviews-image {
      min-height: 490px;
  }
  .reviews-archive .reviews-image {
    min-height: 490px;
  }
  .reviews-image--wrapper {
      max-width: 500px;
  }
}
@media(max-width: 1024px) {
  .reviews-text__text.hide {
      -webkit-line-clamp: 10;
  }
  .reviews-image--wrapper {
      max-height: 450px;
  }
  .reviews-archive__holder {
    grid-template-columns: 1fr;
  }
  .reviews-archive__holder .reviews-text {
    grid-column: 1;
  }
  .reviews-archive__holder .reviews-image--wrapper {
    max-width: 100%;
  }
  .reviews-archive .reviews-image {
    min-height: 400px;
  }
  .reviews-archive {
    flex: auto;
  }
}
@media (max-width: 768px) {
  .reviews-callback {
    max-width: 100%;
  }
  .reviews-container {
    flex-direction: column-reverse;
    gap: 20px;  
  }
  .reviews-callback {
    position: static;
  }
  .reviews-image--wrapper {
      max-width: 100%;
  }
  .reviews-text__text.hide {
      -webkit-line-clamp: 11;
  }
  .reviews-text {
      min-height: 500px;
  }
  .reviews-image {
      min-height: 500px;
  }
  .reviews-image--wrapper {
      max-width: 100%;
      height: 100%;
      max-height: 480px;
  }
}
@media(max-width: 500px) {
  #reviews-block .btn {
      max-width: 100%;
  }
}
/*================ DONE WORK =============*/
.discount-archive__holder .discount-slide {
  margin-bottom: 30px;
}
.discount-archive__holder .discount-slide:last-child {
  margin-bottom: 0;
}
.done-work-archive-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.done-wrok {
  display: block;
  position: relative;
  max-width: 750px;
  max-height: 430px;
  height: 100vh;
  width: 100%;
  padding-top: 20px;
  padding-left: 30px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}
.done-wrok::after {
  content: '';
  height: 10px;
  width: 100%;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all .6s;
}
.done-wrok-data__wrapper {
  position: relative;
  z-index: 1;
}
.done-wrok__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}
.done-wrok-data {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--background);
  width: fit-content;
  margin-bottom: 10px;
}
.done-wrok-data__icon {
  max-width: 25px;
  max-height: 25px;
}
.done-wrok-data__name {
  font-size: var(--font-size-14-16);
  font-weight: 500;
  line-height: 150%;
  color: var(--txt);
  position: relative;
  z-index: 2;
}
.done-wrok__name {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: var(--font-size-18-24);
  line-height: 120%;
  color: var(--white);
  transition: all .6s;
}
#done-work-block .btn {
  padding-right: 35px;
  padding-left: 35px;
}
.done-wrok:hover .done-wrok__image {
  transform: scale(1.2);
}
.done-wrok__description {
  position: absolute;
  z-index: 2;
  bottom: -150px;
  transition: all .6s;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 650px;
}
.done-wrok__description p {
  font-weight: 500;
  color: var(--white);
  font-size: var(--font-size-14-16);
  line-height: 150%;
}
.done-wrok:hover .done-wrok__description {
  bottom: 30px;
}
.done-wrok:hover .done-wrok__name {
  transform: translateY(-50px);
}
.done-wrok:hover::after {
  height: 169px;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1024px) {
  .done-wrok {
      max-width: 100%;
      width: 100%;
  }
  .done-work-archive-holder {
    grid-template-columns: 1fr;
  }
}
/*================ PRODUCT TYPE =============*/
.type-products,
.archive-type-products__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.type-product {
  display: block;
}
.type-product__image--wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--background);
  max-height: 250px;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: all .6s ease-in-out;
}
.type-product__image--wrapper::after {
  content: '';
  z-index: 1;
  width: 100px;
  height: 20px;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all .6s ease-in-out;
}
.type-product__name {
  font-size: var(--font-size-16-20);
  font-weight: 700;
  line-height: 125%;
  color: var(--black);
  transition: all .6s ease-in-out;
  margin-top: 10px;
}
.type-product:hover .type-product__image {
  transform: scale(0.9);
}
.type-product:hover .type-product__image--wrapper::after {
  width: 100%;
  height: 100%;
}
.type-product:hover .type-product__name {
  color: var(--primary);
}
@media (max-width: 1024px) {
  .type-products,
  .archive-type-products__holder {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .type-products,
  .archive-type-products__holder {
      grid-template-columns: 1fr;
  }
}
/*================ SERVICE =============*/
.archive-service__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service__image--wrapper {
  max-width: 490px;
  max-height: 460px;
  width: 100%;
  height: 100vh;
  margin-bottom: 15px;
  overflow: hidden;
}
.service__image {    
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.service__bottom {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.service__name {
  font-weight: 700;
  font-size: var(--font-size-16-20);
  line-height: 125%;
  color: var(--black);
  transition: all .3s;
  flex: 1;
}
.service__button {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid var(--stoke);
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}
.service-item:hover .service__image {
  transform: scale(1.05);
}
.service-item:hover .service__name {
  color: var(--primary);
}
.service-item:hover .service__button {
  opacity: 1;
  visibility: visible;
}
/*================ DISCOUNT =============*/
.discount-slide {
  position: relative;
  display: flex;  
  justify-content: space-between;
  background-color: var(--primary);
}
.discount-slide::after {
  content: '';
  background-color: var(--bg-dark);
  max-width: 390px;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.discount-slide__date-text {
  color: var(--white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
}
.discount-slide__title {
  font-weight: 700;
  font-size: var(--font-size-26-42);
  line-height: 120%;
  color: var(--white);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.discount-slide__text {
  font-weight: 500;
  font-size: var(--font-size-14-16);
  color: var(--background);
  line-height: 120%;
  margin-bottom: 25px;
}
.discount-slide__left {
  max-width: 830px;
  width: 100%;
  padding: 40px 50px;
}
.discount-slide__image {
  max-width: 620px;
  max-height: 300px;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.discount-slide__right {
  max-width: 620px;
  width: 100%;
  display: flex;
  align-items: end;
}
#discount-block .castop-paginator .btn {
  max-width: 272px;
}
@media(max-width: 768px) {
  .discount-slide__right {
      display: none;
  }
  .discount-slide__left {
      max-width: 100%;
      position: relative;
      z-index: 1;
      padding: 20px;
  }
}
@media (max-width: 500px) {
  #discount-block .castop-paginator .btn {
      max-width: 100%;
      width: 100%;
  }
}
/*================ PAGGINATION =============*/
.button-paggination {
  width: 60px;
  height: 60px;
  border: 1px solid var(--stoke);
  background-color: var(--white);
  display: grid;
  place-content: center;
  transition: all .3s;
}
.button-paggination:not(.button-paggination--disabled) {
  cursor: pointer;
}
.button-paggination:hover:not(.button-paggination--disabled) {
  background-color: var(--primary);
  border-color: var(--primary);
}
.button-paggination:not(.button-paggination--disabled) svg path {
  transition: all .3s;
}
.button-paggination:hover:not(.button-paggination--disabled) svg path {
  fill: var(--white);
}
.button-paggination--next svg {
  transform: rotate(180deg);
}
.button-paggination.button-paggination--disabled svg path{
  fill: var(--stoke);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding-top: 40px;
}
.button-paggination--prev {
  margin-right: 30px;
}
.button-paggination--next {
  margin-left: 30px;
}
.page-numbers {
  font-size: var(--font-size-14-16);
  font-weight: 700;
  line-height: 150%;
  color: var(--stoke);
}
.page-numbers.current {
  color: var(--primary);
}
.pagination-center {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .button-paggination--prev {
    margin-right: 0px;
  }
  .button-paggination--next {
    margin-left: 0px;
  }
}
/*================ MOBILE MENU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
body #header{
  border-bottom: 1px solid var(--stoke);
}
#header .burger.open_menu span {
  background-color: var(--primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--black);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--white);
}
#header #mobile-mnu a:hover {
  color: var(--primary);
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
}
#header #mobile-mnu .menuTop a {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: var(--font-size-14-16);
  line-height: 125%;
  color: var(--white);
  font-weight: 500;
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
}
#header #mobile-mnu .menuTop li.active > a {
  color: var(--primary);
}
#header #mobile-mnu .menuTop li.has-childs .sub-menu li {
  position: relative;
  padding-left: 15px;
}
#header #mobile-mnu .menuTop li.has-childs .sub-menu li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  top: 13px;
  left: 0;
  /* transform: translate(-50%, -50%); */
  background-color: var(--primary);
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: #D12D26;
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: #D12D26;
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}
#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3A899A;
  transition: background-color .3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609FA8;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}
.mobile-contact-holder {
  display:  flex;
  gap: 10px;
  margin-bottom: 10px;
}
.mobile-contact-data {
  color: var(--white);
  font-size: var(--font-size-18-24);
  font-weight: 500;
  line-height: 120%;
}
.mobile-contact-data p {
  color: var(--white);
  font-size: var(--font-size-18-24);
  font-weight: 500;
  line-height: 120%;
}
@media(max-width: 1024px) {
  #header .burger.open_menu {
    display: flex;
  }
}
/*============ FOOTER ===============*/
#footer {
  background-color:  var(--black);
}
.footer__container {
  display: flex;
	gap: 98px;
	padding-top: 60px;
  padding-bottom: 40px;
}
.footer-contact__phone {
  color: var(--white);
  font-size: var(--font-size-18-24);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
  transition: all .3s;
	display: block;
	white-space: nowrap;
}
.footer-contact__phone:hover {
	color: var(--primary);
}
.footer-contact__email {
	font-weight: 700;
	font-size: var(--font-size-16-20);
	line-height: 125%;
	color: var(--white);
	margin-bottom: 10px;
	transition: all .3s;
	display: block;
}
.footer-contact__email:hover {
	color: var(--primary);
}
.footer-nav {
	display: flex;
	gap: 60px;
}
#footer .nav-menu-element > a {
	color: var(--white);
	font-weight: 700;
	font-size: var(--font-size-14-16);
	line-height: 150%;
	margin-bottom: 10px;
	transition: all .3s;
	white-space: nowrap;
}
#footer .nav-menu-element > a:hover {
	color: var(--primary);
}
.footer-nav-catalog > ul {
	display: flex;
	gap: 60px;
}
.footer-nav-catalog > ul .nav-menu-element.has-childs > a {
	margin-bottom: 15px !important;
	display: block;
}
.footer-nav-catalog > ul .nav-menu-element.has-childs .sub-menu .nav-menu-element > a {
	color: var(--stoke) !important;
	font-weight: 500 !important;
}
.footer-nav-catalog > ul .nav-menu-element.has-childs .sub-menu .nav-menu-element:hover > a {
	color: var(--primary) !important;
}
#footer .btn {
	margin-bottom: 30px;
  text-wrap: nowrap;
    padding: 0 30px;
}
.footer-requisites p {
	color: var(--white);
	font-size: var(--stroke-2);
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 10px;
	text-align: right;
}
.footer-bootom {
	display: flex;
	justify-content: space-between;
	align-content: center;
	padding-top: 20px;
	padding-bottom: 15px;
	border-top: 1px solid var(--txt);
}
.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.grampus p {
  color: var(--white);
  transition: all .3s;
	font-size: var(--font-size-14);
}
.grampus .grampus__img {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--white) !important;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  transition: var(--Transition);
}
.grampus__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform .7s ease-in;
  background: linear-gradient(90deg, #fe6604 10%, #ee0a76 30%, #ee0a76 60%, #fe6604 101%) repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}
@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(100%);
  }
}
.grampus:hover p {
  color: var(--primary);
}
.grampus:hover .grampus__img {
  background-color: var(--Primary);
}
.footer__privece {
	color: var(--stoke-2);
	font-size: var(--font-size-14);
	font-weight: 500;
	line-height: 120%;
	transition: all .3s;
	text-decoration: underline;
}
.footer__privece:hover {
	color: var(--primary);
}
.footer-permition {
	color: var(--stoke-2);
	font-size: var(--font-size-14);
	font-weight: 500;
	line-height: 140%;
}
@media (max-width: 1500px) {
	.footer__container {
		gap: 20px;
		justify-content: space-between;
	}
	.footer-nav {
		gap: 20px;
	}
	.footer-nav-catalog > ul {
		gap: 20px;
	}
	#footer .nav-menu-element > a {
		white-space: wrap;
	}
}
@media (max-width: 1024px) {
	.footer__container {
		flex-wrap: wrap; 
	}
	.footer-nav {
		flex-wrap: wrap;
		flex-grow: 1;
	}
	.footer-nav-catalog > ul {
		flex-wrap: wrap;
	}
}
@media (max-width: 750px) {
	.footer-bootom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .footer-bootom * {
    width: fit-content;
  }
}
/*============ SOCIAL ===============*/
.social-container {
  position: fixed;
  top: 190px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.social {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 1px solid var(--stoke);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.social__image {
  max-width: 30px;
  max-height: 30px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.social:hover .social__image {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(266deg) brightness(103%) contrast(101%);
}
.social:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
@media (max-width: 1024px) {
  .social-container {
    right: 5px;
  }
  .social {
    width: 40px;
    height: 40px;
  }
  .social__image {
    width: 26px;
    height: 26px;
  }
}
/* ============== MODAL ============= */
.theme-modal {
	display: none;
}
.theme-modal.fancybox__content {
  max-width: 515px;
  width: 100%;
}
.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}
.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: var(--primary);
}
.fancybox__backdrop {

}
.f-button.is-close-btn {
  display: none;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.close-modal svg path {
  transition: all .3s;
}
.close-modal:hover svg path {
  fill: var(--primary);
}
.title {
  font-size: var(--font-size-26-42);
  font-weight: 700;
  color: var(--black);
  line-height: 120%;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.subtitle-modal {
  color: var(--txt);
  font-size: var(--font-size-14-16);
  font-weight: 500;
  line-height: 150%;
}
.form-row-container {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.theme-modal .btn {
  margin-top: 25px;
  max-width: 100%;
  width: 100%;
}
.theme-modal .theme-modal-textarea .input__placeholder {
  padding-bottom: 15px;
}
.theme-modal .input__placeholder {
  top: 14px;
  padding-bottom: 10px;
}
.theme-modal-textarea {
  margin-top: 15px;
}
.form__file {
  position: relative;
  margin-top: 15px;
}
.form__file input {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
}
.file__title {
  cursor: pointer;
  font-weight: 700;
  font-size: var(--font-size-14-16);
  line-height: 150%;
  transition: all .3s;
  color: var(--primary);
}
.file__title:hover {
  color: var(--primary-hover);
}
.file__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.file__item:last-child {
  margin-bottom: 0;
}
.file__item-delete {
  cursor: pointer;
}
.file__item-delete svg path {
    transition: all .3s;
}
.file__item-delete:hover svg path {
  fill: var(--primary);
}
.fancybox__backdrop {
  background-color: var(--black) !important;
  opacity: 0.8 !important;
}

.theme-modal .privice {
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--stoke-2);
  line-height: 140%;
}
.theme-modal .privice a {
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--stoke-2);
  line-height: 140%;
  transition: all .3s;
}
.theme-modal .privice a:hover {
  color: var(--primary);
}
 .privacy_checkbox {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/*  .privacy_checkbox input {
    position: absolute;
  z-index: -1;
  opacity: 0;
} */

 .privacy_checkbox input {
  appearance: none;
  position: relative;
  width: 15px !important;
  height: 15px !important;
  background: #fff;
  border-radius: 3px;
  border: 1px solid var(--stoke-2);
  transition: 500ms;
  padding: 0;
  min-width: 15px !important;
    margin-top: 3px;
  cursor: pointer;
}

 .privacy_checkbox input::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='30' viewBox='0 -960 960 960' width='30' stroke='%2326282C' stroke-width='30' fill='%2326282C'%3E%3Cpath d='M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 500ms;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

 .privacy_checkbox input.error + .privacy,
 .privacy_checkbox input.error + .privacy * {
  color: red;
}

 .privacy_checkbox input:checked::after {
  width: 12px;
  height: 12px;
  transition: 300ms;
}

 .privacy_checkbox input:checked {
  border-color: var(--black);
}

 .privacy_checkbox input:disabled{
  background: #ccc;
  border-color: #ccc;
}

 .privacy_checkbox input:disabled::after {
  filter: grayscale(100%);
}

.form1__form-wrapper .privacy_checkbox input {
  margin-top: 0;
}
/* ============= MEDIA QUERIES =========== */

/*# sourceMappingURL=main.css.map */
