@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --accent: #073ddc;
  --accentDark: #c61f15;
  --dark: #111;
  --white: #fff;
  --grey: #676767;
  --llight: #dadada;
  --black: #000;

  --Font: "Inter", sans-serif;
  --Container: 1344px;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 2rem;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: var(--Font);
  font-style: normal;
  color: var(--white);
  background-color: var(--dark);

}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  overflow-wrap: break-word;
  position: relative;
  z-index: 5;
}

a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}

.color__accent {
  color: var(--accent);
}

.cover {
  object-fit: cover;
}

.container {
  max-width: var(--Container);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  padding: 0 -15px;
}

section {
  margin-bottom: 2rem;
}

.btn {
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 2.25rem;
  padding: 1.2rem 1.8rem;
  font-size: 1rem;
  letter-spacing: -0.03rem;
  transition: all 0.3s;
}

.btn__icon {
  flex-shrink: 0;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--accentDark);
  gap: 0.9rem;
  padding: 1.2rem 1.75rem;
}

.btn:hover .btn__icon {
  transform: rotate(-90deg);
  transform-origin: center;
}

/* Header */

.header__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}

.logo::first-letter {
  color: var(--accent);
}

.nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1rem;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.lang {
  display: inline-flex;
  font-size: 0.8rem;
  color: var(--white);
  margin-left: 1rem;
  background: var(--accent);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  border: solid 1px transparent
}

.lang:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  border-radius: 1.6rem;
  background-color: var(--dark);
  margin: 0 1rem 4rem;
}

.hero__content {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 3rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  bottom: 0;
  z-index: 5;
}

.hero__description {
  font-size: 1.2rem;
  max-width: 600px;
}

.hero__accent {
  font-size: 12.5vw;
  font-weight: 700;
  line-height: 1;

}

.hero__img {
  object-fit: cover;
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.about {
  margin-bottom: 4rem;
}

.column__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2rem 2rem 4rem;
  gap: 2rem;
}


.column__two.p_0 {
    padding-left: 0;
    padding-right: 0;
}

.column__tree {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.count {
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.text__accent {
  border: solid 1px var(--white);
  text-transform: uppercase;
  padding: 2rem;
  margin-bottom: 4rem;
  border-radius: 1.2rem;

}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.075rem;
  color: var(--accent);
  padding-left: 1rem;
}

.title-column {
  padding-left: 0;
  margin-bottom: 1rem;
}





.column__item--about {
  border: solid 1px var(--white);
  border-radius: 1.2rem;
  padding: 1rem;
 
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-2 {
  padding-left: 2rem;
}

.column__item h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.045rem;
}

.column__item p {
  margin-bottom: 3rem;
  opacity: 0.7;
}

.why__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img__block {
  display: flex;
  justify-content: flex-end;
}

.call_to {
  position: relative;
  overflow: hidden;
}

.call_to img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;

}







#benefits {
  margin-bottom: 4rem;
}

.title-benefits {
  margin-bottom: 2rem;
  max-width: 594px;
}

.list__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: solid 1px rgb(255 255 255 / 17%);
  padding-top: 1rem;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-direction: column;
}

.list__item-wrap {
  flex-wrap: wrap;
}

.list__info {
  display: flex;
  flex-shrink: 0;
  gap: 0.4rem;
  padding-left: 1rem;
  min-width: 168px;
}

.list__info .count {
  flex-shrink: 0;
  opacity: 1;
}

.list__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045rem;
}

.list__item-wrap .list__title {
  min-width: 136px;
  font-size: 1.2rem;
}

.list__content {
  max-width: 586px;
}

.list__content--sm {
  max-width: 380px;
  font-size: 0.9rem;
}

#values .list__item {
  flex-direction: row;
  flex-wrap: wrap;
}

#values .subtitle {
  margin-bottom: 2rem;
  margin-top: -2rem;

}

.subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 1rem 1rem 1.2rem;
}

.consultation {
  background: url(../img/supply.jpg) no-repeat center / cover;
  min-height: 442px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 8rem;
  background-attachment: fixed;
  border-radius: 1.2rem;
  border: solid 1px var(--white);
}



.consultation__title {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.075rem;
  text-align: center;
}

.consultation__link {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--accent);
  transition: all 0.3s;
}

.consultation__link:hover {
  transform: scale(1.1);
  transform-origin: center;
  background-color: var(--accentDark);
}

.cta {
  background: url(../img/consultation_2.jpg) no-repeat center / cover;
  background-attachment: fixed;
}

hr {
  border: none;
  border-top: solid 1px #dadada1f;
  padding: 0;
  margin: 0;
  height: 1px;
  margin-bottom: 4rem;
}

.roundet {
  border-radius: 1.2rem;
}

#contacts .column__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

#contacts .contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 1rem 0;
  border-top: solid 1px rgb(255 255 255 / 17%);
}

.link__top {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 1px var(--accent);
}

.link__top svg {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  header {
    border-top: solid 2px var(--accent);
  }



  .header__top {
    margin-bottom: 0;
  }

  .nav__top {
    align-items: start;
  }

  .nav__list {
    flex-direction: column;
  }

  .hero__content {
    font-size: 1.2rem;
    max-width: none;
  }



  .about {
    margin-bottom: 1rem;
  }

  .column__two,
  .column__tree {
    grid-template-columns: auto;
    gap: 0;
  }
  
  .column__item--about{
       margin-bottom: 2rem;
  }
  

  .img__block {
    justify-content: center;
    padding: 2rem 0;
  }

  .choose {
    margin-bottom: 2rem;
  }

  #benefits {
    margin-bottom: 2rem;
  }

  .list__item {
    flex-direction: column;
  }

  .list__info {
    padding-left: 0;
  }

  .list__content,
  .list__content--sm {
    padding-left: 2rem;
    max-width: none;
  }

  .column__two {
    padding: 2rem 0.9rem 3rem;
  }
  

  .title {
    padding-left: 0;
  }

  .column__contact {
    margin-bottom: 2rem;
  }
}