@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:300,600");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
  scroll-behavior: smooth;
}
/* Базовые настройки */
:root {
  --primary-color: #392f5a;
  --secondary-color: #fefadc;
  --font-main: "Czizh Wing", sans-serif;
  --font-text: "Inter", sans-serif;
}

/* Общие стили */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-text);/
}

header {
  height: 15vh;      
  position: relative;               
  z-index: 10;                   
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

a, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/* navbar*/

.nav-bar {
  width: 100%;
  height: 100px;
  background: -webkit-linear-gradient(90deg, rgb(239, 192, 175),rgb(220, 125, 91),);/* Chrome 10-25, Safari 5.1-6 */            
  background: linear-gradient(90deg, rgb(239, 192, 175),rgb(220, 125, 91));/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */    
  border-radius: 0px 0px 20px 20px;   /* Изменено */
  overflow: hidden;
  display: flex ;
  justify-content: space-between;
}

.nav-bar .overlap-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 207px;
  height: 48px;
  top: 26px;
  left: 40px;
}

.nav-bar .overlap-group {
  position: relative;
  width: 227px;
  height: 58px;
  top: -8px;
  left: -1px;
}

.nav-bar .image {
  position: absolute;
  width: 227px;
  height: 38px;
  margin-top: 20px;
  margin-left: 30px;
}

.nav-bar .text-wrapper {
  position: absolute;
  width: 225px;
  top: 60px;
  left: 30px;
  font-family: "Inter", Helvetica;
  font-weight: 300;
  color: #fefadc;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/* кнопки */

.nav-bar .group {
  position: relative;
  width: 631px;
  height: 67px;
  top: 17px;
  right: 40px;
}

.nav-bar .div-wrapper {
  display: inline-flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 6px;
  background-color: #392f5a;
  border-radius: 20px;
  border: 2px solid;
}

.nav-bar .div {
  position: relative;
  width: fit-content;
  margin-top: -7.00px;
  margin-bottom: -3.00px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #fefadc;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.nav-bar .div-wrapper-2 {
  display: inline-flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 38px;
  left: 0;
  border-radius: 20px;
  border: 2px solid;
  border-color: #392f5a;
}

.nav-bar .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -7.00px;
  margin-bottom: -3.00px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #392f5a;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.nav-bar .div-wrapper-3 {
  display: inline-flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 38px;
  left: 274px;
  background-color: #392f5a;
  border-radius: 20px;
  border: 2px solid;
}

.nav-bar .div-wrapper-4 {
  display: inline-flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 38px;
  left: 399px;
  border-radius: 20px;
  border: 2px solid;
  border-color: #392f5a;
}

.nav-bar .div-wrapper-5 {
  display: inline-flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 374px;
  background-color: #392f5a;
  border-radius: 20px;
  border: 2px solid;
}

.nav-bar .div-wrapper-6 {
  display: inline-flex;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 267px;
  border-radius: 20px;
  border: 2px solid;
  border-color: #392f5a;
}

header {
    position: -webkit-sticky;
    position: sticky;
}