/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

:root {
	--blue: #1c98a0;
	--lgreen: #dcefe6;
	--green: #173621;
}

img {
	max-width: 100%;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 700px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
font-family: 'Poppins', sans-serif;
	color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400; 
font-family: 'Amiri', serif;}
h1 { font-size: 4.5rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 4.1rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.5rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.9rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 2.3rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 2.0rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 6.0rem; }
  h2 { font-size: 5.2rem; }
  h3 { font-size: 4.6rem; }
  h4 { font-size: 4.0rem; }
  h5 { font-size: 3.4rem; }
  h6 { font-size: 2.5rem; }
}

p {
  margin-top: 0;
	font-size: 1.25em;}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: var(--blue); }
a:hover {
  color: #0FA0CE; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 42px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
border: 2px solid var(--blue);}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: var(--blue);
border-color: var(--blue);}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  opacity: 0.8 }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0;
font-size: 120%;}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


.holiday-alert{
    padding: 4px; 
    background-color: #dcefe6 ;
    color: #1C98A0;
    text-align: center;
    font-size: 12pt;
	}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
	max-width: 90%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

.caps {
  text-transform: uppercase;
}

section {
	padding: 4rem 0;
}


.blue {
  color: var(--blue);
}

.blue-bg {
  background: var(--blue);
}

.lgreen {
  color: var(--lgreen);
}

.lgreen-bg {
  background: var(--lgreen);
}

.green {
  color: var(--green);
}

.green-bg {
  background: var(--green);
}

.white {
  color: #fff;
}

.center {
  display: block;
  text-align: center;
}

.bold {
  font-weight: bold;
}

.extra-padding {
	padding: 6rem 0 4rem;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


.preheader {
	color: --var(blue);
	text-align: center;
	padding: 5px 0;
}

.preheader a {
	text-decoration: none;
}

.preheader a i {
	margin-right: 0.3em;
	font-size: 17px;
}

header {
	background: var(--blue);
	padding: 1.5rem 2rem;
}

header a {
	text-decoration: none;
	color: white;
}

.nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.logo {
	max-width: 400px;
	flex: 1;
}


nav {
	display: flex;
	justify-content: flex-end;
	flex: 2;
	font-size: 1.2em;
	flex-wrap: wrap;
}

nav a {
	margin-left: 30px;
	margin-block: 0px;
	border-bottom: 1px solid transparent;
}

nav a:hover {
	color: #fff;
	border-bottom: 1px solid white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 101;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #fff;
  padding: 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  color: #555555;
  border-bottom: none;
}

@media (min-width:768px) {
	/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  }
}

.dropdown-submenu {
  display: flex;
  flex-direction: row;
  margin: 0 1rem;
  justify-content: space-between;
  align-items: center;
}
.dropdown-submenu:hover > .dropdown-submenu-content {
  display: block;
}
.dropdown-submenu > i {
  margin-right: 1rem;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .dropdown-submenu {
    flex-wrap: wrap;
  }
}

.dropdown-content,
.dropdown-submenu-content {
  display: none;
  position: absolute;
  background-color: #1C98A0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-submenu-content a {
  display: block;
  color: #fff;
  padding: 1rem;
}
@media only screen and (max-width: 750px) {
  .dropdown-content,
.dropdown-submenu-content{
    width: 100%;
  }
}

@media only screen and (min-width: 750px) {
  .dropdown-submenu-content {
    transform: translate(100%, 40%);
  }
}

.hero {
	background-image: url("../images/office-header.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 75vh;
}

.banner {
	background: var(--green);
}

.banner h1 {
	margin-bottom: 0;
}

.services a {
	text-decoration: none;
	color: black;
}

.services a:hover {
	color: var(--green);
}
.services h2{
 font-size: 2.9rem; line-height: 1.35; letter-spacing: -.08rem;
  }  
.index-services-flex {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.service-box {
	background: var(--lgreen);
	padding: 1.5rem;
	text-align: center;
	margin-bottom: 1.8rem;
	margin-inline: 2rem;
}

.reviews {
	background: var(--green);
	color: white;
	min-height: 400px;
}

.testimonial-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reviews .button {
	margin-top: -28px;
}

.image-card {
	display: flex;
	align-items: center;
}

.image-card-image {
	position: relative;
	flex: 1;
}

.image-card-text {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	background: #fff;
	padding: 30px;
	position: relative;
	right: 3vw;
	background: var(--lgreen);
}

.contact {
	background: var(--lgreen);
}

.map {
	position: relative;
	overflow: hidden;
	height: 550px;
	margin-bottom:-150px; 
}

.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	margin-top: -150px;
}

.map-content {
 	position: absolute;
	padding: 2%;
	top: 5%;
  	left: 2%;
	right: 70vw;
  	background: white;
  	box-shadow: 10px 10px 50px #687d83;
	max-width: 600px;
}

.map-content p {
	font-size: 16px;
	line-height: 16px;	
}

@media (max-width: 550px){
	.map-content {
		bottom: 35%;
		right: 2%;
		top: 30%;
	}
      .services-box h2{
 font-size: 4.0rem; 
}
}

.footer, .footer2 {
	background: var(--blue);
	color: white;
	text-align: center;
	font-size: 90%;
}

.footer2 {
	padding-bottom: 15px;
}

.footer a, .footer2 a {
	color: white;
	text-decoration: none;
	
}

.footer a:hover, .footer2 a:hover {
	color: var(--green);
}
.copy {
	padding-top:2%;
}

.uponline{
	text-align:right;
}

.uponline img{
	max-width:100px;
}

.bio {
	padding-bottom: 5rem;
}

.faq-flex {
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	flex-wrap: wrap
}

.faq {
	background: var(--lgreen);
	padding: 1.8rem;
	text-align: center;
	flex: 1;
	margin: 30px;
	min-width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.article {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	background: var(--lgreen);
	box-shadow: 2px 4px 10px -4px var(--green);
	padding: 3rem;
	margin-bottom: 4rem;
}

.article-img {
	flex: 1;
}

.article-text {
	flex: 3;
	margin-left: 30px;
}


.article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6 {
	font-family: 'Poppins', sans-serif;
	color: var(--blue);
} 

.article-body h2 {
	font-size: 3rem;
	font-weight: bold;
}

.article-body h3 {
	font-size: 2.4rem;
}

.services-hero {
	background: var(--lgreen);
	padding-block: 6rem;
	text-align: center;
}

.services-hero h1 {
	color: var(--blue);
	font-weight: bold;
}

.service-hero-flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.services-flex {
	display: flex;
	justify-content: space-between;
}

.services-nav h4 {
	margin-bottom: 2.5rem;
	font-weight: bold;
	font-size: 1.8em;
	background: var(--lgreen);
	padding: 1rem 2rem;
}

.services-nav h5 {
	border-bottom: 1px solid var(--blue);
	color: var(--green);
	padding-bottom: 1rem;
	margin-bottom: 0;
	font-size: 1.8em;
}

.services-nav h6 {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 1.2em;
}

.services-nav h5 a:hover, .services-nav h6 a:hover, .services-nav .active, .services-nav .collapsible:hover {
	color: var(--blue);
	cursor: pointer;
}

.services-nav .content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
	list-style: none;
	color: var(--green);
}

.services-nav .content li {
	border-bottom: 1px solid var(--blue);
	padding-block: 0;
	margin-left: 2rem;
}

.services-nav .collapsible:before {
  content: '+'; /* Unicode character for "plus" sign (+) */
  font-size: 24px;
  color: var(--green);
  margin-right: 10px;
}

.services-nav .active:before {
  content: '-'; /* Unicode character for "minus" sign (-) */
	font-size: 24px;
  color: var(--green);
  margin-right: 10px;
}

.services-nav {
	min-width: 200px;
	flex: 1;
} 

.services-nav a {
	text-decoration: none;
	color: var(--green);
}

.services-text {
	margin-left: 50px;
	flex: 3;
}

.services-text h2, .services-text h3 {
	color: var(--blue);
	text-align: left;
}

.services-text h2 {
	font-size: 1.8em;
	font-weight: bold;
}

.services-text h3 {
	font-size: 1.7em;
}




/* ---------------------------------- */
/* Testimonial Slider */

.testim{
    width: 100%;
	padding: 0;
  
}
.testim .wrap{
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 0 0 40px;
    margin: auto;
}

.testim .arrow{
    display: block;
    position: absolute;
    color: var(--lgreen);
    cursor: pointer;
    font-size: 2em;
    top: 40%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}
.testim .arrow:before{
    cursor: pointer;
}
.testim .arrow.left{
    left: 10px;
}
.testim .arrow.right{
    right: 10px;
}
.testim .arrow:hover{
    color: #575e60;
}

.testim .dots{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}
.testim .dots .dot{
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #687D83;
    margin: 0 10px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    position: relative;
}
.testim .dots .dot.active,
.testim .dots .dot:hover{
background: #ccc;
border-color: #ccc;
}

.testim .dots .dot.active{
    animation: testim-scale .1s ease-in-out forwards;
}
.testim .cont{
    position: relative;
    overflow: hidden;
}
.testim .cont > div{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 80px 0;
    opacity: 0;
}
.testim .cont > div.inactive{
    opacity: 1;
}
.testim .cont > div.active{
    position: relative;
    opacity: 1;
    
}
.testim .cont div .img img{
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}
.testim .cont div h3{
    color: var(--lgreen);
    font-size: 1.3em;
    margin: 15px 0;
}
.testim .cont div p{
    font-size: 1.2em;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img{
    animation: testim-show .5s ease-in-out forwards;
}
.testim .cont div.active h3{
    animation: testim-content-in .4s ease-in-out forwards;
}
.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}
.testim .cont div.inactive .img img{
    animation: testim-hide .5s ease-in-out forwards;
}
.testim .cont div.inactive h3{
    animation: testim-content-out .4s ease-in-out forwards;
}
.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px #687d83;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #687d83;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}
@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}
/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 1000px) {
	.reviews {
		height: 485px;
	}
	
}

@media all and (max-width: 500px) {
    .testim .arrow{
        font-size: 1.5rem;
    }
    .testim .cont div p{
        line-height: 25px;
    }
	.reviews {
		height: 550px;
	}
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 700px) {
	.flex {flex-direction: column;}
	nav {justify-content: space-around}
	.image-card-text {right:0}
	.article {align-items: flex-start}
	.article-text {margin-left:0;}
	.article-img {margin-bottom: 10px;}
	.services-flex {flex-direction: column-reverse}
	.services-text {margin-left: 0; margin-bottom: 2rem}
}
