
header{
  height: 60px; 
}
header nav{
  display: none;
}
header .logo{
  width: 100%; 
}
header .logo img{
  width: auto;
  height: 90px; 
}

h1{
  font-size: 1.8rem; 
}
h2{
  font-size: 1.7rem;
}

.flex{
  flex-wrap: wrap;
}

.flex .half{
  width: 100%;
  margin-right: 0;
}

.flex .third{
  width: 100%;
  margin-right: 0;
}

.mobile-grid-6{
  grid-template-columns: repeat(6, 1fr); 
}

.mobile-grid-5{
  grid-template-columns: repeat(5, 1fr); 
}

.mobile-grid-4{
  grid-template-columns: repeat(4, 1fr); 
}

.mobile-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mobile-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.mobile-grid-1 {
  grid-template-columns: repeat(1, 1fr);
}


.mobile-span-1 {
  grid-column: span 1;
}
.mobile-span-2 {
  grid-column: span 2;
}
.mobile-span-3 {
  grid-column: span 3;
}
.mobile-span-4 {
  grid-column: span 4;
}
.mobile-span-5 {
  grid-column: span 5;
}

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

.grid-border{
  border-right: none;
  border-bottom: 1px solid var(--light);
  padding-bottom: 50px; 
}
.grid-border:last-child{
  border-bottom:none; 
}

.grid-swap div:first-child{
  order: 1;
}
.grid-swap div:last-child{
  order: 2;
}

.padded, .mobile-padded{
  padding:30px;
}
.mobile-bottom-padding{
  padding-bottom: 30px; 
}

.side-padded{
  padding: 50px 0;
}
.grid-swap .side-padded{
  padding: 50px 0; 
}

.mobile-no-margin{
  margin-top:0;
  margin-bottom:0;
}



#hamburger {
  width: 45px;
  height: 35px;
  position: absolute;
  z-index:9;
  right: 20px;
  top: 13px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 5px;
  width: 50%;
  background: var(--light);
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(even) {
  left: 50%;
}

#hamburger span:nth-child(odd) {
  left:0px;
}

#hamburger span:nth-child(1), #hamburger span:nth-child(2) {
  top: 5px;
}

#hamburger span:nth-child(3), #hamburger span:nth-child(4) {
  top: 15px;
}

#hamburger span:nth-child(5), #hamburger span:nth-child(6) {
  top: 25px;
}

.mm-wrapper_opened #hamburger span:nth-child(1),.mm-wrapper_opened #hamburger span:nth-child(6) {
  transform: rotate(45deg);
}

.mm-wrapper_opened #hamburger span:nth-child(2),.mm-wrapper_opened #hamburger span:nth-child(5) {
  transform: rotate(-45deg);
}

.mm-wrapper_opened #hamburger span:nth-child(1) {
  left: 5px;
  top: 8px;
}

.mm-wrapper_opened #hamburger span:nth-child(2) {
  left: calc(50% - 5px);
  top: 8px;
}

.mm-wrapper_opened #hamburger span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.mm-wrapper_opened #hamburger span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.mm-wrapper_opened #hamburger span:nth-child(5) {
  left: 5px;
  top: 21px;
}

.mm-wrapper_opened #hamburger span:nth-child(6) {
  left: calc(50% - 5px);
  top: 21px;
}

.mm-menu {
 --mm-color-background: var(--secondary);
 --mm-color-text: var(--light);
  font-family: "Cinzel", serif;
  font-weight: 500; 
}
.mm-navbar a{
  color: var(--light) !important;
}

.mobile-round{
  border-radius: 10px; 
}

.mobile-aspect-photo{
  aspect-ratio: 6/4;
  height:auto;
}

.feature-icon img{
  height: 40px; 
}