* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
section {
  padding: 12px 140px 12px 140px;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
header {
  background-color: #f2f4f7;
  top: 0;
  z-index: 99;
}
.header {
  padding: 12px 140px 12px 140px;
}
.header .logo {
  max-width: 148px;
  max-height: 48px;
  cursor: pointer;
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.header .navbar {
  display: flex;
  align-items: center;
  gap: 35px;
  z-index: 99;
  overflow: hidden;
}
.header .navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.header .navbar li a {
  color: #282828;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.header nav li a.active {
  color: #282828;
  font-weight: 700;
  line-height: 24px;
}
.language-switcher {
  position: relative;
  cursor: pointer;
}
.switcher {
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(228, 228, 231, 1);
  border-radius: 5px;
  padding: 4px 9px;
}
.language-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  border: 1px solid rgba(228, 228, 231, 1);
  border-radius: 5px;
  background-color: #fff;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.language-menu span {
  width: 55px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.language-menu.active {
  opacity: 1;
  visibility: visible;
}
.responsive-language-container {
  display: none;
}
.responsive-language {
  padding: 1px;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: end;
  border-radius: 5px;
  border: 1px solid rgba(228, 228, 231, 1);
  background-color: rgba(228, 228, 231, 1);
  cursor: pointer;
}
.responsive-language .language-item {
  padding: 15px;
  background-color: #fff;
}
.responsive-language .language-item.active {
  background-color: rgba(228, 228, 231, 1);
}
.language-item:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.header .call {
  background: #34455a;
  min-width: 148px;
  height: 46px;
  border-radius: 40px;
}
.header .call a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.header .toggle i {
  font-size: 19px;
}
.header .toggle {
  display: none;
}
@media (max-width: 1200px) {
  .header {
    padding: 12px 24px !important;
  }
}

@media (max-width: 1054px) {
  .header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f4f4f5;
    width: 100%;
    display: none;
    padding-bottom: 50px;
  }
  .header .navbar.active {
    display: block;
  }
  .header .navbar ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 12px 24px;
  }
  .header .toggle {
    display: block;
  }
  .language-switcher {
    display: none;
  }
  .responsive-language-container {
    display: block;
  }
}

@media (max-width: 450px) {
  .header .call {
    min-width: 100px;
    height: 30px;
  }
  .header {
    gap: 12px;
  }
}
