@import url("./fonts.css");

* {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background: #f1f1f1;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

.header {
  background: url("../img/header.png") no-repeat center center / cover;
  background-color: #fff;
  height: 500px;
  border-radius: 14px;
  margin-top: 30px;
  padding-left: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 25px;
  position: relative;
  z-index: 1;
}

.header__title {
  width: 332px;
  font-family: "Rubik";
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #464748;
}

.header__text {
  width: 314px;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  color: #696868;
}

.header__btn {
  width: 211px;
  background: #3fa5d5;
  text-align: center;
  padding: 7px 0;
  border-radius: 30px;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}

.header::after {
  content: "";
  display: block;
  width: 100px;
  height: 50px;
  background: #3fa5d5;
  position: absolute;
  z-index: -1;
  top: 150px;
}

.main__cards {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  column-gap: 30px;
}

.main__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  width: 255px;
  background: #ffffff;
  padding: 32px 0;
  border-radius: 15px;
}

.main__card__title {
  font-family: "Rubik";
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #2a86b1;
}

.main__card__icon {
  color: #3fa5d5;
}

.main__card__btn {
  background: #3fa5d5;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  color: #fff;
  padding: 7px 65px;
  border-radius: 30px;
}

.main__descriptions {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-top: 48px;
}
.main__desc {
  width: 825px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.main__desc__title {
  color: #686868;
  margin-bottom: 7px;
  font-family: "Rubik";
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
}

.main__desc__text {
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  color: #545454;
}

.main__items {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.main__items__title {
  font-family: "Rubik";
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #686868;
  margin-bottom: 7px;
}

.main__items__card {
  display: flex;
  column-gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.main__items__desc {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.main__items__desc h4 {
  color: #323232;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 17px;
  line-height: 94%;
  letter-spacing: 0%;
  text-align: justify;
}
.main__items__desc p {
  color: #000000;
  font-family: "Rubik";
  font-weight: 300;
  font-size: 14px;
  line-height: 94%;
  letter-spacing: 0%;
}

.footer {
  background-color: #3fa5d5;
  margin-top: 44px;
  padding: 40px 0;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__content h2 {
  color: #fff;
  font-family: "Rubik";
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer__lists {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 15px;
}

.footer__link {
  color: #fff;
  font-family: "Rubik";
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.footer__link2 {
  color: #fff;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.aside {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 30px;
  row-gap: 70px;
  position: fixed;
  top: 0;
  height: 100%;
}

.aside__icons{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 55px;
}

.aside__icons li i{
  color: #2A86B1;
}