﻿* {
    font-family: Roboto, 'Helvetica Neue', 'Arial';
}

.homepage-card__list {
    list-style-type: none;
    margin: 0;

    border-radius: .5rem;
}
    .homepage-card__list.homepage-card__list--bigger a {
        padding: 15px 20px;
    }
    .homepage-card__list a {
        padding: 16px 16px;
        font-weight: 600;
        background-color: rgba(1, 1, 1, .05);
        margin-bottom: 0px;
        border-bottom: 1px solid #017bac38;
        display: block;
    }
    .homepage-card__list a:hover {
        background-color: rgba(1, 1, 1, .09);
    }
    .homepage-card__list a:first-child { border-top-left-radius: .5rem; border-top-right-radius: .5rem; }
    .homepage-card__list a:last-child { border-bottom-left-radius: .5rem; border-bottom-right-radius: .5rem; border-bottom: 0; }
    l.homepage-card__list.homepage-card__list--flex {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
        .homepage-card__list.homepage-card__list--flex a {
            flex-grow: 1;
            flex-basis: 47%;
            margin-right: 10px;
        }

/* Utility Classes */
.bg-primary {
    background-color: #007cad !important;
    /* #02aff3 old, had bad contrast */
}

.bg-secondary {
    background-color: #00823f !important;
    /* #00A651 old, had bad contrast */
}

.text-white, .text-white * {
    color: white !important;
}

.big-card {
    height: 300px;
    position: relative;

    background-position: 10% 30%;
    background-size: cover;
}
    .big-card__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        position: absolute;
        bottom: 25px;
        left: 25px;
    }
    .big-card__inner img {
        width: 70px;
        margin-right: 25px;
    }


.rounded-md {
    border-radius: .5rem !important;
}

.no-underline {
    text-decoration: none !important;
    border-bottom: 0 transparent;
}

.green h3 {
    color: #00A651 !important;
    border-color: #00A651;
}

.mb-5 {
    margin-bottom: 28px;
}

.mt-5 {
    margin-top: 28px;
}

.header-with-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}
    .header-with-img img {
        width: 70px;
        margin-right: 40px;
    }
    .header-with-img h3 {
        margin-bottom: 0;
    }


.styled-icon {
    background-color: white;
    padding: 5px;
}
.styled-icon:not(.styled-icon--square) {
    border-radius: 100px;
}
.styled-icon--dense {
    padding: 3px;
}

.header_element{
    padding-top: 20px;
}

.developer-info-header {
       background-image: linear-gradient(
90deg, #02aff3, #00b7ff, #02aff31a), url(https://www.ayrshireroadsalliance.org/Site-Elements/images/Accessible-Ayr-Cropped-404x331.png);
    /* background-size: cover; */
    background-position: 100% 57%;
    background-repeat: no-repeat;
    padding: 10px 20px;
    border-radius: .5rem !important;
}
.developer-info-header h3 {
    color: white;
}

.h3-header {
    border: 0;
    font-weight: 600;
    margin-bottom: 25px;
}

.centered-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.important-alert{
  text-align: center; 
  background-color: #efba40; 
  line-height: 40px;
  padding: 10px 0px;
  //margin-bottom: 10px
}

/** Announcements */
.important-alert a{
  padding: 8px; 
  font-size: 20px; 
  margin: 0;
  color: #000000;
}

.important-alert a:hover{
  text-decoration: underline;
}

.important-alert a::before{
  font-weight: 900;
  display: inline-block;
  content: '\f06a';
  font-family: 'FontAwesome';
  font-size: 25px;
  padding-right: 5px;
}


.announcement-container{
	padding: 5px 0px;
}

.announcement-bar{
    background-color:#FFEB3B;
}

.announcement-container .close{
    padding-top: 5px;
    padding-right: 14px;
    font-size: 30px;
    opacity: 1;
}

.announcement-container .close:hover{
    color: #00529B;
}

.announcement-container .announcement-list{
    list-style: none;
    padding: 0;
    margin:5px 0px;
}

.announcement-list li{
    list-style: none;
    padding: 2.5px;
}

.announcement-container .announcement-link{
	margin-left:14px;
    font-size: 16px;
    color: #000000;
}

.announcement-container .announcement-link:hover{
    color: #00529B;
    text-decoration: underline;
	text-underline-offset: 0.2em;
}


.announcement-container .announcement-link::before {
    font-weight: 900;
    display: inline-block;
    content: '\f06a';
    font-family: 'FontAwesome';
    font-size: 25px;
    padding-right: 8px;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .announcement-container .announcement-link{
        font-size:22px;
    }

    .announcement-container .announcement-link::before{
        font-size: 21px;
    }
}

.homepage-btn {
    padding: 16px 20px;
    border-radius: .5rem;
    border: none;
    background-color: #02aff3;
    color: white;
    font-weight: 600;
}

.homepage-link {
    cursor: pointer;
    color: #0088cc;
    font-weight: 600; 
    background-color: transparent;
    text-decoration: underline;
    border: none;
}

.developer-info {
    display: flex;
    flex-wrap: wrap;
}
    .developer-info > div {
        flex: 1;
        flex-basis: 500px;
    }
    .developer-info > div:first-child {
        margin-bottom: 25px;
    }

@media (min-width: 1000px) {
    .developer-info > div:first-child {
        margin-right: 25px;
        margin-bottom: 0px;
    }
}

.homepage-container {
    margin-bottom: 150px;
}

.bg-warning {
    background-color:#962100;
    color: white !important;
    padding: 10px 20px;
    border-radius: .5rem !important;
}


/* Google Search Bar */

#gs_cb50{
	padding:10px !important;
	margin-left:10px !important;
	margin-bottom:10px !important;
}

#gsc-i-id1{
padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: rgb(73, 80, 87) !important;
    border: 1px solid rgb(206, 212, 218) !important;
    border-radius: 0.25rem !important;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s !important;
    background: rgb(255, 255, 255) !important;
}

.gsc-search-button{
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border-radius: 0.25rem !important;
}

.gsc-control-cse{
    padding-top:55px !important;
}


/* Footer Styles*/
.footer h4{
    border-bottom: 2px solid white;
    padding: 5px;
    margin-bottom: 20px;
}

.footer .span4{
    padding: 10px;
}

.footer .span3{
    padding: 10px;
}

.footer{
    padding-bottom: 40px;
}


/* Nav Bar Styles*/

.mobile-button{
    float: none !important;
    margin: 0 !important;
    padding: 20px !important;
    border: none !important;
    background: none !important;
    font-size: 40px !important;
}

.nav > li > a:hover {
   /* background-color: white;*/
    color: #02aff3;
}

.nested-nav-link{
    border-left:none !important;
    color: white !important;
}

.nested-nav-link:hover{
    background-color: #0d92c4 !important;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0d92c4), to(#0d92c4)) !important;
}



.navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
   background-color: #0d92c4 !important;
color: white !important;
}

.dropdown-toggle .caret{
    border-top-color: #ffffff !important;
}

@media (min-width: 979px) {
    .nested-navbar{
        border-radius: 0;
        width: 100%;
    }
}



.nav > li a{
        font-weight: 600 !important;
    }

.social-icon{
    background-color: #02aff3;
    border: solid 1px #666;
    border-radius: 3px;
    padding: 10px;
    display: inline-block;
    float: right;
    margin-right: 13px;
}

@media (max-width: 979px) {
    .nav > li > a:hover {
        background-color: #0d92c4 !important;
    }

    .nav > li a{
        color:white !important;
        border-left:none !important;
        border-right:none !important;
        display: block;
    }

    .nav li{
        display: block !important;
    }

    .dropdown-backdrop{
        position: relative !important;
    }
}

.announcement-container{
	padding: 5px 0px;
}

.announcement-bar{
    background-color:#FFEB3B;
}

.announcement-container .close{
    padding-top: 5px;
    padding-right: 14px;
    font-size: 30px;
    opacity: 1;
}

.announcement-container .close:hover{
    color: #00529B;
}

.announcement-container .announcement-list{
    padding: 0;
    margin:5px 0px;
}

.announcement-container .announcement-link{
	margin-left:14px;
    font-size: 16px;
    color: #000000;
}

.announcement-container .announcement-link:hover{
    color: #00529B;
    text-decoration: underline;
	text-underline-offset: 0.2em;
}


.announcement-container .announcement-link::before {
    font-weight: 900;
    display: inline-block;
    content: '\f06a';
    font-family: 'FontAwesome';
    font-size: 25px;
    padding-right: 8px;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .announcement-container .announcement-link{
        font-size:22px;
    }

    .announcement-container .announcement-link::before{
        font-size: 21px;
    }
}


.containerWide {
    margin-bottom: 0px !important;
}

/* Heather Header Edits - Homepage Hero Banner 
-------------------------------------------------- */

.navbarcontainer, .navbar {
  margin-bottom: 0px !important;
}

 .homepage-hero-banner {
  background-image: url("/Resources/images/template-images/ara-homepage-banner.jpg");
  background-size: cover;
  background-position: 0% 80%;
  height: 300px;
 /* height: 10vh; */
}

.homepage-hero-banner .container {
  position: relative;
  min-height: 100%;
  height: auto !important;
}

/* Extra large screens (large desktop, ~1600px - 1920px) */
@media only screen and (min-width: 1400px) {
  .homepage-hero-banner {
    background-position: 0 80%;
    height: 300px;
  }
}

/* Large screens (desktop, ~1200px - 1600px) */
@media only screen and (min-width: 1200px) {
  .homepage-hero-banner {
    background-position: 0 80%;
    height: 300px;
  }
}

/* Medium screens */
@media only screen and (min-width: 992px) {
  .homepage-hero-banner {
    background-position: 0 80%;
    height: 250px;
  }
}

/* Medium screens */
@media only screen and (max-width: 992px) {
  .homepage-hero-banner {
    background-position: 0 80%;
    height: 225px;
  }
}

/* Small screens */
@media only screen and (max-width: 768px) {
  .homepage-hero-banner {
    background-position: 0 80%;
    height: 200px;  
  }
}



