@charset "utf-8";
/* CSS Document */

/* 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,
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, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ---------- */
:root {
    --ama-blue: #0F3186;
    --ama-yellow: #FC9922;
    --primary-color: #414141;
    --white: #fff;
    --black: #000;
    --grey: #f1f1f1;
    --grey2: #e1e1e1;
    --a-focus: #0F3186;
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Anton', sans-serif;
}
html {
    height: 100%;
    font-size: 62.50%;
    scroll-behavior: smooth;
}
body {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 400;
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.main {
    display: block;
}

a {
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

a:hover,
a:active,
a:focus {
    color: var(--a-focus);
}
a:focus {
    outline: 2px dotted var(--a-focus);
    background-color: rgba(174, 152, 79, .05);
}
strong {
    font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--secondary-font);
    font-weight: 400;
}
h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 1em 0 .5em 0;
}
h3 {
    font-size: 2.4rem;
    margin: 1em 0 .5em 0;
}
p {
    font-size: 2rem;
    line-height: 150%;
}
p + p {
    margin-top: .6em;
}
ul {
    list-style: disc;
    margin-left: 2em;
    margin-bottom: .6em;
}
ul li {
    font-size: 1.8rem;
    line-height: 150%;
}
img {
    max-width: 100%;
    height: auto;
}
strong {
    font-weight: bold;
}
em {
    font-style: italic;
}
.link {
    color: var(--ama-yellow);
}

.link:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    border: 2px solid var(--ama-yellow);
    border-radius: 100px;
    color: var(--ama-yellow);
    font-size: 1.6rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: .7em 2em;
}
.btn > span {
    display: inline-block;
    margin-right: .8em;
}
.btn:hover,
.btn:active,
.btn:focus {
    background-color: var(--ama-blue);
    border: 2px solid var(--ama-blue);
    transform: scale(1.2);
}

/* ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.col-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px 0 rgba(5, 16, 44, .15);
    border-radius: 10px;
    padding: 2.5em 1.5em;
}
.col-flex + .col-flex {
    margin-top: 1em;
}

@media (min-width: 600px) {
    .row-flex {
        flex-direction: row;
        justify-content: flex-start;
    }
    .col-flex {
        width: 47%;
        margin: 0 1.5% 3% 1.5%;
    }
    .col-flex + .col-flex {
        margin-top: 0;
    }
}
@media (min-width: 991px) {
    .col-flex {
        width: 30%;
        margin: 1.5%;
        padding: 4em 3em;
    }
    .col-flex + .col-flex {
        margin-top: 1em;
    }
}

#header-main {
    position: relative;
    background: var(--ama-blue) url("../img/header-bg.jpg") center no-repeat;
    background-size: cover;
    padding: 10px 0;
}
@media (max-width: 767px) {
    #header-main {
        background: var(--ama-blue) url("../img/header-bg-mobile.jpg") center no-repeat;
        background-size: cover;
    }
}
.shape-bottom {
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    line-height: 0;
    direction: ltr;
    transform: rotate(180deg);
}
.shape-bottom > svg {
    width: calc(100% + 1.3px);
    height: 75px;
    transform: translateX(-50%) rotateY(180deg);
    display: block;
    position: relative;
    left: 50%;
}
.bottom-shape-fill {
    fill: var(--white);
}

/* main menu */

.header-main--nav-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav > ul {
    list-style: none;
    margin: 0;
}
.main-nav > ul > li {
    display: inline-block;
    line-height: 100%;
}
.main-nav > ul > li + li {
    margin-left: 1em;
}
.main-nav > ul > li > a {
    color: var(--white);
    font-family: var(--secondary-font);
    font-size: 2rem;
    letter-spacing: 1px;
    text-decoration: none;
}
.main-nav > ul > li:last-of-type > a {
    display: flex;
    padding: .5em 1em;
    background-color: var(--ama-yellow);
    border: 2px solid var(--ama-yellow);
    border-radius: 3px;
    color: var(--ama-blue);
    justify-content: center;
    align-items: center;
}
.main-nav > ul > li:last-of-type > a > span {
    display: inline-block;
    margin-left: 10px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a:active,
.main-nav > ul > li > a:focus {
    color: var(--ama-yellow);
}
.main-nav > ul > li:last-of-type > a:hover,
.main-nav > ul > li:last-of-type > a:active,
.main-nav > ul > li:last-of-type > a:focus {
    background-color: var(--white);
    border: 2px solid var(--white);
    color: var(--ama-blue);
}

@media (max-width: 990px) {
    .logo-wrap {
        max-width: 200px;
    }
    .header-main--nav-wrap {
        flex-direction: column;
    }
    .main-nav {
        display: none;
        margin: 0 !important;
    }
    .main-nav > ul {
        padding-top: 40px;
    }
    .main-nav > ul > li {
        display: block;
    }
    .main-nav > ul > li + li {
        margin-left: 0;
        margin-top: 1em;
    }
    .main-nav > ul > li > a {
        display: block;
        padding-top: .2em;
        padding-bottom: .2em;
    }
}
@media (min-width: 991px) {
    .header-main--page.sticky {
        position: fixed !important;
        width: 100%;
        min-height: 60px;
        left: 0;
        top: 0;
        background-color: var(--ama-blue);
        box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .3);
        padding-top: 10px!important;
        padding-bottom: 10px!important;
        z-index: 100;
    }
    .header-main--page.sticky .logo-wrap {
        max-width: 200px;
    }
    .main-nav {
        display: flex;
    }
}

/* =========================
       M O B I L E  M E N U
 ========================= */

#nav-toggle {
    position: absolute;
    display: none;
    width: 30px;
    height: 12px;
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 100;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
}

#nav-toggle:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 12px;
    left: 0;
    top: -11px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    border-radius: 1px;
    height: 2px;
    width: 30px;
    background: var(--white);
    position: absolute;
    display: block;
    content: '';
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

#nav-toggle span:before {
    top: -6px;
}

#nav-toggle span:after {
    bottom: -6px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0;
}

#nav-toggle.active span:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

#nav-toggle.active span:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}


@media only screen and (max-width: 1024px), (max-device-width: 1024px) {
    #nav-toggle {
        display: block;
    }
}

/* banner */

.banner {
    padding: 100px 0 225px 0;
    color: var(--white);
}
.banner h1 {
    font-size: 3.6rem;
    font-family: var(--primary-font);
    margin: .2em 0 .3em 0;
}
.banner h1 > span {
    /*color: var(--ama-yellow);*/
    font-family: var(--secondary-font);
    font-size: 82%;
    text-transform: uppercase;
}
.banner h2 {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 2rem;
    line-height: 120%;
    text-transform: uppercase;
}
.banner p {
    font-size: 2rem;
    margin-bottom: 1.5em;
}
.btn.btn--banner {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn.btn--banner:hover,
.btn.btn--banner:active,
.btn.btn--banner:focus {
    background-color: var(--ama-yellow);
    border: 2px solid var(--ama-yellow);
}
@media (min-width: 1180px) and (max-width: 2499px) {
    .banner h1 {
        font-size: calc(2vw + 3.2rem);
    }
    .banner h2 {
        font-family: var(--primary-font);
    }
    .banner p {
        font-size: calc(.7vw + 1rem);
    }
}
@media (min-width: 1360px) {
    .banner {
        padding: 15vh 0 calc(15vh + 75px) 0;
    }
}
@media (min-width: 2500px) {
    .banner h1 {
        font-size: 7.6rem;
    }
    .banner h2,
    .banner p {
        font-size: 2.6rem;
    }
}
/* teasers */

.teasers {
    position: relative;
    margin-top: -150px;
    padding-bottom: 3em;
    z-index: 1;
}
.teasers .col-flex {
    border-bottom: 4px solid var(--ama-yellow);
}
.teaser--title {
    color: var(--ama-blue);
    font-size: 2rem;
    letter-spacing: .5px;
    margin-bottom: 1em;
}
.teaser--text {
    color: var(--ama-blue);
}

/* pricing */
.price--section {
    padding-bottom: 3em;
}
.section--title {
    /*color: var(--ama-blue);*/
    font-size: 3.2rem;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.5em;
}
.section--title > span {
    position: relative;
    display: inline-block;
    padding: .3em;
}
.section--title > span::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--ama-yellow);
}
.price-row {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 10px 30px 0 rgba(5, 16, 44, .15);
    border-radius: 10px;
}
.price--col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 1.5em;
}
.price-row + .price-row {
    margin-top: 2em;
}
.price--col-left {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 767px) {
    .price-row {
        flex-direction: row;
    }
    .price--col-left {
        width: 30%;
    }
    .price--col-left {
        min-height: 250px;
    }
    .price--col-left {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
    }
}

.price-row:nth-of-type(1) .price--col-left {
    background: var(--ama-blue) url("../img/p-02.jpg") center no-repeat;
    background-size: cover;
}
.price-row:nth-of-type(2) .price--col-left {
    background: var(--ama-blue) url("../img/p-03.jpg") center no-repeat;
    background-size: cover;
}
.price-row:nth-of-type(3) .price--col-left {
    background: var(--ama-blue) url("../img/p-01.jpg") center no-repeat;
    background-size: cover;
}
.price--col-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.price-title {
    margin-top: 0;
    line-height: 120%;
}
.price-table tr + tr {
    border-top: 2px solid rgba(15, 49, 134, .1);
}
.price-table td {
    line-height: 150%;
    vertical-align: middle;
    padding-top: 10px;
    padding-bottom: 10px;
}
.td-long {
    padding-right: 20px;
}
.td-short {
    width: 25%;
    font-weight: bold;
    text-align: center;
}
.other-needs {
    font-size: 120%;
    margin: 1em 0;
    text-align: center;
}
@media (max-width: 600px) {
    .price-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 5px 20px;
    }
    .price-table tr {
        border: 2px solid rgba(15, 49, 134, .1);
    }
    .price-table tr:nth-of-type(even) {
        background-color: rgba(15, 49, 134, .05);
    }
}
.divider {
    display: none;
}
@media (min-width: 1024px) {
    .divider {
        display: block;
        height: 500px;
        background: var(--ama-blue) url("../img/divider-bg.jpg") center no-repeat;
        background-size: cover;
    }
    .container--pricing {
        position: relative;
        background-color: var(--white);
        margin-top: -200px;
        padding-top: 50px;
        z-index: 1;
    }
}
@media (min-width: 1200px) {
    .container--pricing {
        padding-left: 40px;
        padding-right: 40px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}
@media (min-width: 1500px) {
    .container--pricing {
        max-width: 1400px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* contact */
.contact-section {
    position: relative;
    padding: 3em 0;
    background: linear-gradient(0deg, var(--white) 90%, var(--grey));
}
.shape-top {
    display: none;
}
@media (min-width: 1024px) {
    .contact-section {
        padding-bottom: 5em;
    }
    .shape-top {
        display: block;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
        direction: ltr;
        transform: rotate(180deg);
    }
    .shape-top > svg {
        width: calc(100% + 1.3px);
        height: 2em;
        transform: translateX(-50%) rotateY(180deg);
        display: block;
        position: relative;
        left: 50%;
    }
    .top-shape-fill {
        fill: var(--ama-blue);
    }
}
.form-row {
    margin-bottom: 1em;
}
.form .col-flex--50 {
    width: 100%;
}
.form-row > label,
.form-row > input,
.form-row >textarea {
    display: block;
    width: 100%;
}
.form-row > label {
    color: var(--primary-color);
    margin-bottom: .5em;
}
.form-row > label > span {
    color: var(--ama-blue);
    font-size: 1.8rem;
    font-weight: 600;
}
.form-row > input,
.form-row > textarea {
    padding: 1.2em 1em;
    color: inherit;
    font-family: var(--primary-font);
    font-size: 2rem;
    border: 1px solid rgba(15, 49, 134, .3);
    border-radius: 3px;
    background-color: var(--white);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.form-row >textarea {
    min-height: 100px;
    resize: vertical;
}
.form-row > input:hover,
.form-row > input:active,
.form-row >textarea:hover,
.form-row >textarea:active,
.form-row > input:focus,
.form-row >textarea:focus {
    border: 1px solid var(--ama-blue);
    background-color: var(--white);
}
.form-row > input:focus,
.form-row >textarea:focus {
    outline: 1px dotted var(--a-focus);
}
button.btn {
    border-color: var(--ama-yellow);
    background-color: var(--ama-yellow);
    color: var(--white);
    cursor: pointer;
    /*min-width: 280px;*/
    text-align: center;
    transition: all 300ms ease;
}

@media (min-width: 901px) {
    .form .col-flex--50 {
        width: 49%;
    }
    .form .col-flex--50 + .col-flex--50 {
        margin-left: 2%;
    }
}
.contact-dir {
    margin-top: 1em;
    margin-bottom: 3em;
}
.col-flex--dir {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 15px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.col-flex--dir > div:nth-of-type(1) {
    width: 20%;
    text-align: center;
}
.col-flex--dir > div:nth-of-type(2) {
    width: 80%;
}
.col-flex--dir > div > p:nth-of-type(1) {
    font-family: var(--secondary-font);
    letter-spacing: .5px;
}
.col-flex--dir > div > p + p {
    margin-top:  0;
}
.col-flex--dir > div > p > a {
    color: var(--primary-color);
    text-decoration: none;
}
@media (min-width: 768px) {
    .col-flex--dir {
        width: 48.5%;
    }
    .col-flex--dir + .col-flex--dir {
        margin-top: 0;
    }
    .col-flex--dir:nth-of-type(1) {
        margin: 0 1.5% 0 0;
    }
    .col-flex--dir:nth-of-type(2) {
        margin: 0 0 0 1.5%;
    }
}

/* footer */
#footer-main {
    position: relative;
    padding: 3em 0;
    background-color: var(--ama-blue);
    text-align: center;
}
#footer-main a {
    display: block;
    color: var(--white);
    text-decoration: none;
}
#footer-main a:hover,
#footer-main a:active,
#footer-main a:focus {
    color: var(--ama-yellow);
}
.footer-logo {
    margin-bottom: 1.5em;
}
.footer-nav {
    margin-top: 2em;
}
.footer-nav ul {
    list-style: none;
    margin: 0;
}
.footer-nav a {
    font-size: 80%;
}

.follow--btn-wrap {
    text-align: center;
    margin: 2em 0;
}
.follow--btn {
    position: relative;
    padding: .3em .3em .2em .3em;
    background-color: var(--white);
    border-radius: 100px;
    text-align: left;
    min-width: 250px;
    max-width: 250px;
    margin: 0 auto;
    align-items: center;
}
#footer-main .follow--btn {
    /*display: flex;*/
    display: inline-block;
    color: var(--ama-blue);
}
.follow--btn-click {
    position: absolute;
    right: 11px;
    bottom: -12px;
    width: 40px;
    transition: all 300ms ease;
    animation: blink-animation 3s ease infinite;
    -webkit-animation: blink-animation 3s ease infinite;
}
.follow--btn-icon {
    /*display: inline-block;*/
    width: 40px;
    transition: all 300ms ease;
    vertical-align: middle;
}
.follow--btn-text {
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 10px;
    transition: all 300ms ease;
    vertical-align: middle;
    margin-top: -32px;
    display: inline-block;
}
.follow--btn:hover,
.follow--btn:active,
.follow--btn:focus {
    box-shadow: 0 0 14px 5px rgba(0, 0, 0, .3);
    /*justify-content: center;*/
}
.follow--btn:hover .follow--btn-icon,
.follow--btn:active .follow--btn-icon,
.follow--btn:focus .follow--btn-icon {
    padding-left: 20px;
}
.follow--btn:hover .follow--btn-click,
.follow--btn:active .follow--btn-click,
.follow--btn:focus .follow--btn-click {
    opacity: 0;
    /*transform: scale(0.5);
    animation: blink-animation-stop 3s ease infinite;
    -webkit-animation: blink-animation-stop 3s ease infinite;*/
}

@keyframes blink-animation {
    0%,100% { transform: scale(0.8); }
    50% { transform: scale(1); }
}
@-webkit-keyframes blink-animation {
    0%,100% { transform: scale(0.8); }
    50% { transform: scale(1); }
}

/*@keyframes blink-animation-stop {
    0%,100% { transform: scale(0.5); }
    50% { transform: scale(0.5); }
}
@-webkit-keyframes blink-animation-stop {
    0%,100% { transform: scale(0.5); }
    50% { transform: scale(0.5); }
}*/

/* other */
.main--page {
    position: relative;
    padding-top: 4em;
    padding-bottom: 3em;
}
#header-main.header-main--page {
    background-image: none;
    padding-top: 20px;
    padding-bottom: 20px;
}
.main--page-h {
    min-height: 75vh;
}
.thankyou-message {
    font-size: 120%;
    text-align: center;
}
@media (min-width: 1024px) {
    .main--page {
        padding-bottom: 6em;
    }
}
#toTop {
    width: 30px;
    height: 50px;
    background: var(--ama-yellow) url("../img/arrow-top.png") center center no-repeat;
    background-size: 15px;
    text-align: center;
    padding: 10px;
    line-height: 20px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    z-index: 40;
    border: 1px solid var(--ama-yellow);
    -webkit-appearance: none;
    transition: all 300ms ease;
}
#toTop:hover,
#toTop:active,
#toTop:focus {
    background-color: var(--ama-blue);
    border-color: var(--ama-blue);
}

