/*-------------
 	General
-------------*/


/*MY STYLESHEET...................................................................*/


/*FONTS::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800px');

/*font-family: 'Open Sans', sans-serif;*/

@import url('https://fonts.googleapis.com/css?family=Raleway:400,900,800px,700,600,500,300,100,200');

/*font-family: 'Raleway', sans-serif;*/

@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');

@import url('https://fonts.googleapis.com/css?family=Anaheim|Muli:200,300,400,600,700,800,900|Reem+Kufi');
/* font-family: 'Reem Kufi', sans-serif;
font-family: 'Anaheim', sans-serif;
font-family: 'Muli', sans-serif; */
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
/* font-family: 'Quicksand', sans-serif; */
@import url('https://fonts.googleapis.com/css?family=Stardos+Stencil:400,700');
/* font-family: 'Stardos Stencil', cursive; */

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: lightgrey;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 0;
  border-radius: 0;
  padding: 0;
}

select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Reem Kufi', sans-serif;
  margin: 0;
  padding: 0;
}

p {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}

* {
  font-family: 'Anaheim', sans-serif;
  font-size: 17px;
}

@media (max-width: 900px) {
  * {
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  * {
    font-size: 13px;
  }
}

ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}

ul,
nav {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 1.0;
}

a:hover {
  opacity: 1;
}


/*FLEXBOX .............................................*/

section {
  margin: 0;
}

/*LAYOUT STYLING:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*NAVIGATION ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

nav li {
  padding: 10px;
  margin: 0;
}

nav li a {
  font-family: 'Raleway', sans-serif;
  color: #222;
  font-size: 1.0rem;
  text-transform: uppercase;
  opacity: 1.0;
}

nav li a:hover {
  /*opacity: 0.8;*/
  /*color: #42626f;*/
}

nav li img {
  opacity: 1;
}

@media (max-width: 800px) {
  nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  nav li {
    line-height: 1.0rem;
  }
}


/*NAVIGATION ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*LANDING PAGE :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/* FLEXBOX */


/*width: calc(100% / 2 - 2px);*/

.landingpage {
  background: #fefaec;
  background: #f2f7ff;
  background-image:url('../img/general/bg.jpg');
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 5vh;
}

.landingpage-column {
  width: 60vw;
  text-align: center;

}

@media (max-width: 800px) {
  .landingpage {
    background: #000000;
    background-image:url('../img/general/bgmob.jpg');
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    align-items: flex-start;
    padding: 2vh;
  }
}

.contactpage {
  background: #fefaec;
  background: #f2f7ff;
  background-image:url('../img/general/bg.jpg');
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5vh;
}

.contactpage-column-left {
  width: 80vw;
  text-align: center;
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.8);
  padding: 5vh;

}

.contactpage-column {
  width: 60vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);

}

@media (max-width: 800px) {
  .contactpage {
    background: #000000;
    background-image:url('../img/general/bgmob.jpg');
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2vh;
  }
  .contactpage-column-left {
    width: 100vw;
    padding: 2vh;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
  }
  .contactpage-column {
    
    width: 100vw;
  }

}

.iframe-container        {position:relative;}
.iframe-container .ratio {display:block;width:100%;height:auto;}
.iframe-container iframe {position:absolute;top:0;left:0;width:100%; height:100%;}


.purchasepage {
  background: #fefaec;
  background: #f2f7ff;
  background-image:url('../img/general/bg.jpg');
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5vh;
}

.purchasepage-column-left {
  width: 20vw;
  text-align: left;
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.6)

}

.purchasepage-column {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10vh;

}

.purchasepage-column-center {
  background: rgba(255, 255, 255, 0.6);
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5vh;

}


@media (max-width: 800px) {
  .purchasepage {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2vh;
  }
  .purchasepage-column-left {
    width: 100vw;
    padding: 2vh;
    text-align: left;
    background: rgba(0, 0, 0, 0.6)
  }
  .purchasepage-column {
    width: 100vw;
  }

}
.header {
  width: 96vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-left {
  max-width: 35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
          align-items: center;
}

.header-right {
  max-width: 35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;

}

.footer {
  width: 96vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.hero {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
}



/* .overlay-text {
  position: absolute;
  left: 0;
  top:  100%;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  
 }

.overlay:hover .overlay-text {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top:  0;
  text-align: center;
} */

.box-square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column {
  -webkit-box-flex:undefined;
      -ms-flex:;
          flex: 
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {}

@media (max-width: 800px) {}


/*width: calc(100% / 2 - 2px);*/

@media (max-width: 800px) 



/*REUSABLE COMPONENTS ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/*REUSABLE COMPONENTS ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* REUSABLE COMPONENTS :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/*REUSABLE COMPONENTS:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */


.sitelogo {
  max-width: 70px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}


@media (max-width: 800px) {
  .sitelogo {
    width: 50vw;
    margin-bottom: 0px;
  }
}

.favicon {
  width: 20px;
  height: auto;
}

.action-button {
  font-family: 'Raleway', sans-serif;
  font-size:2.5vh;
  font-weight:300;
  text-transform: capitalize;
	width: auto;
	float: center;
  color:#000;
  background-color: #f6f402;
  border: 0px solid #fff;
  border-radius: 0px;
	-webkit-transition:all 0.1s ease-in-out;
	-o-transition:all 0.1s ease-in-out;
	transition:all 0.1s ease-in-out;
  padding: 1vw 3vw;
}


.action-button:hover {
  background: #B3B000;
  cursor: pointer;
}

@media (max-width: 800px) {
  .action-button {
    margin: 15px;
  }
}


hr {
  border: 0;
  height: 5vh;
  width: 50vw;
  background: #FEDA5B;
  margin: 0;
}

@media (max-width: 800px) {
  .mobilehide {
    display: none;
  }
  .desktophide {
    display: block;
  }
}

@media (min-width: 801px) {
  .desktophide {
    display: none;
  }
  .mobilehide {
    display: block;
  }
}


/*IMG CLASSES*/

.logo {
  width: 20vw;
  height: auto;
}

@media (max-width: 800px) {
  .logo {
    width: 50vw;
  }
}

.mediumlogo {
  width: 150px;
  height: auto;
}

@media (max-width: 800px) {
  .mediumlogo {
    width: 200px;
    height: auto;
  }
}

.smalllogo {
  width: 3vw;
  height: auto;
}

.footer-logo {
  width: 50px;
  height: auto;
}

.socialicon {
  width: 25px;
  height: 25px;
  margin: 10px;
}

.favicon {
  width: 25px;
  height: 25px;
}


/*IMG CLASSES*/


/*BUTTONS*/


.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  /* background: rgba(255, 255, 255, 1); */
  background: transparent;
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 80vh;
  margin-top: -35px;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
          box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}


@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}

/*BUTTONS*/


/*WIDGETS*/

.sidebar-widget {
  padding: 0;
  margin-bottom: 20px;
}

.footerwidget {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.footerwidget a:hover {
  color: #33ccff;
}

/* FONTS::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
h1 {
  font-family: 'Stardos Stencil', cursive;
  font-size: 10vh;
  color: #f6f402;
}
@media (max-width: 1100px) {
  h1 {
    font-size: 4vh;
  }

}
@media (max-width: 800px) {
  h1 {
    font-size: 6vh;
  }
}


h2 {
  font-size: 6vh;
  color: #f38181;
}

h3 {
  font-size: 6vh;
  color: #FFFFFF;
}

h5 {
  font-size: 3vh;
  color: #f2f7ff;
  font-weight: 300;
}
@media (max-width: 800px) {
  h5 {
    font-size: 3.5vh;
  }
}

red {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 3vh;
  color: #f38181;
  font-weight: 300;
}
greentext {
  color: #22b24c;
}

redtext {
  color: #f38181;
  font-size: 12vh;
  font-family: 'Reem Kufi', sans-serif;
}

whitetext {
  color: #FFFFFF;
  font-size: 10vh;
  font-family: 'Reem Kufi', sans-serif;
}

p {
  font-family: 'Quicksand', sans-serif;
  font-size: 2vh; 
  color: #fff;
  text-align: left;
}
strong {
  font-size: 3vh;
  font-weight: 700;
}

footer p {
  font-family: 'Quicksand', sans-serif;
  font-size: 2vh; 
  color: #fefefe;
}

@media (max-width: 800px) {

}

/*WIDGETS*/



/*REUSABLE COMPONENTS ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*MONKEY FORM ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
#monkeyform {
  margin-bottom: 20px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2vh 5vw;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
}
#monkeyform p {
  font-family: 'Raleway', sans-serif;
  font-size:1.5vh;
  font-weight:300;
  color: white;
  text-align: center;
}
@media (max-width: 800px) {
#monkeyform p {
  text-align: left;
}
}

#monkeyform .form-row {
  width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}


.form-row input {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.form-row .heading{
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.form-row select {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
          background: #ccc;
          font-family: 'Raleway', sans-serif;
          font-size:2.5vh;
          font-weight:300;
          margin-bottom: 3vh;
}
.form-row label {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-row img {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;

}
label {
  font-family: 'Raleway', sans-serif;
  text-align: left;
  font-size: 2.5vh;
  color: #f2f7ff;
}
option p {
  text-align: left;
  font-size: 0.8rem;
  color: #222;
}

#monkeyform .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#monkeyform input, #monkeyform textarea {
  /*background-color: blue;*/
  width: 100%;
  /* height: 3vh; */
  padding: 0px;
  font-size:3vh;
  font-weight:300;
  color:#000;
  background-color:transparent;
  border-top: 0px solid #EE086A;
  border-left: 0px solid #ee096b;
  border-bottom: 1px solid #f6f402;
  border-right: 0px solid #ee096b;
  margin: 0px 0;
}

#monkeyform textarea:focus, #monkeyform input:focus {
	background-color:#fff;
  border: 0px solid white;
  color: #2e2e2f;
  padding: 0px;
}

#monkeyform input.submit-button {
  /* -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; */
  font-family: 'Raleway', sans-serif;
  font-size:2.5vh;
  font-weight:300;
  text-transform: capitalize;
	width: auto;
	float: center;
  color:#000;
  background-color: #f6f402;
  border: 0px solid #fff;
  border-radius: 0px;
	-webkit-transition:all 0.1s ease-in-out;
	-o-transition:all 0.1s ease-in-out;
	transition:all 0.1s ease-in-out;
  padding: 1vw 3vw;
}

#monkeyform input.submit-button:hover {
  color:#fff;
  background-color: #333;
  cursor: pointer;
}

#monkeyform button {
  margin-top: 20PX;
}

@media (max-width: 800px) {
  #monkeyform {
    margin-bottom: 50px;
    width: 100%;
  }

  #monkeyform input, #monkeyform textarea {
    width: 90%;
    margin-bottom: 20px;
  }
  #monkeyform input.submit-button {
    margin: 0 auto;
  }
  #monkeyform .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*CHANGE PLACEHOLDER COLOUR AND SIZE*/
::-webkit-input-placeholder {
font-family: 'Raleway', sans-serif;
  color: #333;
  font-size:0.7rem;
  font-weight:400;
}
:-moz-placeholder { /* Firefox 18- */
font-family: 'Raleway', sans-serif;
  color: #333;
  font-size:0.7rem;
  font-weight:400;
}
::-moz-placeholder {  /* Firefox 19+ */
font-family: 'Raleway', sans-serif;
  color: #333;
  font-size:0.7rem;
  font-weight:400;
}
:-ms-input-placeholder {
font-family: 'Raleway', sans-serif;
  color: #333;
  font-size:0.7rem;
  font-weight:400;
}

.antispam { display:none;}