* {
  margin: 0;
  padding: 0;
}

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

a,
button {
  cursor: pointer;
}

svg {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
}

ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 1920px;
  margin: 0 auto;
}

.contacts__logo {
  width: 296px;
  height: 33px;
}

.contacts__recall, .contacts__location {
  color: #2b7bc6;
  font-size: 14px;
  position: relative;
  padding-bottom: 2.5px;
  border-bottom: 1px dashed #2b7bc6;
}

.contacts {
  padding: 0 190px;
  padding-top: 45px;
  padding-bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e1eefb;
}
.contacts__location::before {
  content: "";
  width: 10px;
  height: 13px;
  background-image: url("../../img/location.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.contacts__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 41px;
}
.contacts__tel {
  color: black;
  font-size: 21px;
  font-weight: 500;
}
.contacts__recall::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../../img/arrow_down.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
}
.contacts__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #2b7bc6;
}

.menu {
  background-color: #e1eefb;
  padding: 20px 190px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.menu__list {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 15%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.menu__item {
  padding: 20px 24px;
}
.menu__item:nth-child(1) {
  background-color: #004c93;
  padding-left: 70px;
  position: relative;
}
.menu__item:nth-child(1)::before {
  content: "";
  background-image: url("../../img/burger.svg");
  width: 18px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}
.menu__item:nth-child(2) {
  background-color: #1061ab;
}
.menu__item:nth-child(3) {
  background-color: #2b7bc6;
}

.search {
  flex-grow: 1;
  background-color: #fff;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search__input {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background-color: inherit;
  flex-grow: 1;
}
.search__input:focus {
  outline: none;
}
.search__input:placeholder-shown {
  color: #536067;
}

.search__button {
  width: 22px;
  height: 24px;
  border: none;
  background-color: inherit;
}

.search__icon {
  fill: #2b7bc6;
}

.user {
  background-color: #f1f8ff;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.user__item {
  position: relative;
}
.user__item.marker::after {
  content: "4";
  text-align: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #2b7bc6;
  background-color: #ffd600;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.user__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #2b7bc6;
  position: relative;
}

.banner {
  background-color: #2b7bc6;
}

.slider {
  padding: 20px;
  width: 1040px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__button {
  background-color: inherit;
  border: none;
}
.slider__button.back {
  transform: rotate(180deg);
}
.slider__wrapper {
  flex-grow: 1;
}