body {
	width: 100%;
	overflow-x: hidden;
	font-size: 1.6rem;
	font-family: 'Poppins', sans-serif;
}

@media (min-width: 1400px) {
	.container {
	    max-width: 1340px;
	}
}

.row--less-gutters {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}

.row--less-gutters > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

h1, .h1 {
    font-size: 1.6rem;
    font-weight: bold;
}

p {
    font-size: 1rem;
}

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 2.2rem;
    }
}

.section-title {
    display: inline-block;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 4px solid #16b8dc;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.btn {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    border: none;
    border-radius: 0.5rem;
}

.btn-group-lg > .btn, .btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.btn-primary {
	color: #fff;
	background-color: #16b8dc;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}

.btn-primary:hover {
	color: #fff;
    background-color: #1594b1;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #1594b1;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .btn {
        font-size: 1.15rem;
    }
}

::-webkit-input-placeholder {
	color: #000;
}

::-moz-placeholder {
	color: #000;
}

:-ms-input-placeholder {
	color: #000;
}

:-moz-placeholder {
	color: #000;
}

.form-group {
    position: relative;
}

.form-control {
    border-radius: 0.75rem;
    height: calc(1.5em + 1.5rem + 2px);
    padding: .75rem 0.75rem;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-check {
    padding: 0;
}

.form-check input[type="checkbox"] {
    display: none;
}

.form-check input[type="checkbox"] + div span,
.form-check input[type="checkbox"] + label + div span {
    display: inline-block;
    width: 20px;
    height: 20px;
    float: left;
    vertical-align: middle;
    background: #fff;
    cursor: pointer;
    border-radius: 10px;
}

.form-check input[type="checkbox"] + div span:after,
.form-check input[type="checkbox"] + label + div span:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: #16b8dc;
    opacity: 0;
    transition: opacity .4s cubic-bezier(.5,0,0,1);
    border-radius: 6px;
}

.form-check input[type="checkbox"]:checked + div span:after,
.form-check input[type="checkbox"]:checked + label + div span:after {
    opacity: 1;
}

.form-check input[type="checkbox"] + div p,
.form-check input[type="checkbox"] + label + div p {
	display: block;
    margin-left: 2rem;
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
}

.form-check a {
	color: #fff;
    text-decoration: underline;
}

.js-validate-error-label {
    top: 14px;
    right: 20px;
    text-transform: uppercase;
}

.hero {
	padding-top: 1rem;
}

.hero__logo {
    display: none;
    margin-bottom: 1rem;
    max-width: 250px;
}

.hero__content {
    text-align: center;
}

.hero__content-title p {
	font-size: 1.15rem;
}

.hero__content-image {
    margin-bottom: 1rem;
}

.hero__content-text {
    font-size: 1.15rem;
    line-height: 1.3;
}

.hero__form-container {
	padding: 1rem 1rem 1.5rem;
	background-color: #99d456;
    margin-left: -15px;
    margin-right: -15px;
    color: #fff;
}

.hero__form-container-title {
    font-size: 1rem;
    font-weight: bold;
}

.hero__form-container-subtitle {
    font-size: 0.85rem;
}

.hero__form-question {
    font-size: 1rem;
    font-weight: bold;
}

.hero__form-question-error {
    background-color: #af0000;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0.125rem 0.45rem;
    margin-top: 0.25rem;
    border-radius: 0.5rem;
    text-align: center;
}

@media (min-width: 576px) {
    .hero__form-container {
        margin-left: 0;
        margin-right: 0;
        position: relative;
    }

    .hero__form-container::before,
    .hero__form-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: -200rem;
        width: 200rem;
        height: 100%;
        background-color: #99d456;
    }

    .hero__form-container::after {
        left: auto;
        right: -200rem;
    }
}

@media (min-width: 992px) {
    .hero {
        padding-top: 2rem;
    }

    .hero__logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__content-title p {
        font-size: 1.35rem;
    }

    .hero__form-container::before,
    .hero__form-container::after {
        display: none;
    }

    .hero__form-container-title {
        font-size: 1.5rem;
    }

    .hero__form-container-subtitle {
        font-size: 1rem;
    }

    .hero__form-question-error {
        font-size: 0.85rem;
        padding: 0.25rem 0.45rem;
    }
}

.gallery {
    padding: 1rem 0;
}

.gallery__title {
    text-align: center;
    font-weight: bold;
}

.gallery__link {
    display: block;
    position: relative;
}

.gallery__link::after {
    content: '+';
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(0,0,0,.5);
    text-align: center;
    line-height: 1.5rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    font-size: 1rem;
    color: #fff;
    font-family: initial;
    pointer-events: none;
}

.gallery__image {
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .gallery__title {
        font-size: 1.5rem;
    }
}

.cta {
	background-color: #99d456;
	padding: 0 0 1rem;
	text-align: center;
	color: #fff;
}

.cta__inner {
	max-width: 40rem;
	margin: 0 auto;
}

.cta__form {
    margin-bottom: 2rem;
}

.cta__button {
	margin-bottom: 1rem;
}

.cta__text {
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.cta__download:hover {
    cursor: pointer;
}

@media (min-width: 992px) {
    .cta {
        padding: 2rem 0;
    }

    .cta__text {
        font-size: 1.2rem;
    }
}

.offer {
    padding: 1rem 0;
    text-align: center;
}

.offer__subtitle {
    font-weight: bold;
    margin-bottom: 1rem;
}

.offer__block {
    background: #16b8dc;
    padding: 1rem .5rem;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer__block-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.offer__block-number span {
    font-size: 2rem;
    margin-left: .5rem;
}

.offer__block-description {
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: bold;
}

.offer__block--text .offer__block-description {
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 992px) {
    .offer__subtitle {
        font-size: 1.2rem;
    }

    .offer__block-number {
        font-size: 5rem;
    }

    .offer__block-number span {
        font-size: 3rem;
    }

    .offer__block-description {
        font-size: 1.2rem;
    }

    .offer__block--text .offer__block-description {
        font-size: 1.4rem;
    }
}

.video {
    text-align: center;
}

.video__inner {
    margin-left: -15px;
    margin-right: -15px;
}

@media (min-width: 576px) {
    .video__inner {
        margin-left: 0;
        margin-right: 0;
    }
}

.why {
    text-align: center;
    padding: 1rem 0;
}

.why__title {
    margin-bottom: 2rem;
}

.why__list {
    list-style: none;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    padding: 0;
}

.why__list li {
    position: relative;
    padding-left: 1rem;
}

.why__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    display: block;
    width: 1px;
    height: 1px;
    border: 6px solid transparent;
    border-left-color: #16b8dc;
}

@media (min-width: 992px) {
    .why__list {
        font-size: 1.2rem;
    }
}

.footer {
    padding: 2rem 0;
}

.footer p {
    font-size: 0.75rem;
}

.footer p a {
    text-decoration: underline;
}