header{
    padding-top: 100px !important;
}

/* Nav 1 */
.nav1{
    color: #FFF;
    height: 75px;
    position: fixed;
    width: 100%;
    z-index: 103;
}

.nav1::before{
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 75px;
}

.nav1::after{
    content: "";
    display: block;
    height: 300px;
    width: 120%;
    background-color: transparent;
    z-index: -1;
    position: absolute;
    top: -300px;
    box-shadow: 0px 0px 230px 55px rgba(0, 0, 0, 0.70);
    left: -20%;
}

.nav1_container{
    margin: 0 auto;
    width: 90%;
}

.nav1 .logo{
    font-family: sansationbold;
    line-height: 75px;
    font-size: 2rem;
    float: left;
    color: #FFF;
    text-decoration: none;
}

.nav1 .logo span{
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav1 .logo span:first-child, .nav1 .logo span:nth-child(3){
    color: #20b7e6;
}

.nav1 .logo span:nth-child(2){
    color: #ea1686;
}

.nav1 .logo:hover span{
    color: #FFF;
}

.nav1 .logo svg{
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.nav1 .logo svg path{
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav1 .logo:hover svg path{
    fill: #FFFFFF;
}

.nav1 .menu_button{
    float: right;
    margin-top: 20px;
    height: 35px;
    line-height: 35px;
    box-shadow: 0 0 0 1px #fff, 0 0 0 1px #fff;
    border-radius: 25px;
    width: 82px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav1 .menu_button:hover{
    color: #20b7e6;
    background-color: #FFF;
}

.nav1 .menu_button.active{
    color: #20b7e6;
    background-color: #FFF;
}

.nav1 .menu_button.active:hover{
    color: #ea1686 !important;
}

.nav1 .nav1_menu{ display: none; }

@media only screen and (min-width:900px){
    
    .nav1 .menu_button{ display: none; }
    
    .nav1 .nav1_menu{ 
        display: inline-block;
        float: right;
        line-height: 75px;
    }
    
    .nav1 .nav1_menu a, .nav1 .nav1_menu span{
        display: inline-block;
        font-weight: bold;
        color: #FFF;
        cursor: pointer;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    
    .nav1 .nav1_menu a, .nav1 .nav1_menu span{
        margin-right: 30px;
        text-decoration: none;
    }
    
    .nav1 .nav1_menu span{ position: relative; }
    
    .nav1 .nav1_menu a:last-child{ margin-right: 0px; }
    
    .nav1 .nav1_menu a:hover{
        color: #20b7e6;
    }
    
    .nav1_menu_hasdropdown i{ margin-left: 5px; }
    .nav1_menu_dropdown i{ margin-left: 0 !important; margin-right: 5px; }
    
    .nav1 .nav1_menu a.nav1_menu_start{
        background-color: #ea1686;
        padding: 0px 20px;
        border-radius: 4px;
        height: 35px;
        line-height: 35px;
    }
    
    .nav1 .nav1_menu a.nav1_menu_start:hover{
        color: #FFF;
        background-color: #20b7e6;
    }
    
    .nav1_menu_dropdown{
        position: absolute;
        background-color: rgba(255, 255, 255, 0.8);
        top: 55px;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    
    .nav1_menu_hasdropdown i{ margin-left: 5px; }
    
    .nav1_menu_hasdropdown:hover{
        color: #20b7e6 !important;
    }
    
    .nav1_menu_hasdropdown:hover .nav1_menu_dropdown{
        opacity: 1;
        visibility: visible;
        top: 75px;
    }
    
    .nav1 .nav1_menu .nav1_menu_dropdown a{
        display: block;
        margin-right: 0;
        padding: 0px 20px;
        line-height: 35px;
        color: #212121;
    }
    
    .nav1 .nav1_menu .nav1_menu_dropdown a:hover{
        background-color: #FFF;
        color: #20b7e6;
    }
    
}


@media only screen and (min-width:1000px){
    .nav1 .nav1_menu a, .nav1 .nav1_menu span{
        font-size: 0.9rem;
    }
}

/* Nav Mobile */

.nav_mobile{
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    overflow-y: auto;
    background-color: #20b7e6;
    z-index: 102;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav_mobile.active{
    opacity: 1;
    visibility: visible;
}

.nav_mobile_container{
    padding: 0px 20px;
    margin-top: 100px;
}

.nav_mobile a{
    font-size: 3rem;
    color: #FFF;
    display: block;
    font-family: sansationbold;
    margin-bottom: 50px;
    position: relative;
    left: -100%;
    text-decoration: none;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.nav_mobile a.active{
    left: 0;
}

.nav_mobile a:hover{
    color: #ea1686;
}

@media only screen and (min-width:900px){

    .nav_mobile{ display: none; }
    
}

/* Nav Desktop */

.nav_desktop{
    color: #FFF;
    width: 100%;
    background-color: #000;
    height: 50px;
    display: none;
}

.nav_desktop .logo{
    font-family: sansationbold;
    line-height: 50px;
    font-size: 2rem;
    float: left;
    margin-left: 5%;
}

.nav_desktop .logo{
    color: #FFF;
}

.nav_desktop .logo span{
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav_desktop .logo:hover span:first-child, .nav_desktop .logo:hover span:nth-child(3){
    color: #20b7e6;
}

.nav_desktop .logo:hover span:nth-child(2){
    color: #ea1686;
}

.nav_desktop .logo svg{
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.nav_desktop_menu{
    float: right;
    line-height: 50px;
}

.nav_desktop_menu a{
    color: #FFF;
    display: inline-block;
    font-weight: bold;
    padding: 0px 15px;
}

.nav_desktop_menu a:hover{
    color: #ea1686;
}

.nav_desktop_menu a.nav_desktop_menu_started{
    background-color: #ea1686;
}

.nav_desktop_menu a.nav_desktop_menu_started:hover{
    color: #FFF;
    background-color: #20b7e6;
}

@media only screen and (min-width:900px){
    
    .nav_desktop{ display: block; }
    
}

/* Main */

.nav_header_padding{
    padding-top: 100px;
}

.section_container{
    margin: 75px auto;
    width: 90%;
    max-width: 1300px;
}

@media only screen and (min-width:900px){
    .section_container{ 
        margin: 100px auto;
        width: 70%; 
    }
}

/* Footer */

footer{
    background-color: #000;
    color: #FFF;
}

footer .section_container{
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer_links{
    display: none;
}

@media only screen and (min-width:1000px){
    
    .footer_links{
        display: block;
        overflow: hidden;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .footer_links_section{
        width: 25%;
        float: left;
    }
    
    .footer_links_section:nth-child(3), .footer_links_section:nth-child(4){
        text-align: right;
    }
    
    .footer_links_title{
        color: #ea1686;
        font-size: 1rem;
        line-height: 2rem;
    }
    
    .footer_links_section a{
        display: block;
        color: #FFF;
        font-size: 0.9rem;
        line-height: 20px;
        text-decoration: none;
    }
    
    .footer_links_section a:hover{
        color: #20b7e6;
    }
    
}

.footer_bottom{
    margin-top: 50px;
    text-align: center;
}

.footer_bottom_logo{
    font-size: 2rem;
    font-family: sansationbold;
    margin-bottom: 10px;
}

.footer_bottom_logo span:nth-child(1n), .footer_bottom_logo span:nth-child(3n){
    color: #20b7e6;
}

.footer_bottom_logo span:nth-child(2n){
    color: #ea1686;
}

.footer_bottom_slogan{ 
    font-size: 1.4em;
    margin-bottom: 15px;
}

.footer_bottom_icons{
    margin-top: 50px;
}

.footer_bottom_icons a{
    margin: 10px 10px 0 10px;
    display: inline-block;
    font-size: 1.4rem;
    color: #FFF;
}

.footer_bottom_icons a:hover{
    color: #20b7e6;
}


.apiContainer p{
    font-size: 14px;
    margin-bottom: 20px;
}

.back-to-top{
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
}

.back-to-top{
    background: #20B7E6;
    padding: 10px 15px;
    font-size: 30px;
    color: #FFFFFF;
}

.apiContainer strong{
    color: #EA1686;
}

.apiBorderBottom{
    border-bottom: 3px double #E7E7E8;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.apiBorderTop{
    border-top: 3px double #E7E7E8;
    clear: both;
    padding-top: 20px;
}

.apiContainer h5, .apiContainer h6{
    margin-bottom: 10px;
    margin-top: 10px;
}

.apiContainer h6{
    font-size: 20px;
}

.apiContainer code{
    margin: 0px;
     -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -kthtml-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.apiContainer code:hover{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #dadada;
    -webkit-box-shadow: 0px 0px 20px 0px #dadada;
    -moz-box-shadow: 0px 0px 20px 0px #dadada;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -kthtml-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.apiMarginTop{
    margin-top: 20px;
}

.apiMarginBottom{
    margin-bottom: 30px;
}

pre > code{
    word-wrap: break-word;
    text-align: left;
    width: 100%;
}

.apiMobileNav{
    width: 100%;
    text-align: center;
    cursor: pointer;
    background: #20B7E6;
    color: #FFFFFF;
    padding: 15px 0px;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu {
  display: none;   
  width: 100%;
  font-family: Raleway, sans-serif;
  color: #ffffff;
  
}
#cssmenu ul ul {
  display: none;
}
#cssmenu > ul > li.active > ul {
  display: block;
}
.align-right {
  float: right;
}
#cssmenu > ul > li > a {
  padding: 16px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  background: #20B7E6;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li > a:hover {
  color: #d8f3f0;
}
#cssmenu ul > li.has-sub > a:after {
  position: absolute;
  right: 26px;
  top: 19px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #ffffff;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 23px;
  display: block;
  width: 10px;
  height: 2px;
  background: #ffffff;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu ul > li.has-sub.open > a:after,
#cssmenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cssmenu ul ul li a {
  padding: 14px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  color: #dddddd;
  background: #404041;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul ul li a {
  padding-left: 32px;
  background: #515151;
}
#cssmenu ul ul li a:hover {
  color: #ffffff;
}
#cssmenu ul ul > li.has-sub > a:after {
  top: 16px;
  right: 26px;
  background: #dddddd;
}
#cssmenu ul ul > li.has-sub > a:before {
  top: 20px;
  background: #dddddd;
}

.code::selection { background: #20b7e6; color: #FFFFFF; } 
.code::-moz-selection { background: #20b7e6; color: #FFFFFF; } 
.code::selection { background: #20b7e6; color: #FFFFFF; } 
.code::-moz-selection { background: #20b7e6; color: #FFFFFF; } 
.code::selection { background: #20b7e6; color: #FFFFFF; } 
.code::-moz-selection { background: #20b7e6; color: #FFFFFF; }

.code i::selection { background: #20b7e6; color: #404041; } 
.code i::-moz-selection { background: #20b7e6; color: #404041; } 
.code i::selection { background: #20b7e6; color: #404041; } 
.code i::-moz-selection { background: #20b7e6  color: #404041; } 
.code i::selection { background: #20b7e6; color: #404041; } 
.code i::-moz-selection { background: #20b7e6; color: #404041; }

@media only screen and (max-width: 350px) {

}

@media only screen and (min-width: 600px) {
    .apiContainer .container{
        float: left;
    }
    
    .apiMobileNav{
        display: none;
    }
    
    #cssmenu {
        display: block;
        width: 180px;
        font-family: Raleway, sans-serif;
        color: #ffffff;
        position: absolute;
        right: -180px;
    }
    
    #cssmenu ul li{
        text-align: left;
    }
    
    #cssmenu ul li a, #cssmenu ul ul li a{
        font-size: 12px;
    }
}

@media only screen and (min-width: 650px) {
    #cssmenu {
        width: 190px;
        right: -190px;
    }
}

@media only screen and (min-width: 700px) {
    #cssmenu {
        width: 205px;
        right: -205px;
    }
}

@media only screen and (min-width: 765px){
    #cssmenu {
        width: 220px;
        right: -220px;
    }
}

@media only screen and (min-width: 1025px) {
    #cssmenu ul li a, #cssmenu ul ul li a{
        font-size: 13px;
    }
}

@media only screen and (min-width: 1400px) {
       
    .apiContainer .container{
        float: none;
    }
    
    #cssmenu ul li a, #cssmenu ul ul li a{
        font-size: 13px;
    }

}

#utilities_grant_panel {
    position: fixed;
    bottom: -50px;
    right: 10px;
    background-color: #ea1686;
    color: #fff;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 350px;
    line-height: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 200
}

#utilities_grant_panel.utilities_grant_panel_show {
    opacity: 1;
    visibility: visible;
    bottom: 10px
}

#utilities_grant_panel_text a {
    text-decoration: underline;
    color: #fff
}

#utilities_grant_panel_button {
    background-color: #fff;
    color: #ea1686;
    line-height: 40px;
    margin-top: 10px;
    border-radius: 4px;
    padding: 0 10px;
    font-weight: 700;
    float: right;
    transition: .4s;
    cursor: pointer
}

#utilities_grant_panel_button:hover {
    background-color: #212121;
    color: #fff
}