html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@font-face {
    font-family: "Nevan";
    src: url('../fonts/Nevan.woff2') format('woff2'), url('../fonts/Nevan.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "NevanRUS";
    src: url("../fonts/NevanRUS.eot");
    src: url("../fonts/NevanRUS.eot?#iefix")format("embedded-opentype"), url("../fonts/NevanRUS.woff")format("woff"), url("../fonts/NevanRUS.woff2")format("woff2"), url("../fonts/NevanRUS.ttf")format("truetype"), url("../fonts/NevanRUS.svg#Nevan RUS")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin-bottom: 60px;
}

.textblue {
    color: #2f9eff;
}

.textwhite {
    color: #ffffff;
}
.DL_BorderTop {
    /* border-top: 1px solid greenyellow; */
    border-top: 1px solid #2f9eff;
}

.DL_BorderBottom {
    /* border-bottom: 1px solid greenyellow; */
    border-bottom: 1px solid #2f9eff;
}

.DL_LogoHeader {
    background-image: url('/img/Banner_BG6.jpg');
    background-size: cover;
}

.img-Logo {
    max-width: 100%;
    width: 15%;
    height: auto;
}

.img-DL {
    max-width: 100%;
    /* padding: 1px */
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.maincontainer {
    margin: 0px;
    float: left; /* stack each div horizontally */
    position: relative;
    background-image: url('../img/Exatech_Logo_v1_transparent.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: top center;
}

/* START of Services Animation */
.DL_back {
    position: absolute;
    max-height: inherit;
    height: 68%;
    width: 100%;
    text-align: center;
}

.DL_SubHeading {
    color: #2f9eff;
    margin-bottom: .1rem;
}

.DL_front {
    position: absolute;
    line-height: 0rem;
    
}

/* style the maincontainer class with all child div's of class .front */
.maincontainer > .DL_front {
    position: absolute;
    transform: perspective(600px) rotateY(0deg);
    backface-visibility: hidden; /* cant see the backside elements as theyre turning around */
    transition: transform .5s linear 0s;
}

/* style the maincontainer class with all child div's of class .back */
.maincontainer > .DL_back {
    position: absolute;
    transform: perspective(600px) rotateY(180deg);
    background: #262626;
    color: #fff;
    padding: 5px;
    backface-visibility: hidden; /* cant see the backside elements as theyre turning around */
    transition: transform .5s linear 0s;
}

.maincontainer:hover > .DL_front {
    transform: perspective(600px) rotateY(-180deg);
}

.maincontainer:hover > .DL_back {
    transform: perspective(600px) rotateY(0deg);
}
/* END Services Animation */

/* START OF ALL MEDIA QUERIES */
@media (max-width: 575px) {
    p {
        font-size: 0.7rem;
    }

    .DL_back {
        height: 61%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .img-Logo {
        max-width: 100%;
        width: 30%;
        height: auto;
    }
}
/* END OF ALL MEDIA QUERIES */
