@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');


/* -------------------------------- 

Primary style

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
    font-family: "Open Sans";
    font-weight: 400;
    color: #4E555A;
    letter-spacing: 0.69px;
    line-height: 24px;

}




:-moz-selection { background: yellow; }
::selection { background: yellow; }


table { margin-bottom: 30px;}


.subscribe-icons { padding:20px;
}




.subscribe-icons a:hover { text-decoration: none;
}


.fa {
  padding-right: 5px;
}

/*.mobile-logo {
    
    background: yellow;
    
}


.order-lg-3 {
    
    background: pink;
    
}*/


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  /*color: #1EAEDB;*/ color: #0d2c6c; }
  
  
  
  
a:hover {
  color: #0FA0CE; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400; }
  
  h2, h3, h4, h5, h6 {
  margin-top: 3rem;
  margin-bottom: 2rem; }
  
  #footer h2 {
      
      margin-top: 0rem;
      
  }



h1 { font-size: 4.0rem; line-height: 1.2;}
h2 { font-size: 3.0rem; line-height: 1.25; }
h3 { font-size: 2.6rem; line-height: 1.3; }
h4 { font-size: 2.2rem; line-height: 1.35; }
h5 { font-size: 1.8rem; line-height: 1.5;}
h6 { font-size: 1.6rem; line-height: 1.6; }



p {
  margin-top: 0; }

ol {
  word-break: break-all;
  margin: 0;
  padding: 0;
}
ol ol {
    margin-left: 2em;
}
ol li {
  list-style-position: inside;
  padding: 0;
}
ol li::before {
  content: "";
  width: 20px;
  display: inline-block;
}

b, strong {
  font-weight: 700; }

em {
  font-style: italic; }

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 56px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 1.0em;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.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: #33C3F0;
  border-color: #33C3F0; }
.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;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* 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; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }



/* 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; }


/* -------------------------------- 

Resource style 

-------------------------------- */
header {
  
  /*height: 117px;*/
  text-align: center;
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  padding-top: 3em;
  margin-bottom: .2em;
}

header p {
  font-size: 1.3rem;
  color: #957484;
}

@media only screen and (min-width: 1024px) {
  header {
    height: 117px;
  }
  header h1 {
    font-size: 3rem;
  }
}

main {
  width: 90%;
  max-width: 768px;
  margin: 2em auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
 
}

main p {
  line-height: 1.6;
  margin: 2em 0;

}

p {

  line-height: 1.6;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 16px;
  color: #4E555A;
  letter-spacing: 0.69px;
  margin-bottom: 2rem;

}

@media only screen and (min-width: 1024px) {
  main p {
    font-size: 2rem;
  }
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(0, 32, 91, 0.8) url(/__data/assets/file/0008/654452/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  z-index: 3;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

.cd-top.cd-top--fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}

.cd-top:hover {
  background-color: #2774AE;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}





/* HEADER Items */

.phone-cta {

font-family: 'Montserrat', sans-serif; font-weight: 700; 
font-size: 22px;
/*color: #01BCE8!important;*/
color: #0d2c6c!important;

}


.phone-cta .fa-phone { margin-right: 10px;}

















.main-content {

margin-top: 60px;

}



html, body {
  height: 100%;
  width: 100%;

}
body { background-color:#fafafa;}


#wave-section {

 position: relative;
 height: 200px; 
 margin: 0; padding: 0;
 background: #fff;

}

.wave {
  position: absolute;
  bottom:0px;
  z-index: 1;
}

.wave + .wave {
  z-index: 2;
}




h1 { /*margin:150px auto 50px auto; */ text-align:center; font-family: 'Montserrat', sans-serif; font-weight: 700;z-index: 2; font-size: 5rem;}

#logo {

width: 300px;
margin: 80px auto;
display: block; 
z-index: 2;

}

#logo img { width: 100%;}


#footer { color: white; height: auto;}
#footer .container { color: white; height: auto; border-top: 1px dotted #01BBE8; border-bottom: 1px dotted #01BBE8; padding: 60px 0;}


    

footer {
  position: absolute;
  left:0;
  right:0;
  top:90%;
  bottom:0;
  z-index: 2;
  font-family: 'Montserrat', sans-serif; font-weight: 400; color:white;
}


.item {

width:32%;
height: auto;
float:left;
margin-right: 2%;
margin-bottom: 6%;
-webkit-animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
/*animation-name: fadeInUp;*/
}


.item img { max-width: 100%;}

.last { margin-right: 0; }
.not-fixed { position: relative; top: 0;}


h2, h3, h4, h5, h6 {

  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #415665;
  letter-spacing: 1.04px;

}


ul li, ol li {
font-family: "Open Sans";
font-weight: 400;
font-size: 16px;
color: #4E555A;
letter-spacing: 0.69px;
margin-bottom: 1.2rem;


}

ul li {

list-style-type:none;

}


ul li {
  position: relative;
  padding-left: 15px;
}

ul li:before {
  position: absolute;
  left: -5px;
}


ul li:before { content:'\00b7'; font-size:30px; vertical-align:middle; }

ul { margin-bottom: 30px; margin-left: 20px; }




#footer ul {
    margin-bottom: 30px;
    margin-top: 20px;
    margin-left: 0;
}


#footer ul li, #footer p {
font-family: "Open Sans";
font-weight: 400;
font-size: 16px;
color: #4E555A;
letter-spacing: 0.69px;
line-height: 30px;
list-style-type: none;



}


#footer ul li a, #footer p, #footer a {color: #fff;}

#footer p a:hover {


  color: yellow;
}


/* Background image */
.jumbotron {
  text-align: center;
  padding-top: 20rem;
  padding-bottom: 20rem;
  letter-spacing: 0.69px;

  /* Hero Image: */
 
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;


}

.lead span {
  color: orange;
  font-weight: bold;
}

.bg-cover {
  background-size: cover;
  color: white;
  background-position: center center;
  position: relative;
  z-index: -2;

}


/*.overlay {
  background-color: #028ACA;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}*/



.jumbotron h1 {

margin: 10px auto 50px auto;
text-shadow: 0px 0px 40px rgba(0, 0, 0, .4);
}


.jumbotron p {

margin: 10px auto 20px auto;font-size: 16px;
text-transform: uppercase; color: #fff;
font-family: "Open Sans";
font-weight: 700;
text-shadow: 0px 0px 40px rgba(0, 0, 0, .4);
}



#main-footer {

      background-color: #00B5E2;     
      /*background-image: linear-gradient(-180deg, #1eb4e1 0%, #0284C6 100%);*/
      background-image: linear-gradient(-180deg, #1eb4e1 0%, #155D89 100%); 
      
    }


#logos-strip { padding:30px 0 0;}

    #logos-strip .container { padding-bottom: 60px;}


    .logo { display: block; width:auto; margin: 0 auto;}


  #footer h2 {

    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom:10px;

  }






/**** Social Footer ****/
  
    #social-footer {

      background-color: #FFF;
      position: relative;
      overflow: hidden;
      padding: 50px 0px 0px;
      font-size: 24px;
      color: #01B3E3;
      width: 100%;
      font-family: 'Montserrat', sans-serif; font-weight: 400;
      letter-spacing: 0;
      line-height: 60px;
      margin-top: 70px;
      text-align: center;

    }

    #social-footer .row {

      -webkit-animation-duration: .8s;
      -moz-animation-duration: .8s;
      -ms-animation-duration: .8s;
      -o-animation-duration: .8s;

    }

    #social-footer a {

      font-size: 23px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      text-decoration: none;

    }


    #social-footer .fa-circle { color: #00B5E2;}
    #social-footer .fa-inverse { color: #ffffff;}
    #social-footer a:hover .fa-inverse, #social-footer a:focus .fa-inverse { color: #1683c6;}
    .subscribe-button { cursor: pointer;}
    #social-footer .subscribe-button:hover .fa-inverse, #social-footer .subscribe-button:focus .fa-inverse { color: #1683c6; text-decoration:none;}
    .social-icon-img { width: 54px; margin-left: 5px;}
    
    @media (max-width:1700px) { .thumbnail-placeholder { width: 90%;}}
    @media (max-width:1400px) { .thumbnail-placeholder { width: 100%;}}
    @media (max-width: 991px) { #social-footer .fa-stack { font-size: 24px;}}
    @media (max-width: 767px) { #social-footer .text-right { text-align: center!important;}
    #social-footer { text-align: center; line-height:36px;}
    #social-footer .subscribe-button span { display: none;}
    #social-footer .subscribe-button { display: block; margin-bottom: 15px;}
        
        
        .jumbotron {

    padding-top: 8rem;
    padding-bottom: 8rem;

}

#asset653573 .jumbotron { padding-top: 20rem; padding-bottom: 20rem; }

    }


  @media (max-width: 374px) { 
        
        .jumbotron {

    padding-top: 2rem;
    padding-bottom: 2rem;

}
    }
    




    .img-90 { max-width: 90%; height: auto;}

.header-logo {

width: 180px;
padding: 20px;
transition: padding 1s ease;

}


.subscribe-icons .header-search-icon:hover .fa-inverse, .subscribe-icons .header-search-icon:focus .fa-inverse {
    color: #1683c6;
    text-decoration: none;
}

.search a { color: #fff;}
.search a:hover { color: #1683c6; text-decoration: none;}






.navbar-nav.navbar-center {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}


 
 
 nav.sticky {
    font-size: 24px;
    line-height: 48px;
    height: 48px;
    background: #efc47D;
    text-align: left;
    padding-left: 20px;
 }



nav.main-nav ul li {


  font-family: "Open Sans";
  font-weight: 700;
  font-size: 18px;
  color: #4E555A;
  letter-spacing: 0.69px;
  line-height: 30px;
  padding-right: 2rem;
  padding-left: 2rem;
  transition: padding 1s ease;


}



nav.main-nav ul li:before { display: none; }

@media only screen and (min-width: 992px) and (max-width: 1067px)  {
    nav.main-nav ul li { padding-right: 1rem; padding-left: 1rem;}
    
}

.w-10 {
    width: 10%!important;
}



.copyright {
    color: #B1B1B0;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif; font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #9FA3A7;
    letter-spacing: 0;
    line-height: 36px;
}


.copyright p {
    color: #B1B1B0;
    font-size: 16px;
    line-height: 36px;
    font-family: 'Montserrat', sans-serif; font-weight: 400;
    font-style: normal;
    font-weight: 700;
}

.copyright-links, .copyright-links a {
    text-align: right;
    padding-left: 5px;
    color: #B1B1B0;
    font-family: 'Montserrat', sans-serif; font-weight: 400;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 36px;
    color: #9FA3A7;
    letter-spacing: 0;
}


.copyright-links ul li { display: inline;}



.dropdown-menu {
     
    padding: 1rem 0;
    font-size: 1.6rem;
    
}


.shrink {

  font-size: 0.6rem;
  padding: 2px 20px!important;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;

}

.shrink .header-logo {
    width: 120px;
    padding: 10px;

}

.shrink .subscribe-icons { font-size: 17px; }
.shrink .phone-cta {font-size: 18px;}
.shrink .subscribe-icons {font-size: 12px;}



@media (min-width: 991px) { 
.navbar .header-phone-icon{display: none;}
.navbar-expand-lg .navbar-collapse .dropdown-icon { display: none;}


}

@media (max-width: 991px) { 
.phone-cta {display: none;}
.navbar .header-facebook-icon, .navbar .header-email-icon {display: none;}
.subscribe-icons {padding: 0px;margin-right: 20px;}
}


.navbar-collapse a {text-decoration: none;}



.navbar {

  box-shadow: 0 0 1px rgba(0,65,94,0.2);
   
}



.reduce {


  font-family: "Open Sans";
  font-weight: 700!important;;
  font-size: 16px!important;;
  color: #4E555A;
  letter-spacing: 0.69px;
  line-height: 20px;
  padding-right: 1rem!important;;
  padding-left: 1rem!important;;
  


}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}


.navbar-toggler {
    border: 0px solid #01BCE8;
    padding: 5px;
    margin-left:20px;
}



.bar1, .bar2, .bar3 {
    width: 23px;
    height: 3px;
    margin: 5px;
    border-radius: 2px;
    background: #01BCE8;
    transition: all 0.5s ease;

}

.bar2 {
  width: 18px;

}


.change .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

button:focus {outline:0;}


.navbar-toggler:focus {
    border:0;
    box-shadow: none;
}



.dropdown-toggle::after {
    margin-left: .1em;
    vertical-align: .255em;
    border-top: .25em solid;
    border-right: .25em solid transparent;
    border-bottom: 0;
    border-left: .25em solid transparent;
}




/* ACCORDION */


.accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; line-height: 30px;color: #00B5E2; -webkit-text-stroke: 1px  #fafafa;
    
}
.accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f067"; line-height: 30px;
}




.accordion p, .card-title {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 16px;
    color: #4E555A;
    letter-spacing: 0.69px;
    line-height: 30px;
    list-style-type: none;

    padding:20px;
}


.card-title {
    

    padding:20px 0;
}

.card-body {


background-color: #fafafa;


}

.card-header {
    padding: 1.875rem 1.25rem;
    margin-bottom: 0;
    background-color: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,.125);
    cursor:pointer;
}

.card-body p
{
    margin-bottom:0 !important;
}

.accordion .card {

    border: 0px solid rgba(0,0,0,.125);
    border-radius: 0rem;
}




#footer-bottom {

  /*background-color: #0283C6;*/
  background-color: #155D89;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: white;
  padding: 20px;

}

#footer-bottom p { color: #fff; font-size: 14px;line-height: 30px; margin-bottom: 0;}
#footer-bottom ul { margin: 0; float: right;}
#footer-bottom ul li {display: inline; padding-right: 20px;  font-size: 14px;}
#footer-bottom ul li:last-child { padding-right: 0px;}
#footer-bottom ul li:before { display: none;}
#footer-bottom ul li a { display: inline; color: #fff;}
#footer-bottom .container { padding: 20px;}


/*.dropdown-toggle[aria-expanded="true"]:after {
  transform: rotate(180deg);
}

.dropdown-toggle:after {
  transition: 0.5s;
}*/

.dropdown-toggle[aria-expanded="true"]:after {
  transform: rotateX(180deg);
}



.logo:hover {
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
    transition: 1s;
}



.alert-warning, .major {
    color: #ffffff;
    background-color: #5fcf80;
    padding: 40px;
}

.major {
    color: #ffffff;
    background-color: #CE2631;
    

}



.alert {

    margin-bottom: 0rem;
    border: none;
    font-family: 'Montserrat', sans-serif; font-weight: 400; text-align:center;
    font-size: 16px;
    padding: 20px 40px;


}

.alert a {

    color:yellow;


}





.alert .fas {

   
    font-family: 'FontAwesome';
    font-size: 32px; 
    line-height: 32px;
     

}

.top-alert-icon {

vertical-align: middle;padding:0px 10px 0 0;height: 32px;

}



.close, .major .close  {
    /*float: right;*/
    font-size: 32px;
    font-weight: 700;

    color:white;
    -webkit-text-stroke: 2px #5fcf80;

    font-family: 'FontAwesome';  



}

.major .close  {
 
    -webkit-text-stroke: 2px #CE2631;


}


*/


@media (max-width:1268px) { 




nav.main-nav ul li {
   font-family: "Open Sans";
    font-weight: 700!important;
    font-size: 16px!important;
    color: #4E555A;
    letter-spacing: 0.69px;
    line-height: 20px;
    padding-right: 1rem!important;
    padding-left: 1rem!important;
    transition: padding 1s ease;
}


.header-logo {
    width: 120px;
    padding: 10px;
}


}



@media (max-width: 991px) { 


    .page-thumbnail { display: none; }

    #footer-bottom ul, #footer-bottom p {
    text-align: center;
    margin: 0px;
    padding:10px;
     max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  float: none;
}
}






@media (max-width: 576px) { 

  #footer .container {
    color: white;
    height: auto;
    border-top: 1px dotted #01BBE8;
    border-bottom: 1px dotted #01BBE8;
    padding: 40px 0px;
    text-align: center;

}

#footer .container .row{
    margin:0;

}

#footer h2 {

    margin-bottom: 10px;
}


.logo {

    margin-bottom: 40px;
    width: 150px;
}

#logos-strip .container {
    padding-bottom: 0px;
}

#logos-strip {
    padding: 0px 0 0;
}

.main-content {
    margin-top: 0px;
    padding: 20px;
}


#wave-section  { display: none; }
#main-footer { padding-top: 40px; }
#social-footer { padding: 20px 0px 0px;}

#footer-bottom ul { text-align: center; margin: 0px; padding:0;}
#footer-bottom ul li { padding-right: 10px;}

.contact-col { margin-bottom: 40px; }



/*header { height: 80px;}*/

    





}











figure img {
    float: left;
    margin: 0em 5% 0 0;
    max-width: 30%;
}


.main-content img.avatar {
    width: 130px;
    height: 130px;
    background-position: center;
    border-radius: 50%;
    max-width: 100%;
}

figure {
    clear: both;
    display: block;
    padding: 20px 0 0.0em 0;
    float: left;
    margin-top: 0em;
    width: 100%;
}


figcaption {
    float: left;
    width: 65%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}


@media (max-width: 480px) { 


    figure img {
    float: none;
    display: block;
    margin: 1.0em auto 0 auto;
    width: 300px;

}

figcaption {
    width: 80%;
    margin: 20px auto;
    display: block;
    float: none;
}

figcaption h3, figcaption p { text-align: center;}

}


figcaption ul li {
	

	margin-bottom: 0.8rem;
}


#accordion { clear: both; }
.rsbtn {

    margin-bottom: 20px!important;
  
}


.nav-right {
    float: right;
    margin-right: 20px;
}





/* New CSS for Search overlay
–––––––––––––––––––––––––––––––––––––––––––––––––– */





.search {

      list-style: none;
      margin: 0 30px;

    }

    .search icon-right {

      list-style: none;
      color: #fff;
      line-height: 0.5;
      margin: 5px 0 0 5px;
      display: inline-block;
      padding: 0;
      vertical-align: top;

    }
	
	
	









	.search-full-view.dropdown-normal-screen {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.ser-input {
    border-color: transparent;
    border-bottom-color: #fff;
    color: white;
}
.ser-input:focus {
    border-color: transparent;
    color: white;
    border-bottom: 1px solid #fff;
}

.search-full-view {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #9F1E4F;
    opacity: 0;
    z-index: -1;
    transition: .5s all;
    background-image: url("http://www.dunedinchinesegarden.com/__data/assets/image/0006/631167/footer-dragon.png");
    overflow: visible;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 550px;
    background-origin: content-box;
    padding: 20px;
    font-family: "din-2014","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
}










.search-normal-screen {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.search-full-view .input-group {
    width: 80%;
    margin: 0 auto;
    top: 40%;
    height: 100px;
}
.search-full-view .input-group .form-control {
    background: transparent;
    font-size: 6em;
    padding: 10px;
    border: hidden;
    vertical-align: unset;
    color: #ffffff;
    height: 100%;
    box-shadow: none;
    border-radius: 0;
}
.search-full-view .input-group .form-control:focus{
    border-color: #fff;
    border:0 !important;
    border-bottom: 2px solid #fff !important;
}
.search-full-view .input-group .input-group-addon {
    background: transparent;
    font-size: 4em;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.search-full-view .btn-close {

	color: white;
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.fa-close-thin:before {
  content: '\00d7';
  -webkit-text-stroke: #9f1e4f 1px;
}

#dropdown-close-dt .fa-close-thin:before {
  content: '\00d7';
  -webkit-text-stroke: #415665 1px;
}

.btn-close:hover {
    color:  #B59766;
}

.fa-search:hover{
    color:#B59766;
}

.search-full-view .fa {
     -webkit-text-stroke: inherit 3px
    }


    .icon-search {
    width: 20px;
    float: left;
    height: 2em;
}

.search-full-view .btn-close {
    top: 0;
    right: 0;
    cursor: pointer;
    padding: 0;
    margin: 0;
    margin-right: 18px;
}


.search-full-view .mobile-nav-normal-screen{
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.search-full-view .input-group .form-control {
    font-size: 2em;
    width: 85%;
    padding: 0;
    padding-top: 8px;
}

.search-full-view .input-group {
    float: left;
    width: 95%;
    padding-left: 40px;
    padding-right: 40px;  
}

.search-full-view .input-group .input-group-addon {
    float: right;
    padding-top: 0;
    font-size: 2em;
    
}



.fa-search {
    font-size: 1em;
    font-weight: 700;
}


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


      .search-full-view {
    
    background-size: 360px;
    
}}

/* Icons on hover */
.subscribe-icons a:hover  {
text-decoration: none;
}


.subscribe-icons a  {
text-decoration: none;
}


/******/


/* FORM */

/***** CONTENT FORMS *****/

.main-content form { background: #fcfcfc; border: 1px solid #e4e4e4; color: #000000; padding: 25px 50px 50px 50px; }
.main-content form fieldset { margin: 80px 0 0 0; padding: 0; }
.main-content form fieldset:nth-of-type(1) { margin: 0; }
.main-content form fieldset legend { font-family: 'Montserrat', sans-serif; font-weight: 700; font-style: normal; }
.main-content form fieldset fieldset { margin-top: 40px; }
.main-content form fieldset fieldset legend { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 700; border-top: 1px solid #e5e5e5; border-bottom: none; padding-top: 30px; color: #000; }
.main-content form label,
.main-content form input[type=text], 
.main-content form input[type=tel], 
.main-content form input[type=email], 
.main-content form input[type=password], 
.main-content form button, 
.main-content form textarea { width: 100%; font-size: 1.0em; line-height: 1.5; }
.main-content form label { margin-top: 1.0em; padding: 0; border: none; font-family: 'Montserrat', sans-serif; font-weight: 400; }
.main-content form label input { font-weight: normal; }
.main-content form textarea, 
.main-content form input { border: 1px solid #e4e4e4; }
.main-content form input.sm-input { width: 25%; }
.main-content form input.md-input { width: 50%; }
.main-content form input[type=checkbox],
.main-content form input[type=radio] { border: 3px solid #ff0000; height: 1.0em; width: 1.0em; }
.main-content form input[type=button],
.main-content form input[type=reset],
.main-content form input[type=submit],
.main-content form button {
  /*width: 33%;*/
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border: none;
  background: #00B5E2;
  color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 400;
}


.main-content form strong { font-weight: 700; }


.required { color: #ff0000; font-weight: 700; }


/*** FROM - TO RANGE ***/
.main-content form fieldset.range {}
.main-content form fieldset.range legend {}
.main-content form fieldset.range label { width: 45%; margin-right: 5%; float: left; }
.main-content form fieldset.range label.from {}
.main-content form fieldset.range label.to {}

/*** UL option lists ***/
.main-content form ul { margin-bottom: 40px; padding: 0; }
.main-content form ul li { width: 100%; clear: both; list-style-type: none; margin-left: 0;  }
.main-content form ul li input[type=checkbox], 
.main-content form ul li input[type=radio] { width: 5%; display: inline; }
.main-content form ul li label { width: 90%; display: inline; font-weight: normal; }

.main-content form ul li:before { content:''; font-size:30px; vertical-align:middle; } /**/



/*** YES / NO RADIO ***/
.main-content form fieldset.yesno {}
.main-content form fieldset.yesno ul li { float: left; clear: none; width: 50%; }
.main-content form fieldset.yesno ul li input { width: 1.0em; display: inline; }
.main-content form fieldset.yesno ul li label { display: inline; }


/*** SUBMIT BUTTONS ***/
.main-content div.submit input[type=button],
.main-content div.submit input[type=reset],
.main-content div.submit input[type=submit],
.main-content div.submit button { width: 100%; font-size: 1.0em; line-height: 1.5; padding: 14px; }


/*** FORM CONTROL ***/
.form-control {
  display: block;
  width: 100%;
  height: 54px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}








/*** DCC Styling ***/
.main-content .sq-form-question, .main-content .sq-form-question-note {
    display: block;
    margin-bottom: 2.0em;
}

.sq-form-question-answer ul li:before {
   display: none;
}



.sq-form-question-answer ul li {
    position: relative;
    padding-left: 0px;
}

.main-content form ul{margin:0px;}

.main-content form fieldset legend {
    font-weight: 400;}
    
    
.sq-form-error {    
color: #fa5e5e;
}



/*** READSPEAKER OVERRIDES ***/




.rsbtn { z-index: 1 !important; }
.row > .rsbtn { margin: 10px 0 0 10px; }


#article-listen {
    padding-right: 0px;
    padding-top: 5px;
    position: relative;
    color: #0283C6;
    margin-left: 27px;
}

#article-listen:hover:before {
    animation: play 1.5s steps(2) infinite;
}

#article-listen:before {
    left: 0;
    margin-left: -27px;
}


#article-listen:before {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    width: 19px;
    height: 22px;
    background: url(/__data/assets/file/0006/799017/icon-listen-sprite.svg) -39px 0 no-repeat;
    background-size: auto 100%;

}

span:hover {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .5s ease, opacity 1.3s ease;
    transition: transform .5s ease, opacity 1.3s ease;
}

.rsbtn_play {
    font-family: unset!important;
    font-size: 14px !important;
    font-weight: 900!important;
    line-height: 14px!important;
}


.readspeaker-wrapper {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.875em;
    box-sizing: border-box;
    margin-bottom: 1.125rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


