body {
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

a {
    color: black;
    text-decoration: none;
}

.wrap {
    width: 1500px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}


.header ul.menu > li {
    float: left;
    position: relative;
    margin-right: 10px;
}

.header ul.menu > li > a {
    display: inline-block;
    padding: 10px;
    color: black;
    text-decoration: none;
    font-size: 20px;
}

.header ul.menu > li > a span {
    display: inline-block;
    vertical-align: top;
    line-height: 1.2;
}

.header ul.menu > li > a:after {
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    margin-top: 2px;
    background-color: #fbbf14;
	}
	.header ul.menu > li > a:hover:after,
	.header ul.menu > li > a:focus:after {
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	}

.header ul.menu > li > a:before {
    content: "";
    background: url(/images/mark.svg);
    background-size: cover;
    display: inline-block;
    width: 20px;
    height: 23px;
    margin-right: 10px;
}

.header ul.submenu {
    display: none;
    position: absolute;
    width: 200px;
    top: 37px;
    left: 0;
    background-color: white;
    z-index: 3000;
}

.header ul.submenu > li {
    display: block;
}

.header ul.submenu > li > a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    line-height: 1;
}

.header ul.submenu > li > a:hover {
    text-decoration: underline;
}

.header ul.menu > li:hover > ul.submenu {
    display: block;
}

/* mobmenu */
.mobmenu {
    z-index: 10;
    position: fixed;
    background: white;
    height: 100vh;
    width: 100%;
    top: -2000px;
    display: block;
}
    
.mobmenu__close-menu {
  position: fixed;
  display: flex;
  right: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-left: 10px;
  font-size: 24px;
  color: #fff;
  top: -100%;
  z-index: 7;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.mobmenu__close-menu img {
    width: 30px;
    height: 30px;
    margin: auto;
}

.mobmenu__nav {
    position: absolute;
    left: 55%;
    margin-left: -300px;
    top: 50%;
    margin-top: -215px;
    z-index: 5;
    width: 600px;
}

.mobmenu__main-menu-item {
    padding-top: 20px;
}

.mobmenu__main-menu-item a {
  text-decoration: none;
  font-size: 30px;
  line-height: 1;
}

.mobmenu__main-menu-item::before {
  content: "";
  background: url(/images/mark.svg);
  background-size: cover;
  width: 20px;
  height: 23px;
  position: absolute;
  left: -30px;
  top: 45%;
}

.mobmenu__menu-btn {
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}

.mobmenu__menu-btn img {
    width: 100%;
    height: 100%;
}

.mobmenu__link {
    padding: 20px 40px;
    color: white;
    display: inline-block;
    margin-top: 30px;
    border-radius: 10px;
    position: relative;
    text-transform: uppercase;
    background-color: #e25f02;
    letter-spacing: 1px;
    background: rgb(225,94,0);
    background: -moz-linear-gradient(90deg, rgba(225,94,0,1) 0%, rgba(255,154,82,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(225,94,0,1) 0%, rgba(255,154,82,1) 100%);
    background: linear-gradient(90deg, rgba(225,94,0,1) 0%, rgba(255,154,82,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e15e00",endColorstr="#ff9a52",GradientType=1); 
}

.mobmenu__link:hover {
    background: rgb(225,94,0);
    background: -moz-linear-gradient(90deg, rgba(225,94,0,1) 0%, rgba(225,94,0,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(225,94,0,1) 0%, rgba(225,94,0,1) 100%);
    background: linear-gradient(90deg, rgba(225,94,0,1) 0%, rgba(225,94,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e15e00",endColorstr="#e15e00",GradientType=1); 
    transition: all .3s ease-in-out;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: 20px;
}

.mobmenu__menu-btn {
    display: none;
}

.header__logo {
    width: 120px;
}

.header__logo img {
    width: 100%;
    height: 100%;
}

.first {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
}

.first__minititle {
    color: #fbbf14;
    font-size: 24px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}

.first__title {
    font-size: 60px;
    width: 100%;
    line-height: 1.3;
    margin-top: 20px;
    font-weight: bold;
}

.first__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}

.first__link {
    background-color: #FDC010;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.first__link:hover {
    transition: all .3s ease-in-out;
    background-color: #E6AB03;
}

.first__img {
    width: 50%;
}

.dir {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.dir__item {
    display: flex;
    justify-content: space-between;
    background-color: #FCF9F2;
    border-radius: 50px;
    margin-bottom: 50px;
    width: 48%;
    flex-direction: column;
}

.dir__img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    border-radius: 50px 50px 0px 0px;
}

.dir__content {
  width: 90%;
  margin: auto;
    margin-top: auto;
    margin-bottom: auto;
  margin-top: 30px;
  margin-bottom: 20px;
  min-height: 230px;
}

.dir__title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.dir__text {
    margin-top: 10px;
}

.dir__link {
    background-color: #FDC010;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
}

.dir__link:hover {
    transition: all .3s ease-in-out;
    background-color: #E6AB03;
}

footer {
    background-color: #333;
    border-radius: 30px 30px 0px 0px;
    
}

.footer__logo {
    width: 150px;
    display: block;
}

.footer__logo img {
    width: 100%;
    height: 100%;
}

.footer__topline {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.footer__menu {
    display: flex;
}

.footer__menu li {
    margin-left: 20px;
    line-height: 1.2;
}

.footer__menu li a {
    color: white;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 50px;
    border-top: 1px solid #515151;
    padding-top: 5px;
}

.footer__copyright {
    color: white;
}

.footer__cookies a {
    color: gray;
    margin-left: 10px;
}

.footer__menu li a:hover {
    transition: all .3s ease-in-out;
    color: #E6AB03;
}

.about__img {
    width: 200px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    margin-top: 50px;
}

.about__content {
    width: 100%;
    margin-top: 50px;
}

.about__toptitle, .page__toptitle {
    color: #fbbf14;
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about__items {
    margin-top: 50px;
}

.about__logoimg {
    width: 150px;
}

.about__item {
    margin-top: 50px;
}

.about__title {
    color: #fbbf14;
    font-size: 24px;
    margin-top: 10px;
}

.about__text {
    margin-top: 10px;
    width: 50%;
}

.item-table {
	width: 100%;
	margin-bottom: 50px;
    border: 1px solid black;
}

.item-table tr th {
	border-bottom: 1px solid black;
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 1.2;
	font-size: 16px;
	text-align: left;
	color: black;
	padding-right: 10px;
	padding-left: 10px;
	min-width: 70px;
	border-left: 1px solid black;
}

.item-table td {
	border-bottom: 1px solid black;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 1;
	padding-left: 10px;
	padding-right: 5px;
	border-left: 1px solid black;
}

.item-table.zerno-table td span {
    line-height: 1.3;
    display: block;
    width: 90%;
}

.item-table.zerno-table td span:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

.item-table.kaolin-table span {
  font-size: 12px;
}

.page {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
}

.page__topimg {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.page__text {
    width: 80%;
}

.page__title {
    color: #fbbf14;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page__table table {
    border-collapse: collapse; 
    line-height: 1.1;
    color: #0C213B;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.page__table th {
    padding: 10px; 
    border: 1px solid black;
}

.page__table td {
    padding: 5px 7px;
    border: 1px solid black;
}

.table-first {
    font-weight: bold;
    text-align: center;
}

.page__text p {
    margin-top: 10px;
}

.contacts {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contacts__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.contacts__name {
    color: #fbbf14;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.3;
}

.contacts__map {
    width: 50%;
    height: 600px;
}

.contacts__info {
    width: 45%;
    margin-top: auto;
    margin-bottom: auto;
}

.contacts__info span {
    display: block;
    margin-bottom: 10px;
}

.contacts__elem {
    margin-bottom: 20px;
}

.contacts__address {
    margin-bottom: 20px;
}

.contacts__link {
    text-align: center;
    border: 1px solid #2B7BA7;
    color: #2B7BA7;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
}

.contacts__link:hover {
    background-color: #2B7BA7;
    border: 1px solid #2B7BA7;
    color: white;
    transition: all .3s ease-in-out;
}

.contacts__minititle {
    color: #fbbf14;
}

.contacts__map iframe {
    border-radius: 50px;
}

.about__prior {
    margin-top: 30px;
}

.about__ul li {
    margin-top: 10px;
}

.about__ul li:before {
    content: "";
    background-color: #fbca3e;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    display: inline-block;
    margin-right: 10px;
}

.about__ul li span {
  display: inline-block;
  width: 90%;
  vertical-align: top;
}

/* modal */
.white-popup {
    position: relative;
    background-color: white;
    padding: 40px 0px 0px;
    width: auto;
    max-width: 300px;
    margin: 20px auto;
    border-radius: 20px;
}

.ajax_form {
    padding-left: 20px;
}

.input-area {
    border: 1px solid #dbdbdb;
    transition: border 0.15s;
    box-shadow: none !important;
    font-size: 14px;
    padding: 15px 0px;
        padding-left: 0px;
    padding-left: 0px;
    margin-top: 10px;
    margin-left: 0px;
    border-radius: 10px;
    width: calc(100% - 40px);
    padding-left: 20px;
}

.ajax_form .error {
    font-size: 14px;
    line-height: 1;
}

.form-btn {
    display: block;
    position: relative;
    width: calc(100% - 20px);
    background-color: #fbbf14;
    text-decoration: none;
    user-select: none;
    padding: 15px 0px;
    outline: none;
    border: 1px solid #fbbf14;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    font-size: 14px;
    margin-left: 0px;
    margin-top: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.form-btn:hover {
    background-color: #e8ac00;
    border: 1px solid #e8ac00;
}

.s-message {
    display: none;
}

.label-check__input:checked + .label-check__new-input {
    background: #fbbf14;
    border-radius: 5px;
}

.checkbox {
    float: left;
    margin-top: 20px;
    line-height: 1;
    width: 85%;
    margin-left: 25px;
    margin-bottom: 30px;
}

.checkbox a {
    color: black;
}

.label-check-text {
    font-size: 11px;
    line-height: 1.3;
}

.label-check__input {
    display: none;
}

.label-check {
    position: relative;
}

.label-check__new-input {
    position: absolute;
    left: -25px;
    top: 10px;
    width: 15px;
    height: 15px;
    border: 1px solid #fbbf14;
}

.form-btn:hover > .form__linkback {
    opacity: 0;
    transition: all .3s ease-in-out;
}

.form-btn:hover > .form__linkname {
    color: white;
}

.zerno__link {
  background-color: #FDC010;
  padding: 15px 30px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
}

.zerno__link:hover {
    background-color: #E1A904;
    transition: all .3s ease-in-out;
}

.about__img img:last-child {
    display: none;    
}

.ajax_form button:disabled, button[disabled] {
  color: grey;
  cursor: not-allowed;
  opacity: 0.5;
}

.page__ul li {
    margin-top: 10px;
}

.page__ul li:before {
    content: "";
    background-color: #fbca3e;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    display: inline-block;
    margin-right: 10px;
}

.page__ul li span {
  display: inline-block;
  width: 90%;
  vertical-align: top;
}

.page__desc {
    font-size: 16px;
    margin-bottom: 30px;
}

strong {
    font-weight: bold;
}

.kaolin__items {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #fbbf14;
  margin-top: 50px;
}

.kaolin__item {
    width: 30%;
}

.kphoto {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.kphoto img {
    width: 48%;
    margin-bottom: 50px;
    border-radius: 10px;
}

.sale {
  background-color: #fff8e5;
  border-radius: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 35%;
  margin-top: 50px;
}

.sale__form {
  width: 90%;
  background-color: white;
  border-radius: 20px;
  margin: auto;
  padding-top: 15px;
}

.sale__title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.saleandbuy {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.buy {
  width: 60%;
}

.buy__title {
    color: #fbbf14;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.buy__title span {
    color: #333333;
}

.textpage {
    margin-top: 50px;
    margin-bottom: 50px;
}

.textpage h2 {
    font-size: 22px;
    margin-top: 20px;
}

.textpage h3 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
}

.notfound {
    width: 100%;
    height: 80vh;
    display: flex;
}

.notfound__title {
    margin: auto;
    font-size: 24px;
    line-height: 1;
}

.stiv {
  display: flex;
  justify-content: space-between;
}

.stiv__content {
  width: 65%;
  margin-top: auto;
  margin-bottom: auto;
}

.stiv__img {
    width: 30%;
}

.stiv__content .page__text {
    width: 100%;
}

.prior__img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
}

.prior__items {
    margin-top: 20px;
}

.prior__item {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.prior__text {
    width: 70%;
    margin-top: auto;
    margin-bottom: auto;
}

.prior__icon {
    width: 80%;
    margin: auto;
}

.aboutmzt__icon {
    width: 80%;
    margin: auto;
}

.aboutmzt__img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
}

.aboutmzt__item {
    display: flex;
    justify-content: space-between;
}

.aboutmzt__content {
    width: 70%;
    margin-top: auto;
    margin-bottom: auto;
}

.aboutmzt__title {
  color: #fbbf14;
  font-size: 24px;
  margin-top: 10px;
}

.aboutmzt__text {
    margin-top: 10px;
}

.page__table th span {
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
}

.mobile__tables {
    display: none;
}

.page__table {
    font-size: 16px;
}

.mfp-title {
    display: none;
}

.cert__items {
    display: flex;
    justify-content: space-between;
}

.cert__item {
    width: 30%;
}

.cert__item img {
    width: 100%;
}

h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fbbf14;
}











































































@media(max-width: 1500px) {
    .wrap {
        width: 95%;
    }
    
    .first__title {
        font-size: 40px;
    }
}

@media(max-width: 1200px) {
    .footer__menu {
        width: 100%;
        margin-top: 30px;
        justify-content: space-between;
    }
    
    .footer__menu li {
        margin-left: 0px;
        margin-right: 20px;
    }
    
    .footer__topline {
        flex-direction: column;
    }
    
    .prior__img {
      width: 200px;
      height: 200px;
    }
    
    .prior__item {
        flex-direction: column;
    }
    
    .prior__img {
        margin-left: auto;
        margin-right: auto;
    }
    
    .prior__text {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .dir__content {
        min-height: 260px;
    }
}

@media(max-width: 1024px) {
    .first__content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .first__link {
        margin-top: 40px;
    }
    
    .first__title {
        width: 100%;
    }
    
    .first__img {
      margin-top: 50px;
    }
    
    .dir__title {
      font-size: 30px;
    }
    
    .footer__topline {
        flex-direction: row;
    }
    
    .footer__logo {
      width: 170px;
    }
    
    .footer__menu li {
        margin-right: 10px;
    }
    
    .footer__menu {
      margin-top: 30px;
      width: 100%;
      justify-content: space-between;
    }
    
    .header ul.menu > li > a {
      font-size: 16px;
    }
    
    .dir__title {
      font-size: 24px;
    }
    
    .dir__item {
        width: 100%;
    }
    
    .dir__img {
        height: 200px;
    }
    
    .dir__content {
        min-height: auto;
    }
    
    .saleandbuy {
        flex-direction: column;
    }
    
    .buy {
        width: 100%;
    }
    
    .sale {
        width: 100%;
    }
    
    .footer__menu {
      flex-direction: column;
      width: 210px;
    }
    
    .footer__menu li {
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
    }
    
    .kaolin__items {
        flex-direction: column;
    }
    
    .kaolin__item {
        width: 100%;
    }
    
    .about__text {
        width: 100%;
    }
    
    .aboutmzt__content {
        width: 50%;
    }
}

@media(max-width: 768px) {
    .kphoto img {
        width: 100%;
    }
    
    .kaolin__items {
        border: none;
    }
    
    .menu {
        display: none;
    }
    
    .mobmenu__menu-btn {
      display: block;
    }
    
    .mobmenu__nav {
        width: 300px;
        margin-left: -150px;
    }
    
    .mobmenu__main-menu-item a {
        font-size: 30px;
    }
    
    .first__title {
        font-size: 30px;
    }
    
    .dir__img {
        width: 100%;
        height: 300px;
        border-radius: 20px 20px 0px 0px;
    }
    
    .dir__content {
        width: calc(100% - 40px);
        margin: auto;
        padding: 20px;
        margin-top: 10px;
    }
    
    .dir__item {
        border-radius: 20px;
    }
    
    .dir__title {
        font-size: 24px;
    }
    
    footer {
        border-radius: 10px 10px 0px 0px;
    }
    
    .footer__bottom {
        font-size: 14px;
    }
    
    .footer__topline {
      flex-direction: row;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about__content {
        width: 100%;
    }
    
    .about__img {
        width: 100%;
        margin-top: 50px;
    }
    
    .about__img img:last-child {
        display: block;
        width: 100%;
    }
    
    .about__img img:first-child {
        display: none;
    }
    
    .page__text {
      width: 100%;
    }
    
    .page__topimg {
        border-radius: 20px;
        height: 200px;
    }
    
    .about__toptitle, .page__toptitle {
        font-size: 30px;
    }
    
    .contacts__item {
        flex-direction: column;
    }
    
    .contacts__map {
        width: 100%;
        height: 300px;
    }
    
    .contacts__info {
        margin-top: 20px;
        width: 100%;
    }
    
    .contacts {
        margin-top: 20px;
    }
    
    .contacts__name {
        font-size: 26px;
    }
    
    .stiv {
        flex-direction: column-reverse;
    }
    
    .stiv__content {
        width: 100%;
    }
    
    .stiv__img {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .aboutmzt__item {
        flex-direction: column-reverse;
    }
    
    .aboutmzt__img {
        width: 200px;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .aboutmzt__content {
        width: 100%;
        text-align: center;
    }
    
    .desktop__tables {
        display: none;
    }
    
    .mobile__tables {
        display: block;
    }
    
    .page__table {
        font-size: 16px;
    }
    
    .page__table table {
        text-align: left;
    }
    
    .page__table td span {
      font-size: 12px;
      display: inline-block;
      vertical-align: top;
    }
    
    .page__table th {
        width: 50%;
    }
}

@media(max-width: 480px) {
    .footer__topline {
        flex-direction: column;
    }
    
    .footer__bottom {
        flex-direction: column;
    }
    
    .footer__cookies {
        display: flex;
        flex-direction: column;
    }
    
    .footer__cookies a {
        margin-left: 0px;
    }
    
    .dir__img {
      width: 100%;
      height: 200px;
    }
    
    .item-table tr th {
      font-size: 14px;
      padding-left: 2px;
      padding-right: 2px;
      min-width: 60px;
    }
    
    .item-table tr th:first-child {
        padding-left: 5px;
    }
    
    .item-table td {
        font-size: 14px;
        padding-left: 5px;
    }
    
    .stiv__img {
        width: 100%;
    }
    
    .cert__items {
        flex-wrap: wrap;
    }
    
    .cert__item {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media(max-width: 350px) {
    .first__title {
        font-size: 24px;
    }
}
