.map {
    position: relative;
	width: 100%;
}
.map-canvas {
    height: 110px;
    width: 100%;
}
.map-canvas-contact-two {
	height: 427px;
}

.map-canvas.style2 {
	height: 500px;
}

.map-full {
	height: 30%;
    min-height: 427px;
    width: 100%;
    z-index: -999;
    position: absolute;
    margin: auto;
    -webkit-transition: all 2500ms ease 0s;
    -moz-transition: all 2500ms ease 0s;
    -ms-transition: all 2500ms ease 0s;
    -o-transition: all 2500ms ease 0s;
    transition: all 2500ms ease 0s;
    opacity: 0;
    top: -100%;
}
.map-full.open {
    z-index: 999;
    position: absolute;
    margin: auto;
    -webkit-transition: all 2500ms ease 0s;
    -moz-transition: all 2500ms ease 0s;
    -ms-transition: all 2500ms ease 0s;
    -o-transition: all 2500ms ease 0s;
    transition: all 2500ms ease 0s;
    opacity: 1;
    top: 0;
}
.map:hover .full-map {
    display: block;
}
.map .full-map {
    position: absolute;
    background-color: rgba(0, 206, 243, 0.7);
    height: 100%;
    top: 0;
    display: none;
    width: 100%;
    text-align: center;
    line-height: 110px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.map .full-map:hover {
    text-decoration: none;
}
.map-main {
    width: 100%;
    height: 500px;
    background: #fff;
    position: relative;
    display: none;
}
.map-box {
    opacity: 0.7;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    display: inline-block;
    transition: all 2500ms ease 5s;
}
.map-box-in {
    display: none;
}
.map-main-in {
    display: block;
    transition: all 2500ms ease;
}