@font-face {
    font-family: WhitneyMedium;
    src: url(../fonts/whitneymedium.woff);
}

section.mainFooterSection {
    background-color: rgb(241, 241, 241);
    color: white;
    margin: auto;
    padding: 0;
    padding-bottom: 30px;
    display: grid;
    border-top: 1px solid rgb(218, 218, 218);
    /*Define our columns */
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

section.footerSection {
    background-color: rgb(241, 241, 241);
    color: white;
    margin: auto;
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 50px;
    padding-bottom: 10px;
    display: grid;
    /*Define our columns */
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

section.footerSection a {
    display: inline-block;
    padding-bottom: 15px;
    text-decoration: none;
    color: #747474;
    font-family: WhitneyMedium;
    font-size: 15px;
}

section.footerSection a:hover {
    color: black;
}

p.footerSectionTitles {
    margin: 0;
    padding: 0;
    color: #436cf2;
    padding-bottom: 15px;
    font-family: WhitneyBold;
}

article.footerDivider {
    display: flex;
    justify-content: center;
}

article.footerDivider div {
    width: 80%;
    border-top: 0.5px solid #747474;
    color: white;
}

div.websiteThemeIconDiv {
    margin: 0;
    padding: 0;
    padding-left: 10%;
    padding-top: 10px;
    float: left;
}

button.websiteThemeIcon {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 15px;
}

button.websiteThemeIcon i {
    margin: 0;
    padding: 0 10px 0 0px;
    font-size: 1.3em;
    color: #747474;
    transition: 0.2s;
}

button.websiteThemeIcon i:hover {
    color: #919191;
}

p.footerCopyRight {
    margin: 0;
    padding: 0;
    padding-right: 10%;
    padding-top: 10px;
    float: right;
    font-family: WhitneyMedium;
    color: #747474;
}

.switch {
    position: relative;
    display: inline-block;
    width: 41px;
    height: 21px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color:#436cf2;
}

input:checked+.slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}