main {
    background:#000;
}
body {
    /* padding-top: 3rem; */
    color:#fff;
    height:100%;
    font-size:14px;
    background:#000;
}
.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}
.min-100 {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    /* max-width:1280px; */
}

.bg-maroon {
    background: rgb(130,1,1);
    background: -moz-linear-gradient(90deg, rgba(130,1,1,1) 0%, rgba(247,222,222,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(130,1,1,1) 0%, rgba(247,222,222,1) 100%);
    background: linear-gradient(90deg, rgba(130,1,1,1) 0%, rgba(247,222,222,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#820101",endColorstr="#f7dede",GradientType=1);
    color:#fff;
}

.bg-rose {
    background: rgb(247,222,222);
    background: -moz-linear-gradient(90deg, rgba(247,222,222,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(247,222,222,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(90deg, rgba(247,222,222,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7dede",endColorstr="#ffffff",GradientType=1);
}

.bg-gray {
    background-color:#333333;
    color:#fff;
}

.bg-white {
    background-color:#fff;
    color:#000;
}

.text-maroon {
    color:#820101;
}

.meatec-section {
    padding: 5rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

.meatec-section > p {
    position: absolute;
    /* bottom:0; */
    display: inline-block;
    width:30%;
    min-width:300px;
    padding:3em;
    text-align: left;
    vertical-align: middle;
    margin:3em;
    z-index:2;
}

.meatec-section > strong {
    position: absolute;
    line-height: .5em;
    font-size:150vh;
}

.video-container {
    text-align: center;
    width:100%;
}

video {
    position: fixed;
    display: inline-block;
    right:0;
    top:0;
    object-fit: cover;
    /* translate: 0;
    -webkit-transform: translate(); */
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    width:100%;
    height:100%;
    transform-origin: top;
    opacity:0;
    animation: fadein 1s linear forwards;
    animation-delay: 3s;
}

.overlay {
    position: absolute;
    z-index:9;
    margin:10% auto;
    text-align: center;
    width:100%;
    left:0;
}

.meatec-section img {
    position: absolute;
}

.meatec-section.one img {
    left:0;
    bottom:0;
    width:50%;
}

.meatec-section.two img {
    left:0;
    bottom:0;
    width:80%;
    opacity:.8;
}

.meatec-section.three img {
    left:10%;
    bottom:0;
    width:40%;
    opacity:.8;
}

span.nav-arrow-down {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    bottom: 50px;
    z-index: 2;
}

.path {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    /*animation: dash 3s linear forwards;*/
}

.path:nth-of-type(2) {
    animation-delay:.2s;
}

.path:nth-of-type(3) {
    animation-delay:.3s;
}

main.contact {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

#product-image-container {
    text-align:center;
}
#product-image-container svg {
    width:50%;
    margin:30px 0;
}
  
@keyframes dash {
    to {
      stroke-dashoffset: 0;
    }
}

@keyframes fadein {
    to {
      opacity:.8;
    }
}

@media only screen and (max-width: 600px) {
    .meatec-section > p {
        min-width:350px;
        margin:2em;

      }
    .meatec-section > img {
      min-width:500px;
    }
    .meatec-section > img {
        min-width:400px;
    }
    .overlay {
        margin-top:30%;
    }
    main > img {
        min-height:200px;
        object-fit:cover;
    }
}