html{
  box-sizing: border-box;
}

*,
*::after,
*::before{
  box-sizing: inherit;
}
a{
  text-decoration: none;
  color:inherit;
  font-style: normal;
}

span{
  font-style: normal;
}

button{
  padding: 0;
  border: 0;
  background-color: transparent;
}

ul{
  list-style: none;
}

body{
  color: #001B2E;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  position: relative;
  /* font-family: "Montserrat", sans-serif; */
}
.btn{
  width: 222px;
  height: 64px;
  background-color: #B99B7B;
  color: #fff;
  border-radius: 32px;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}
.container{
  max-width: 1296px;
  margin: 0 auto;
  padding: 0;
}

.header{
  box-shadow: 0px 4px 10px rgba(0, 49, 83, 0.15);
}

.header__top-background{
background-color: #E5E8ED;
}

.header__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 46px;
  color: #6C788D;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
}

.header__address{
  width: 780px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__address-info{
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__top-ref-list{
  width: 234px;
  display: flex;
  justify-content: space-between;
}

.header__media-list{
  width: 144px;
  display: flex;
  justify-content: space-between;
}

.header__btn{
  display: none;
}

.header__inner{
  height: 108px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__menu-list{
  width: 641px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__menu-item{
  display: flex;
  align-items: center;
}

.menu__btn{
  display: flex;
  width: 16px;
  height: 12px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-right: 8px;
}

.menu__btn span{
  background-color: #000;
  height: 2px;
  width: 100%;
}

.header__menu-label{
  margin-right: 6px;
}
.header__menu-label-close{
  color: #B99B7B;
}

.service-open {
  width: 10px;
  height: 5px;
  position: relative;
}

.service-open::after {
  bottom: 0;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: solid #001B2E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.service-close::after {
  border: solid #B99B7B;
  border-width: 2px 0 0 2px;
  top: 0;
}
.menu-item-btn{
  position: relative;
}

.menu__service-list {
  height: 264px;
  width: 240px;
  transform: translateY(0%);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap:8px;
  position: absolute;
  left: -20px;
  right: 0;
  top: 65px;
  bottom: 0;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.menu__service-list.menu__service-close{
  display: none;
}
.menu__service-item{
  padding-left: 16px;
  padding-right: 16px;
  height: 40px;
  position: relative;
}
.menu__service-item:hover{
  background-color: #E5E8ED;
}
.menu__service-link{
  position: absolute;
  top: 20%;
}
.header__ref{
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media(max-width: 1380px){
  .container{
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1296px) {
  .header__top{
    font-size: 12px;
    line-height: 14px;
  }
  .header__top-ref-list{
    width: 200px;
  }
  .header__address{
    width: 650px;
  }
  .header__ref-list{
    width: 200px;
  }
}

@media (max-width: 1120px) {
  .header__top{
    display: none;
  }
  .header__menu{
    display: none;
  }
  .header__btn{
    display: flex;
    align-items: center;
    width: 84px;
    justify-content: space-between;
  }
  
}

@media (max-width: 450px) {
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }
  .logo__image {
    width: 103px;
    height: 50px;
  }
}
