@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    outline: none;
    font-family: "Lato", sans-serif;
    scroll-behavior: smooth;
}

.Montserrat {
    font-family: "Montserrat", sans-serif;
}

img,
button,
iframe,
a {
    user-select: none;
}

.fadeIn {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.myShadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

input:user-invalid {
    border: 1.5px solid rgba(255, 0, 0, 0.416);
}

.homeBanner {
    background: linear-gradient(270deg, rgba(29, 41, 57, 0) -5.9%, #1D2939 99.57%), url(/docs/assets/images/bg.jpg) center/cover no-repeat;
}

.banner {
    background: linear-gradient(270deg, rgba(29, 41, 57, 0) -5.9%, #1D2939 99.57%),
        url(/docs/assets/images/about.jpg) no-repeat center center;
    background-size: cover;
}

.contactBanner {
    background: url(/docs/assets/images/contact.png) no-repeat center center;
    background-size: cover;
}

.service1 {
    background: linear-gradient(270deg, rgba(29, 41, 57, 0) -5.9%, #1D2939 99.57%),
        url(/docs/assets/images/rfe.png) no-repeat center center;
    background-size: cover;
}

.services2 {
    background: linear-gradient(270deg, rgba(29, 41, 57, 0) -5.9%, #1D2939 99.57%),
        url(/docs/assets/images/compliance.png) no-repeat center center;
    background-size: cover;
}

.services3 {
    background: linear-gradient(270deg, rgba(29, 41, 57, 0) -5.9%, #1D2939 99.57%),
        url(/docs/assets/images/Management-de-Transition.png) no-repeat bottom center;
    background-size: cover;
}

@media (min-width: 768px) {
    .servicePath {
        clip-path: polygon(2rem 0, 100% 0%, 35.5rem 100%, 0% 100%);

    }
}

.typing-loop {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #23B695;
    animation: typingLoop 6s steps(9) infinite;
}

@keyframes typingLoop {
    0% {
        width: 0;
    }

    30% {
        width: 8.5ch;
        /* finish typing */
    }

    80% {
        width: 8.5ch;
        /* hold for 3 seconds */
    }

    81% {
        width: 0;
        /* instantly hide */
    }

    100% {
        width: 0;
    }
}