

.menuCircle {
    position: fixed;
    right: 0;
    top: 20px;
    width: 8em;
    margin-top: -2.5em;
    z-index: 1;

}

.owlMenu {
    width: 280px;
    /*height: 360px;*/
    background: #113441;
    transform: translateX(100%);
    transition: 1s;
}

.owlMenu ul {
display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
}
.active {
    transform: translateX(-50%);
}
li {
    list-style: none;
}
li:hover {

    background: white;
}

.owlMenu a {
    display: block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.owlMenu a:hover {
    color:  #113441;
}
.hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 5px 5px 105px rgba(0,0,0,.4);
    cursor: pointer;
    top: 0px;
    left: 30px;
    background: #fff;
    transition: all 1s;
    margin-top: 30px;
}
.hamburger span {
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-45%);
    background: #000;
    transition: .5s;
    /*   box-shadow: 2px 2px 40px rgba(0,0,0,.5); */
}
.hamburger span::before {
    position: absolute;
    top: -8px;
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: #000;
    transition: .2s;
}
.hamburger span::after {
    position: absolute;
    top: 8px;
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: #000;
    transition: .2s;
}
.hamburger-active span {
    transform: rotate(180deg);
    left: 40%;
}
.hamburger-active span::before {
    transform: rotate(45deg);
    width: 10px;
    transform-origin: right top;
    top: 0;
    right: 0;
}
.hamburger-active span::after {
    transform: rotate(-45deg);
    width: 10px;
    transform-origin: right bottom;
    top: 0;
    right: 0;
}

.formBlock .btn {
    border-radius: 8px;
}
