html {
    scroll-behavior: smooth;
}

/*menu start*/
.menu-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.menu-toggle .line {
    fill: none;
    stroke: #000;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.menu-toggle .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.menu-toggle .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.menu-toggle.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.menu-toggle.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.menu-toggle.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.menu-open {
    position: absolute;
    width: 100%;
    left: 0;
    background-color: #fff;
    top: 80px;
    transition: opacity 0.25s ease;
    animation: menu-active-slide 0.25s;
}
@keyframes menu-active-slide {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
/*menu end*/
 /*breadcrumb start*/
ul.breadcrumb {
    list-style: none;
    width: -moz-fit-content !important;
    line-height: 1.5;
    background-color: rgba(0, 0, 0, 0.5);
}
ul.breadcrumb li {
    display: inline;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: #fff;
    content: "\203A";
    font-weight: normal !important;
}
ul.breadcrumb li a {
    text-decoration: none;
}
ul.breadcrumb li:last-child  {
    font-weight: 700;
}
@media(max-width: 767px) {
    ul.breadcrumb {
        display: none;
    }
}
.landing-scroll .active {
    color: #fafafa;
    text-decoration: underline;
    font-weight: 800;
    font-size: 1.0rem;
}
.related-service-tab .active {
    background-color: #003b5c;
    color: #fff;
}
.related-service-tab .active img {
    filter: brightness(0) invert(1);
}
@media(max-width: 639px) {
.migration-steps {
    width: 100% !important;
}
}
/*breadcrumb end*/

