:root {
    --teal: teal;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #F4F6FA;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    max-width: 66em;
    margin: 0 auto;
}

/* .title {
    margin-top: 150px;
    padding-bottom: 100px;
    text-align: center;
}

.title h1 {
    margin-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
} */

.padding-wrap {
    padding: 0 50px;

}

.light-bg {
    background-color: rgb(241, 243, 246);
}

/* HADER */
.preheader {
    padding-top: 40px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width:600px) {
    .preheader {
        
    }
}

.preheader .cc-logo {
    align-self: center;
}

.preheader .loa {
    padding: 2px 0;
    margin-bottom: 0px;
    display: flex;
}
@media (max-width:800px) {
    .preheader{
        padding-top: 10px;
    }
    .preheader .loa {
        justify-content: right;
        display: inline-flex;
        font-size: 14px;
    }
}

.preheader .loa img {
    align-self: center;
}

.preheader .loa {
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

.preheader .loa:hover {
    border-bottom: 3px solid rgb(67, 152, 156);
}

.preheader .loa h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(67, 152, 156);
    padding: 0;
    margin: 5px;
    font-size: 1em;
}

.hero-img {
    width: 100%;
}


/* MENU */
.sticky {
    top: 0;
    position: sticky;
}

.menu {
    margin-top: -5px;
    padding: 2px 0px;
    -webkit-box-shadow: -5px 7px 26px 2px rgba(8, 0, 36, 0.11);
    box-shadow: -5px 7px 26px 2px rgba(8, 0, 36, 0.11);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu ul {

    display: flex;
    justify-content: space-around;
    padding-inline-start: 0px;
}

.menu ul li {
    margin: 0 20px;
    list-style: none;
    display: flex;
    border-bottom: solid 5px transparent;
}
.menu ul .current a::before{
content: "";
margin-bottom:-0px;
margin-right: 10px;
width:12px; 
height:12px; 
display: inline-block;
border:1px solid rgb(0, 110, 110);
background:teal;

}
.call-form .half{
    flex-basis: 50%;
}

.call-form .half h2{
    max-width: 360px;
    margin-top: 30px;
    margin-bottom: 50px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 35px;
}
.call-form p{ 
    max-width: 450px;
}

@media (max-width:500px) {
    .menu ul {
        flex-direction: column;
    }

    .menu {
        padding: 2px 20px;
    }
}

.menu ul li a {
    padding: 10px 0px 8px 0;
    text-decoration: none;
    color: #333236;
    font-weight: 800;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.menu ul li:hover {
    border-bottom: solid 4px #333236;
    border-bottom: solid 4px var(--teal);
}



.menu-description h4 {
    font-size: 1.2em;
    padding: 20px;
    margin: 0;
    font-weight: 400;
    padding-left: 30px;
    font-family: Arial, Helvetica, sans-serif;
}


.menu-description {
    height: 0px;
    -webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -ms-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.015);

}

.menu-description-opened {
    height: 75px;
    -webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -ms-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}
.card {
    padding:10px;
    margin-top:50px;
    width: 100%;
    border-radius: 8px;
    background-color: white;
    justify-content: space-between;

    -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 3px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 3px 0 rgb(0 0 0 / 15%);
}
.card:hover {
    -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 20px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 20px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 20px 0 rgb(0 0 0 / 15%);
}
.flex{
    display: flex;
}

@media (max-width:600px) {
    .card {
        flex-direction: column;
    }
}

.card .half{
    padding:20px;
    flex-basis: 50%;
}
.card .img{
    border-radius: 10px;
}
.card h2{
    max-width: 360px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 35px;
}
.card p{
    margin-top:0;
    margin-bottom:0;
    line-height: 1.5;
    font-size: 18px;
}
.line{
    display: inline-block;
    width: 150px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: teal;
    min-height: 5px;
}

.img{
    width: 100%;
    display: block;
}

.event {
    display: flex;
    width: 100%;
    border-radius: 8px;
    background-color: white;
    justify-content: space-between;

    -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 3px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 3px 0 rgb(0 0 0 / 15%);
}

.event:hover {
    -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 20px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 20px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 5%), 0 1px 20px 0 rgb(0 0 0 / 15%);
}

.event .icon {
    background-color: teal;
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;

    -moz-box-shadow:    inset -5px 5px 10px rgba(1, 39, 49, 0.3);
    -webkit-box-shadow: inset -5px 5px 10px rgba(1, 39, 49, 0.3);
    box-shadow:         inset -5px 5px 10px rgba(1, 39, 49, 0.3);
}

@media (max-width:800px) {
    .event .icon {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .calendar-link-list {
        padding-top: 10px;
        padding-bottom: 10px;
        display: block;
    }

    .event-main .link {
        padding-bottom: 10px;
        display: block;
    }
}

.event-description {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;

}

.event .link{
    padding-bottom: 10px;
}
.event-description .link h5 {
    padding: 0;
    margin: 0;
}

.event-main {
    display: flex;
}

@media (max-width:500px) {
    .event {
        display: flex;
        flex-direction: column;
    }
}

.describe h3 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
}

.event .event-date {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0;
    color: rgb(87, 92, 96);
    font-size: 16px;
    font-weight: 300;
}


.event .calendar-link {
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 7px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    color: rgb(63, 63, 71);
    font-weight: 600;
    display: inline-block;

}

.event .calendar-link:hover {
    background-color: #ebeef2;
}



.event .event-type {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 15px;
    width: 100px;
    display: block;
    margin: 10px;
    margin-bottom: 2px;
    padding: 5px;
    background-color: teal;
    color: white;
    border-radius: 5px;
}

.event .event-countdown {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 12px;
    max-width: 100px;
    display: block;
    margin: 2px 10px;
    padding: 5px;
    color: teal;
    font-weight: 600;
    border-radius: 5px;
}

.hide-morethan-500{
    display: none;
}

@media (max-width:500px) {
    .event-extended{
        display: flex;
    }
    .event .event-type{
        order:1;
    }
   .event-extended .event-type, .event-extended .event-countdown{
        margin-top:0;
    }
    .event-extended .event-countdown{

        margin-left:0;
        color:black;
    }
    .event-extended .event-type{
        background-color:rgb(64, 62, 78);
    }
    .event-description .link{
        margin-top:15px;
        margin-bottom: 10px;
    }
    .hide-lessthan-500{
        display: none;
    }
}



a {
    color: #087c89;
}








/*
    ---------START --------
FOOTER BASICS
    ----------------- */

:root {
    --darkRed: #951a1d;
    --brightRed: #d52327;
    --darkBlue: #006f74;
    --brightBlue: #00a3b4;
    --darkGreen: #575e22;
    --brightGreen: #8c9b28;
    --darkYellow: #9b621c;
    --brightYellow: #d8a739;
    --darkPurple: #662547;
    --brightPurple: #932057;
    --darkOrange: #c14e28;
    --brightOrange: #ec621d;
    --lightgray: #f2f2f2;
    --darkGray: #a3a3a3;
    --black: #202122;
    --bgMain: #951a1d;
    --bigBorderColor: #2c2c2c;
    /* --accent: (var(brightRed)); */
}

.container-home * {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.gray-bg {
    background-color: var(--lightgrey);
}

.black-bg {
    background-color: var(--black);
}

.container-home {
    max-width: 66em;
    margin: 0 auto;
}

@media only screen and (max-width: 860px) {
    .container-home {
        max-width: 580px;
        margin: 0 auto;
    }
}



.container-home .h1 {
    padding: 30px 0px;
    padding-bottom: 0;
    padding: 30px 0px;
    margin: 0px;
    font-weight: 600;
}

/*
      ---------END --------
  FOOTER BASICS
      ----------------- */


/*
      ---------START--------
      Above the FOOTER area
      Products - Resources - Who We Are
      ----------------- */
.products-and-resources {
    /* padding-top: 60px; */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
}

.basis25 {
    flex-basis: 25%;
}


.footer-top h3 {
    font-weight: 700;
    font-size: 22px;
}

.products-and-resources .basis50 {
    width: 100%;
}

.footer-top-links a {
    text-decoration: none;
    color: black !important;
    font-size: 20px;
}

.footer-top-links {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-top-links a:hover {
    text-decoration: underline;
    color: black !important;
}

.products-and-resources h3 {
    font-weight: 700;
    font-size: 22px;
}

.products-and-resources {
    display: flex;
}

.products-and-resources .left,
.products-and-resources .right {
    flex-basis: 65%;
    display: flex;
}

.products-and-resources .right {
    flex-basis: 35%;
}


@media only screen and (max-width: 860px) {
    .products-and-resources {
        display: flex;
        flex-direction: column;
        max-width: 580px;
        margin: 0 auto;
    }



    .products-and-resources .left,
    .products-and-resources .right {
        margin-top: 50px;
        width: 100%;
    }

    .products-and-resources .basis50 {
        width: 100%;
    }
}


@media only screen and (max-width: 450px) {
    .products-and-resources .left {
        display: flex;
        flex-direction: column;
    }

    .heading-hide-on-mobile {
        display: none;
    }
}


.products-and-resources .heading {
    margin-top: 30px;
    margin-bottom: 30px;
}

.tweet-acc a {
    color: #313131 !important;
    text-decoration: none;
    font-weight: 900 !important;
}

.tweet-acc a:hover {
    color: #313131 !important;
    text-decoration: underline;
    font-weight: 900 !important;
}

.tweet-acc p {
    font-size: 17px;
}



@media only screen and (min-width: 861px) and (max-width: 992px) {
    .tweet-acc .leslie {
        font-size: 16px;
    }
}

/* 
      ---------END--------
      Above the FOOTER area
      Products - Resources - Who We Are
      ----------------- */

.contr {
    max-width: 1200px;
    margin: 0 auto;
}

.txt-center {
    text-align: center;
}

.margin-for-testing {
    margin-top: 200px;
}


/* 
  ----------------------------
  START -- NEW FOOTER
  ---------------------------- 
  */



.ft-mk .ft-logo {
    max-width: 340px;
}

.ft-mk p {
    font-size: 17px;
}

.img-resp {
    width: 100%;
    height: auto;
}

.footer-padding {
    padding: 20px 20px 20px 20px;
}

.emulated-flex-gap p {
    font-size: 17px;
}

.emulated-flex-gap {
    --gap: 20px;
    display: inline-flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--gap)) 0 0 calc(-1 * var(--gap));
    width: calc(100% + var(--gap));
}

.emulated-flex-gap div {
    flex-basis: calc(33% - var(--gap));
}

.emulated-flex-gap>* {
    margin: var(--gap) 0 0 var(--gap);
}

@media only screen and (max-width: 625px) {
    .ft-mk {
        justify-content: flex-end;
    }

    .ft-mk .b2 {
        flex-basis: calc(50% - var(--gap)) !important;
    }

    .ft-mk .c1 {
        align-self: flex-end !important;

        flex-basis: 100% !important;
    }
}


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

    .ft-mk .b2 {
        flex-basis: 100% !important;
    }

    .ft-mk .c1 {

        flex-basis: 100% !important;
    }
}

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

    /* take off paddings and margins from middle elements on <400px */
    .footer-notice :not(:first-child):not(:last-child) {
        /* select middle elements with -> :not(:first-child):not(:last-child)  */
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}


.footer-notice {
    display: flex;
    flex-wrap: wrap-reverse;
    /* padding: 20px 20px; */
    justify-content: space-between;
    color: rgb(82, 82, 82);
    font-size: 14px;
}

.footer-notice-add {
    padding: 10px 20px;
}

.footer-notice span {
    margin-right: 30px;
    margin: 20px;
}

.footer-notice .light-footer span a {
    color: rgb(82, 82, 82) !important;
    font-weight: 500;
}

.line-ft {
    /* margin: 0 20px;  */
    margin: 0;
    border-top: 1px solid rgb(204, 204, 204);
}

.light-footer {
    background-color: var(--lightgray);
}

.dark-footer {
    background-color: var(--black);
}

.dark-bg {
    background-color: var(--black);
}

.light-bg {
    background-color: var(--lightgray);
}

.light-footer .white-logo {
    display: none;
}

.dark-footer .black-logo {
    display: none;
}

.dark-footer p {
    color: #e9e9e9;
}

.dark-footer .footer-notice {
    color: #bebebe;
}

.dark-footer .footer-notice a {
    color: #bebebe !important;
}

.dark-footer .line-ft {
    /* margin: 0 20px;  */
    border: none;
    border-top: 1px solid rgb(115 115 115);
}

.round-bottom-left-right{
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.shadow-bot-blue{
    -webkit-box-shadow: 0 7px 26px 2px rgb(8 0 36 / 11%);
    box-shadow: 0 0px 26px 2px rgb(8 0 36 / 21%);
}

/* 
  ----------------------------
  END -- NEW FOOTER
  ---------------------------- 
  */