.navbar--news {
  background-color: #ffdcd2;
  text-align: center;
  padding: 10px 0px;
  font-size: 14px;
  font-weight: 300;
}
@media only screen and (max-width: 480px) {
  .navbar--news {
    font-size: 12px;
  }
}
.navbar--news a {
  font-weight: 500;
  text-decoration: none;
  color: #ff6435;
  display: inline-flex;
  align-items: center;
}
.navbar--news span {
  margin-right: 2px;
}

.navbar--main {
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 20px rgba(41, 42, 43, 0.05);
}
.navbar--main--left {
  display: flex;
  align-items: center;
}
.navbar--main--left img {
  margin-right: 14px;
}
.navbar--main--left input {
  padding: 11px 12px;
  border-radius: 4px;
  border: 1px solid #333;
  width: 250px;
}
@media only screen and (max-width: 480px) {
  .navbar--main--left input {
    display: none;
  }
}
.navbar--main--middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .navbar--main--middle {
    display: none;
  }
}
.navbar--main--middle a {
  margin-right: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #434c5d;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
.navbar--main--middle a:hover {
  color: #ff7e36;
}
.navbar--main--middle span {
  margin-right: 5px;
}
.navbar--main--right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .navbar--main--right {
    display: none;
  }
}
.navbar--main--right--logIn {
  margin-right: 20px;
  padding: 10px 25px;
  background-color: transparent;
  color: #ff6435;
  border: 1.3px solid #ff6435;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.navbar--main--right--logIn:hover {
  color: #ff7e36;
}
.navbar--main--right--logIn:active {
  transform: translateY(2px);
}
.navbar--main--right--signup {
  padding: 10px 35px;
  border-radius: 8px;
  border: none;
  color: white;
  background-color: #ff6435;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.navbar--main--right--signup:hover {
  background-color: #ff7e36;
}
.navbar--main--right--signup:active {
  transform: translateY(2px);
}
.navbar--main--mb {
  display: none;
}
@media only screen and (max-width: 480px) {
  .navbar--main--mb {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}
.navbar--main--mb p {
  margin-right: 10px;
  color: #ff6435;
}
.navbar--main--mb--burger {
  font-size: 20px;
}

.card--container {
  display: flex;
  flex-wrap: wrap;
}

.card {
  display: flex;
  flex: 1 0 30%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .card {
    flex: 1 0 100%;
  }
}
.card:not(:nth-child(3n)) {
  margin-right: 30px;
}
@media only screen and (max-width: 480px) {
  .card:not(:nth-child(3n)) {
    margin-right: 0px;
  }
}
.card--left {
  background-color: #dac3cd;
  color: #434c5d;
  flex: 1;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-top: 20px;
  font-size: 10px;
  font-weight: 400;
  display: flex;
  justify-content: center;
}
.card--right {
  background-color: #d1b3c0;
  flex: 10;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 25px 15px;
}
.card--right--top {
  display: flex;
  justify-content: space-between;
}
.card--right--top--texts {
  color: #434c5d;
}
.card--right--top--texts p:first-child {
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  .card--right--top--texts p:first-child {
    font-size: 12px;
  }
}
.card--right--top--texts p:last-child {
  font-size: 12px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 480px) {
  .card--right--top--texts p:last-child {
    font-size: 12px;
  }
}
.card--right--top--texts h1 {
  font-size: 24px;
}
@media only screen and (max-width: 480px) {
  .card--right--top--texts h1 {
    font-size: 18px;
  }
}
.card--right--top--img img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
@media only screen and (max-width: 480px) {
  .card--right--top--img img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
  }
}
.card--right--bottom {
  display: flex;
  justify-content: space-between;
  color: #434c5d;
}
.card--right--bottom--stats p:first-child {
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  .card--right--bottom--stats p:first-child {
    font-size: 12px;
  }
}
.card--right--bottom--stats p:last-child {
  font-size: 25px;
  font-weight: 400;
}
@media only screen and (max-width: 480px) {
  .card--right--bottom--stats p:last-child {
    font-size: 18px;
  }
}

.cta {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 100px;
  background-color: white;
  padding-bottom: 40px;
}
.cta h1 {
  padding-top: 40px;
  margin-bottom: 15px;
  color: #434c5d;
  font-size: 25px;
  font-weight: 600;
}
.cta p {
  color: #434c5d;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
}
.cta button {
  padding: 10px 35px;
  border-radius: 5px;
  border: none;
  color: white;
  background-color: #ff6435;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.cta button:hover {
  background-color: #ff7e36;
}
.cta button:active {
  transform: translateY(2px);
}

.last--deck > h1 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
  color: #434c5d;
  font-weight: 600;
  font-size: 35px;
}
@media only screen and (max-width: 480px) {
  .last--deck > h1 {
    font-size: 25px;
  }
}
.last--deck--cta {
  display: flex;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta {
    flex-direction: column;
  }
}
.last--deck--cta--left {
  background-color: #eff3f6;
  margin-right: 10px;
  flex: 1;
  display: flex;
  padding: 84px 64px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--left {
    padding: 42px 42px;
  }
}
.last--deck--cta--left--image img {
  height: 280px;
  position: absolute;
  bottom: 0px;
  left: 20px;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--left--image img {
    height: 200px;
    left: -20%;
  }
}
.last--deck--cta--left--text {
  padding-left: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 260px;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--left--text {
    padding-left: 0px;
    height: 200px;
  }
}
.last--deck--cta--left--text h1 {
  font-size: 28px;
  color: #434c5d;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--left--text h1 {
    font-size: 22px;
  }
}
.last--deck--cta--left--text p {
  color: #434c5d;
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--left--text p {
    font-size: 14px;
  }
}
.last--deck--cta--left--text button {
  padding: 10px 35px;
  border-radius: 5px;
  border: none;
  color: white;
  background-color: #ff6435;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--left--text button {
    font-size: 14px;
  }
}
.last--deck--cta--left--text button:hover {
  background-color: #ff7e36;
}
.last--deck--cta--left--text button:active {
  transform: translateY(2px);
}
.last--deck--cta--right {
  background-color: #2b3865;
  margin-left: 10px;
  flex: 1;
  padding: 84px 64px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--right {
    text-align: center;
    padding: 42px 35px;
    margin-top: 20px;
    margin-left: 0px;
  }
}
.last--deck--cta--right h1 {
  font-size: 28px;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--right h1 {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--right p {
    font-size: 14px;
  }
}
.last--deck--cta--right button {
  padding: 10px 35px;
  border-radius: 5px;
  border: none;
  color: white;
  background-color: #ff6435;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
@media only screen and (max-width: 480px) {
  .last--deck--cta--right button {
    font-size: 14px;
    margin-top: 20px;
  }
}

.footer {
  background-color: white;
  padding-top: 110px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 480px) {
  .footer {
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}
.footer--top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .footer--top {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .footer--top--info {
    flex: 1 0 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .footer--top--links {
    flex: 1 0 50%;
    margin-bottom: 20px;
  }
}
.footer--top h1 {
  color: #a0afc0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
}
@media only screen and (max-width: 480px) {
  .footer--top h1 {
    margin-bottom: 14px;
    font-size: 15px;
  }
}
.footer--top a {
  display: block;
  text-decoration: none;
  color: #434c5d;
  margin-bottom: 12px;
  font-size: 14px;
}
@media only screen and (max-width: 480px) {
  .footer--top a {
    font-size: 12px;
  }
}
.footer--top button {
  padding: 10px 35px;
  border-radius: 5px;
  border: none;
  color: white;
  background-color: #ff6435;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.footer--top button:hover {
  background-color: #ff7e36;
}
.footer--top button:active {
  transform: translateY(2px);
}
.footer--bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .footer--bottom {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 480px) {
  .footer--bottom--links {
    text-align: center;
    margin-top: 15px;
  }
}
.footer--bottom--links a {
  text-decoration: none;
  margin-right: 15px;
  color: #bcccd8;
  font-size: 14px;
  transition: all 0.3s;
}
.footer--bottom--links a:hover {
  color: #ff6435;
}
.footer--bottom--ln {
  display: flex;
  align-items: center;
}
.footer--bottom--ln img {
  height: 30px;
  margin-right: 15px;
}
.footer--bottom--ln p {
  color: #bcccd8;
  margin-right: 10px;
}
.footer--bottom--ln--icon {
  color: #bcccd8;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f7fafc;
  padding-bottom: 100px;
}

.container {
  padding: 30px 50px;
}
@media only screen and (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }
}

.tags--breadcrumbs {
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .tags--breadcrumbs {
    font-size: 13px;
  }
}
.tags--breadcrumbs a {
  text-decoration: none;
  color: #76849a;
  margin-right: 5px;
  font-weight: 400;
}
.tags--breadcrumbs span {
  color: #7c8a9f;
  font-weight: 400;
}
.tags--breadcrumbs span:last-child {
  color: #a0aec0;
}
.tags--chips {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  .tags--chips {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.tags--chips a {
  background-color: #e2e8f0;
  text-decoration: none;
  color: #718096;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 20px;
}
@media only screen and (max-width: 480px) {
  .tags--chips a {
    font-size: 12px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
}

.header {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 480px) {
  .header {
    margin-top: 50px;
  }
}
.header h1 {
  margin-bottom: 20px;
  color: #434c5d;
  font-size: 35px;
  font-weight: 600;
}
.header p {
  color: #434c5d;
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.7;
}
.header p a {
  text-decoration: none;
  color: #fe8858;
}
.header button {
  padding: 10px 35px;
  border-radius: 5px;
  border: none;
  color: white;
  background-color: #ff6435;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.header button:hover {
  background-color: #ff7e36;
}
.header button:active {
  transform: translateY(2px);
}

.search h1 {
  text-align: center;
  font-weight: 600;
  font-size: 36px;
  color: #434c5d;
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .search h1 {
    font-size: 28px;
  }
}
.search--input {
  display: flex;
  justify-content: center;
  align-items: center;
}
.search--input input {
  padding: 18px 24px;
  width: 40%;
  border: 2px solid #434c5d;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  box-shadow: 0 30px 30px rgba(48, 96, 123, 0.1), 0 0 15px rgba(57, 84, 104, 0.1);
}
@media only screen and (max-width: 480px) {
  .search--input input {
    width: 70%;
    padding: 12px 18px;
  }
}
.search--input input::placeholder {
  font-family: "Poppins", sans-serif;
  color: #b3bfcc;
}
.search--input button {
  padding: 18px 30px;
  border: 2px solid transparent;
  color: white;
  background-color: #434c5d;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  font-weight: 600;
  box-shadow: 0 30px 30px rgba(48, 96, 123, 0.1), 0 0 15px rgba(57, 84, 104, 0.1);
}
@media only screen and (max-width: 480px) {
  .search--input button {
    padding: 12px 18px;
  }
}