/* FONTS */
@import "./fonts.css";

@import "./normalize.css";
@import "./variables.css";

/* UI */
@import "./ui/navbar.css";
@import "./ui/button.css";
@import "./ui/breadcrumb.css";
@import "./ui/forms.css";
@import "./ui/left_menu.css";
@import "./ui/filters.css";
@import "./ui/pagination.css";
@import "./ui/search.css";
@import "./ui/dropdownmenu.css";

/* COMPONENTS */
@import "./header.css";
@import "./intro.css";
@import "./advantages.css";
@import "./catalog.css";
@import "./partners.css";
@import "./popular.css";
@import "./numbers.css";
@import "./projects.css";
@import "./offices.css";
@import "./services.css";
@import "./news.css";
@import "./footer.css";
@import "./contacts.css";
@import "./company.css";
@import "./product.css";
@import "./root.css";
@import "./marochnik.css";
@import "./standart.css";
@import "./fotogallery.css";
@import "./mobile.css";
@import "./notfound.css";



/* BASIC */

body {
    font-family: 'Gilroy';
    font-size: var(--fs-m);
    line-height: 24px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
    color: var(--text-color-black);
    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: 0.02em;
}

h2 {
    color: var(--text-color-black);
    font-size: 48px;
    font-weight: 300;
    line-height: 60px;
    letter-spacing: 0.02em;
}

h3 {
    color: var(--text-color-black);
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
}

.title2 {
    color: var(--text-color-black);
    font-size: 36px;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.02em;
}

a {
    color: var(--text-color-gold);
    text-underline-offset: 5px;
}

a:hover {
    text-decoration: none;
}

.center {
    text-align: center;
}

.btn_black_circle {
    width: 46px;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--bg-color-black);
    border: 0;
    border-radius: var(--br-circle);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn_black_circle:hover {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}


.main_title {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0.02em;
    background: -o-linear-gradient(20deg, #eec881 23%, #cc962e 76%);
    background: linear-gradient(70.0deg, #eec881 23%, #cc962e 76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main_title__small {
    margin-top: 30px;
    display: block;
    font-size: var(--fs-xl);
    line-height: 30px;
}


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

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

.title_gradient {
    background: -o-linear-gradient(20deg, #eec881 23%, #cc962e 76%);
    background: linear-gradient(70.0deg, #eec881 23%, #cc962e 76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrapper_secondary {
    padding-top: 236px;
}

.wrapper_in {
    display: flex;
    flex-direction: row-reverse;
}

.right_col {
    width: calc(100% - 277px);
}

.left_col {
    min-width: 277px;
    width: 277px;
    margin-right: 33px;
}

.overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .71);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

.upbutton {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 50px;
  right: 50px;
  display: none;
  background-color: #e8e8e8;
  border-radius: var(--br-circle);
  cursor: pointer;
  box-shadow: 0px 1px 7px 3px rgba(34, 60, 80, 0.2);
  background-image: url('/local/templates/altermet/f/img/ico_up.png');
  background-repeat: no-repeat;
  background-position: center;
}

.map-columns tr {
  display: flex;
  flex-direction: column;
}

.map-columns a {
  color: #000;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 18px;
  line-height: 30px;
}

.map-columns a:hover {
  color: var(--text-color-gold);
}

.clear {
  clear: both;
}

.folder_menu {
	grid-template-columns: repeat(auto-fill, minmax(min(297px,100%),1fr)) !important;
}

.folder_menu .folder_menu__item {
  position: relative;
  padding: 47px 88px 29px 29px;
  display: block;
  text-align: left;
  box-sizing: border-box;
  background-color: #f4f4f4;
  border-radius: 30px;
}

.folder_menu__item::before {
  display: none;
}

.folder_menu .folder_menu__title {
  font-size: var(--fs-l);
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: var(--text-color-black);
}

.grid_col2 {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 1em;
}

.grid_col2:not(:last-child) {
  margin-bottom: 30px;
}

.grid_col2__title {
  margin-top: 0;
  font-size: var(--fs-l);
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.02em;
}

.cities-list a {
  color: #8b806c;
  text-decoration: none;
}

.cities-list a:hover {
  color: var(--text-color-gold);
}


.wrapper_all {
  min-height: calc(100vh - 651px);
}


@media (max-width: 1549px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    h1,
    .main_title {
        font-size: 52px;
        line-height: 52px;
    }

    .main_title__small {
        margin-top: 24px;
        font-size: var(--fs-l);
    }

    h2 {
        font-size: var(--fs-xxl);
        line-height: 36px;
    }
}

@media (max-width: 1199px) {

    h1,
    .main_title {
        font-size: 42px;
        line-height: 42px;
    }

    .main_title__small {
        margin-top: 20px;
        font-size: 20px;
    }

    h2,
    .title2 {
        font-size: var(--fs-xl) !important;
        line-height: 30px !important;
    }

    .wrapper_secondary {
        padding-top: 193px;
    }
}

@media (max-width: 991px) {

    h1,
    .main_title {
        font-size: var(--fs-xxl);
        line-height: 36px;
    }

    .main_title__small {
        margin-top: 18px;
        font-size: 18px;
    }

    .wrapper_secondary {
        padding-top: 95px;
    }

    .wrapper_in.section_in{
        flex-direction: column;
    }
    .left_col {
        order:1;
        position: relative;
        top: 0;
        left: -100%;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: left 300ms ease, max-height 300ms ease;
    }

    .left_col.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        width: 100%;
        max-height: 70vh;
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        transition: left 300ms ease, max-height 300ms ease;
    }

    .left_col.active {
        z-index: 10;
        padding: 30px 50px;
        width: 100%;
    }


	.left_col.active {
	  padding: 0;
	  padding-top: 30px;
	  padding-bottom: 30px;
	}

    .right_col {
        order:2;
        width: 100%;
    }

	.upbutton {
		right: 30px;
		width: 50px;
		height: 50px;
		background-size: 50%;
	}

	.map-columns a {
		font-size: 16px;
		line-height: 24px;
	}


	.grid_col2__title {
 		font-size: 20px;
	}


}

@media (max-width: 767px) {

    h1,
    .main_title {
        font-size: var(--fs-xl);
        line-height: 30px;
    }

    .main_title {
        text-align: center;
    }

    h2,
    .title2 {
        font-size: var(--fs-l) !important;
        line-height: 24px !important;
    }

    .btn_black_circle {
        width: 36px;
        height: 36px;
    }

    .wrapper_secondary {
        padding-top: 83px;
    }
}

@media (max-width: 575px) {

    h1,
    .main_title {
        font-size: 30px;
        line-height: 30px;
    }

    .main_title__small {
        margin-top: 14px;
        font-size: var(--fs-s);
        line-height: 20px;
    }

    h2,
    .title2 {
        font-size: 24px !important;
        line-height: 24px !important;
    }

	.grid_col2 {
  		display: block;
	}
}

@media (max-width: 380px) {
    .wrapper_secondary {
        padding-top: 64px;
    }
}


/* 17.04.2024 */
.folder_menu {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(min(212px,100%),1fr));
}

.folder_menu__item {
  position: relative;
  padding-top: 53px;
  padding-bottom: 53px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.folder_menu__item::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  background: linear-gradient(0.0deg, #eec881 0%, #eec881 11%, #654405 60%, #2d2b19 81%, #fff9c2 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.folder_menu__title {
  font-size: var(--fs-l);
  line-height: 30px;
  color: var(--text-color-gold);
  text-decoration: none;
}

.folder_menu__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.folder_menu__item:hover .folder_menu__title {
  color: #8b806c;
}

@media (max-width: 1200px) {
  .folder_menu__item {
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .folder_menu__title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .folder_menu {
    grid-template-columns: repeat(auto-fill, minmax(min(160px,100%),1fr));
  }
}

@media (max-width: 575px) {
  .folder_menu__title {
    font-size: var(--fs-m);
    line-height: 24px;
  }
}


/* 27.06.2024 */
.quote__text,
.sale_block2 p  {
    color: #e2b663 !important;
    background: none !important;
    -webkit-text-fill-color: #e2b663 !important;
}