﻿/* General Template Settings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --template-fontcolor: #2f3035;
  --template-hovercolor: #FAA500;
  --template-linkcolor: #c58900;
  --template-linkcolorbright: #efc833;
  --template-linkhovercolor: #efc833;
  --template-bkgrcolor: #2f3035
}

/* Reset */
html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	position: relative;
}

body {
	background: var(--template-bkgrcolor);
	color: var(--template-fontcolor);
	font-family: "Open Sans", serif, Arial, Verdana;
    font-weight: 400;
    font-size: 18px;
    line-height: var(--ast-body-line-height, 1.7em);
}

/*Begin Menu (not used for SunnyCape) */
button.navbar-toggler.navbar-toggler-right {
    display: none;
}

ul.mod-menu.mod-list.nav {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

ul.mod-menu.mod-list.nav li {
	
}
	
ul.mod-menu.mod-list.nav li a {
	color: var(--template-fontcolor);
	padding-left: 20px;
    padding-right: 20px;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    text-decoration: none;
    border-left: 1px solid var(--template-fontcolor);
    line-height: 20px;
}

ul.mod-menu.mod-list.nav li:first-child a {
    border: 0;
}

ul.mod-menu.mod-list.nav li a:hover {
	color: var(--template-hovercolor);
}
    
/* End Menu */

/* Footer */
footer#footer {
    background-image: url(../../../../../images/layout/background-footer.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    bottom: 0;
}

div#footer-wrapper {
    width: 70%;
    height: 100%;
    padding: 20px 15%;
    background-color: rgba(255, 255, 255, 0.85);
    display: grid;
    column-gap: 3%;
    grid-template-columns: 31% 31% 31%;
}

div#footer-wrapper .box {
    text-align: center;
}

div#footer-wrapper .box img {
    width: 50%;
    margin: 20px auto;
    display: block;
}

div#footer-wrapper .box ul {
    list-style: none;
    text-align: left;
    padding-left: 30%;
}

/* Begin Standard Tags */
.clear {
    clear: both;
}

h3 {
    font-size: 28px;
    margin: 25px 0 10px;
}

p {
	font-size: 18px;
}

a {
	text-decoration: none;
	color: var(--template-linkcolor);
}

a:hover {
	text-decoration: none;
	color: var(--template-linkhovercolor);
}
