body {
	font-size: 18px;
}
.lhh{
  padding-top: 30px;
  padding-bottom: 60px;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: url("../img/main-banner-bg-img.jpg") center / cover no-repeat;
  overflow: hidden;
}

.lhh > .container{
  position: relative;
  z-index: 1;
  padding: 0px 30px;
}


.lhh-banner__img img {
	width:140px;
	transition: transform 0.35s ease;
	transform: scale(1);
}
.lhh-banner:hover .lhh-banner__img img{
  transform: scale(1.08);
}
.lhh__grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

/* Search column */
.lhh-reg {
	display:grid;
	gap:90px;
}
.top-lhh-reg {
	display: flex;
	justify-content: space-between;
}
.lhh-input-wrap {
  position: relative;
  width: 50%;
}
.lhh-input-wrap::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 24px;
  background: url('../img/est-plate-second.jpg') no-repeat center center;
  background-size: contain;
  border-radius: 5px 0 0 5px;
  z-index: 2;
}
.lhh-card{
  background:#fff;
  padding:44px 30px;
  border-radius:5px;
}
.lhh-card__title{
  font-size:20px;
  font-weight:500;
  margin:0 0 20px;
}
.lhh-input,.lhh-select{
  font-size: 14px;
  width:100%;
  height:40px;
  border:1px solid #E5E5E5;
  padding:0 10px;
  background:#fff;
  border-radius: 5px;
}
input#regnr-text {
    width: 100%;
	padding: 10px 30px;
}
.lhh-selects {	
	display:grid; 
	gap:15px;
	font-size: 14px;
}
.lhh-btn{
  height: 40px;
  border: 0;
  cursor:pointer;
  font-size: 14px;
  background-color: #FED700;
  border-radius: 5px;
  font-weight: 500;
  width: 165px;
}
.lhh-btn--full{
  width:72px;
}

/* Banner columns */
.lhh__banners{display:grid; gap:30px;}
.lhh-banner{
  background:#fff;
  height: 238px;
  max-height: 238px;
  display:grid;
  grid-template-columns: 1fr 140px;
  padding:44px 30px;
  border-radius: 5px;
}
.lhh-banner__kicker{
  font-size:16px;
  text-transform: uppercase;
  color: #888888;
}
.lhh-banner__title{
  font-size:22px;
  font-weight:500;
  margin:0;
}
.lhh-banner__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
	max-width: 220px;
}
.lhh-banner__btn{
  display:inline-flex;
  padding: 0px 23px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  color:black;
  background-color: #E5E5E5;
  border-radius: 5px;
  text-transform: uppercase;
  transition: 0.3s;
  height: 40px; 
  align-items: center;
}

.lhh-banner__btn:hover {
	background-color: #FED700;
	color:black;
}
.lhh-banner__img{
  width:100%;
  height:120px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items: center;
  justify-content: center;
}
/* Partners carousel */
.lhh-partners{
  margin-top: 35px;
  padding: 25px 0;
}

.lhh-partners__carousel{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lhh-partners__viewport{
  overflow: hidden;
  width: 100%;
  scroll-behavior:smooth;
}

.lhh-partners__track{
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
}

.lhh-partners__item {
  flex: 0 0 calc((100% - (24px * 4)) / 5);
  max-width: calc((100% - (24px * 4)) / 5);
  min-width: calc((100% - (24px * 4)) / 5);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.lhh-partners__item img {
  display: block;
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
}
.lhh-partners__item:hover{ opacity: 1; transform: translateY(-1px); }
.lhh-partners__item:hover img{ filter: grayscale(0%); }

/* nav buttons */
.lhh-partners__nav{
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  line-height: 34px;
  text-align: center;
  font-size: 20px;
  opacity: .9;
}

.lhh-partners__nav[disabled]{
  opacity: .35;
  cursor: default;
}

@media (max-width: 992px){
  .lhh-partners__item{
    flex: 0 0 calc((100% - (24px * 2)) / 3);
    max-width: calc((100% - (24px * 2)) / 3);
    min-width: calc((100% - (24px * 2)) / 3);
  }
}

/* Мобилка */
@media (max-width: 768px){
  .lhh-partners__track{
    gap: 16px;
  }

  .lhh-partners__item{
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
    height: 72px;
  }

  .lhh-partners__item img{
    max-height: 40px;
  }
}

/* Responsive */
@media (max-width: 992px){
  .lhh__grid{grid-template-columns:1fr;}
}
@media (max-width: 768px) {
  .lhh {
    padding-top: 20px;
    padding-bottom: 30px;
 	
  }

  .lhh > .container {
    padding: 0 15px;
  }

  .lhh__grid {
    gap: 15px;
  }

  /* Search card */
  .lhh-card {
    padding: 24px 16px;
  }

  .lhh-reg {
    gap: 24px;
  }

  .top-lhh-reg {
    flex-direction: column;
    gap: 10px;
  }

  .lhh-input-wrap {
    width: 100%;
  }

  .lhh-btn {
    width: 100%;
  }

  .lhh-btn--full {
    width: 100%;
  }

  /* Banners */
  .lhh__banners {
    gap: 15px;
  }

  .lhh-banner {
    height: auto;
    max-height: none;
    padding: 20px 16px;
    grid-template-columns: 1fr 100px;
    gap: 10px;
  }

  .lhh-banner__text {
    max-width: none;
    gap: 10px;
  }

  .lhh-banner__title {
    font-size: 18px;
  }

  .lhh-banner__kicker {
    font-size: 13px;
  }

  .lhh-banner__img {
    height: 90px;
  }

  .lhh-banner__img img {
    width: 90px;
  }

  /* Partners */
  .lhh-partners {
    margin-top: 20px;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .lhh-banner {
	display:flex;
    justify-content: space-between;
    align-items: center;
  }
  .lhh-banner__img {
	width:auto;
}

  .lhh-banner__title {
    font-size: 16px;
  }
}
