@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100%;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #babbbf;
  border-radius: 90px;
}

::-webkit-scrollbar-track {
  background-color: lightgray;
  border-radius: 90px;
}

.fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 64px;
  background: white;
  padding: 0 20px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(32, 33, 37, .1);
  box-shadow: 0 2px 6px 0 rgba(32, 33, 37, .1);
}

.header__menu {
  display: flex;
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.header__logo img {
  cursor: pointer;
}

ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #5f6368;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

ul li span {}

.header__button {
  display: flex;
  align-items: center;
}

.header__button button {
  background: #1967d2;
  color: white;
  border: none;
  border-radius: 90px;
  padding: 0 25px;
  height: 46px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.content {
  padding-top: 64px;
  width: 100%;
}

.content__wrap {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.content__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 0 40px;
}

.hero__logo {
  margin-top: 20px;
  margin-bottom: 30px;
}

.hero__heading {
  font-size: 3.75rem;
  text-align: center;
  margin-bottom: 20px;
}

.hero__paragraph {
  color: #3c4043;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 500;
}

.hero__paragraph a {
  color: #1967d2;
}

.steps__section {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 0 40px;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.step__wrapper {
  width: 100%;
  padding-top: 30px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  border: 1px solid #dbdce0;
  -webkit-box-shadow: 8px 8px 0 rgba(32, 33, 37, .1);
  box-shadow: 8px 8px 0 rgba(32, 33, 37, .1);
  border-radius: 4px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/span 4;
  position: relative;
  overflow: hidden;
  max-width: 390px;
  min-width: 280px;
}

.step__number {
  margin-bottom: 8px;
  padding: 0 30px;
  color: #202125;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.step__title {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 16px;
  padding: 0 30px;
}

.step__paragraph {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #3c4043;
  font-family: "Roboto", sans-serif;
  letter-spacing: .1px;
  margin-bottom: 8px;
  padding: 0 30px;
}

.step__paragraph span {}

.step__image {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

.step__wrapper a {
  padding: 0 30px;
  color: #1967d2;
  font-size: .75rem;
  line-height: 1.25rem;
}

/*submenu item*/

.menu {
  list-style-type: none;
}

.menu li {
  position: relative;
}

.menu li:hover .submenu {
  display: flex;
  flex-direction:column;
  
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px 0 rgba(32,33,37,.1);
  box-shadow: 0 2px 6px 0 rgba(32,33,37,.1);
  border-radius: 0 8px 8px;
  gap: 0px;
}

.submenu li {
  display: block;
  width:100%;
  padding: 16px;
  border-radius: 5px;
}

.submenu li:hover {
	background-color:#f8f9fb;
	
}