:root {
--accent: #174180;
--accent-light: #3764a7;
--pure-white: #fff;
}

html {
box-sizing:border-box;
scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  color: var(--accent, #174180);
}

.container {
  width: 1140px;
 margin: 0 auto;
 padding: 0 15px;


}
.header {
  background-color: var(--accent, #174180);
}

.header a {
  color: var(--pure-white, #fff);
  text-decoration: none;
}

.header-nav {
   display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;

}

.header-logo {
  width: 20%;
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  letter-spacing: 3px;
 
}
.header-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.header-menu {
  width: 78%;
  display: flex;
    margin: 0;
  padding: 0;
  list-style: none;
  
}

.header-menu-link {
  padding: 15px;
font-size: 16px;
line-height: 16px;
padding: 15px 15px;
text-transform: uppercase;
transition: background-color 0.4s;

}
.header-menu-link:hover {
  background-color: var(--accent-light);
}