@import "./normalize.css";

@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("../fonts/AktivGroteskCorp-Regular.woff2") format("woff2"),
    url("../fonts/AktivGroteskCorp-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Bicyclette Bold;
  src: url("../fonts/Bicyclette-Bold.woff") format("woff");
}

@font-face {
  font-family: Bicyclette Black;
  src: url("../fonts/Bicyclette-Black.woff") format("woff");
}

@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("../fonts/AktivGroteskCorp-Bold.woff2") format("woff2"),
    url("../fonts/AktivGroteskCorp-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("../fonts/AktivGroteskCorp-Medium.woff2") format("woff2"),
    url("../fonts/AktivGroteskCorp-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*,
*:before,
*:after,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #f7edf2 url("../img/backgrounds/landing-page.png") no-repeat center /
    cover;
  font-family: "Aktiv Grotesk Corp", sans-serif;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
  padding-bottom: 126px;
}

.front-header .navbar {
  border: none;
  background: none;
}

.front-header .navbar-header {
  float: none;
}

.front-header .navbar .container-fluid .navbar-header .navbar-brand {
  height: 48px;
  margin: 20px 0;
  float: none;
  width: 186px;
  padding: 0;
  display: block;
}

.front-header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.front-header .container-fluid::before,
.front-header .container-fluid::after {
  display: none;
}

.front-header .navbar-nav {
  display: flex;
}

.front-header .navbar-nav li a {
  padding: 7px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  outline: none;
  margin-left: 10px;
  transition: 0.2s ease-out;
}

.front-header .navbar-nav li a:hover {
  background: #3cb994;
  color: #fff;
}

.front-header .navbar-nav > li > a {
  padding: 7px 20px;
}

.main-title {
  max-width: 450px;
  margin: 40px auto 30px;
  padding: 0 20px;
}

.tags {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 37px;
  margin: 20px 0 40px;
  padding: 0 20px;
}

.switch-on-mobile {
  display: flex;
  flex-direction: column;
}

.card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
}

.card__item {
  width: 100%;
  max-width: calc(20% - 30px);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 15px;
}

.card__item:nth-child(1) .card__item-top {
  background: #3cb994;
}

.card__item:nth-child(2) .card__item-top {
  background: #00B8CF;
}

.card__item:nth-child(3) .card__item-top {
  background: #3cb994;
}

.card__item-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 85px;
  font-family: 'Bicyclette Bold';
  font-weight: bold;
  font-style: normal;
  color: #284734;
  font-size: 24px;
  text-align: center;
}

.card__item-top .text {
  margin-top: 10px;
}

.card__item-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0 20px;
  flex-direction: column;
}

.card__item-content .title {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Bicyclette Black';
  font-weight: 900;
  font-style: normal;
  color: #1C422E;
}

.card__item-content .text {
  font-size: 50px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bicyclette Black';
  font-weight: 900;
  font-style: normal;
  color: #1C422E;
}

.card__item-content .text img {
  width: 38px;
  margin-right: 8px;
}

.btns {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.btns__item {
  background: #FFFFFF;
  border-radius: 25px;
  text-decoration: none;
  font-size: 30px;
  max-width: 250px;
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 3px 10px;
  margin: 0 45px;
  font-family: 'Bicyclette Bold';
  font-weight: bold;
  font-style: normal;
  color: #1C422E;
}

.btns__item:hover {
  color: #1C422E;
  text-decoration: none;
}

.footer__top {
  display: flex;
  justify-content: center;
  background: transparent;
  margin-bottom: 50px;
}

.footer__top-wrap {
  max-width: 807px;
  display: flex;
  flex-wrap: wrap;
}

.footer__top-item {
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 15px;
  max-width: 50%;
  padding: 14px 50px;
}

.footer__top-item:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.footer__top-item:hover img {
  transform: translateX(14px);
}

/*.footer__top-item:first-child {*/
/*  border-left: 1px solid #000;*/
/*}*/

.footer__top-item img {
  width: 55px;
  transition: 0.2s ease-out;
}

.footer__bottom {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer__links {
  display: flex;
}

.footer__links-title {
  color: #FFFFFF;
  margin-right: 14px;
  font-weight: 500;
}

.footer__links-item {
  color: #fff;
  position: relative;
  margin-right: 16px;
}

.footer__links-item:hover {
  color: #000;
}

.footer__links-item:not(:last-child)::after {
  content: "•";
  position: absolute;
  top: 1px;
  right: -10px;
}

.footer__socials {
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.footer__socials-title {
  margin-right: 14px;
}

.footer__socials-item {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  line-height: 0;
}

@media (max-width: 992px) {
  .footer__bottom {
    flex-direction: column;
  }

  .footer__links {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .front-header .navbar-header {
    width: calc(100% + 30px);
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
    background: #f7edf2;
    margin: 0 -15px;
    padding: 0 15px;
  }

  .front-header .navbar .container-fluid .navbar-header .navbar-brand {
    margin: 10px 0;
  }

  .front-header .navbar-toggle {
    margin: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    padding: 0;
    color: #000;
  }

  .front-header .navbar-toggle .icon-bar {
    background: #000;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f7edf2;
    margin: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    z-index: 1;
  }

  .front-header .navbar-nav {
    flex-direction: column;
    margin: 0;
    justify-content: center;
    padding: 8px 0;
  }

  .front-header .navbar-nav li {
    margin: 8px 0;
  }

  .front-header .navbar-nav li a {
    margin-left: 0;
  }

  .tags {
    font-size: 24px;
  }

  .switch-on-mobile {
    flex-direction: column-reverse;
  }

  .card {
    flex-direction: column;
  }

  .card__item {
    max-width: 100%;
    margin: 0 0 20px;
  }

  .card__item-top {
    font-size: 16px;
  }

  .card__item-content .title {
    font-size: 14px;
  }

  .btns {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .btns__item {
    padding: 22px 20px;
    min-height: 100px;
    margin: 0 0 20px;
    font-size: 19px;
    max-width: 100%;
  }

  .footer__top-item {
    max-width: 100%;
    width: 100%;
    border-right: none;
    font-size: 22px;
    padding: 32px 30px 32px 50px;
  }

  .footer__top-item:first-child {
    border-left: none;
    border-bottom: 1px solid #000;
  }

  .footer__top-item img {
    margin-left: 20px;
  }

  .footer__bottom {
    padding: 0;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 40px 10px;
    margin-bottom: 0;
    border-bottom: 1px solid #000;
  }

  .footer__links-item {
    margin-bottom: 10px;
  }

  .footer__links-item:nth-child(2)::after {
    display: none;
  }

  .footer__socials {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .front-header .navbar .container-fluid .navbar-header .navbar-brand {
    width: 156px;
  }

  .footer__top-item {
    font-size: 13px;
  }

  .footer__top-item img {
    width: 45px;
  }

  .footer__links {
    padding-left: 10px;
    padding-right: 10px;
  }


}
.footer__socials_powered {
  text-align: right;
}
@media (max-width: 767px) {
  .footer__socials_powered {
    text-align: center!important;
  }
}