.amenu-item {
    background: #EEEEEE;
    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);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.amenu-item div {
    width: 57px;
    height: 57px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-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%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 210px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 60px;
    border-radius: 150px 0 0 150px;
}

.amenu-open-button {
    background: #EEEEEE;
    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);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform ease-out 200ms;
    transition: -webkit-transform ease-out 200ms;
    transition: 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;
    transition: transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms;
}

.aline-1 {
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
}

.aline-2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.aline-3 {
    -webkit-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);
    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);
    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);
    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;
    box-sizing: border-box;
    font-size: 26px;
    z-index: 199;
}

.amenu-item {
    cursor: pointer;
}

.amenu-open-button {
    z-index: 2;
    -webkit-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;
    transition-duration: 400ms;
    -webkit-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);
    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);
    transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.amenu-open:checked+.amenu-open-button {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-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);
    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) {
    transition-duration: 180ms;
    -webkit-transition-duration: 180ms;
    -webkit-transform: translate3d(0.08361px, -64px, 0);
    transform: translate3d(0.08361px, -64px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(4) {
    transition-duration: 280ms;
    -webkit-transition-duration: 280ms;
    -webkit-transform: translate3d(0.08361px, -128px, 0);
    transform: translate3d(0.08361px, -128px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(5) {
    transition-duration: 380ms;
    -webkit-transition-duration: 380ms;
    -webkit-transform: translate3d(0.08361px, -192px, 0);
    transform: translate3d(0.08361px, -192px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(6) {
    transition-duration: 480ms;
    -webkit-transition-duration: 480ms;
    -webkit-transform: translate3d(0.08361px, -256px, 0);
    transform: translate3d(0.08361px, -256px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(7) {
    transition-duration: 580ms;
    -webkit-transition-duration: 580ms;
    -webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
    transform: translate3d(-90.86291px, 52.62064px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(8) {
    transition-duration: 680ms;
    -webkit-transition-duration: 680ms;
    -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
    transform: translate3d(-91.03006px, -52.33095px, 0);
}

.amenu-open:checked~.amenu-item:nth-child(9) {
    transition-duration: 780ms;
    -webkit-transition-duration: 780ms;
    -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
    transform: translate3d(-0.25084px, -104.9997px, 0);
}

.brown {
    background: -webkit-gradient(linear, left top, right top, from(#7e787a), to(#ebd2c6));
    background: linear-gradient(to right, #7e787a, #ebd2c6);
    background: #b58a46;
    -webkit-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.5);
    padding: 10px;
}

.brown p {
    background: #b58a46;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    color: #fff;
}

.brown:hover {
    color: #fff;
}

.brown:hover p {
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.purple p {
    background: #b278e1;
}

.blue {
    background: #144780;
    -webkit-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.5);
    padding: 10px;
}

.blue p {
    background: #144780;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.blue:hover {
    color: #fff;
}

.blue:hover p {
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.gray {
    background: #9e9aab;
    -webkit-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.5);
    padding: 10px;
}

.gray p {
    background: #9e9aab;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.gray:hover {
    color: #fff;
}

.gray:hover p {
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.green {
    background: #12a98a;
    -webkit-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.5);
    padding: 10px;
}

.green p {
    background: #12a98a;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.green:hover {
    color: #fff;
}

.green:hover p {
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.orange {
    background: #e4a500;
    -webkit-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.5);
    padding: 10px;
}

.orange p {
    background: #e4a500;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.orange:hover {
    color: #fff;
}

.orange:hover p {
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.lightblue {
    background-color: #62C2E4;
    -webkit-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.5);
}

.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;
    transition: all 0.3s ease 0s;
}

.credit a:hover {
    text-decoration: underline;
}

.stayintouch {
    padding-top: 12vh;
    padding-bottom: 12vh;
    background: url("../images/landingbg.jpg");
    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: -ms-flexbox;
    display: flex;
    -webkit-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;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.stayintouch__block-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
}

.stayintouch__block-left h5 {
    font-size: 52px;
    margin-bottom: 1em;
    line-height: 1.5em;
    color: #ffffff;
    font-style: italic;
    font-weight: 900;
    margin: 0;
}

.stayintouch__block-left p {
    font-size: 20px;
    margin-bottom: 1em;
    line-height: 1.5em;
}

@media screen and (max-width: 1100px) {
    .stayintouch__block-left {
        width: 80%;
    }
}

@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;
    }
}

@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;
}

.stayintouch__block-right>div {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1100px) {
    .stayintouch__block-right {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .stayintouch__block-right>div {
        position: static;
    }
}


/*# sourceMappingURL=menu.css.map */