.intro-animation_animation-square-1 path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dash 600ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}
.intro-animation_animation-square-2 path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dash 600ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 4000ms;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.intro-animation_animation-square-1 {
    position: relative;
    left: 155px;
    animation: anim-left-zero 1s;
    animation-delay: 3500ms;
    animation-fill-mode: forwards;
}

.intro-animation_animation-code-rect {
    padding: 1rem;
    height: 3.8rem;
    overflow: hidden;
    flex-direction: row;
    justify-content: space-around;
}
.intro-animation_animation-code-rect div {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    height: 1.8rem;
    /* height: 40px;
    line-height: 40px; */
    width: 600px;
    text-align: center;
    transition: height 1000ms cubic-bezier(0.1, 0.65, 0.48, 0.96);
}

.intro-animation_mailto-link {
    padding: 1rem;
    font-size: 1.8rem;
    text-align: center;
}

.intro-animation_we-do-that {
    height: 3rem;
    font-size: 3.0rem;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: all 1000ms cubic-bezier(0.1, 0.65, 0.48, 0.96);
    opacity: 0;
    animation: anim-opacity-1 1s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
@keyframes anim1 {
    to {
        margin-top: 1rem;
        gap: 1rem;
    }
}
@keyframes anim-opacity-1 {
    to {
        opacity: 1;
    }
}
@keyframes anim-scale-1 {
    to {
        transform: scale(1);
    }
}
@keyframes anim-left-zero {
    to {
        left: 0;
    }
}

.intro-animation_intro-1 {
    margin-top: 3rem;
    gap: 3rem;
    justify-content: space-around;
    animation: anim1 1s ease-in-out;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

.intro-animation_section-svganim {
    flex-direction: row;
    justify-content: center;
}

.intro-animation_conveyor {
    stroke-dasharray: 10;
    animation: anim-conveyor 5s linear, anim-opacity-1 500ms;
    animation-iteration-count: infinite, 1;
    animation-fill-mode: none, forwards;
    animation-delay: 5000ms;
    opacity: 0;
}

@keyframes anim-conveyor {
    to {
        stroke-dashoffset: -422.8318530717959;
    }
}

.intro-animation_anim-conveyor .intro-animation_c1 {
    opacity: 0;
    transform: scale(0.1);
    transform-origin: 10px 90px;
    animation: anim-scale-1 500ms, anim-opacity-1 200ms;
    animation-delay: 4200ms;
    animation-fill-mode: forwards;
}
.intro-animation_anim-conveyor .intro-animation_c2 {
    opacity: 0;
    transform: scale(0.1);
    transform-origin: 190px 90px;
    animation: anim-scale-1 500ms, anim-opacity-1 200ms;
    animation-delay: 4600ms;
    animation-fill-mode: forwards;
}
.intro-animation_anim-conveyor .intro-animation_package {
    position: relative;
    transform: translateX(-46px);
    opacity: 0;
    animation: anim-conveyor-package 3s linear, anim-opacity-1 1000ms;
    animation-iteration-count: infinite, 1;
    animation-delay: 5400ms;
    animation-fill-mode: forwards;
}

@keyframes anim-conveyor-package {
    to {
        transform: translateX(206px);
    }
}

/*
    [C] Copyright 2022 Coherent Constructs. All rights reserved.
    [?] The "normalize" styles, but with more coherent defaults.
*/

:root {
    font-size: 10px; /* for rem convention */
}
* {
    box-sizing: border-box;
}
BODY {
    background-color: rgb(200, 209, 209);
    align-items: stretch;
}
BODY, div {
    display: flex;
    flex-direction: column;
    margin: 0;
}

a:link, a:visited, a:active {
  color: rgb(21, 119, 194);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/*
    [C] Copyright 2022 Coherent Constructs. All rights reserved.
    [?] Layout styles for coherentconstructs.com
*/

.layout_container-inner {
    width: 100%;
    max-width: 1000px;
}
.layout_header {
    flex-direction: row;
    justify-content: center;
    color:rgb(240, 248, 255);
    background-color: #FFF;
    border-bottom: 1px solid #2d373b;
}
.layout_header-inner {
    line-height: 80px;
    flex-direction: row;
    padding: 0 15px;
    gap: 15px;
    /* height: calc(2*15px + 63px); */
    text-align: center;
    font-size: 48px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    /* background-color: rgb(107, 155, 197); */

}
.layout_header .layout_logo img {
    height: 63px;
    width: 45px;
}

.layout_header .layout_logo {
    height: calc(2*15px + 63px);
    padding: 15px 0;
    display: flex;
    flex-direction: row;
}

.layout_header .layout_logo .layout_texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.layout_header .layout_logo .layout_texts > * {
    text-align: left;
    font-weight: 600;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.layout_header .layout_logo .layout_text1 {
    font-size:calc(0.3 * 60px);
    color: #2d373b;
    /* margin-top: -2px; */
}
.layout_header .layout_logo .layout_text2 {
    margin-top: -67px;
    font-size:calc(0.3 * 41.5px);
    text-align: right;
    /* color: #25b086; */
    color: #989e9c;
    /* letter-spacing: 6.4px; */
}

.layout_header .layout_navigation {
    flex-direction: column;
}
.layout_header .layout_navigation-aux {
    flex-grow: 1;
}
.layout_header .layout_navigation-main {
    height: 40px;
    flex-direction: row;
    gap: 15px;
}
.layout_header .layout_navigation-main .layout_tab {
    height: 40px;
    padding: 0 15px;
    background-color: rgba(45, 55, 59, 0.7);
    font-size: 24px;
    line-height: 40px;
    border-radius: 5px 5px 0 0;
}

@media only screen and (max-width: 700px) {
    .layout_header {
        flex-direction: column;
        padding-bottom: 15px;
    }
    .layout_header-inner {
        flex-direction: column;
    }
    .layout_header .layout_navigation-main {
        flex-direction: column;
        height: auto;
    }
    .layout_header .layout_navigation-main .layout_tab {
        height: 60px;
        line-height: 60px;
        border-radius: 5px;
    }
}
@media only screen and (max-width: 300px) {
    BODY {
        width: 300px;
    }
}
