/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Hand cursor on clickable input elements */
a,
input[type=button],
input[type=submit],
input[type=file],
input[type=image],
button {
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

ul {
  list-style: none;
}

strong, b {
  font-weight: bold;
}

* {
  -webkit-font-smoothing: antialiased;
}

*, :after, :before {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
html {
  line-height: 1.15;
}

body {
  font-family: "Poppins";
  margin: 0;
  color: #29292a;
}

.header {
  padding-bottom: 15px;
  background: url(./../assets/banner-mobile.png);
  display: flex;
  flex-flow: column;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .header {
    background: url(./../assets/banner-tablet-mobile.jpg) #2d2267;
    background-size: 100%;
    background-repeat-y: no-repeat;
  }
}
@media (min-width: 992px) {
  .header {
    background: url(./../assets/banner-tablet-mobile.jpg);
    background-size: 100% 100%;
    background-repeat-y: no-repeat;
  }
}
.header__logo {
  margin-top: 30px;
}
.header__logo img {
  margin: auto;
  display: block;
  width: 78px;
}
.header__main-phrase, .header__sub-phrase {
  color: #fff;
  text-align: center;
}
.header__main-phrase {
  font-size: 35px;
  width: 100%;
  margin: auto;
  margin-top: 10px;
  transform: scale(0.9);
  font-weight: 600;
}
.header__main-phrase strong {
  color: #15b5ff;
	background: rgba(0, 0, 0, 0.4);
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 30px;
}
@media (min-width: 992px) {
  .header__main-phrase {
    width: 90%;
    font-size: 42px;
font-weight: 600;
  }
}
.header__sub-phrase {
  font-weight: 400;
  font-size: 18px;
  width: 80%;
  margin: 11px auto 0;
  display: block;
}
@media (min-width: 992px) {
  .header__sub-phrase {
    font-size: 20px;
  }
}
.header__form {
  margin-top: 15px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .header__form {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: auto auto 35px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 50px;
    margin-top: 15px;
	      padding-left: 20px;
    padding-top: 15px;
  }
}
.header__form .form-group {
  position: relative;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .header__form .form-group {
    flex: 1 1 auto;
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .header__form .form-group:first-child {
    margin-left: 0;
  }
  .header__form .form-group:last-child {
    margin-right: 0;
  }
}
.header__form .form-control {
  width: 100%;
  color: #7e7f82;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 17px;
}
@media (min-width: 992px) {
  .header__form .form-control {
    border: none;
  }
}
.header__form .form-control:active + span {
  transform: translateY(-50%) rotate(135deg);
  top: calc(50%);
}
.header__form .icon-arrow {
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% + 2px);
  right: 15px;
  transform: translateY(-50%) rotate(-45deg);
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 225ms;
}
.header__form .icon-arrow:after {
  content: "";
  position: relative;
  width: 6px;
  height: 6px;
  top: -5px;
  right: -3px;
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  display: block;
}
.header__form .submit-button {
  display: flex;
  align-content: center;
  justify-content: center;
  background-color: #15b5ff;
  color: #fff;
  font-weight: 200;
  border: #00abfb;
}
.header__form .submit-button .icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.header__form .submit-button .icon svg path {
  fill: #fff;
}

.main__title {
  font-size: 28px;
  margin-top: 40px;
  text-align: center;
}
.main__title strong {
  display: block;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .main__title strong {
    display: inline;
  }
}
.main__list-reasons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .main__list-reasons {
    justify-content: space-around;
  }
}
.main__reason {
  width: 60%;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .main__reason {
    min-width: 30px;
    width: auto;
    max-width: 250px;
  }
}
.main__reason article img {
  width: 100px;
  margin: 0 auto;
  display: block;
}
.main__reason-title {
  text-align: center;
  margin-bottom: 15px;
  color: #242526;
}
.main__reason-title strong {
  font-weight: 500;
}
.main__reason-description {
  color: #67686c;
  font-size: 13px;
  line-height: 22px;
}

@media (min-width: 992px) {
  .footer {
    margin-top: 30px;
  }
}
.footer__call-to-action {
  background-color: #303e94;
  color: #fff;
  padding: 45px 30px;
  text-align: center;
}
.footer__call-to-action h3, .footer__call-to-action h4 {
  font-size: 22px;
}
@media (min-width: 992px) {
  .footer__call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer__button {
  margin: 20px auto 0;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 17px;
  display: flex;
  align-content: center;
  justify-content: center;
  background-color: #15b5ff;
  color: #fff;
  font-weight: 200;
  border: #00abfb;
  text-decoration: none;
}
@media (min-width: 992px) {
  .footer__button {
    margin: 0 0 0 25px;
  }
}
.footer__button .icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.footer__button .icon svg path {
  fill: #fff;
}
.footer__informations {
  font-size: 13px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__informations {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.footer__copyright {
  margin: 10px auto;
  color: #9b9ca0;
  width: 80%;
}
@media (min-width: 992px) {
  .footer__copyright {
    width: auto;
    margin: 0 15px 0 0;
  }
}
.footer__politcs {
  color: #67686c;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .footer__politcs {
    margin-bottom: 0px;
  }
}

/*# sourceMappingURL=index.css.map */
