.amenu-item {
    background: #EEEEEE;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin-left: -40px;
    position: absolute;
    color: #FFFFFF;
    text-align: center;
    line-height: 80px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    -moz-transition: transform ease-out 200ms, -moz-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms, -moz-transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.amenu-item div {
    width: 57px;
    height: 57px;
    background: #000000;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-text-stroke: 1px #fff;
    font-weight: 500;
    font-size: 40px;
    color: #000000;
    z-index: 22;
}

.amenu-item div img {
    width: 60%;
}

.amenu-item p {
    position: absolute;
    text-align: end;
    right: 50%;
    font-size: 16px;
    line-height: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    width: 210px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 45px;
    -moz-border-radius: 150px 0 0 150px;
    border-radius: 150px 0 0 150px;
}

.amenu-open-button {
    background: #EEEEEE;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin-left: -40px;
    position: absolute;
    color: #FFFFFF;
    text-align: center;
    line-height: 80px;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    -moz-transition: transform ease-out 200ms, -moz-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms, -moz-transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.amenu-open {
    display: none;
}

.alines {
    width: 25px;
    height: 3px;
    background: #596778;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12.5px;
    margin-top: -1.5px;
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    -moz-transition: transform 200ms, -moz-transform 200ms;
    transition: transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms, -moz-transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms;
}

.aline-1 {
    -webkit-transform: translate3d(0, -8px, 0);
    -moz-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
}

.aline-2 {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.aline-3 {
    -webkit-transform: translate3d(0, 8px, 0);
    -moz-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
}

.amenu-open:checked+.amenu-open-button .aline-1 {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
}

.amenu-open:checked+.amenu-open-button .aline-2 {
    -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
    -moz-transform: translate3d(0, 0, 0) scale(0.1, 1);
    transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.amenu-open:checked+.amenu-open-button .aline-3 {
    -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
    -moz-transform: translate3d(0, 0, 0) rotate(-45deg);
    transform: translate3d(0, 0, 0) rotate(-45deg);
}

.amenu {
    margin: auto;
    position: fixed;
    bottom: 5%;
    right: 2%;
    width: 60px;
    height: 60px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 26px;
    z-index: 99;
}

.amenu-item:hover {
    background: #EEEEEE;
    color: #3290B1;
}

.amenu-item:nth-child(3) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-item:nth-child(4) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-item:nth-child(5) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-item:nth-child(6) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-item:nth-child(7) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-item:nth-child(8) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-item:nth-child(9) {
    -webkit-transition-duration: 180ms;
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
}

.amenu-open-button {
    z-index: 2;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition-duration: 400ms;
    -moz-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    -moz-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    cursor: pointer;
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
}

.amenu-open-button:hover {
    -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
    -moz-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
    transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.amenu-open:checked+.amenu-open-button {
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
    -moz-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
    -moz-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
    transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.amenu-open:checked~.amenu-item {
    -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
    -moz-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
    transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}

.amenu-open:checked~.amenu-item p {
    opacity: 1;
}

.amenu-open:checked~.amenu-item:nth-child(3) {
    -moz-transition-duration: 180ms;
    transition-duration: 180ms;
    -webkit-transition-duration: 180ms;
    -webkit-transform: translate3d(0.08361px, -64px, 0);
    -moz-transform: translate3d(0.08361px, -64px, 0);
    transform: translate3d(0.08361px, -64px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(4) {
    -moz-transition-duration: 280ms;
    transition-duration: 280ms;
    -webkit-transition-duration: 280ms;
    -webkit-transform: translate3d(0.08361px, -128px, 0);
    -moz-transform: translate3d(0.08361px, -128px, 0);
    transform: translate3d(0.08361px, -128px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(5) {
    -moz-transition-duration: 380ms;
    transition-duration: 380ms;
    -webkit-transition-duration: 380ms;
    -webkit-transform: translate3d(0.08361px, -192px, 0);
    -moz-transform: translate3d(0.08361px, -192px, 0);
    transform: translate3d(0.08361px, -192px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(6) {
    -moz-transition-duration: 480ms;
    transition-duration: 480ms;
    -webkit-transition-duration: 480ms;
    -webkit-transform: translate3d(0.08361px, -256px, 0);
    -moz-transform: translate3d(0.08361px, -256px, 0);
    transform: translate3d(0.08361px, -256px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(7) {
    -moz-transition-duration: 580ms;
    transition-duration: 580ms;
    -webkit-transition-duration: 580ms;
    -webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
    -moz-transform: translate3d(-90.86291px, 52.62064px, 0);
    transform: translate3d(-90.86291px, 52.62064px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(8) {
    -moz-transition-duration: 680ms;
    transition-duration: 680ms;
    -webkit-transition-duration: 680ms;
    -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
    -moz-transform: translate3d(-91.03006px, -52.33095px, 0);
    transform: translate3d(-91.03006px, -52.33095px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(9) {
    -moz-transition-duration: 780ms;
    transition-duration: 780ms;
    -webkit-transition-duration: 780ms;
    -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
    -moz-transform: translate3d(-0.25084px, -104.9997px, 0);
    transform: translate3d(-0.25084px, -104.9997px, 0);
}

.blue {
    background: -webkit-gradient(linear, left top, right top, from(#7e787a), to(#ebd2c6));
    background: -moz-linear-gradient(left, #7e787a, #ebd2c6);
    background: linear-gradient(to right, #7e787a, #ebd2c6);
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
    padding: 10px;
}

.blue p {
    background: -webkit-gradient(linear, left top, right top, from(#7e787a), to(#ebd2c6));
    background: -moz-linear-gradient(left, #7e787a, #ebd2c6);
    background: linear-gradient(to right, #7e787a, #ebd2c6);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.blue:hover {
    color: #669AE1;
    text-shadow: none;
}

.green {
    background: -webkit-gradient(linear, left top, right top, from(#c10c57), to(#e06919));
    background: -moz-linear-gradient(left, #c10c57, #e06919);
    background: linear-gradient(to right, #c10c57, #e06919);
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
    padding: 10px;
}

.green p {
    background: -webkit-gradient(linear, left top, right top, from(#c10c57), to(#e06919));
    background: -moz-linear-gradient(left, #c10c57, #e06919);
    background: linear-gradient(to right, #c10c57, #e06919);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.green:hover {
    color: #70CC72;
    text-shadow: none;
}

.red {
    background: -webkit-gradient(linear, left top, right top, from(#e0a330), to(#0ea70e));
    background: -moz-linear-gradient(left, #e0a330, #0ea70e);
    background: linear-gradient(to right, #e0a330, #0ea70e);
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
    padding: 10px;
}

.red p {
    background: -webkit-gradient(linear, right top, left top, from(#e2d66d), to(#6ba16d));
    background: -moz-linear-gradient(right, #e2d66d, #6ba16d);
    background: linear-gradient(to left, #e2d66d, #6ba16d);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.red:hover {
    color: #FE4365;
    text-shadow: none;
}

.purple {
    background: -webkit-gradient(linear, left top, right top, from(#dad5d7), to(#abd3d3));
    background: -moz-linear-gradient(left, #dad5d7, #abd3d3);
    background: linear-gradient(to right, #dad5d7, #abd3d3);
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
    padding: 10px;
}

.purple p {
    background: -webkit-gradient(linear, left top, right top, from(#dad5d7), to(#abd3d3));
    background: -moz-linear-gradient(left, #dad5d7, #abd3d3);
    background: linear-gradient(to right, #dad5d7, #abd3d3);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.purple:hover {
    color: #C49CDE;
    text-shadow: none;
}

.orange {
    background-color: #FC913A;
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.orange:hover {
    color: #FC913A;
    text-shadow: none;
}

.lightblue {
    background-color: #62C2E4;
    -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.lightblue:hover {
    color: #62C2E4;
    text-shadow: none;
}

.credit {
    margin: 24px 20px 120px 0;
    text-align: right;
    color: #EEEEEE;
}

.credit a {
    padding: 8px 0;
    color: #C49CDE;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.credit a:hover {
    text-decoration: underline;
}

.stayintouch {
    padding-top: 12vh;
    padding-bottom: 12vh;
    background: url("../images/landingbg.jpg");
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

@media (max-width: 1300px) {
    .stayintouch {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 1050px) {
    .stayintouch {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 800px) {
    .stayintouch {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.stayintouch__block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 1100px) {
    .stayintouch__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.stayintouch__block-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
}

@media screen and (max-width: 1100px) {
    .stayintouch__block-left {
        width: 80%;
    }
}

.stayintouch__block-left h5 {
    font-size: 52px;
    margin-bottom: 1em;
    line-height: 1.5em;
    color: #ffffff;
    font-style: italic;
    font-weight: 900;
    margin: 0;
}

@media (max-width: 1600px) {
    .stayintouch__block-left h5 {
        font-size: 50px;
    }
}

@media (max-width: 1300px) {
    .stayintouch__block-left h5 {
        font-size: 48px;
    }
}

@media (max-width: 1050px) {
    .stayintouch__block-left h5 {
        font-size: 46px;
    }
}

.stayintouch__block-left p {
    font-size: 20px;
    margin-bottom: 1em;
    line-height: 1.5em;
}

@media (max-width: 1600px) {
    .stayintouch__block-left p {
        font-size: 18px;
    }
}

@media (max-width: 1300px) {
    .stayintouch__block-left p {
        font-size: 16px;
    }
}

@media (max-width: 1050px) {
    .stayintouch__block-left p {
        font-size: 14px;
    }
}

.stayintouch__block-right {
    width: 50%;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .stayintouch__block-right {
        width: 100%;
    }
}

.stayintouch__block-right>div {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1100px) {
    .stayintouch__block-right>div {
        position: static;
    }
}


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