@font-face {
    font-family: Gotham-Light;
    src: url('Gotham/Gotham-Light.otf')  format('opentype');
    }

.html {
    scroll-behavior: smooth;
}

.menu-items {
    cursor: pointer;
    /* padding: 10px; */
    /* color: rgb(7, 89, 133); */
}

.menu-items:hover {
    background-color: orange;
}

.expertise-m {
    position: relative;
    display: inline-block;
}

.expertise-sm {
    display: none;
    position: absolute;
    background-color: white;
    top: 25px;
    min-width: max-content;
    padding: 12px 0px;
}

.expertise-sm a {
    color: rgb(7, 89, 133);
    padding: 12px 20px;
    display: block;
}

.expertise-sm a:hover {
    background-color: #ddd;
}

.expertise-m:hover .expertise-sm {
    display: block;
}

.expertise-sm-mobile {
    font-size: 14px;
    margin-left: 16px;
    /* padding: 12px 16px; */
}

.menu-pad {
    padding-top: 0px;
    padding-bottom: 0px;
    top: 48px;
}

.menu-padding {
    padding-top: 0;
    padding-bottom: 0;
    /* background-color: rgb(7, 89, 133); */
    color: white;
    top: 0;
    position: fixed;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 180px;
    /* -webkit-animation: fill-up 2s linear; */
    /* animation: fill-up 2s linear; */
  }

  @-webkit-keyframes fill-up {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }

  @keyframes fill-up {
    0% { height: 10%; }
    100% { height: 25%; }
  }

  /* Add animation to "page content" */
  .animate-bottom {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    z-index: 100;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: east-in-out;
    animation-name: animatebottom;
    animation-duration: 1s;
  }

  @-webkit-keyframes animatebottom {
    from { height: 100vh; }
    to { height: 0vh; }
  }

  @keyframes animatebottom {
    from { height: 100vh; }
    to { height: 0vh; }
  }


/* Add animation to "page content" */
    .animate-logo {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #ddd;
    z-index: 100;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: east-in-out;
    animation-name: animatelogo;
    animation-duration: 5s;
    }

    @-webkit-keyframes animatelogo {
    from { height: 100%; }
    to { height: 0%; }
    }

    @keyframes animatelogo {
    from { height: 100%; }
    to { height: 0%; }
    }


/* Home page slide show */
.slideshow-container {
    width: 100%;
    position: relative;
    background-color: black;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 30%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.animText {
    animation: cssload-breathe 4s ease 1;
}

@keyframes cssload-breathe {
    0% {
        letter-spacing: 10px;
        color: transparent;
    }
    40% {
        color: white;
    }
    60%, 100% {
        letter-spacing: 0;
        /* font-size: 30px; */
    }
}

.animText2 {
    animation: slideFromTop 4s ease 1;
}

@keyframes slideFromTop {
    0%, 50% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animImageU {
    animation: scaleUpImage 5s ease-out 1 forwards;
    animation-delay: 2s;
}

@keyframes scaleUpImage {
    100% { transform: scale(1.1, 1.1); }
}

.animImageD {
    animation: scaleDownImage 5s ease-out 1 forwards;
    animation-delay: 2s;
}

@keyframes scaleDownImage {
    /* 0% { transform: scale(1.1, 1.1); } */
    100% { transform: scale(1.0, 1.0); }
}