.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1,
.roof .workspace .element .element h3,
.roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}

@media(max-width: 768px) {
    .roof .workspace .element {
        align-self: left;
        justify-self: left;
    }

    .roof .workspace .element .element h1,
    .roof .workspace .element .element h3,
    .roof .workspace .element .element p {
        justify-self: left;
        text-align: left;
    }
}

/* From Uiverse.io by vikiWayne */
.button {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    background-color: #001F54;
    outline: 2px solid #fff;
}

.button:hover {
    color: #001F54;
    transform: scale(1.1);
    outline: 2px solid #001F54;
    box-shadow: 4px 5px 17px -4px #413f3a;
}

.button::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.button:hover::before {
    width: 250%;
}

.colorback {
    padding: 30px 0px;
    background-color: #1e2f23;
    color: #fff;
}

.colorback p,
.colorback li,
.colorback b,
.colorback a {
    color: #fff;
}

.colorback heading {
    border-bottom: 1px solid #fff;

}

hr {
    background: url("../img/hr.png") no-repeat top center;

    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
}

hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #001F54;
    height: 1px;
    top: 22px;
}

hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
    margin-left: 70px;
}

hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
    margin-right: 70px;
}


.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.05);
}


.cardyc {

    /*    border: 3px solid #ffbd30;*/
    padding: 32px;
    border-radius: 5px;
    background-color: #f7e8b7;
    box-shadow: 4px 5px 17px -4px #f7e8b7;




}

.cardyc b {

    color: #fff;
    text-align: center;
    justify-self: center;

}

.cardyc h1 {

    color: #413f3a !important;
    font-weight: 800;
    text-align: center;
    justify-self: center;

}

.cardyc p {

    color: #222;
    text-align: center;
    justify-self: center;

}

@media (min-width: 1200px) {
    .cardyc {
        height: 223px;
    }
}


.imageback {
    padding: 120px 0px;
    background-image: url("../img/imageback.png");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-white {
    padding: 30px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255, 0.8);
    color: white;
}

.bg-white2 {
    padding: 15px;
    padding-top: 25px;
    background-color: rgba(255, 255, 255, 0.8);
}


.imglist {
    list-style-image: url("../img/bee.png");
}

.custom-shape-divider-bottom-1722870491 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1722870491 svg {
    position: relative;
    display: block;
    width: calc(147% + 1.3px);
    height: 140px;
}

.custom-shape-divider-bottom-1722870491 .shape-fill {
    fill: #1e2f23;
}

.butty {
    transition: all 0.3s ease-in-out;
    /*    font-family: "Dosis", sans-serif;*/
}

.butty {
    border-radius: 50px;
    background-color: #3eaf73;
    box-shadow: 0 20px 20px -6px #222;
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: white;
    /*    position: absolute;*/
    padding: 15px;
}

.butty:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.butty:active {
    opacity: 0.5;
}

/* Visor Hover Box */
/* OPEN ALCHEMY.CSS AND REMOVE COL-4 FROM LINE 174 (min-width:992px query) */

.visor {
    position: relative;
    width: 100%;
    /* usually 90, if no space then 100 */
    /* max-width: 400px; remove if using outside of page-content for full screen */
    background-color: #fcf7e8;
    /* only if using outside of page-content */
    overflow: hidden;
}

.visor .visor-overlay {
    background: #001F54a5;
    /* Colour of text overlay */
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.visor:hover .visor-overlay {
    opacity: 1;
}

.visor-img {
    width: 100%;
    height: 100%;
}

.visor-contents {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.visor-contents p,
.visor-contents h3 {
    color: #fff;
}

.visor:hover .visor-contents {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.visor-close {
    top: 20%;
}

.visor,
.visor:before,
.visor:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* CSS Document */

.conveyor {
    display: flex;
    height: auto;
    margin: auto;
    overflow: hidden;
    align-items: center;
}

.conveyor:before {
    position: absolute;
    z-index: 1;
    left: 0;
    content: "";
    width: 23.958%;
    height: 210px;
    /* originally 110px */
    /*    background: linear-gradient(90deg, hsla(0, 0%, 96.9%, 0), hsla(0, 0%, 96.9%, 0.99) 99%);*/

    background: linear-gradient(-90deg, hsla(0, 0%, 96.9%, 0), #F7F7F7);
    /* Last colour code is the shading the image fades to, match to page background colour */
}

.conveyor:after {
    position: absolute;
    right: 0;
    content: "";
    width: 23.958%;
    height: 210px;
    /* originally 110px */
    background: linear-gradient(90deg, hsla(0, 0%, 96.9%, 0), hsla(0, 0%, 96.9%, 0.99) 99%);
}

.conveyor .conveyor-belt {
    display: flex;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 35s linear infinite;
    width: calc(240px * 10);
}

.conveyor .package {
    display: flex;
}

.conveyor .package img {
    width: 180px;
    height: 180px;
    /* originally 80px */
    padding: 10px;
    background-color: white;
    cursor: pointer;
    margin: 20px;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-240px * 5));
        transform: translate((calc(-240px * 5));
        }
    }
