@font-face {
    font-family: lubalin;
    src: url(lubalin_demi.ttf);
}
@font-face {
    font-family: arsilon;
    src: url(Arsilon.ttf);
}

.globe-zoom-out {
    position: relative;
    background: url(../map/earth-background.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
    overflow: hidden;
    padding: 9.625rem 0 9.6875rem;
}

.globe-zoom-out .earth {
    background: url(../map/earth-home.png);
    position: absolute;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    z-index: -1;
    top: 0;
    left: 0;
    transform: translate(-5%, 6%) scale(1.9);
}

.globe-zoom-out .cnt-zoom-out {
    margin: 0 1rem;
}

.globe-zoom-out .zoom-out-title-sec {
    position: relative;
}

.globe-zoom-out .sec-title {
	color: #ffffff;
    margin: 0 0 2.5rem 0;
    padding-bottom: 2.5rem;
    }

.globe-zoom-out .sec-title::after {
    position: absolute;
    left: 0;
    bottom: -.25rem;
    display: block;
    background-color:#57d75d;
    width: 3rem;
    height: 4px;
    content: "";
}

.globe-zoom-out h2 {
	color: #ffffff;
	font: 2.5rem/1.2 'lubalin',serif;
	font-weight: 600;
}
.lrn-para a{
	padding: 0.25rem 0 0.25rem 2.25rem;
	color:#ffffff;
	display: inline-flex;
    position: relative;
    overflow: hidden;
	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.lrn-para a:hover{
	color:#fcff1e;
}
.lrn-para a:before{
    position: absolute;
    top: calc(50% - 0.75rem);
	left: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-size: 0.3125rem 0.5rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    content: '';
	background-color:#fafafa;
    background-image: url(../map/right-angle.svg);
}
.zoom-out-para p{
	display:none;
}
@media screen and (min-width:48em) {
    .globe-zoom-out {
        padding: 13.9375rem 0 15.5625rem;
    }
    .globe-zoom-out .cnt-zoom-out {
        width: calc((((100% - 408px)/16) * 12) + 264px);
        margin: 0 auto;
    }
    .globe-zoom-out .sec-title {
        margin: 0 0 3rem 0;
        padding-bottom:1rem;
    }
    .globe-zoom-out .zoom-out-para {
        margin-left: auto;
    }
    .globe-zoom-out .zoom-out-para p {
		color:#ffffff;
        font-size: 3rem;
        width: 16rem;
    }
	.globe-zoom-out .zoom-out-para p:after{
		background: url(../map/arrow-left.svg) no-repeat;
	}
	.lrn-para{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
    
}
@media screen and (min-width: 64em){
.zoom-out-para p{
	display: inline-block;
    position: relative;
    width: 13.96875rem;
    padding-left: 4.59375rem;
    margin: 0;
    font-family: 'arsilon';
    font-size: 2rem;
    line-height: 1.25;
    color:#0074e0;
}
.zoom-out-para p::after {
    display: block;
    position: absolute;
    top: calc(50% - 0.8125rem);
    left: 0;
    width: 3.8125rem;
    height: 1.625rem;
    content: '';
    background: url(../map/arrow-left-blue.svg) no-repeat;
}
}
@media screen and (min-width:80em) {
    .globe-zoom-out h2 {
		color: #ffffff;
		font: 5rem/1.1 'lubalin',serif;
		font-weight: 600;
        margin-top: 0;
        margin-bottom: 2.625rem;
    }
    .globe-zoom-out .cnt-zoom-out {
        opacity: 0;
        transform: scale(1.5);
    }
    .globe-zoom-out.animate .cnt-zoom-out {
        opacity: 1;
        transform: scale(1);
        transition: all .5s ease-in-out 1s;
    }
    .globe-zoom-out .earth {
        transform: scale(4.4) rotate(-30deg);
        z-index: -1;
    }
    .globe-zoom-out.animate .earth {
        animation: earth linear 1.5s forwards;
    }
    .globe-zoom-out .zoom-out-para {
        margin-right: 9.375rem;
    }
}

@keyframes earth {
    0% {
        transform: scale(7) rotate(-40deg);
    }
    50% {
        transform: scale(4) rotate(-20deg);
    }
    100% {
        transform: scale(1.6) rotate(0deg);
    }
}

