html{
  font-family: "Verdana", sans-serif;
  color:rgb(31,78,121);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
    margin: 0px;
}

p{
  text-align: center;
  font-size: 1em;
}

label, input{
  display: inline-block;
}

#phone{
  height: 3vh;
  /* min-width: 2vw; */
  /* position: absolute; */
  /* bottom: -4vh; */
  /* right: 5vw; */
  display: flex;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

a{
  text-decoration: none;
  color: rgb(31,78,121);
}

#phoneText {
  font-size: 2vh;
  line-height: 3vh;
}

#phoneIcon, #phoneText{
  float: left;
  height: 3vh;
  margin-right: 0.5vw;
  /* display: table-row-group; */
}

.three_img_wrapper{
  width: 100%;
  text-align: center;
}

.inlineImage{
  width: 30%;
  height: auto;
  display: inline-block;
  margin: 0px 1.4%;
  border-radius: 5%;
}

.qualsIMG{
  max-height: 6vh;
}

.hide {
   position: absolute !important;
   top: -9999px !important;
   left: -9999px !important;
}

#homeContent{
  transition: transform .5s;
}

.zeroOpacity{
  opacity: 0 !important;
}

.mobile_fw_img{
  width: 100vw;
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
  opacity: 1;
  transition: opacity 1s;
}

.backButton{
  position: absolute;
  left: 0;
  background-color: #afd0f8;
  bottom: -1.5vh;
  font-size: 1vh;
  height: 3vh;
  line-height: 3vh;
  padding: 0 2vw;
  border-radius: 0px 20px 20px 0px;
  color:rgb(31,78,121);
  font-weight: bold;
}

#mobile_homescreen_slideshow{
  overflow: hidden;
  width: 100vw;
  height: 25vh;
  margin: 2vh 0;
  position: relative;
}

.para{/*
  width:80vw;
  margin-left: 10vw;*/
  width: 100%;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

#title{
  font-size: 6em;
  text-align: center;
  color: rgb(46,117,182);
  cursor: pointer;
  position: relative;
}

.mainContent{
  /*width: 80vw;
  margin-left: 10vw;*/
  width: 100vw;
  margin-left: 0vw;
  margin-bottom: 1vh;
  background-color: #afd0f8;
  margin-top: 3vh;

  padding: 15px;
  text-align: justify;
}

#testimonialTabs{
  text-align: center;
}

.testimonialTab{
  display: inline-block;
  font-weight: normal;
  margin: 0px 15px;
  cursor: pointer;
  font-size: 3em;
}

.activeTestimonial{
  font-weight: bold;
}

.signpost { /* our rectangle */
  cursor:pointer;
  height: 6vh;
  left: 0;
  position: relative;
  color: #fff;
  padding-left: 20%;
  line-height: 6vh;
  font-size: 3vh;
  margin: 2vh 0px;
  border-radius: 0px 7vh 7vh 0px;
  transition: transform .5s;
  text-align: left;
  position: relative;
}

.signpost:after { /*  our pseudo-element */
  display: none;
  content:"";/* required */
  position: absolute; /* takes the 'cap' out off flow */
  top:0; /* stick it to top edge of the sign */
  left:100%; /* push it way overto the right*/
  height:0; /* we're doing this with borders remember */
  width:0;
  border-width: 3.5vh;
  border-style:solid;
  border-color:inherit; /* same as bg of our rectangle */
  /* now we make some of theborders disappear*/
  border-top-color:transparent;
  border-bottom-color:transparent;
  border-right-color:transparent;
}

.longArrowBar{
  background-color: rgb(46,117,182);
  border-color: rgb(46,117,182);
  margin-right: 10%;
}

.shortArrowBar{
  background-color: rgb(31,78,121);
  border-color:  rgb(31,78,121);
  margin-right: 20%;
}

#largeImagecontainer{
  width:100%;
  border-radius: 5px;
  height: 80%;
  overflow: hidden;
  position: relative;
}

#largeImage{
  max-width: 100%;
}

#thumbnailHolder{
  text-align: center;
  margin-top: 10px;
}

.thumbnail{
  display: inline-block;
  width: 6vw;
  height: 6vw;
  margin: 1vw;
  cursor:pointer;
}

#galNext, #invisNext{
  right:0;
}

#galPrev, #invisPrev{
  left:0;
}

.invisSide{
  width:50%;
  height:100%;
  position: absolute;
  z-index: 2;
}

.galSidebar{
  opacity: 0.5;
  width:100px;
  height:100%;
  position: absolute;
  background-color: rgba(0,0,0,0.0);
  transform: translateY(calc(50% - 1em));
  transition: opacity 0.3s;
}


#galPrev{
  padding-left: 10px;
}

#galNext{
  padding-right: 10px;
}

#gallery{
  margin-left: 0 !important;
  width: 100vw;
}

.arrowRight {
  top: 2pt;
  width: 2em;
  height: 2em;
  border-right: 0.5em solid rgb(50,50,50);
  border-top: 0.5em solid rgb(50,50,50);
  transform: rotate(45deg);
  float: right;
}

.arrowLeft {
  top: 2pt;
  width: 2em;
  height: 2em;
  border-left: 0.5em solid rgb(50,50,50);
  border-bottom: 0.5em solid rgb(50,50,50);
  transform: rotate(45deg);
  float: left;
}

body{
  min-width: 99vw;
  min-height: 99vh;
  text-align: center;
}

@media (max-width:675px) {
  #title{
    font-size: 3em;
  }
}

@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width:480px)  { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

  html{
    background-color: rgb(201, 229, 255);
  }

  #WRAPPER{
    width: 1025px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 0px 0 25px -4px #000, 0px 0 25px -4px #000;
    min-height: 100vh;
    background-color: #fff;
  }

  .thumbnail{
    width: 2vw;
    height: 2vw;
    margin: 0.2vw;
  }

  #mobile_homescreen_slideshow{
    width: 1025px;
  }

  .mobile_fw_img{
    width: 1025px;
  }

/*  .para{
    width: 800px;
    margin-left: 112.5px;
  }*/

  .signpost{
      height: 6vh;
      line-height: 6vh;
      font-size: 3vh;
      text-align: left;
  }

  .mainContent{
    width: 800px;
    margin-left: 112.5px;
  }

  .desc{
    font-size: 1.3em !important;
  }

  .testimonialTab{
    font-size: 2em;
  }

  #gallery{
    width: 800px;
    margin-left: 112.5px !important;
  }
}
@media (min-width:1281px) { /* hi-res laptops and desktops */ }
