﻿
/* FONTS

font-family: 'Maven Pro', sans-serif;
font-family: 'Righteous', cursive; */

.title {
     font-family: 'Righteous', cursive;
     font-size:5em;
     color:white;
     /*padding-bottom:-50px;*/
	
}
.header-text {
     font-family: 'Maven Pro', sans-serif;
     font-size:3em;
     color:white;	
}

.heading-title {
     font-family: 'Righteous', cursive;
     font-size:5em;
     color:white;	
}

.text-heading {
     font-family: 'Maven Pro', sans-serif;
     font-size:3em;
     color:black;
	
}

.fontcolor{
    color:#4D4677;
	font-weight:bold;
	font-style:italic;
	
}

.normal-text {
     font-family: 'Maven Pro', sans-serif;
     font-size:1.8em;
     color:black;	
}

h4 {
	 font-family: 'Righteous', cursive;
     font-size:2em;
     color:black;
}

/* End Breadcrumb styles */

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #ffffff;
  font-family: 'Maven Pro', sans-serif;

}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #4D4677;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #4D4677;
  text-decoration: underline;
}


/* ICONS */
.fa {
  padding: 20px;
  font-size: 50px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  color:white;
}

/* .fa:hover {
    opacity: 0.8;
    color: white;
    transition: .6s ease;
} */

/* choose which icon you require here */

.fa-facebook {
  background:transparent;
  color: white;
  padding-right: 20px; 
  padding-top: 10px; 
  text-decoration: none;
  transition: .6s ease;
}

/* BUTTON STYLES */
.button {
    background-color: #ffffff; 
    font-family: 'Maven Pro', sans-serif;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 30%;
}

.button1 {
    background-color: #4D4677; 
    color: white; 

}

.button1:hover {
    background-color: #FFFFFF;
    color: black;
}


/* End Button styles */

/* BOUNCE In Effects*/

       .bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, -3000px, 0);
  transform: translate3d(0, -3000px, 0);
  }
  
  60% {
  opacity: 1;
  -webkit-transform: translate3d(0, 25px, 0);
  transform: translate3d(0, 25px, 0);
  }
  
  75% {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  }
  
  90% {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  }
  
  100% {
  -webkit-transform: none;
  transform: none;
  }
  }
  
  @keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, -3000px, 0);
  transform: translate3d(0, -3000px, 0);
  }
  
  60% {
  opacity: 1;
  -webkit-transform: translate3d(0, 25px, 0);
  transform: translate3d(0, 25px, 0);
  }
  
  75% {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  }
  
  90% {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  }
  
  100% {
  -webkit-transform: none;
  transform: none;
  }
  } 


/* Scroll to TOP */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #4D4677 url('../../images/cd-top-arrow.svg') no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  }
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}



/* MOBILE MEDIA QUERIES */

/* @media screen and (max-width: 648px) {

.header-text {
     font-family: 'Maven Pro', sans-serif;
     font-size:2em;
     color:white;	
}
} */


@media screen and (max-width: 768px) {

.title {
     font-family: 'Righteous', cursive;
     font-size:4em;
     color:white;
     padding-bottom:-50px;
	
}

.header-text {
     font-family: 'Maven Pro', sans-serif;
     font-size:2rem;
     color:white;	
     text-align: center;
}

.normal-text {
     font-family: 'Maven Pro', sans-serif;
     font-size:large;
     color:black;	
}

.heading-title {
     font-family: 'Righteous', cursive;
     font-size:2em;
     color:white;	
}
.button {
    background-color: #ffffff; 
    border: none;
    color: white;
    font-family: 'Maven Pro', sans-serif;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 50%;
}
.button1 {
    background-color: #4D4677; 
    color: white; 

}

.button1:hover {
    background-color: #FFFFFF;
    color: black;
}
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #ffffff;
}
ul.breadcrumb li {
  display: inline;
  font-size: 13px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #4D4677;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #4D4677;
  text-decoration: underline;
}
}

/* todo 320px */

@media screen and (max-width: 320px) {

.title {
     font-family: 'Righteous', cursive;
     font-size:3em;
     color:white;
}
.text-heading {
     font-family: 'Maven Pro', sans-serif;
     font-size:2em;
     color:black;
	
}
.normal-text {
     font-family: 'Maven Pro', sans-serif;
     font-size:medium;
     color:black;	
}
.button {
    background-color: #ffffff; 
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 50%;
}
.button1 {
    background-color: #4D4677; 
    color: white; 

}

.button1:hover {
    background-color: #FFFFFF;
    color: black;
}
.text-heading {
     font-family: 'Maven Pro', sans-serif;
     font-size:1.5em;
     color:black;
}

}





