
*{
    outline:none;
}

body{
    font-family: 'Roboto', sans-serif;
}

/* GLOBAL */
a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
    /* color: #1D8B90; */
}

a:hover{
    color: rgb(128,0,0, 1.0);
    text-decoration: none;
    transition: 0.3s;
}

p{
    font-size: 16px;
}

.button-flat{
    height: 48px;
    width: 100%;
    border-radius: 0px;
    background: #303030;
    cursor: pointer;
    color: white;
    font-weight: bold;
    border-radius: 2px;
    transition: 0.3s;
    text-transform: uppercase;
}

.button-flat:hover{
    background: #420000;
    color: white;
    transition: 0.3s;
}

.button-social{
    border-radius: 0px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    border-radius: 2px;
    transition: 0.3s;
    width: 120px;
    padding:5px;
    margin:5px;
}

.btn-facebook{
    background: #3b5999;
}

.btn-twitter{
    background: #55acee;
}

.btn-google-plus{
    background: #dd4b39;
}

/* NAV */
.navi{
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 9999999;
    transition: 0.3s;
}

.scrolling{
    background: #4a4a4a !important;
    -webkit-box-shadow: 0px 5px 40px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: 0px 5px 40px 0px rgba(0,0,0,0.19);
    box-shadow: 0px 5px 40px 0px rgba(0,0,0,0.19);
    transition: 0.3s;
}

.branding{
    float: left;
    margin-left: 24px;
    padding: 0;
    max-height: 100%;
}

.branding img {
    max-width: auto;
    max-height: 60px;
}

.navi ul{
    float: right;
    list-style: none;
    overflow: hidden;
    position: -webkit-sticky; /* Safari */
    height: 100%;
    padding:0;
    margin: 0 24px 0 0;
    font-weight: bold;
}

.navi li {
    float: left;
}

.navi li a {
    display: block;
    color: white;
    text-align: center;
    padding: 20px 16px;
    font-size: 16px;
}

.navi li a:hover{
     transition: 0.2s;
     color: rgb(128,0,0, 1.0);
}

.navi .active {
    font-weight: bold;
}

#hamburger{
    display: none;
}

/* BANNER */
.overlay{
    top: 0;
    left: 0;
    width: 100%;
    height: 318px;
    z-index: 99 !important;
    background-color: rgba(0,0,0,0.4); /*dim the background*/
    position: absolute;
    overflow:hidden;
}

.glow {
    -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.8));
     filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.8));
     transition: 0.3s;
}

.banner {
    position: relative;
    background: black;
    z-index: 1;
}

.parallax{
    background-image: url('../images/splash.jpg');
    
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner::before {
    /* background-image: url(/images/splash.jpg); */
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px; 
    z-index: -2;
    opacity: 1;
}

.banner h1{
    font-size: 72px;
    color: white;
    z-index: 999;
    padding-top: 70px;
    padding-bottom: 20px;
}

.banner img{
    z-index: 999 !important;
    padding-top: 70px;
    padding-bottom: 20px;
}

.banner p{
    font-size: 20px;
    font-weight: bold;
    color: white;
    z-index: 999 !important;
    padding-top: 20px;
    padding-bottom: 20px;
}

#arrow-down {
    transition: 0.4s;
    font-size: 48px;
    font-weight: bold;
    z-index: 999 !important;
    color: white;
    -webkit-animation: moveUpDown 2s infinite  normal ease-out;
    animation: moveUpDown 2s infinite  normal ease-out;
    transition: 0.2s;
}

#arrow-down:hover {
    color: rgb(128,0,0, 1.0);
}

/* FOOTER */
footer{
    padding: 20px;
    background: #303030;
    color: white;
    margin-top: 30px;
    font-size: 18px;
}

footer p{
    padding: 10px;
    font-size: 14px !important;
}

footer a{
    padding: 8px;
}


/* SECTION */
.section{
    padding-top: 40px;
    padding-bottom: 20px;
}

.section-invert{
    background: #4a4a4a;
    color: white;
}

.section-header{
    padding-top: 20px;
    padding-bottom: 20px;
}

.heading-divider, .heading-divider-invert {
    margin-bottom: 50px;
    position: relative;
    line-height: 1.35;
}

.heading-divider::before {
    background: #4a4a4a none repeat scroll 0 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    top: 100%;
    width: 50px;
}

.heading-divider-invert::before{
    background: white none repeat scroll 0 0 !important;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    top: 100%;
    width: 50px;
}


.values-item{
    margin-top: 25px;
}

/* STATISTICS */
.statistics-item{
    margin: 12px;
    padding: 10px;
    color: rgb(128,0,0, 1.0);
    font-weight: bold;
    border: rgb(128,0,0, 1.0) 1px dashed;
    border-radius: 4px;
}

.statistics-count{
    padding: 10px;
    color: rgb(128,0,0, 1.0);
    font-weight: bold;
    font-size: 16px;
}

.statistics-item p{
    padding: 10px;
    color: #4a4a4a;
    font-weight: bold;
    font-size: 16px;
}


/* GALLERY */
.gallery-item{
    margin-bottom: 40px;
    background-color: #efefef;
    border-bottom: 1px solid #DBDBDB;
    min-height: 100%;
    border: 0px;
    box-shadow: none;
    border-radius:2px;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
}

/* The Modal (background) */
.gallery-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999999999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.gallery-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Add Animation */
.gallery-modal-content {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.4s;
    animation-name: zoom;
    animation-duration: 0.4s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.gal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index:999999 ;
}

.gal-close:hover,
.gal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* PRICING */
.pricing {
    border: 1px solid rgb(128,0,0, 1.0); 
    transition: box-shadow 0.5s;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    margin: 10px;
    height: 600px;
}

.gallery-item:hover, .pricing:hover {
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.4);
}

.pricing-heading {
    color: white !important;
    background-color: rgb(128,0,0, 1.0) !important;
    padding: 10px !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.pricing-body {
    padding:12px;
}

.pricing-body .separator{
    border-bottom:1px lightgray dashed;
}

.pricing-body p{
    padding-top: 5px;
    padding-bottom: 3px;
}


.pricing-currency {
    font-size: 20px;
    vertical-align: 50%;
}

.pricing-unit {
    font-size: 18px;
}

.pricing-footer {
    border-top: lightgray 1px solid;
}

.pricing-footer h3 {
    font-size: 30px;
}

.pricing-footer h4,  .pricing-footer a{
    color: #4a4a4a;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px;
}

.pricing-footer .btn {
    margin: 15px 0;
    background-color: rgb(128,0,0, 1.0);
    color: white;
}

.pricing-footer .btn:hover {
    border: 1px solid rgb(128,0,0, 1.0);
    background-color: white !important;
    color: rgb(128,0,0, 1.0);
}

/* CONTACT INFO */
.contact-times{
    width: 100%;
}

.contact-times table{    
    border: 2px solid white;
    border-style: double;
    border-collapse: collapse;
    
}

.contact-times span{
    font-weight: bold;
}

.contact-times th, .contact-times td{
    text-align: left;
    font-size: 14px;
    width: 50%;
}

.contact-times .right{
    text-align: right;
    padding-right: 20px;
    font-size: 14px;
}

.contact-info{
    padding: 24px;
}

.contact-info p{
    margin: 0;
    padding: 0;
}


.contact-info i{
    font-size: 18px;
    padding: 5px;
}

.contact-info-form{
    font-size: 16px;
    font-weight: bold;
}

.contact-info-form a{
    padding: 8px;
    color: white !important;
}

.contact-info-form a:hover{
    color: rgb(128, 0, 0, 1.0) !important;
}

/* TESTIMONIALS */
.carousel-item h3{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.carousel-item h4{
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

.carousel-item p{
    font-size: 14px;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page span{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
  width: 100px;
  height: 5px;
  margin-left: 2px;
  margin-right: 2px;
  background: #ccc;
  border:none;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
  background: #3F51B5;
}

/* SCROLLUP */
.scrollup {
    position: fixed;
    z-index: 999999;
    bottom: 20px;
    right: 20px;
    border-radius: 100%;
    transition: 0.4s;
}

.scrollup-off {
    opacity: 0;
    cursor: default;
}

.scrollup i {
    width: 45px;
    height: 45px;
    line-height: 34px;
    border-radius: 100%;
    background: rgb(128,0,0, 1.0);
    color: #fff;
    text-align: center;
    font-size: 26px;
    opacity: 0.8;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.3);
}

.scrollup i:hover {
    opacity: 1;
}

/* AUTHOR */

.author{
    padding-top: 25px;
}

.author-img{
    border-radius: 200px 200px 200px 200px;
    -moz-border-radius: 200px 200px 200px 200px;
    -webkit-border-radius: 200px 200px 200px 200px;
    border: 0px none #000000;
    margin: 20px;
    width: 150px;
}

.author-name{
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
}

.author-designation{
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
}

.author-about{
    margin-top: 25px;
    text-align: left;
}

.author-about-right{
    margin-top: 25px;
    text-align: right;
}

.author-about p{
    font-size: 14px;
    margin-top: 14px;
}

.author-about h3{
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.author-about-right h3{
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}


/* CHECKBOX */
.checkbox-container {
    display: block;
    position: relative;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkbox-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-mark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-mark {
    background-color: #4a4a4a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-mark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-mark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-mark:after {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type="text"],input[type="tel"],input[type="email"]{
    height: 46px;
}

input[type="date"]{
    height: 46px;
}

label{
    text-align: left !important;
    padding-top: 4px;
    padding-bottom: 2px;
    font-size: 14px;
}


/* RESPONSIVE */
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .gallery-modal-content {
        width: 100%;
    }
}

/* Small to Medium devices (Phones, tablets, 768px and below) */
@media (max-width: 768px) { 
    .statistics-item{
        margin-left: 10%;
        margin-right: 10%;
        padding: 20px;
    }

    .navi .branding{
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;
        display: inline-block;
    }

    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        background-color: #333;
        margin: 6px 0;
        transition: 0.4s;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }

    .change .bar2 {opacity: 0;}

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .navi{
        height: auto;
        background: 4a4a4a !important;
    }

    .navi ul{
        padding: 0;
        margin: 0;
        width: 100%;
        overflow: auto;
    }

    .closed{
        display: none;
    }

    .opened{
        background: #4a4a4a !important;
        display: block !important;
    }
    
    .navi-menu li{
        padding: 0;
        margin: 0;
        float: none;
    }

    .navi-menu li a:hover{
        color: white;
        background: rgb(128, 0, 0, 1.0);
    }

    #hamburger{
        display: block;
        position: fixed;
        top: 5px;
        right: 0;
        padding: 10px;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }

    #hamburger:hover{
        color: rgb(128, 0, 0, 1.0);
    }

    p, h3, h4{
        margin-left: 10%;
        margin-right: 10%;
    }

    .section{
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top: 10px;
        padding-top: 40px;
    }
    
    .author-about h3, .author-about-right h3, .author-about, .author-about-right{
        margin-top: 25px;
        text-align: center;
    }

    .pricing {
        height: auto;
    }
}

/* SLIDE ANIMATION */
.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%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
  }

  @-webkit-keyframes moveUpDown {
    0% { bottom:80px; }
    50%{ bottom:100px; }
    100% { bottom: 80px; }
    }

    @keyframes moveUpDown {
    0% { bottom:80px; }
    50%{ bottom:100px; }
    100% { bottom: 80px; }
    }

