﻿/* Text */

.main-heading {
	font-family: 'Oxygen', sans-serif;
	color:white;
	font-size:2.3em;
}

.white-txt {
	font-family: 'Oxygen', sans-serif;
	color:white;
	font-size:1.5em;
}
.normal-text {
	
	font-family: 'Oxygen', sans-serif;
	color:#000000;
	font-size:1.2em;
}

.call-out {
	
	font-family: 'Oxygen', sans-serif;
	color:#282B35;
	font-size:1.2em;
	font-weight:bold;
	font-style:italic;
}

h1 {
    font-family: 'Oxygen', sans-serif;
    font-size:2.3em;
	
}

h2 {
	font-family: 'Oxygen', sans-serif;
	color:#282B35;
	font-size:2em;
	font-weight:bold;
}

h3 {
	font-family: 'Oxygen', sans-serif;
}
h4 {
	font-family: 'Oxygen', sans-serif;
}


/* Fade in text */

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  }
  @keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  } 

/*styling links */

.box a:link  {
	color: #000000; 
	text-decoration: none; 
	font-weight: bold;
}

.box a:visited {
	color: #000000; 
	text-decoration: none; 
	font-weight: bold;
}

.box a:hover {
	color: #000000; 
	text-decoration: underline; 

}

.box a:active {
	color: #000000; 
	text-decoration: underline; 
}

/* finsh styling links */


/* Button */
.button {
    background-color: #438FBB; 
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 70%;
    font-family: 'Oxygen', sans-serif;
}

.button1 {
    background-color: #FBF226; 
    color: black; 

}

.button1:hover {
	background-color: #333333;
	color: white;
}

/* Button 2 */

.button2 {
    background-color: transparent; 
    border: 2px;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 70%;
    font-family: 'Oxygen', sans-serif;
}

.button3 {
    border-color: ffffff;
	background-color: transparent; 
    color: white; 
    border-style: solid;
	border-width: thin;
}

.button3:hover {
	border-style: solid;
	border-width: thin;
	background-color: transparent;
	color: #FBF226;
	border-top-color: #FBF226;
	border-right-color: #FBF226;
	border-bottom-color: #FBF226;
	border-left-color: #FBF226;
}

.imgpad {
	margin-bottom:20px;
}

/* SWIMMERS ZOOM FUNCTION */

.img-hover-zoom {
  max-height: 500px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}

/* Slow-motion Zoom Container */
.img-hover-zoom--slowmo img {
  transform-origin: 50% 65%;
  transition: transform 4s, filter 2s ease-in-out;
  filter: brightness(110%);
}

/* The Transformation */
.img-hover-zoom--slowmo:hover img {
  filter: brightness(100%);
  transform: scale(1.5);
}

/* SCROLL BACK UP CODE link page */

.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: #000000 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;
}


/* MENU MAIN CONFIG */

.topnav {
  overflow: hidden;
  /*background-color: #FBF226;*/
  color:white;
  font-family: 'Oxygen', sans-serif;
  font-weight:bold; 
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 46px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #FBF226;
  color: black;
}

.topnav .icon {
  display: none;
 
}

/* ----------------------------------------------------*/
/* START MAIN MEDIA QUERIES */


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


.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 15px;
}

}

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


.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 15px;
}

}
/* ----------------------------------------------*/
/* 1024 */

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


.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 12px;
}

.img-hover-zoom {
  height: 200px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
}

}

/*--------------------------------------------------*/
/* 768 */

@media screen and (max-width: 768px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    color:black;
  }
  
.topnav {
	overflow: hidden;
	background-color: #FFFFFF;
	color: black;
}

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

.topnav.responsive {position: relative;}
.topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
}
.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    color:black;
}

.img-hover-zoom {
  height: 120px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}
  .cd-top {
    right: 20px;
    bottom: 20px; 
}

}

/* -----------------------------------------------------------*/
/*428 */

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

.img-hover-zoom {
  height: 350px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}
.main-heading {
	font-family: 'Oxygen', sans-serif;
	color:white;
	font-size:1.5em;
}

/* SWIMMERS ZOOM FUNCTION */

.img-hover-zoom {
  max-height: 500px; /* Modify this according to your need */
  overflow: hidden; /* Removing this will break the effects */
}

/* Slow-motion Zoom Container */
.img-hover-zoom--slowmo img {
  transform-origin: 50% 65%;
  transition: transform 4s, filter 2s ease-in-out;
  filter: brightness(110%);
}

/* The Transformation */
.img-hover-zoom--slowmo:hover img {
  filter: brightness(100%);
  transform: scale(1.5);
}

/* Menu */

.topnav {
  overflow: hidden;
  /*background-color: #FBF226;*/
  color:white;
  font-family: 'Oxygen', sans-serif;
  font-weight:bold;
}

.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 46px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #FBF226;
  color: black;
}

.topnav .icon {
  display: none;
}

}



