@font-face {
  font-family: "Quicksand";
  src: url("../assets/fonts/Quicksand/Quicksand-Regular.woff") format("woff"), url("../assets/fonts/Quicksand/Quicksand-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto/Roboto-Regular.woff") format("woff"), url("../assets/fonts/Roboto/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito/nunito-sans-v19-latin-regular.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

html,
body {
  font-size: 16px;
  font-family: "Roboto";
  background: #fff;
  color: #16133D;
}

.body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}

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

.header {
  padding: 22px 0;
  border-bottom: 1px solid #EFEEF3;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 35px;
  font-weight: 500;
  font-family: "Quicksand";
  color: #16133D;
}

.section {
  padding: 100px 0;
}

.title_1 {
  font-family: "Nunito";
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
}

.title_3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #7690A8;
  text-transform: uppercase;
}

.title_4 {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 24px;
  line-height: 0.887;
  letter-spacing: 0.2px;
}

.text {
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cards_item {
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E5EAF4;
}
.cards_item:hover {
  border: 1px solid #3DB370;
}
.cards_item:hover .cards_icon_hover {
  display: block;
}
.cards_item:hover .cards_icon {
  display: none;
}
.cards_icon, .cards_icon_hover {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(21, 101, 216, 0.1);
  padding: 14px 20px;
  margin-bottom: 30px;
}
.cards_icon_hover, .cards_icon_hover_hover {
  display: none;
}

.btn {
  background: transparent;
  color: #3DB370;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 600;
}
.btn:hover {
  color: aqua;
}

.footer {
  background-color: #16133D;
  padding: 40px 0;
}

.logo_footer {
  margin-bottom: 40px;
  color: #fff;
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.social__link {
  width: 38px;
  height: 38px;
  display: inline-block;
  padding: 9px 9px;
  background-color: #EFEEF3;
  border-radius: 5px;
  position: relative;
}
.social__link:hover .social__icon {
  fill: #3DB370;
}
.social__icon {
  fill: #0D0D0D;
}/*# sourceMappingURL=main.css.map */