:root {
  --primary-color: #34384A;
  --secondary-color: #fff;
  --main-background-color: #E7F5FF;
  --button-background-color: #1B57ED;
  --blue: rgb(209, 235, 255);
  --light-blue: rgb(229, 245, 255);
}

@font-face {
  font-family: "Poppins";
  src:
    local("Poppins"),
    url("../fonts/Poppins-Regular.ttf") format("ttf");
}

* {
  text-decoration: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
}

.flex {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.button {
  background-color: var(--button-background-color);
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
  padding: 9px 20px;
  border-radius: 24px;
  outline: none;
  border: none;
}
.container {
  width: calc(100% - 40px);
  margin: 0 auto;

  @media (min-width: 768px) {
    width: calc(100% - 90px);
  }

  @media (min-width: 1280px) {
    width: 1256px;
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
}


.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.footer-bottom {
  padding: 20px 0;
  background-color: var(--button-background-color);
}


.footer-bottom .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  @media (min-width: 768px) {
    flex-wrap: nowrap;
    gap: 0;
  }
}

.footer-links {
  justify-content: center;
  gap: 10px;

  @media (min-width: 768px) {
    gap: 20px;
  }
}

.footer-link {
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
}

h1 {
  font-size: 18px;
  font-weight: 600;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

dt, dd {
  font-size: 16px;
  line-height: 1.4;
}

dt {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

ul, ol {
  margin: 10px 0 10px 20px;
}
