header#masthead {
  padding: clamp(0.625rem, 0.5854rem + 0.1626vw, 0.75rem) 0;
  background-color: #EBF3FF;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

header#masthead .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home header#masthead {
  background: rgba(15, 25, 31, 0.80);
}

header#masthead.sticky {
  background-color: #EBF3FF;
  z-index: 999;
  top: 0;
  position: sticky;
}


div#mobmenu path {
  fill: #fff;
}
.sticky div#mobmenu path {
  fill: #7491CB;
}

.home .site-header .menu-item a {
  color: var(--White);
}

.site-header .menu-item a,
.home .site-header.sticky .menu-item a {
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  text-transform: uppercase;
  color: #1B1B68;
}
html {
  scroll-behavior: smooth;
}

.site-header .menu-item a:hover,
.home .site-header .menu-item a:hover {
  color: var(--Accent);
}


.main-navigation ul {
  column-gap: 34px;
}

a.btn {
  color: var(--White);
  background-color: var(--Accent);
  border-radius: 15px;
  padding: 14px 19px;
  border: 2px solid var(--Accent);
  font-weight: 600;
  line-height: 125%;
  font-size: 20px;
  transition: 0.3s;
  display: inline-flex;
  justify-content: center;
  width: 310px;
  height: 60px;
  align-items: center;
}


a.btn:hover,
.sticky a.hover-btn:hover {
  color: var(--Accent);
  background-color: transparent;
  transition: 0.3s;
}

a.hover-btn:hover {
  background-color: #0C0304;
  transition: 0.3s;
}


@media (max-width: 768px) {
  .first-obl {
    flex-direction: column;
  }

  a.hide,
  h2.block-title.first-obl-title {
    display: none;
  }

  .site-branding,
  .mob-menu-logo {
    max-width: 178px;
  }


}