@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}
body{
  background-color: black;
  margin: 0;
}
body.overflow{
  overflow: hidden;
}
.container{
  max-width: 1347px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
}
.modal-container{
  background-color: rgba(0, 0, 0, 0.546);
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity, .2s ease;
  pointer-events: none;
}
.modal-container.show{
  opacity: 1;
  pointer-events: all;
}
.modal-container .window{
  background-color: rgb(25, 25, 25);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0px 0px 25px rgb(35 35 35);
}
.modal-container .modal-title{
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 40px;
  margin-bottom: 30px;
}
.contacts-window .contacts{
  height: 118px !important;
}
.contacts-window button{
  margin-top: 40px;
}
header{
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: backdrop-filer, -webkit-backdrop-filter, .3s ease;
  top: 0;
}
header.scroll{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
header .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}
header .logo{
  width: 50px;
}
a.header-brand {
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-right: 0;
  margin-left: -10px;
}
header .menu{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header a,
.header-contacts{
  text-decoration: none;
  color: white;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  margin-right: 28px;
}
header a.opened{
  opacity: .6;
  pointer-events: none;
}
header .call{
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: white;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .call .number{
  margin-right: 15px;
}
.projects-menu{
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: tomato;
  padding: 20px;
  border-radius: 3px;
  margin-top: 10px;
  background-color: rgb(25, 25, 25);
  cursor: default;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all, .2s ease;
}
#projectsBtn.opened{
  pointer-events: none;
}
.projects-menu.opened{
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.projects-menu a{
  padding: 10px 0;
  width: 100%;
}
.projects-menu a:hover{
  opacity: .6;
}

/* Catalog dropdown */
.nav-catalog-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-catalog-btn {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-catalog-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgb(18, 18, 18);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 0 6px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}
.nav-catalog-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.nav-catalog-wrap:hover .nav-catalog-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-catalog-dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 0;
  transition: background .15s;
}
.nav-catalog-dropdown a:hover {
  background: rgba(255,255,255,.07);
  opacity: 1;
}

button.default{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px;
  border-radius: 3px;
  border: none;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: black;
  cursor: pointer;
  background-color: white;
  -webkit-transition: opacity, .2s ease;
  -o-transition: opacity, .2s ease;
  transition: opacity, .2s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
button.large{
  font-size: 20px;
  padding: 23px 48px;
}
button.default:hover{
  opacity: .7;
}
button.blue{
  color: white;
  background-color: #007FC7;
}

section.hero{
  height: 100vh;
  overflow: hidden;
}
section.hero .container{
  position: relative;
}
section.hero h1{
  z-index: 1;
  position: absolute;
  color: white;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: 70px;
  bottom: 0;
  margin-bottom: 40px;
}
section.hero.samal .text{
  position: absolute;
  bottom: 0;
  z-index: 1;
}
section.hero.samal h1,
section.hero.samal h2{
  position: static;
  margin-top: 0;
}
section.hero.samal a{
  display: block;
  text-decoration: none;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 25px;
}
section.hero.samal span{
  display: block;
  text-decoration: none;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 20px;
}
section.hero h2{
  z-index: 1;
  position: absolute;
  color: white;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 40px;
  bottom: 100px;
}
section.hero video,
section.hero img{
  width: 100%;
  opacity: .33;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
}
section.hero img.samal{
  opacity: .8;
}
section.hero video{
  background-image: url('img/video-hero_placeholder.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.hero video.caspy{
  background-image: url('img/caspy-hero_placeholder.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

section{
  padding: 100px 0;
}
section .title{
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 60px;
  margin-bottom: 70px;
  hyphens: auto;
}
section .title.centered{
  text-align: center;
}
section .desc{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  font-size: 20px;
  text-align: center;
  margin-bottom: 129px;
}
section .button-right{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
section .button-left{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
section .button-left a{
  text-decoration: none;
}
section.about{
  padding-bottom: 0;
}
section.about video{
  width: 100%;
  border-radius: 3px;
}
section.about video.video-first{
  cursor: pointer;
}

section.speciality .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
.speciality-card{
  max-width: 638px;
  width: 100%;
  height: 474px;
  position: relative;
  background-size: auto 154%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background, 1s ease;
  -o-transition: background, 1s ease;
  transition: background, 1s ease;
}
.speciality-card:hover{
  background-size: auto 170%;
}
.speciality-card .title{
  font-size: 46px;
  position: absolute;
  top: 50px;
  left: 50px;
}
.speciality-card .wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  bottom: -30px;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.map iframe{
  width: 100%;
  height: 527px;
  border: none;
  border-radius: 3px;
}

section.partners .logos{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
}
section.partners .logos::-webkit-scrollbar{
  display: none;
}
section.partners .logos img{
  height: 131px;
  width: 247px;
  margin-right: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
section.partners .container{
  position: relative;
  overflow: hidden;
}
section.partners .logo-gradient{
  position: absolute;
  right: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0)), to(rgba(0,0,0,1)));
  background: -o-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  width: 360px;
  height: 260px;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity, .3s ease;
  -o-transition: opacity, .3s ease;
  transition: opacity, .3s ease;
  z-index: 2;
}
section.partners .logo-gradient.hide{
  opacity: 0;
}
section.partners .logo-gradient.second{
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 20px;
}
section.partners .header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.partners .arrows button{
  border: none;
  background: none;
  width: 43px;
  height: 43px;
  cursor: pointer;
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
section.partners .arrows button:hover{
  opacity: .5;
}

section.amk{
  background-image: url('img/AMK_banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 552px;
}
section.amk p{
  font-size: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-style: italic;
  color: white;
  max-width: 667px;
}
section.amk .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.amk .right img{
  height: 175px;
  width: 161px;
  -webkit-filter: brightness(10);
          filter: brightness(10);
}
section.amk .right{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}

section.quality .cards{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.quality .cards.margin{
  margin-top: 20px;
}
section.quality .quality-card{
  max-width: 425px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.quality .quality-card .title{
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}
section.quality p{
  font-size: 19px;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  opacity: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 0px;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}
section.quality .quality-card:hover p{
  opacity: .5;
}

.activity-card{
  padding: 50px;
  border: 1px solid white;
  border-radius: 3px;
  max-width: 560px;
  height: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.activity-card .title{
  font-size: 35px;
  margin-bottom: 30px;
  margin-top: 30px;
}
.activity-card .desc{
  font-size: 20px;
  margin: 0;
  text-align: left;
}
.activity-card img{
  opacity: .8;
}
.activity-group{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}

footer{
  background-color: #0A0A0A;
  height: auto;
  padding: 50px 0;
}
footer .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .company{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer .company img{
  height: 100px;
  width: auto;
}
footer .title{
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}
footer .menu,
footer .contacts,
.contacts-window .contacts{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
footer .contact,
.contacts-window .contact{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .contact img,
.contacts-window .contact img{
  margin-right: 6px;
}
footer a,
.contacts-window .contact a{
  display: block;
  text-decoration: none;
  color: white;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

section.yards .yard-card{
  width: 390px;
  height: 584px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 38px;
}
section.yards .yard-card img{
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}
section.yards .yard-text{
  z-index: 1;
  position: absolute;
  bottom: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 28px;
}
section.yards .yard-text .title{
  font-size: 30px;
  margin-bottom: 31px;
  text-align: left !important;
}
section.yards .yard-text p{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 300;
}
section.yards .cards-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.yards .logo-gradient{
  height: 100%;
}

section.samal .adress{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.samal .adress .table{
  width: 425px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
section.samal .adress .map{
  width: 100%;
}
section.samal .adress .distance{
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
}
section.samal .adress .distance img{
  width: 28px;
  -o-object-fit: none  ;
     object-fit: none  ;
}

header.mobile{
  display: none;
}
section.amk.mobile{
  display: none;
}

section.payment .methods{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.payment .pay-card{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.payment .pay-card.margin{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px
}
section.payment .pay-card .title{
  font-size: 40px;
  margin: 0;
}
section.payment .pay-card img{
  width: 88px;
  -o-object-fit: none;
     object-fit: none;
}
section.payment .pay-card .desc{
  opacity: .4;
  margin: 0;
  font-size: 25px;
  text-align: left
}
section.payment .pay-card .text{
  margin-left: 44px;
}

section.safety{
  padding-bottom: 0;
}
section.safety .lobby-card{
  border-radius: 3px;
  position: relative;
  height: 722px;
  max-width: 1035px;
  -webkit-transition: background-image, .2s ease;
  -o-transition: background-image, .2s ease;
  transition: background-image, .2s ease;
  background-position: center;
  background-size: cover;
  margin-right: 40px;
}
section.safety .lobby-card .title{
  font-size: 30px;
  margin-bottom: 0;
  padding-left: 107px;
  padding-top: 80px;
}
section.safety .lobby-card .arrows img{
  width: 80px;
  height: 80px;
}
section.safety .lobby-card .arrows button{
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
section.safety .lobby-card .arrows{
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
section.safety .lobby-card .arrows img{
  pointer-events: none;
}
section.safety .lobby-card p{
  font-size: 20px;
  font-weight: 300;
  color: white;
  padding: 0px 107px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
section.safety .lobby-card{
  height: 600px;
}
section.safety .safety-card{
  border-radius: 3px;
  background-color: #131313;
  padding: 32px;
  width: 420px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 40px;
}
section.safety .safety-card.turan{
  margin-bottom: 0;
}
section.safety .safety-card .title{
  color: white;
  font-size: 20px;
  margin-bottom: 25px;
}
section.safety .safety-card p{
  color: white;
  font-size: 16px;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  opacity: .5;
  margin-bottom: 25px;
}
section.safety .safety-card img{
  -webkit-filter: invert();
          filter: invert();
  width: 28px;
  margin-bottom: 10px;
}
section.safety .safety-card .group{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55% 50%;
  grid-template-columns: 55% 50%;
  -ms-grid-rows: auto 31px auto;
  grid-template-rows: auto auto;
  row-gap: 31px;
  background-image: url('img/line-bg.svg');
}
section.safety .safety-block{
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  color: white;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.safety .right{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container.safety{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.img-card{
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  width: 500px;
  height: 500px;
  background-size: cover;
  background-position: center;
  -webkit-transition: background-image, .2s ease;
  -o-transition: background-image, .2s ease;
  transition: background-image, .2s ease;
}
.img-card .title{
  font-size: 20px;
  margin: 0;
}
.img-card .img-card-text p{
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  color: white;
  font-size: 16px;
  line-height: 25px;
}
.img-card .img-card-text{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px;
}
.img-card.top .img-card-text{
  top: 0;
}
.img-card.safety{
  height: 100%;
  width: 100%;
}
.img-card-arrows{
  z-index: 1;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: 60px;
  left: 60px;
}
.img-card-arrows button{
  background: none;
  border: none;
  cursor: pointer;
  background-color: black;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.img-card-arrows button img{
  width: 100%;
  height: 100%;
  object-fit: none;
}

section.addition{
  padding-top: 40px;
}
section.addition .img-card{
  height: 600px;
}
section.addition .img-card.townhouse{
  margin-right: 40px;
}
section.addition .img-card .title{
  font-size: 40px;
  margin-bottom: 20px;
}
section.addition .img-card p{
  font-size: 20px;
}
section.addition .img-card .img-card-text{
  padding: 56px;
}

section.samal-features .house-features{
  position: relative;
}
section.samal-features .house-features .bg{
  width: 100%;
}
section.samal-features .feature{
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.samal-features .feature img{
  background-color: white;
  padding: 20px;
  width: 60px;
  border-radius: 100%;
  cursor: pointer;
  top: 0;
}
section.samal-features .feature:hover .text{
  opacity: 1;
}
section.samal-features .feature .text{
  position: absolute;
  background-color: white;
  max-width: 340px;
  padding: 30px;
  border-radius: 3px;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: -100px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity, .2s ease;
  -o-transition: opacity, .2s ease;
  transition: opacity, .2s ease;
}
section.samal-features .feature.lift{
  bottom: 34%;
  left: 17%;
}
section.samal-features .feature.facade{
  top: 22%;
  left: 43%;
}
section.samal-features .feature.windows{
  top: 16%;
  left: 83%;
}
section.samal-features .feature.earthquake{
  top: 44%;
  left: 43%;
}
section.samal-features .feature.windowsTuran{
  top: 38%;
  left: 83%;
}
section.samal-features .facade-desc{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.65);
  left: 0;
  bottom: 0;
  margin: 20px;
  padding: 20px;
  width: 400px;
}
section.samal-features .facade-desc .title{
  font-size: 30px;
  margin-bottom: 0;
}
section.samal-features .facade-desc p{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: white;
}

section.floors .floor-card img{
  width: 100%;
  max-width: none;
  height: 342px;
  max-height: none;
  margin: 0;
  border-radius: 3px;
  -o-object-fit: none;
     object-fit: none;
  display: block;
  margin-bottom: 40px;
}
section.floors .floor-card .title{
  font-size: 25px;
  margin: 0;
}
section.floors .floor-card p{
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: white;
  margin-bottom: 0;
  margin-top: 14px;
}
section.floors .floor-card{
  padding: 56px;
  background-color: rgba(18, 18, 18, 1);
  width: 499px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 3px;
  margin-right: 30px;
}
section.floors .floor-card .bottom{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.floors .floor-card button{
  width: 144px;
}

section.projects{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 80px);
  padding: 0;
}
section.projects .project{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
section.projects .project:hover img{
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
section.projects .project img{
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  z-index: -1;
  opacity: .5;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s ease, -webkit-transform;
  transition: transform, 1s ease;
}
section.projects .project .title{
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  text-decoration: none;
}
section.projects .project .desc{
  margin: 0;
  font-size: 40px;
  font-family: 'Codec Pro', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  text-decoration: none;
}
section.projects .project .text{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  text-decoration: none;
  padding: 0 20px;
}

section.under-development{
  position: absolute;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.under-development .title{
  margin-bottom: 20px;
}
section.under-development .desc{
  margin-bottom: 50px;
}
section.under-development img{
  margin-bottom: 100px;
  pointer-events: none;
}

.cpt-speciality_card{
  background-color: #131313;
  border-radius: 3px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 80px;
}
.cpt-speciality_card a{
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.cpt-speciality_card .info{
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 455px;
}
.cpt-speciality_card .img-card{
  height: 455px;
  width: 48%;
}
.cpt-speciality_card .info button{
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.cpt-speciality_card .title{
  font-size: 40px;
  margin: 0;
}
.cpt-speciality_card .desc{
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: left;
}
.cpt-speciality_card li{
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.cpt-speciality_card ul{
  padding-left: 16px;
}

section.about.esg img{
  width: 100%;
  pointer-events: none;
}

.kazeco-quality-card{
  width: 428px;
  height: 465px;
  position: relative;
}
.kazeco-quality-card img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: .7;
}
.kazeco-quality-card .title{
  position: absolute;
  font-size: 28px;
  top: 30px;
  left: 30px;
  line-height: 30px;
  z-index: 1;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.kaz-cards{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  position: relative;
}
.kaz-prod-card{
  background-color: #131313;
  min-height: 590px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 485px;
}
.kaz-prod-card img{
  max-width: 330px;
  width: 100%;
  height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.kaz-prod-card .title{
  font-size: 28px !important;
  margin-bottom: 20px;
  padding: 30px 30px 0px 30px;
  text-align: left !important;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.kaz-prod-card .desc{
  font-size: 15px;
  margin-bottom: 50px;
  text-align: left;
  padding: 0px 30px 0px 30px;
}
.kaz-prod-card button{
  margin-top: 50px;
}
.kaz-prod-cards{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  position: relative;
}


.number {
	font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: 600;
	color: white;
	font-size: 16px;
}
.number a{
  font-size: 16px !important;
}
.phone-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.about-esg-logos-links{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.about-esg-logos-links a{
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-esg-logos-links a:hover img {
  filter: brightness(1.4);
}
.about-esg-logos-links img {
  display: block;
  pointer-events: all !important;
  object-fit: contain;
  width: 100%;
  max-height: 168px;
  max-width: 230px;
  pointer-events: none;
  transition: filter, .2s ease;
}


@media screen and (max-width: 1099px){
  header .call .number{
    display: none;
  }
}
@media screen and (min-width: 850px){
  section.safety.turan .safety-card img{
    width: 60px;
  }
  section.safety.turan .safety-block{
    margin-top: 40px;
  }
  section.safety .safety-card.turan{
    height: 100%;
  }
  section.safety.turan .safety-block{
    font-size: 18px;
  }
  section.safety .safety-card .group.turan{
    -ms-grid-rows: 250px 155px;
    grid-template-rows: 250px 155px;
    background-image: url('img/line-bg.png');
    background-size: 356px 340px;
    background-repeat: no-repeat;
    background-position: center;
  }
  section.safety.turan .safety-card img{
    width: 60px;
  }
  section.safety.turan .safety-block{
    margin-top: 40px;
  }
  section.safety .safety-card.turan{
    height: 100%;
  }
}
@media screen and (max-width: 1024px){
  .speciality-card .title{
    font-size: 31px !important;
  }
  .fake-card{
    display: none;
  }
  section.quality .cards{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.partners .arrows{
    display: none;
  }
  section.partners .logos img{
    max-width: 200px !important;
  }
  section.yards .yard-card img,
  section.floors .floor-card img{
    max-width: none !important;
  }
  .speciality-card {
    max-width: none;
    height: 500px;
    background-size: cover !important; 
  }
  .quality-card p{
    opacity: .5 !important;
    font-size: 16px !important;
    height: auto !important;
  }
  section{
    padding-bottom: 50px;
  }
  section.safety .lobby-card .title{
    padding-left: 48px;
    padding-top: 48px;
    padding-right: 48px;
    text-align: left;
  }
  section.safety .lobby-card p{
    text-align: left;
    padding-left: 48px;
    padding-right: 48px;
  }
  section.samal-features .feature.lift{
    bottom: 46%;
    left: 17%;
  }
  .quality-card{
    width: 50%;
  }
  .cpt-speciality_card .default.large{
    padding: 10px 30px;
    font-size: 13px;
  }
  .kaz-prod-card{
    max-width: 600px;
  }
  .kaz-prod-card img{
    margin: 0 auto;
  }
  .kaz-prod-cards{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 967px){
  section.hero.samal .text{
    padding-bottom: 80px;
  }
  section.safety .lobby-card{
    margin-right: 0 !important;
    margin-bottom: 40px !important;
  }
  section.addition .img-card.townhouse{
    margin-right: 0 !important;
    margin-bottom: 40px !important;
  }
  header {
    display: none;
  }
  header.mobile{
    display: block;
    background-color: rgba(0, 0, 0, 0.633);
  }
  header.mobile .menu{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
    gap: 24px;
    padding-bottom: 0;
    max-height: 0;
    -webkit-transition: max-height .3s ease, padding-bottom .3s ease;
    -o-transition: max-height .3s ease, padding-bottom .3s ease;
    transition: max-height .3s ease, padding-bottom .3s ease;
    overflow: hidden;
  }
  header.mobile .menu.opened{
    max-height: 500px;
    padding-bottom: 20px;
  }
  .mobile-catalog {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-catalog .nav-catalog-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-catalog .nav-catalog-dropdown.opened {
    max-height: 120px;
  }
  .mobile-catalog .nav-catalog-dropdown a {
    padding: 6px 0 6px 12px;
    font-size: 11px;
    color: rgba(255,255,255,.7);
  }
  header.mobile .number{
    display: none;
  }
  #menu-btn{
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    -webkit-filter: invert();
            filter: invert();
  }
  section.projects{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.projects .project .title{
    font-size: 35px;
  }
  section.projects .project .desc{
    font-size: 25px;
  }
  section .button-left{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .container.safety{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.safety .right{
    position: relative;
  }
  section.safety .img-card.safety{
    height: 300px;
  }
  section.safety .safety-card{
    width: 100%;
  }
  section.safety .safety-card .title{
    text-align: left;
  }
  section.safety .safety-block{
    font-size: 13px;
  }
  section.safety .safety-card .group{
    background-position: center;
    background-repeat: no-repeat;
  }
  section.safety .lobby-card .title{
    padding-left: 48px;
    padding-top: 48px;
    text-align: left;
  }
  section.safety .lobby-card p{
    text-align: left;
    padding-left: 48px;
    padding-right: 48px;
    font-size: 16px;
  }
  section.safety .lobby-card .arrows{
    padding: 0;
  }
  section.addition .img-card{
    width: 100%;
    height: 500px;
  }
  section.addition .img-card .img-card-text{
    padding: 32px;
  }
  section.addition .img-card .title{
    font-size: 20px;
  }
  section.addition .img-card p{
    font-size: 16px;
  }
  section.addition .img-card.commerce{
    width: 100% !important;
  }
  .cpt-speciality_card{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-height: none;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .cpt-speciality_card .img-card{
    width: 100%;
  }
  .cpt-speciality_card .info{
    width: 100%;
    margin-top: 48px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    position: relative;
  }
  .cpt-speciality_card .title{
    font-size: 30px !important;
    text-align: left !important;
  }
  .cpt-speciality_card .default{
    width: 100% !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 750px){
  footer .container{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  footer{
    height: auto;
  }
  footer .title{
    margin: 0;
  }
  footer .company .default{
    display: none;
  }
  footer .menu,
  footer .contacts{
    height: 100px;
    text-align: center;
  }
  footer .contact{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.amk{
    display: none;
  }
  section.amk.mobile{
    display: block;
    height: auto;
  }
  section.amk img{
    width: 160px;
  }
  section.amk.mobile .container{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.speciality .container{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.quality .cards{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
  section.quality .cards.margin{
    margin-top: 60px;
  }
  section.quality .quality-card{
    max-width: none;
    width: 100%;
  }
  .container .title{
    text-align: center;
    font-size: 30px;
  }
  section .button-right{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .speciality-card .large{
    font-size: 13px;
    padding: 10px 30px;
  }
  .speciality-card .wrapper{
    bottom: -20px;
  }
  section .desc{
    font-size: 20px;
  }
  section.amk p{
    font-size: 22px;
    padding: 20px 0;
    text-align: center;
  }
  section.partners .logos img{
    max-width: 150px !important;
    margin-right: 30px
  }
  section.yards .yard-card img{
    max-width: none !important;
  }
  section.floors .floor-card img{
    max-width: 280px !important;
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
  }
  section.partners .logo-gradient{
    width: 150px;
    right: 10px;
  }
  .img-card .title{
    margin: 0;
    text-align: left;
    font-size: 20px;
  }
  section.partners.yards .logo-gradient{
    width: 43px;
  }
  section.yards .yard-text{
    padding: 20px;
  }
  section.yards p{
    margin-bottom: 0;
  }
  section.yards .yard-card{
    width: 284px;
    height: 424px;
  }
  section.samal-features .facade-desc{
    display: none;
  }
  section.samal-features .bg{
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.samal-features .feature.lift{
    bottom: 34%;
    left: 16%;
  }
  section.samal-features .feature.lift{
    bottom: 34%;
    left: 16%;
  }
  section.samal-features .feature.windows{
    left: 77%;
  }
  section.samal-features .feature .text{
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
    z-index: 1;
    top: -70px;
  }
  section.floors .floor-card .bottom{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  section.floors .floor-card button{
    margin-top: 20px;
    height: 60px;
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.floors .floor-card{
    width: 278px;
    padding: 32px;
  }
  section.payment .methods{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
  }
  section.payment .pay-card{
    margin-bottom: 60px;
  }
  section.payment .pay-card .title,
  section.payment .pay-card .desc{
    font-size: 20px;
    text-align: left;
  }
  section.payment .pay-card .text{
    margin-left: 18px;
  }
  section.payment .pay-card img{
    width: 64px;
  }
  section.samal .adress{
    display: block;
  }
  section.samal .adress .table{
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 48px;
    display: none;
  }
  .activity-card{
    max-width: 500px;
    padding: 48px 24px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .activity-card img.long{
    width: 100%;
  }
  .activity-card .title{
    text-align: left;
    font-size: 30px;
  }
  .kazeco-quality-card{
    width: 100%;
    max-width: 550px;
  }
  .kaz-cards{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kazeco-quality-card .title{
    font-size: 22px;
    line-height: normal;
    margin: 0;
    position: static;
  }
  .kazeco-quality-card .title-container{
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
  }
  
}

@media screen and (min-width: 650px){
  .consultation{
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 650px){
  .consultationbutton{
    margin-left: 0 !important;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}
.consultationbutton{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px;
  border-radius: 3px;
  border: none;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background-color: #25d366;
  -webkit-transition: opacity, .2s ease;
  -o-transition: opacity, .2s ease;
  transition: opacity, .2s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
}
/* Catalog scroll container */
[style*="overflow-y: auto"]::-webkit-scrollbar { width: 6px; }
[style*="overflow-y: auto"]::-webkit-scrollbar-track { background: #111; border-radius: 3px; }
[style*="overflow-y: auto"]::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }
[style*="overflow-y: auto"]::-webkit-scrollbar-thumb:hover { background: #666; }
