@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;0,900;1,300&display=swap);
body {
    font-family: 'Montserrat', sans-serif;
    background: #fafafc;
    margin: 0;
}
li,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
li {
    display: inline-flex;
}
img {
    width: 100%;
    height: 100%;
}
a {
    cursor: pointer;
    color: #1a73e8;
    text-decoration: none;
}
a.cta {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    background: #1a73e8;
    color: #fff !important;
    padding: 0 25px;
    min-height: 40px;
    font-weight: 400;
    border-radius: 3px;
    transition: color 0.15s linear, background-color 0.15s linear;
}
a.cta:active,
a.cta:focus,
a.cta:hover {
    background: #174ea6;
    outline: 0;
}
a.cta-white {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    background: #fff;
    color: #1a73e8 !important;
    padding: 0 25px;
    min-height: 40px;
    font-weight: 500;
    border-radius: 3px;
    transition: color 0.15s linear, background-color 0.15s linear;
}
a.cta-white:active,
a.cta-white:focus,
a.cta-white:hover {
    opacity: 0.5;
    outline: 0;
}
.form {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 100%;
    padding: 0 0 25px 0;
    border-radius: 6px;
    background: #fff;
}
.form-icons {
    position: absolute;
    top: 10px;
    left: -60px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    z-index: 1;
}
.rotate-left {
    animation: rotation 30s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(359deg);
    }
    to {
        transform: rotate(0);
    }
}
.form-icons .form-icons-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.form-icons .form-icons-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    border-radius: 50%;
    opacity: 0.25;
    z-index: 0;
}
.form-icons .form-icons-wrapper img {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.75;
    z-index: 1;
}
.rotate-right {
    animation: rotacion 30s infinite linear;
}
@keyframes rotacion {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}
.form-icons .form-icons-wrapper img.img-1 {
    top: 215px;
    left: -30px;
}
.form-icons .form-icons-wrapper img.img-2 {
    top: 215px;
    right: -30px;
}
.form-icons .form-icons-wrapper img.img-3 {
    top: -30px;
    left: 190px;
}
.form-icons .form-icons-wrapper img.img-4 {
    bottom: -30px;
    left: 190px;
}
.form-icons .form-icons-wrapper img.img-5 {
    top: 50px;
    left: 20px;
}
.form-icons .form-icons-wrapper img.img-6 {
    top: 50px;
    right: 20px;
}
.form-icons .form-icons-wrapper img.img-7 {
    bottom: 50px;
    left: 20px;
}
.form-icons .form-icons-wrapper img.img-8 {
    bottom: 50px;
    right: 20px;
}
form {
    width: 100%;
    border: none;
    z-index: 2;
}
.form .form-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #f3f5f9;
    border-radius: 3px 3px 0 0;
    padding: 15px 0 15px 0;
    margin: 0 0 25px 0;
}
.form .form-header h2 {
    font-size: 15px;
    margin: 0;
    padding: 0;
    text-align: center;
}
.form fieldset {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: calc(100% - 50px);
    height: 100%;
    border: none;
    margin: 0 25px 5px 25px;
    padding: 0;
}
.form fieldset label {
    display: none;
    visibility: hidden;
    width: 100%;
    font-size: 12px;
    color: #5f6368;
    border: #e5e5e5 solid 1px;
}
.form fieldset input {
    width: calc(100% - 20px);
    height: 40px;
    padding: 5px 10px;
    font-size: 16px;
    color: #000;
    border-radius: 3px;
    border: #e5e5e5 solid 1px;
    box-shadow: none;
    outline: 0;
}
.form fieldset input:active,
.form fieldset input:focus {
    box-shadow: none;
    outline: 0;
    border-color: #1a73e8;
}
.form fieldset small {
    font-size: 10px;
    margin: 5px 0 15px 0;
    color: #c53929;
}
.bg-blue-1 {
    background: linear-gradient(225deg, #00dcc0, #005af0 75%) !important;
}
.bg-grey {
    background: #f3f5f9 !important;
}
.bg-grey h1,
.bg-grey p {
    color: #000 !important;
}
.bg-2 {
    background: url(../img/bg/bg-2.jpg);
    background-size: cover;
    background-position: center;
}
.wrapper {
    display: block;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fafafc;
    overflow: hidden;
}
.wrapper > header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px #e5e5e5 solid;
}
.wrapper > header figure {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 150px;
    height: 50px;
    margin: 0;
    padding: 0 0 0 5px;
    overflow: hidden;
}
.wrapper > header figure img {
    height: 25px;
}
figure figcaption {
    display: none;
    visibility: hidden;
}
.wrapper > header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 150px);
    height: 50px;
    margin: 0;
    padding: 0 5px 0 0;
    overflow: hidden;
}
header nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: 50px;
}
header nav ul:first-child {
    justify-content: flex-start;
    width: 70%;
}
header nav ul:last-child {
    justify-content: flex-end;
    width: 30%;
}
header nav ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 50px;
}
header nav ul li a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 50px;
    padding: 5px 25px;
    color: #5f6368;
    font-size: 14px;
}
header nav ul li a:active,
header nav ul li a:focus,
header nav ul li a:hover {
    color: #1a73e8;
}
header nav ul li a.cta {
    height: 40px !important;
    padding: 0px 15px;
}
main {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fafafc;
    z-index: 5;
}
main > nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: #e5e5e5 solid 1px;
    height: 35px;
    overflow: hidden;
    position: relative;
}
main > nav ul {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
}
main > nav ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: auto;
    cursor: pointer;
}
main > nav ul li a {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 25px;
    color: #5f6368;
    font-size: 12px;
}
main > nav ul li a:hover {
    background: #f5f5f5;
}
main > nav ul li a:hover:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 100%;
    content: "";
    display: block;
    background: #1a73e8;
}
.block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 50px);
    padding: 25px;
    background: #f5f5f5;
    border: #e5e5e5 solid 1px;
    border-radius: 6px;
}
.block .block-text {
    display: flex;
    width: 70%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}
.block .block-text p {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #4b4f56;
    padding: 0 25px 0 0;
    margin: 0;
}
.block .block-cta {
    width: 30%;
}
.squares{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 100px);
    height: auto;
    padding: 0 50px;
    box-shadow: none;
}
.squares .square{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 28%;
    height: 265px;
    margin-bottom:15px;
    margin-right:15px;
    padding: 25px;
    box-shadow: none;
    border: #e5e5e5 solid 1px;
    border-radius: 6px;
    overflow:hidden;
}
.squares .square:nth-child(3n){
    margin-right:0px;
}
.squares .square header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.squares .square header h1 {
    font-size: 24px;
    line-height: 26px;
    padding: 0;
    margin: 0;
}
.squares .square header figure {
    margin: 0px 0px 15px 0px;
    padding: 0px;
    width: 100%;
    overflow:hidden;
    height:200px;
}
.squares .square header figure img {
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.squares .square header figure figcaption {
    display: none;
    visibility: hidden;
}
.columns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: calc(100% - 100px);
    height: auto;
    padding: 0 50px;
    box-shadow: none;
}
.columns.center {
    justify-content: center;
}
.column-left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: calc(70% - 102px);
    height: auto;
    padding: 50px;
    box-shadow: none;
    border: #e5e5e5 solid 1px;
    border-radius: 6px;
}
.column-left header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 0 0 25px 0;
    margin: 0;
}
.column-left header h1 {
    font-size: 36px;
    line-height: 42px;
    padding: 0 50px 0 0;
    margin: 0 0 15px 0;
}
.column-left header p {
    font-size: 18px;
    margin: 0 0 15px 0;
    padding: 0 100px 0 0;
    text-align: left;
}
.column-left header p:last-child {
	margin:0px;
}
.column-left header figure {
    margin: 25px 0px -25px 0px;
    padding: 0px;
    width: 100%;
}
.column-left header figure img {
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.column-left header figure figcaption {
    display: none;
    visibility: hidden;
}
.column-left section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 25px 0;
    margin: 0;
}
.column-left section:last-child {
    padding-bottom: 0;
}
.column-left section h2 {
    color: #1a73e8;
    font-size: 26px;
    margin: 0 0 10px 0;
}
.column-left section > p {
    width: 100%;
    font-size: 15px;
    margin: 0 0 10px 0;
    padding: 0 50px 0 0;
}
.column-left section > p:last-child {
    margin: 0;
}
.column-left section > span {
    width: 100%;
    font-size: 13px;
    margin: 0 0 10px 0;
    border-top: 1px #e5e5e5 solid;
    padding: 25px 0 0 0;
    font-style: italic;
    color: #90949c;
}
.column-left section p:last-child {
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 1px #e5e5e5 solid;
}
.column-left section .column-section-body {
    outline: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 25px 0;
    margin: 0;
    border-top: 1px #e5e5e5 solid;
}
.column-left section .column-section-body .column-section-pic {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 100px !important;
    width: 100px !important;
    max-width: 100px !important;
    margin: 0 15px 0 0;
}
.column-left section .column-section-body .column-section-pic img {
    width: 100%;
    height: auto;
}
.column-left section .column-section-body .column-section-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 265px;);
}
.column-left section .column-section-body .column-section-text h3 {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 15px 0;
}
.column-left section .column-section-body .column-section-text p {
    font-size: 15px;
    margin: 0 0 10px 0;
    padding: 0 100px 0 0;
    border: none;
}
.column-left section .column-section-body .column-section-text p:last-child {
    margin: 0;
}
.column-right {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
    height: 100%;
    padding: 0;
    box-shadow: none;
}
.column-right header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 0 0 15px 0;
    margin: 0;
}
.column-right header h3 {
    width: 100%;
    text-align: left;
    font-size: 18px;
    color: #4b4f56;
    padding: 0px;
}
.column-right > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 0 0 25px 0;
    margin: 0 0 25px 0;
    border-bottom: #e5e5e5 solid 1px;
}
.column-right > ul:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}
.column-right > ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    color: #4b4f56;
    font-size: 14px;
    margin: 0 0 10px 0;
}
.column-right > ul li:last-child {
    margin: 0;
}
.column-right > ul li a {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: #4b4f56;
    font-size: 14px;
}
.column-right > ul li a:hover {
    font-weight: 700;
}
.column-right > ul li a img,
.column-right > ul li img {
    display: inline-flex;
    width: 25px;
    height: 25px;
    margin: 0 5px 0 0;
}
section {
    display: block;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
    z-index: 5;
}
section:last-child {
    padding-bottom: 75px;
}
section header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 0 50px 0;
    box-shadow: none;
}
section header .icon-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}
section header h3 {
    width: calc(100% - 100px);
    max-width: 650px;
    text-align: center;
    font-size: 31px;
    font-weight: 700;
    margin: 0;
    padding: 0 50px;
}
section header p {
    text-align: center;
    font-size: 20px;
    color: #5f6368;
    margin: 25px 0 0 0;
    padding: 0 50px;
}
.section-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: flex-start;
}
section.intro .intro-body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: 100%;
    margin: 0;
    padding: 50px 0;
}
section.intro .intro-body h1 {
    font-size: 50px;
    margin: 0;
    padding: 0;
}
section.intro .intro-body p {
    font-size: 18px;
    margin: 15px 0 25px 0;
    padding: 0;
}
section.intro .intro-body a.cta {
    height: 50px;
}
section.intro .intro-form,
section.intro .intro-pic {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: auto;
    margin: 0;
    padding: 0;
}
section.intro .intro-pic img,
section.intro .intro-pic video {
    width: 100%;
    max-height: 450px;
}
section.intro.full {
    display: flex;
    flex-wrap: nowrap;
    background-color:#0248FF;
    background-image: url(../img/bg/bg-1.svg);
    background-size: 200%;
    background-position: center;
    transform: translateZ(0);
    min-height: 470px;
    border-radius: 0;
}
section.intro.full .intro-body {
    padding: 0 0 0 75px;
    width: 70%;
}
section.intro.full .intro-form,
section.intro.full .intro-pic {
    padding: 0 75px 0 0;
    width: 30%;
    align-items: flex-end;
}
section.intro.full .intro-body h1 {
    color: #fff;
    font-size: 55px;
    line-height: 60px;
}
section.intro.full .intro-body p {
    color: #fff;
    font-size: 18px;
    max-width: 75%;
}
section.intro.full .intro-body .cta-white {
    min-height: 50px;
}
section.intro.full .intro-form .cta {
    font-weight: 600;
    font-size: 18px;
    height: 50px;
    margin: 15px 0 0 0;
}
section.intro.full .intro-form span {
    display: flex;
    width: 100%;
    justify-content: center;
    color: #5f6368;
    font-size: 10px;
}
section.intro.full .intro-form span a {
    margin: 0 3px;
}
section.icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    width: calc(100% - 50px);
}
section.icons .icons-header h3 {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    color: #5b6987;
}
section.icons .icons-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
section.icons .icons-body figure {
    margin: 25px;
}
section.icons .icons-body figure img {
    max-width: 100px;
    max-height: 75px;
}
section.icons .icons-footer a {
    font-size: 14px;
}
section.options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #fff;
}
section.options .option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin: 0 25px 25px 0;
    border-radius: 6px;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
section.options .option:nth-child(3n) {
    margin-right: 0;
}
section.options .option:last-child {
    margin-right: 0;
}
section.options .option:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 60px 0 rgba(0, 0, 0, 0.1);
}
section.options .option .option-body,
section.options .option .option-footer,
section.options .option .option-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}
section.options .option .option-header {
    width: calc(100% - 20px);
    padding: 20px 10px 0 10px;
    align-items: flex-start;
}
section.options .option .option-header img {
    width: 50px;
    height: 50px;
    fill: #fff;
}
section.options .option .option-header h4 {
    margin: 0 0 0 15px;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    width: calc(100% - 70px);
}
section.options .option .option-body {
    width: calc(100% - 125px);
    padding: 0 0 0 25px;
}
section.options .option .option-body p {
    color: #fff !important;
    font-size: 16px;
}
section.options .option .option-footer {
    width: calc(100% - 30px);
    padding: 20px 15px 20px 15px;
    background: #fff;
    border-radius: 0 0 6px 6px;
}
section.options .option-footer a:before {
    content: "";
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 10px;
    background: url(../img/icons/img-icon-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    margin-right: 5px;
}
section.options .option-footer a:hover {
    text-decoration: underline;
}
section.options .option .option-footer a{
    font-size:14px;
}
section.sides {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 0;
}
section.sides .side-left {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    padding: 0 75px !important;
}
section.sides .side-right {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 50%;
    padding: 0 75px !important;
}
section.sides h3 {
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 15px 0;
}
section.sides p {
    font-size: 18px;
    margin: 0 0 25px 0;
}
section.sides img,
section.sides video {
    max-height: 450px;
}
section.bullets {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #fff;
}
section.bullets .bullet {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    width: 35%;
    margin: 0 50px 50px 0;
}
section.bullets .bullet .bullet-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 50px;
    margin-right: 15px;
}
section.bullets .bullet .bullet-header img {
    width: 50px;
    height: 50px;
}
section.bullets .bullet .bullet-body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
section.bullets .bullet .bullet-body h4 {
    font-size: 20px;
    line-height: 22px;
    margin: 0;
}
section.bullets .bullet .bullet-body p {
    margin: 10px 0 0 0;
    font-weight: 300;
}
section.break {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 200px;
}
section.break h1 {
    color: #fff;
    margin: 0;
    font-size: 48px;
}
section.break p {
    width: 50%;
    margin: 15px 0 0 0;
    font-size: 18px;
    color: #fff;
    text-align: center;
}
section.break a.cta {
    margin: 25px 0 0 0;
    height: 50px;
}
section.pricing {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: center;
    align-items: flex-start;
}
section.pricing:after {
    content: "* Todos los valores promocionales aplican exclusivamente para la modalidad de contratación a través de agencias partners (marketing, comunicación, rrpp, rrhh o publicitaria). Los precios están expresados en pesos argentinos y no incluyen Impuesto al Valor Agregado (I.V.A.).";
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    height: auto;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: #202124;
}
section.pricing .plan {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 30%;
    margin: 0 15px 0 0;
    border: #e5e5e5 solid 1px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 15px #ccc;
    z-index: 5;
}
section.pricing .plan.highlighted:before {
    content: "RECOMENDADO POR LOS USUARIOS";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 6px 0 0;
    background: #4285f4;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}
section.pricing .plan .plan-header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background: #fafafa;
}
section.pricing .plan .plan-header .plan-detail {
    display: block;
    width: calc(100% - 50px);
    padding: 25px 25px 0 25px;
}
section.pricing .plan.highlighted .plan-header .plan-detail {
    padding: 65px 25px 0 25px;
}
section.pricing .plan .plan-header .plan-detail h5 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 400;
}
section.pricing .plan .plan-header .plan-detail p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}
section.pricing .plan .plan-header .plan-detail p {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 300;
}
section.pricing .plan .plan-header .plan-pricing {
    display: block;
    width: 100%;
    padding: 0 25px 25px 25px;
}
section.pricing .plan .plan-header .plan-pricing span {
    display: inline-block;
    font-size: 32px;
    margin: 0;
}
section.pricing .plan .plan-header .plan-pricing span.old-price {
    text-decoration: line-through;
    color: #bdbdbd;
    font-size: 38px;
    margin-right: 8px;
    width: auto;
    font-weight: 300;
}
section.pricing .plan .plan-header .plan-pricing span.current-price {
    color: #4285f4;
    font-weight: 400;
    font-size: 38px;
    width: auto;
}
section.pricing .plan .plan-header .plan-pricing p {
    font-weight: 300;
    font-size: 14px;
    margin: 10px 0 0 0;
}
section.pricing .plan .plan-header .plan-pricing a.cta {
    display: inline-flex;
    width: auto;
    margin: 5px 0 0 0;
}
section.pricing .plan .plan-body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background: #fff;
}
section.pricing .plan .plan-body ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 50px);
    margin: 0;
    padding: 25px;
}
section.pricing .plan .plan-body ul li {
    font-size: 16px;
    margin: 0 0 10px 0;
}
section.pricing .plan .plan-body ul li:last-child {
    margin: 0;
}
section.pricing .plan .plan-body ul li:before {
    content: "";
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: url(../img/icons/img-icon-check.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-flex;
    margin: 0 10px 0 0;
    overflow: hidden;
}
section.pricing figure{
    width:100%;
    margin:25px 0px 0px 0px;
    display:flex;
    justify-content:center;
    align-items:center;
}
section.pricing figure img{
    width:100%;
    max-width:250px;
}
section.pricing figure figcaption{
    display:none;
    visibility:hidden;
}
footer {
    display: block;
    width: calc(100% - 100px);
    padding: 25px 50px;
    background: linear-gradient(45deg, #48525c, #29323c);
    overflow: hidden;
}
footer .footer-header {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 0 25px 0;
    margin: 0 0 25px 0;
    border-bottom: 1px #fff solid;
}
footer .footer-header .side-left,
footer .footer-header .side-right {
    display: flex;
    flex-wrap: nowrap;
    width: 50%;
}
footer .footer-header .side-left p {
    color: #fff;
    margin: 0;
    padding-right: 25px;
    font-size: 17px;
    font-weight: 700;
}
footer .footer-header .side-right {
    justify-content: flex-end;
}
footer .footer-header .side-right ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
footer .footer-header .side-right ul li {
    color: #fff;
    font-weight: 400px;
    margin-right: 15px;
}
footer .footer-header .side-right ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
footer .footer-header .side-right ul li a img {
    width: 50px;
    height: 50px;
}
footer .footer-body {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin: 0 0 25px 0;
    padding: 0 0 25px 0;
    border-bottom: 1px #fff solid;
}
footer .footer-body .column,
footer .footer-body .column ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
}
footer .footer-body .column ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
footer .footer-body .column ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
footer .footer-body .column ul li a:before {
    content: "";
    display: inline-flex;
    margin-right: 5px;
    background: url(../img/icons/img-icon-arrow.svg);
    width: 20px;
    height: 20px;
}
footer .footer-footer p {
    color: #fff;
    font-size: 14px;
}
footer .footer-footer p a {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 991px) {
    section {
        padding: 50px 0;
    }
    header nav {
        justify-content: flex-end;
    }
    header nav ul:first-child {
        display: none;
        visibility: hidden;
    }
    header nav ul:last-child {
        width: 100%;
    }
    section.intro.full {
        flex-wrap: wrap;
    }
    section.intro.full .intro-body {
        padding: 0 25px;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    section.intro.full .intro-body h1 {
        width: 75%;
    }
    section.intro.full .intro-body p {
        width: 75%;
    }
    section.intro.full .intro-form {
        margin: 50px 0 0 0;
        padding: 0 25px;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    section.icons .icons-body figure img {
        max-width: 40px;
        max-height: 25px;
    }
    section.options .option {
        width: calc(50% - 50px);
    }
    section.options .option:nth-child(2n) {
        margin-right: 0;
    }
    section.sides {
        flex-wrap: wrap;
        padding: 75px 0;
    }
    section.sides .side-left {
        width: 100%;
        margin: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    section.sides .side-right {
        justify-content: center;
        align-items: center;
        text-align: center !important;
        width: 100%;
        padding: 0 25px !important;
    }
    section.pricing {
        flex-wrap: wrap;
    }
    section.pricing .plan {
        width: 45%;
        margin: 0 50px 25px 50px;
    }
    section.break {
        width: calc(100% - 150px);
        flex-wrap: nowrap;
        padding: 75px;
    }
    .form-icons {
        top: -35px;
        left: -49px;
    }
    .columns,
    .squares {
        flex-direction: column;
        flex-wrap: nowrap;
        width: calc(100% - 50px);
        padding: 0 25px;
    }
    .column-left,
    .column-right,
    .squares .square {
        width: calc(100% - 52px);
        padding: 25px;
        border: #e5e5e5 solid 1px;
        border-radius: 6px;
    }
    .column-left {
        margin-bottom: 25px;
    }
    .column-left header h1 {
        font-size: 35px;
        line-height: 37px;
        padding: 0;
        text-align:center;
    }
    .column-left header p{
    	text-align:center;
    }
    .column-left section h2{
    	text-align:center;
    }
    .column-left section > span{
    	text-align:center;
    }
    .column-left section .column-section-body{
    	flex-wrap:wrap;
    }
    .column-left section .column-section-body .column-section-pic{
    	width:100%!important;
    	max-width:100%!important;
    	justify-content:center;
    	align-items:center;
    	margin:0px 0px 15px 0px;
    }
    .column-left section .column-section-body .column-section-pic img{
    	width:150px;
    }
    .column-left section .column-section-body .column-section-text{
    	width:100%;
    	justify-content: center;
    	text-align:center;
    }
    .column-left section .column-section-body .column-section-text h3{
    	font-size:26px;
    	line-height:29px;
    }
    .column-left section .column-section-body .column-section-text p{
    	font-size:17px;
    	line-height:19px;
    }
    .block .block-text p,
    .column-left header p,
    .column-left section .column-section-body .column-section-text p {
        padding: 0;
    }
    .block {
        flex-direction: column;
    }
    .block .block-cta,
    .block .block-text {
        width: 100%;
    }
    .block .block-text p {
        font-size: 19px;
        text-align: center;
        width: 100%;
        margin: 0 0 15px 0;
    }
    main > nav ul {
        overflow-x: scroll;
    }

}
@media (max-width: 767px) {
    section.intro.full .intro-body h1 {
        font-size: 50px;
        line-height: 50px;
        width: 100%;
    }
    section.intro.full .intro-body p {
        font-size: 14px;
    }
    section.intro.full .intro-form {
        width: calc(100% - 50px);
    }
    section.icons .icons-header h3 {
        font-size: 12px;
        text-align: center;
    }
    section.icons .icons-body figure {
        margin: 5px 15px;
    }
    section.icons .icons-footer a {
        font-size: 10px;
    }
    section header {
        margin: 0 0 15px 0;
    }
    section.options .option {
        width: 85%;
        margin: 0 0 25px 0;
    }
    section.sides .side-left {
        padding: 0 25px !important;
    }
    section.sides h3 {
        font-size: 28px;
        line-height: 28px;
    }
    section.sides p {
        font-size: 18px;
    }
    section header {
        margin: 0 0 25px 0;
    }
    section header h3 {
        width: 90%;
        font-size: 28px;
        line-height: 28px;
    }
    section.bullets .bullet {
        width: calc(100% - 50px);
        margin: 0 25px 50px 25px;
    }
    section.bullets .bullet:last-child {
        margin: 0;
    }
    section.break {
        padding: 75px 25px;
        width: calc(100% - 50px);
    }
    section.break h1 {
        font-size: 34px;
        line-height: 34px;
        text-align: center;
    }
    section.break p {
        width: 100%;
    }
    section.pricing {
        padding: 25px 0;
    }
    section.pricing .plan {
        width: calc(100% - 50px);
        margin: 0 25px 25px 25px;
    }
    section.pricing .plan .plan-body ul {
        width: calc(100% - 30px);
        padding: 25px 15px;
    }
    section.pricing:after {
        bottom: 15px;
        font-size: 6px;
        width: 75%;
    }
    section.pricing figure{
        margin:0px 0px 15px 0px;
    }
    .form-icons {
        display: none;
        visibility: hidden;
    }
    section.options .option .option-header h4 {
        font-size: 21px;
    }
    section.options .option .option-body p {
        font-size: 15px;
        margin: 5px 0 15px 0;
    }
    footer .footer-body,
    footer .footer-header .side-left,
    footer .footer-header .side-right ul li:first-child {
        display: none;
        visibility: hidden;
    }
    footer .footer-header .side-right {
        width: 100%;
        justify-content: center;
    }
}
.water404 {
    font-size: 170px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.water-fill {
    -webkit-animation: wave 1.5s infinite linear, fill-up 15s infinite ease-out alternate;
    animation: wave 1.5s infinite linear, fill-up 15s infinite ease-out alternate;
}
@-webkit-keyframes wave {
    from {
        top: 0;
    }
    to {
        top: 99%;
    }
}
@keyframes wave {
    from {
        top: 0;
    }
    to {
        top: 99%;
    }
}
@-webkit-keyframes fill-up {
    from {
        top: 0;
        height: 0;
    }
    to {
        top: 100%;
        height: 160px;
    }
}
@keyframes fill-up {
    from {
        top: 0;
        height: 0;
    }
    to {
        top: 100%;
        height: 160px;
    }
    .column-left section h2 {
        line-height: 26px;
    }
}
.water-fill {
    -webkit-animation: wave 1.5s infinite linear, fill-up 15s infinite ease-out alternate;
    animation: wave 1.5s infinite linear, fill-up 15s infinite ease-out alternate;
}
/*LOADING*/
.loading-wrapper{
    position:fixed;
    top:0px;
    left:0px;
    display:block;
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
    background:rgb(255,255,255,0.97);
    z-index:100000;
    overflow:hidden;
}
.loading-wrapper .loading{
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
    overflow:hidden;
}
.loading-wrapper .loading .loading-pic{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    width:100%;
    height:auto;
    margin:0px 0px 15px 0px;
    padding:0px;
    overflow:hidden;
}
.loading-wrapper .loading .loading-pic img{
    width:100%;
    height:auto;
    max-width:450px;
    margin:0px;
    padding:0px;
}
.loading-wrapper .loading .loading-pic figcaption{
    display:none;
    visibility:hidden;
}
.loading-wrapper .loading .loading-text{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    width:100%;
    height:auto;
    overflow:hidden;
}
.loading-wrapper .loading .loading-text h6{
    display:block;
    font-family: 'Montserrat', sans-serif;
    font-size:24px;
    font-weight:700;
    color:#4b4f56;
    width:100%;
    margin:0px 0px 7px 0px;
    padding:0px;
    text-align:center;
}
.loading-wrapper .loading .loading-text p{
    font-family: 'Montserrat', sans-serif;
    font-size:16px;
    display:block;
    width:100%;
    color:#4b4f56;
    margin:0px;
    padding:0px;
    text-align:center;
}
.fade-in {
animation: fadeIn ease 1s;
-webkit-animation: fadeIn ease 1s;
-moz-animation: fadeIn ease 1s;
-o-animation: fadeIn ease 1s;
-ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
.hidden{
    display:none;
    visibility:hidden;
}
/*LOADING*/