﻿body {
    overflow-x: hidden;
}

#one {
    min-height: 100vh;
    max-width: 100vw;
    background-image: url('images/landing_page.jpg');
    background-position-y: bottom;
    background-position-x: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
    top: 0;
    z-index:3;
    margin: 0;
}

.three {
    /*font-size: 32px;*/
    text-align: center;
    background-color: transparent;
    background-image: linear-gradient(180deg, hsla(0, 0%, 66%, 0) 0%, hsl(0,0%,90%) 25%, hsl(0,0%,78%) 75%, hsla(0, 0%, 40%, 0) 100%);
    margin-bottom: 0;
    height: 50vh;
    padding: 50px 5vw;
}

.three header {
    font-size: 32px;
}

.left {
    text-align: left;
    float: left;
}

.right {
   float: right;
   text-align: right;
}

.descript {
    position: relative;
    max-width: 66.6%;
    top: 25%;
    padding: 0 50px;
    font-size: 24px;
    /*background-color: #337ab7;*/
}

.image {
    max-width: 33.3%;
    max-height: 100%;
    
}

.frame {
    height: calc(100% - 45.6px);
}

.background {
    height: 15vh;
}

#contact {
    height: 33vh;
    font-size: 32px;
    margin-bottom: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 100%;
    background-color:transparent;
    background-image: radial-gradient(
        hsl(0,0%,90%) 0%, 
        hsl(0,0%,78%) 25%, 
        hsl(0,0%,66%) 42%,
        hsla(0,0%,33%, 0) 70%    
    );

}

#getQuote {
    border-radius: 100px;
    background-color: #337ab7;
    border-color: #337ab7;
}

#page {
    display: table;
    height: 100%;
    width: 100%;
    position: relative;
    background: url('images/codeBackground.jpg') no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 0;
    padding-bottom: 0;
    position: relative;
    top: -70px;
    margin-left: 0;
    margin-right: 0;
    z-index: 1;
}

#banner {
    position: absolute;
    bottom: 37%;
    left: 0;
    right: 0;
}

#banner a:visited, #banner a:link, #banner p, #banner a:hover, .three {
    color: #222;
    text-shadow: 0px 0px 10px white;
}

.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/*MOBILE*/

@media(max-width: 768px){
    .right, .left {
        float: none;
        text-align: center;
    }
    .descript {
        max-width: 100%;
        top: 0;
        padding: 5px 25px;
    }
    .image {
        max-width: 100%;
    }
    .three {
        height: auto
    }
}

/* {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
}*/