﻿#wrapper .header {
    background-color: #008ac1;
    padding: 10px 0;
}

#wrapper .header .RadMenu {
    margin: 15px 0;
    float: none;
}

#wrapper .logo {
    margin: 10px 0;
    width: 100%;
    display: inline-block;
}

#wrapper .logo img {
    max-width: 100%;
}

#wrapper .jumbotron {
    padding: 1.875em;
    padding-top: 1em;
    background-color: #e9eaea;
}

#wrapper .jumbotron .RadButton {
    float: right;
    margin-top: .667em;
    font-size: .5em;
}

#wrapper .footer {
    width:100%;
    padding: 30px 15px;
    line-height: 30px;
}

#wrapper .banner {
  background-image: url('/images/swimming-pool.jpg');
  width: 100%;
  height: 480px;
  background-position: center center;
  background-repeat:no-repeat;
  /* Make the background image cover the area of the <div>, and clip the excess */
  background-size: cover;
}

#wrapper .banner-background {
  width: 100%;
  height: 480px;
  margin: 0 auto;
  background-position: right bottom; 
  background-image: url('/images/HomePage/Image1.png'); 
  background-repeat: no-repeat; 
  background-size: contain;
}
@media only screen and (max-width: 480px) {
    #wrapper .banner-background {
        height: 400px;
    }
}

#wrapper .banner-header {
    color: white;
    font-style:normal;
    font-variant:normal;
    font-weight: bold;
    font-size: 3em;
    line-height: 0.8;
    font-family: MetricWeb-Semibold, "Arial Bold", Gadget, sans-serif;
    letter-spacing: -0.03em;
    margin: 0 0;
    top: 25px;
    left: 0px;    
    position: relative;
    padding-left: 5px;
}
@media only screen and (min-width: 481px) and (max-width: 720px) {
    #wrapper .banner-header {
        font-size: 2.5em;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper .banner-header {
        font-size: 2em;
    }
}

#wrapper .banner-description {
    color: white;
    font-style:normal;
    font-variant:normal;
    font-weight: bold;
    font-size: 1.375em;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0;
    top: 40px;
    left: 0px;    
    max-width: 450px;
    position: relative;
    padding-left: 5px;
}
@media only screen and (min-width: 721px) and (max-width: 1000px) {
    #wrapper .banner-description {
        font-size: 1.2em;
        max-width: 300px;
    }
}
@media only screen and (min-width: 481px) and (max-width: 720px) {
    #wrapper .banner-description {
        font-size: 1.175em;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper .banner-description {
        font-size: 0.9em;
    }
}

#wrapper .banner-img {
    top: 3.75em;
    position: relative;
}

#wrapper .center {
    margin: 0 auto;
}

#wrapper .no-padding {
    padding: 0;
}

#wrapper .no-margin {
    margin: 0;
}

#wrapper .feature {
    -webkit-transform: scale(1);
    -webkit-transition: -webkit-transform .2s ease, opacity .4s ease;
    transform: scale(1);
    transition: transform .2s ease, opacity .4s ease;
}

#wrapper .feature-thumb {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    float: left;
}

#wrapper .feature-title {
    color: #008ac1;
    font-style:normal;
    font-variant:normal;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none !important;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0;
}

#wrapper .feature-title a {
    color: #008ac1;
    text-decoration: none !important;
}

#wrapper .feature-title a.visited {
    color: #008ac1;
    text-decoration: none !important;
}

#wrapper .feature-short-desc {
    font-style:normal;
    font-variant:normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5px;
}

#wrapper .section-title {
    color: black;
    margin: 40px 0 40px 0;
    font-style:normal;
    font-variant:normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
    font-family: MetricWeb-Semibold, "Arial Bold", Gadget, sans-serif;
    position: relative;
}

#wrapper .feature-nav {
    margin-top: 50px;
    float: right;
}

#wrapper .feature-nav-bottom {
    float: left;
    color: #0487c4;
    font-style:normal;
    font-variant:normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    font-family: MetricWeb-Semibold, "Arial Bold", Gadget, sans-serif;
    text-decoration: none;
    vertical-align: middle;
}

#wrapper .feature-nav-bottom a {
    color: #0487c4;
    text-decoration: none;
    vertical-align: middle;
}

#wrapper .feature-nav-bottom a:visited {
    color: #0487c4;
    text-decoration: none;
    vertical-align: middle;
}

#wrapper .feature-nav-bottom img {
    vertical-align: middle;
    margin-right: 10px;
}
#wrapper .feature-nav-bottom span {
    vertical-align: middle;
}

#wrapper .feature-detail {
    opacity: 0;
    margin-top: 10px;
    height: 500px;
    text-align: justify;
    -webkit-transition: opacity 1s ease-in;
       -moz-transition: opacity 1s ease-in;
        -ms-transition: opacity 1s ease-in;
         -o-transition: opacity 1s ease-in;
            transition: opacity 1s ease-in;
     -webkit-animation: scaleout 3s;
        -moz-animation: scaleout 3s;
         -ms-animation: scaleout 3s;
          -o-animation: scaleout 3s;
             animation: scaleout 3s;
}

@keyframes roll {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
    }
}

@-moz-keyframes scaleout {
    0% {
        -moz-transform: scale(0);
    }

    100% {
        -moz-transform: scale(1.0);
    }
}

@-ms-keyframes scaleout {
    0% {
        -ms-transform: scale(0);
    }

    100% {
        -ms-transform: scale(1.0);
    }
}

@-o-keyframes scaleout {
    0% {
        -o-transform: scale(0);
    }

    100% {
        -o-transform: scale(1.0);
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1.0);
    }
}

#wrapper .feature-long-desc {
    font-style:normal;
    font-variant:normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.25;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
}

#wrapper .feature-image {
    opacity: 0;
    margin: 10px 0;
    width: 100%;
    display: inline-block;
    -webkit-transition: opacity 1s ease-in;
       -moz-transition: opacity 1s ease-in;
        -ms-transition: opacity 1s ease-in;
         -o-transition: opacity 1s ease-in;
            transition: opacity 1s ease-in;
     -webkit-animation: scaleout 3s;
        -moz-animation: scaleout 3s;
         -ms-animation: scaleout 3s;
          -o-animation: scaleout 3s;
             animation: scaleout 3s;
}

#wrapper .feature-image img {
    max-width: 100%;
}

#wrapper .failureNotification {
    color: #ff0000;
}
