.gradbottom {
    position: absolute;
    bottom: 0px;
    height: 38vw;
    width: 100% !important;
    background: linear-gradient(transparent, black);
}

#ca3dsec {
    position: relative;
    overflow: hidden;
}

#ca3dtitle {
    position: relative;
    font-family: cafont;
    color: whitesmoke;
    font-size: 2.1vw;
    top: 10vw;
    text-shadow: 2px 2px 6px #555;
    transform: scale(0.5);
}

#blackarea {
    width: 100%;
    height: 150px;
    background-color: black;
}

#topgrad {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 30px;
    background: linear-gradient(black, transparent);
}

#botgrad {
    position: absolute;
    bottom: 0px;
    height: 30px;
    width: 100%;
    background: linear-gradient(transparent, var(--back-color));
}

#cadescsec {
    position: absolute;
    top: 4vw;
    left: 20px;
}

#vidtitle {
    color: darkgray;
    font-size: 20px;
    margin: 20px 2% 0px 2%;
}

.featsec {
    position: relative;
    width: 100%;
    margin: 30px 0px;
    padding: 30px 0px;
}

.feattitle {
    color: darkgray;
    font-size: 20px;
    margin: 0px 4%;
}

#featdesc {
    color: darkgray;
    font-size: 16px;
    margin: 0px 4%;
}

.featiarea {
    position: relative;
    display: inline-block;
    width: 70%;
    margin-left: 15%;
}

#madetitle {
    color: darkgray;
    font-size: 20px;
    margin: 30px 4% 0px 4%;
}

#downsec {
    width: 100%;
    height: 38vw;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(transparent, black);
}

#downmar {
    position: relative;
    width: 100%;
    height: 38vw;
}

#madedesc {
    color: darkgray;
    font-size: 16px;
    margin: 0px 4%;
}

#contactdesc {
    color: darkgray;
    font-size: 16px;
    margin: 0px 4% 20px 4%;
}

#downimg {
    width: 100%;
    height: 38vw;
    position: absolute;
    bottom: 0px;
}

#ca3ddesc {
    position: relative;
    font-weight: bold;
    font-size: 1.4vw;
    width: 21vw;
    color: whitesmoke;
    margin-left: 10px;
    top: 10vw;
    text-shadow: 2px 2px 6px #555;
    transform: scale(0.5);
}

.downup-anim {
    -webkit-animation: moving 3s forwards;
    animation: moving 3s forwards;
}

#introvid {
    max-width: 96%;
    height: auto;
    margin: 10px 2%;
}

#introvidesection {
    position: relative;
    padding: 10px;
    width: 70%;
    margin-left: 15%;
    margin-top: 40px;
    margin-bottom: 30px;
    overflow: hidden;
}

.lfeature-img {
    width: 100%;
    transition: 0.1s all ease-in-out;
}

    .lfeature-img:hover {
        transform: scale(1.1);
    }

.feature-img {
    height: 100%;
    width: 100%;
    transition: 0.3s all ease-in-out;
}

    .feature-img:hover {
        transform: scale(1.4);
    }

.feature-div {
    position: relative;
    overflow: hidden;
    float: left;
    width: 24%;
    height: 17vw;
    margin: 0.5%;
}

.lfeature-div {
    position: relative;
    overflow: hidden;
    float: left;
    width: 49%;
    height: 17vw;
    margin: 0.5%;
}

.feature-divm {
    display: none;
    position: relative;
    overflow: hidden;
    width: 84%;
    height: auto;
    margin-left: 8%;
    margin-top: 20px;
}

.feature-imgm {
    height: auto;
    width: 100%;
}

.feature-title {
    position: absolute;
    text-shadow: 0px 0px 5px #111;
    bottom: 0.6vw;
    font-size: 1.3vw;
    color: whitesmoke;
    left: 0.8vw;
    z-index: 100;
}

.feature-desc {
    position: absolute;
    text-shadow: 0px 0px 5px #111;
    bottom: 0.0vw;
    font-size: 0.9vw;
    color: darkgray;
    left: 1.0vw;
    z-index: 100;
}

.feature-desc-light {
    position: absolute;
    text-shadow: 0px 0px 5px #111;
    bottom: 0.0vw;
    font-size: 0.9vw;
    color: whitesmoke;
    left: 1.0vw;
    z-index: 100;
}

.newssec {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 30px 0px;
}

.newstext {
    color: darkgray;
    font-size: 20px;
    margin: 20px 4%;
}

#lnews-img {
    width: 70%;
    margin-left: 15%;
    margin-top: 20px;
}

#lnews-title {
    font-size: 20px;
    color: darkgray;
    margin: 30px 15% 0px 15%;
}

#lnews-desc {
    font-size: 16px;
    color: darkgray;
    margin: 10px 15% 0px 15%;
}

#lnews-link {
    font-size: 15px;
    margin: 0px 15% 20px 15%;
    text-decoration: none !important;
    font-weight: bold;
}

#ca3dimg {
    width: 100%;
}

@-webkit-keyframes moving {
    from {
        top: 10vw;
        opacity: 0.3;
        transform: scale(0.5);
    }

    to {
        top: 0px;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes moving {
    from {
        top: 10vw;
        opacity: 0.3;
        transform: scale(0.5);
    }

    to {
        top: 0px;
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 900px) {

    #ca3dimg {
        width: auto;
        height: 70vw;
        transform: translateX(-50vw);
    }

    #ca3dtitle {
        font-size: 4vw;
    }

    #ca3ddesc {
        font-size: 3.2vw;
        width: 90%;
    }

    #introvid {
        width: 96%;
        height: auto;
        margin: 10px 2%;
    }

    #introvidesection {
        padding: 0px;
        width: 100%;
        margin-left: 0%;
    }

    #downsec {
        height: 70vw;
    }

    #downimg {
        width: auto;
        height: 70vw;
        transform: translateX(-50vw);
    }

    #lnews-img {
        width: 94%;
        margin-left: 3%;
    }

    #downmar {
        height: 70vw;
    }

    .feature-divm {
        display: block;
    }

    .featiarea {
        display: none;
    }

    .feature-title {
        bottom: 5.5vw;
        font-size: 4.8vw;
    }

    .feature-desc {
        font-size: 3.8vw;
        left: 3%;
    }

    .feature-desc-light {
        font-size: 3.8vw;
        left: 3%;
    }
}
