html,body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 95%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


.font-en-italic{
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: italic;
}

.hover-menu-trigger:hover .hover-menu{
    display: grid;
}

/** TOP LOADING -------------------------------------------*/
.loading-bar{
    animation: loading 1.3s infinite ease-in-out;
}

@keyframes loading {
    0%{
      transform: translateX(-100%);
    }
    100%{
      transform: translateX(100%);
    }
}
/** TOP LOADING -------------------------------------------*/

/** LOADING ICON -------------------------------------------*/
.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
}
@keyframes pulse {
    from {
      opacity: 1;
      transform: scale(1);
    }
    to {
      opacity: .25;
      transform: scale(.75);
    }
}
/** LOADING ICON -------------------------------------------*/
    

/** FOOTER -------------------------------------------*/

.link-arrow{
    transform:rotate(-90deg);
}

.link-arrow .circle {
    transform: translate(-2px,-2px);
    stroke: white;
    stroke-width: 2px;
    fill: transparent;
    stroke-dasharray: 69px;
    stroke-dashoffset: 69px;
}

@keyframes circleAnim {
    to {
        stroke-dashoffset: 0;
    }
}

.footer-link:hover{
    opacity: .8;
}

.footer-link:hover .link-arrow .circle{
    animation: circleAnim 1s forwards;
}

.footer-link{
    position: relative;
}

.footer-link::before{
    content: '';
    display: block;
    position: absolute;
    left: .4rem;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/** FOOTER -------------------------------------------*/


/** CONTACT -------------------------------------------*/
.policy-checkbox:checked + label ion-icon{
    display: block !important;
    --ionicon-stroke-width: 40px;
}
/** CONTACT -------------------------------------------*/


/** SERVICE -------------------------------------------*/
.grid-border{
    box-shadow:0 0 0 1px rgba(0,0,0,.1)
}
/** map -------------------------------------------*/

.map_pdf{
    text-align: center;
    margin-bottom: 10%;
}
.map_pdf a{
    background-color: #093a7f;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 5px;
}
.map_pdf a:hover{
    opacity: 0.9;
}
@media screen and (max-width: 750px) {
    .map_pdf{
        margin-bottom: 20%;
    }
    .map_pdf a{
        font-size: .7rem;
    }
}