/*Font CSS for all browsers start*/
@font-face {
  font-family: 'dimboType';
  src: url('../fonts/dimbo.eot'); /* IE9 Compat Modes */
  src: url('../fonts/dimbo.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/dimbo.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/dimbo.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/dimbo.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/dimbo.svg#svgdimboType') format('svg'); /* Legacy iOS */
}
/*Font CSS for all browsers end*/

/*Content Fade-in start*/
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.wrapper {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}
/*Content Fade-in end*/

/*Content start*/
body {
  margin:0;
  padding:0;
  font-family: 'dimboType', sans-serif;
  color: #F1562D;
}

p a {
  text-decoration:none;
  color:#F1562D;
}

p a:hover {
  color: #3A3536;
}

.contact a {
  font-family: 'dimboType', sans-serif;
  border: #fbfbfb solid 4px;
  cursor:pointer;
  background-color:#F1562D;
  color:white;
  font-size:1em;
  padding-left:10px;
  padding-right:10px;
  padding-top:15px;
  padding-bottom:15px;
  text-decoration:none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.backtotop a {
  display:none;
}

#wrapper {
  padding-left:10%;
  padding-right:10%;
  padding-top:2%;
  width:80%;
}
			
header p {
  text-align: center;
}

header img {
  width:60%;
}

h1 {
  margin: 0;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 2.5em;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  color: #3A3536;
}

#floatright img {
  float:right;
  border-radius: 50%;
  width: 350px;
  height: 350px;
}
/*Content end*/

/*Nav start*/			
nav {
  margin: auto;
  background: #F1562D;
  border-bottom: solid 25px #3A3536;
  width:100%;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 1% 0;
  text-align:center;
  letter-spacing: 2px;
}
			
nav ul a {
  color: white;
  text-decoration: none;
}

nav li {
  padding-left:10px;
  padding-right:10px;
  display: inline-block;
  font-size: 2.5em;
}
 
nav a {
  text-decoration: none;
  color: white;
  display: block;
}
 
nav a.active {
  background-color: white;
  color: white;
  cursor: default;
}

/*Nav Hover*/
.hvr-bubble-float-bottom {
  backface-visibility: hidden;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  display: inline-block;
  position: relative;
	
  -webkit-transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  transform: translateZ(0px);
	
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
	
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  transition-property: transform;
  vertical-align: middle;
}

.hvr-bubble-float-bottom::before {
  border:none;
  bottom: 0;
  content: "";
  left: calc(50% - 10px);
  position: absolute;
  
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
	
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  transition-property: transform;
  z-index: -1;
}
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
}
.hvr-bubble-float-bottom:hover::before, .hvr-bubble-float-bottom:focus::before, .hvr-bubble-float-bottom:active::before {
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
}
/*Nav Hover end*/
/*Nav end*/	

/*Footer start*/			
footer {
  width: 100%;
  height: 90px;
  background: #F1562D;
  border-top: solid 25px #3A3536;
  clear: both;
  position:relative;
  bottom:0;
}

footer p.dimbo {
  font-family: 'dimboType', sans-serif;
  text-align: center;
  font-size: 1.2em;
  color: white;
  letter-spacing: 2px;
}

footer a {
  text-decoration: none;
  color: white;
}

.smallfooter{
  font-size: .75em;
}

/*Footer end*/	

/*Mobile CSS*/
@media screen and (max-width:850px) {

.backtotop a {
  display:inline;
  font-family: 'dimboType', sans-serif;
  border: #fbfbfb solid 4px;
  cursor:pointer;
  background-color:#F1562D;
  color:white;
  font-size:2em;
  padding-left:10px;
  padding-right:10px;
  padding-top:15px;
  padding-bottom:15px;
  text-decoration:none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

p {
  font-size:1em;
}

header img {
  width: 80%;
  text-align: center;
  padding-top:30px;
}
  
#floatright img {
  width:250px;
  height:250px;
  border-radius: 50%;
  float:none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom:20px;
  padding-top:20px;
}

.social img {
  padding-left:-10%;
  width:50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

nav {
  width:100%;
}

nav ul {
  float: none;
  margin-top: 50px;
  background: #F1562D;
}

nav li {
  font-size: 2em;
  width:100%;
  padding-left:0;
  padding-right:0;
  padding-top:10px;
  padding-bottom:10px;
}

nav a {
  display: block;
  color: #CCC;
  width:100%;
  margin: 0;
}

nav a:hover {
  color: #FFF;
}
  
footer p.dimbo {
  font-family: 'dimboType', sans-serif;
  text-align: center;
  font-size: 0.8em;
  color: white;
  letter-spacing: 2px;
}

.smallfooter{
  font-size: .5em;
}

iframe {
  width: 100%;
}

.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 51%;
}

.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
}
}

@media screen and (max-width:480px) {
	
.backtotop a {
  display:inline;
  font-family: 'dimboType', sans-serif;
  border: #fbfbfb solid 4px;
  cursor:pointer;
  background-color:#F1562D;
  color:white;
  font-size:2em;
  padding-left:10px;
  padding-right:10px;
  padding-top:15px;
  padding-bottom:15px;
  text-decoration:none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

p {
  font-size:1em;
}

header img {
  width: 100%;
  text-align: center;
  padding-top:30px;
}
  
#floatright img {
  width:255px;
  height:255px;
  border-radius: 50%;
  float:none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom:20px;
  padding-top:20px;
}

.social img {
  display: block;
  margin-left:-7%;
  width:50;
  margin-right: auto;
  clear:right;
}

#wrapper {
  padding-top:2%;
  min-height: 483px;
}

nav {
  width:100%;
}

nav ul {
  float: none;
  margin-top: 50px;
  background: #F1562D;
}

nav li {
  font-size: 2em;
  width:100%;
  padding-left:0;
  padding-right:0;
  padding-bottom:10px;
  padding-top:10px;
}

nav a {
  display: block;
  color: #CCC;
  width:100%;
  margin: 0;
}

nav a:hover {
  color: #FFF;
}
  
footer p.dimbo {
  font-family: 'dimboType', sans-serif;
  text-align: center;
  font-size: 0.8em;
  color: white;
  letter-spacing: 2px;
}

.smallfooter{
  font-size: .5em;
}

iframe {
  width: 100%;
}

.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 51%;
}

.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
}
/*Mobile CSS end*/

/*Video CSS start*/
.video {
  margin: auto;
  width:100%;
}

.video ul {
  list-style-type: none;
  margin: 0;
  padding-left:-5%;
  text-align:center;
  letter-spacing: 2px;
}
			
.video ul a {
  color: white;
  text-decoration: none;
}

.video li {
  padding-left:10px;
  padding-right:10px;
  display: inline-block;
  font-size: 0.01em;
}
 
.video a {
  text-decoration: none;
  color: white;
  display: block;
}
 
.video a.active {
  background-color: white;
  color: white;
  cursor: default;
}
/*Video CSS end*/

/*Social Icons start*/			
.social {
  width:100%;
  clear:both;
  margin-bottom:10px;
  margin-top:10px;
}

.social ul {
  list-style-type: none;
  display:block;
  margin-right:auto;
  text-align:center;
  margin-left:-4%;
}
			
.social ul a {
  color: white;
  text-decoration: none;
}

.social li {
  display: inline-block;
}
 
.social a {
  text-decoration: none;
  color: white;
  display: block;
}

.social img {
  width:50px;
  height:50px;
}

 
.social a.active {
  background-color: white;
  color: white;
  cursor: default;
}
/*Social Icons end*/