/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd,
ul {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class],
li {
  list-style: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  line-height: 1;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p, a {
  font-family: "Open Sans", sans-serif;
}

body {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.tear {
  position: relative;
  bottom: 10px;
  left: 20rem;
  z-index: 1;
  height: 1.5rem;
  width: 1.5rem;
  animation: 6s linear 0s infinite running drop;
}

@keyframes drop {
  from {
    transform: translateY(-12em);
  }
  to {
    transform: translateX(0vw);
  }
}
.slider {
  width: 400px;
  overflow: hidden;
  height: 3rem;
  position: relative;
}

.slides {
  display: flex;
  animation: slideText 9s infinite;
}

.slides h2 {
  min-width: 100%;
  margin: 0;
  text-align: center;
}

@keyframes slideText {
  0% {
    transform: translateX(0);
  }
  22% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-100%);
  }
  55% {
    transform: translateX(-100%);
  }
  66% {
    transform: translateX(-200%);
  }
  88% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
header {
  background: url("../img/banner-800x523.webp") center/cover no-repeat;
  height: 100vh;
}
header a {
  color: #b600ff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
}
header .logos {
  width: 12rem;
  padding: 1rem;
}
header .logo {
  max-width: 150px;
  min-width: 75px;
  color: #b600ff;
}

.header {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 12;
}
.menu-toggle svg {
  fill: #b600ff;
  transition: fill 0.3s ease;
}
.menu-toggle.open svg {
  fill: black;
}

.show-nav {
  right: 0;
}

.nav {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-top: 1rem;
}

.header nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 12rem;
  height: 100%;
  background-color: #eeeeee;
  transition: transform 0.3s ease-in-out;
  z-index: 10;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.header nav .flex {
  align-items: flex-start;
  flex-direction: column;
  z-index: 11;
}

.header nav.show-nav {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.header nav.show-nav {
  display: flex;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  display: none;
}

.nav-overlay.active {
  display: block;
}

.dropdown {
  display: none;
  flex-direction: column;
  background-color: #eeeeee;
  padding-left: 1rem;
}
.dropdown a {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
}

.dropdown.show {
  display: flex;
}

.banner-cover {
  display: flex;
  justify-content: center;
  margin: 3rem auto;
  max-width: 400px;
}

.action h1 {
  background-color: #b600ff;
  color: white;
  display: flex;
  justify-content: center;
  padding: 2rem;
  margin: 2rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.action h2 {
  color: white;
  text-transform: uppercase;
}

.socials {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.socials img:hover {
  background-color: white;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  border-radius: 45px;
}
.socials .square img:hover {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
}

@media screen and (min-width: 800px) {
  .menu-toggle {
    display: none;
  }
  .header nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: none;
  }
  .header nav .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  ul.menu > li {
    position: relative;
  }
  ul.dropdown {
    background-color: #eeeeee;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    position: absolute;
    visibility: hidden;
  }
  ul.menu > li:hover ul.dropdown,
  ul.menu > li ul.dropdown:hover {
    visibility: visible;
  }
  .contact,
  .about {
    flex-wrap: nowrap;
  }
  .contact div,
  .about div {
    max-width: 50%;
  }
}

.container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
}

.hero {
  background: url("../img/angus-banner.webp") no-repeat center/cover;
  color: #333;
  display: flex;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  justify-content: center;
  align-items: flex-end;
  margin: 0;
  height: 550px;
  width: 100%;
}

.cover {
  background-color: #EDEDED;
  -webkit-backdrop-filter: blur();
  backdrop-filter: blur(3px);
  border-radius: 8px;
  margin: 24px;
  max-width: 500px;
  padding: 24px;
}

.resources {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 2rem;
}  

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cards {
  flex-wrap: wrap;
}
.cards img {
  width: 100px;
}
.cards h2 {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}
.cards div {
  align-content: center;
  align-items: center;
  width: calc(33.3333333333% - 2rem);
  min-width: 300px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
  height: 330px;
  border: 1px solid #333;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px #777777;
}
.cards div h3 {
  margin-bottom: 1rem;
}

.contact,
.about {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact h2, .contact p, .contact li,
.about h2, .about p, .about li {
  margin-bottom: 1rem;
}
.contact img,
.about img {
  -webkit-border-radius: 90px 90px 90px 0;
  -moz-border-radius: 90px 90px 90px 0;
  -ms-border-radius: 90px 90px 90px 0;
  -o-border-radius: 90px 90px 90px 0;
  border-radius: 90px 90px 90px 0;
}
.about div {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}

.contact .contact-me {
  background-color: #b600ff;
  color: white;
  padding: 2rem;
  -webkit-border-radius: 90px 90px 0 90px;
  -moz-border-radius: 90px 90px 0 90px;
  -ms-border-radius: 90px 90px 0 90px;
  -o-border-radius: 90px 90px 0 90px;
  border-radius: 90px 90px 0 90px;
}
.contact-me h2 {
  width: 100%;
}
.contact .contact-me a, .contact .contact-me p {
  font-size: 1.5rem;
  color: white;
}

.clients h2 {
  padding: 0 1.5rem;
}

.photography {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
}
.photography .photo,
.photography .photos {
  margin-bottom: 3rem;
}
.photography .photo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photography .photo h2,
.photography .photo p {
  width: 100%;
  margin-bottom: 2rem;
}
.photography .photo img {
  width: 1200px;
  margin-bottom: 3rem;
}
.photography .photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
}
.photography .photos img {
  margin-bottom: 2rem;
}
.photography .photos img:last-of-type {
  width: 1200px;
}

.outerWrap {
  width: 1200px;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  justify-content: center;
}

.ajax-wrap {
  width: 1200px;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.thisCD {
  border: 1px solid #999;
  padding: 5px;
  margin-top: 10px;
  width: 200px;
  background-color: #fff;
  text-align: left;
}

.displayCategory {
  color: #b600ff;
}

.displayInfo {
  font-weight: normal;
  color: #900;
}

.cdImage {
  display: block;
}

.displayDescription {
  font-size: 85%;
  padding: 7px;
}

.ajax-nav {
  padding: 5px 18px;
  background: #F9EDC5;
  height: 20px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #ccc;
}

.ajax-nav li {
  display: inline;
  margin: 0;
  padding: 0;
  font-family: arial;
  font-weight: bold;
}

.ajax-nav a {
  color: #175763;
  font-size: 16px;
  font-family: arial;
  font-weight: bold;
  text-decoration: none;
}

.ajax-main {
  width: 800px;
  padding: 10px;
}

.ajax-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  width: 1200px;
}

.sidebar {
  width: 220px;
  padding: 10px;
  background: #eaeaea;
  box-shadow: -2px 0px 3px #888888;
}

.sidebar a {
  color: #175763;
  font-weight: bold;
  font-size: 12px;
}

.sideBarHeading {
  background-color: #666;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 5px;
  font-family: georgia;
}

.sideDisplay {
  width: 200px;
  height: 100%;
}

.ajax footer {
  width: 100%;
}

.client-logos {
  margin: 40px auto;
  padding: 20px;
  max-width: 1200px;
  text-align: left;
}

.logo-scroll {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 10px 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.logo-scroll img {
  height: 80px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cosmic {
  background-color: #800080;
}

.container-ui {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.ui {
  min-width: 932px;
  margin: 2rem auto;
}

.cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* Form Styles */
/**********************************

Use: cmxform template

***********************************/
form.cmxform fieldset {
  margin-bottom: 10px;
}

form.cmxform legend {
  padding: 0 2px;
  font-weight: bold;
  _margin: 0 -7px; /* IE Win */
}

form.cmxform label {
  display: inline-block;
  line-height: 1.8;
  vertical-align: top;
  cursor: hand;
}

form.cmxform fieldset p {
  list-style: none;
  padding: 5px;
  margin: 0;
}

form.cmxform fieldset fieldset {
  border: none;
  margin: 3px 0 0;
}

form.cmxform fieldset fieldset legend {
  padding: 0 0 5px;
  font-weight: normal;
}

form.cmxform fieldset fieldset label {
  display: block;
  width: auto;
}

form.cmxform label {
  width: 100px;
} /* Width of labels */
form.cmxform fieldset fieldset label {
  margin-left: 103px;
} /* Width plus 3 (html space) */
form.cmxform label.error {
  margin-left: 103px;
  width: 220px;
}

form.cmxform input.submit {
  margin-left: 103px;
}

/*\*/ /*/ form.cmxform legend { display: inline-block; } /* IE Mac legend fix */
form.cmxform {
  width: 900px;
  font-size: 1rem;
  color: #333;
  background-color: #9da4e2;
}

form.cmxform legend {
  padding-left: 0;
}

form.cmxform legend, form.cmxform label {
  color: #333;
}

form.cmxform fieldset {
  border: none;
  /* border-top: 1px solid #C9DCA6;
  background: url(../images/cmxform-fieldset.gif) left bottom repeat-x; */
  background-color: #9da4e2;
  width: 100%;
}

form.cmxform fieldset fieldset {
  background: none;
}

form.cmxform fieldset p, form.cmxform fieldset fieldset {
  padding: 5px 10px 7px;
  /* background: url(../images/cmxform-divider.gif) left bottom repeat-x; */
}

form.cmxform label.error, label.error {
  /* remove the next line when you have trouble in IE6 with labels in list */
  color: red;
  font-style: italic;
}

div.error {
  display: none;
}

input {
  border: 1px solid black;
}

input.checkbox {
  border: none;
}

input:focus {
  border: 1px dotted black;
}

input.error {
  border: 1px dotted red;
}

form.cmxform .gray * {
  color: gray;
}

#dialog {
  background-color: #9da4e2;
  width: 100%;
}

#opener {
  max-width: fit-content;
  margin: 0 0 61px 61px;
}

.signature-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.signature-container canvas {
  border: 2px solid #000;
  border-radius: 5px;
}

.signature-background {
  background-color: #9da4e2;
  padding: 1rem;
  border: 3px solid #000;
}

/* flot section*/
#content {
  width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.demo-container {
  box-sizing: border-box;
  width: 1000px;
  height: 500px;
  padding: 20px 15px 15px 15px;
  margin: 15px auto 30px auto;
  border: 1px solid #ddd;
  background: #fff;
  background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
  background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
  background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
  background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
  background: linear-gradient(#f6f6f6 0, #fff 50px);
  -o-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.demo-placeholder {
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 14px;
}

.container.flot {
  flex-wrap: wrap;
}

.jquery {
  flex-direction: column;
  align-items: center;
}

.demo-choices {
  float: right;
  width: 135px;
}

.legend table {
  border-spacing: 5px;
}

/* Nivo Section*/
/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
/* The Nivo Slider styles */
.nivoSlider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.nivoSlider img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: 100%;
}

.nivo-main-image {
  display: block !important;
  position: relative !important;
  width: 100% !important;
}

/* The slices and boxes in the Slider */
.nivo-slice {
  display: block;
  position: absolute;
  z-index: 5;
  height: 100%;
  top: 0;
}

.nivo-box {
  display: block;
  position: absolute;
  z-index: 5;
  overflow: hidden;
}

.nivo-box img {
  display: block;
}

/* Caption styles */
.nivo-caption {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #fff;
  color: #000;
  width: 100%;
  z-index: 8;
  padding: 1rem;
  overflow: hidden;
  display: none;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-box-sizing: border-box;
  /*Safari/Chrome,otherWebKit*/
  -moz-box-sizing: border-box;
  /*Firefox,otherGecko*/
  box-sizing: border-box;
  -webkit-filter: alpha(opacity=8);
  filter: alpha(opacity=8);
}

.nivo-caption p {
  padding: 1rem;
  margin: 0;
}

.nivo-caption a {
  display: inline !important;
}

.nivo-html-caption {
  display: none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
  position: absolute;
  top: 45%;
  z-index: 9;
  cursor: pointer;
}

.nivo-prevNav {
  left: 0px;
}

.nivo-nextNav {
  right: 0px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
  text-align: center;
  padding: 1rem;
}

.nivo-controlNav a {
  cursor: pointer;
  padding: 1rem;
}

.nivo-controlNav a.active {
  font-weight: bold;
}

.theme-bar.slider-wrapper {
  position: relative;
  border: 1px solid #333;
  overflow: hidden;
}

.theme-bar .nivoSlider {
  position: relative;
}

.theme-bar .nivoSlider img {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
}

.theme-bar .nivoSlider a {
  border: 0;
  display: block;
}

.theme-bar .nivo-controlNav {
  position: absolute;
  left: 0;
  bottom: -41px;
  z-index: 10;
  width: 100%;
  height: 30px;
  text-align: center;
  padding: 5px 0;
  border-top: 1px solid #333;
  background: #333;
  background: -moz-linear-gradient(top, #565656 0%, #333333 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #565656), color-stop(100%, #333333)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #565656 0%, #333333 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #565656 0%, #333333 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #565656 0%, #333333 100%); /* IE10+ */
  background: linear-gradient(to bottom, #565656 0%, #333333 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#565656", endColorstr="#333333",GradientType=0 ); /* IE6-9 */
  opacity: 0.5;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.theme-bar:hover .nivo-controlNav {
  bottom: 0;
  opacity: 1;
}

.theme-bar .nivo-controlNav a {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-indent: -9999px;
  border: 0;
  margin: 5px 2px 0 2px;
}

.theme-bar .nivo-controlNav a.active {
  background-position: 0 -22px;
}

.theme-bar .nivo-directionNav a {
  display: block;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  top: auto;
  bottom: 10px;
  z-index: 11;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
  opacity: 0.5;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.theme-bar a.nivo-nextNav {
  right: -50px;
}

.theme-bar a.nivo-prevNav {
  left: -50px;
}

.theme-bar:hover a.nivo-nextNav {
  right: 15px;
  opacity: 1;
}

.theme-bar:hover a.nivo-prevNav {
  left: 15px;
  opacity: 1;
}

.theme-bar .nivo-directionNav a:hover {
  color: #ddd;
}

.theme-bar .nivo-caption {
  font-family: Helvetica, Arial, sans-serif;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.theme-bar:hover .nivo-caption {
  bottom: 41px;
}

.theme-bar .nivo-caption a {
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.theme-bar .nivo-caption a:hover {
  color: #fff;
}

.theme-bar .nivo-controlNav.nivo-thumbs-enabled {
  width: 100%;
}

.theme-bar .nivo-controlNav.nivo-thumbs-enabled a {
  width: auto;
  height: auto;
  background: none;
  margin-bottom: 5px;
}

.theme-bar .nivo-controlNav.nivo-thumbs-enabled img {
  display: block;
  width: 120px;
  height: auto;
}

.wrap {
  flex-wrap: wrap;
}

.maps {
  height: 100%;
  margin: 0;
  padding: 0;
}

.map {
  gap: 2rem;
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  justify-content: center;
  position: relative;
  overflow: visible;
  margin: 0 auto;
}

#map_canvas {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.content {
  flex: 1;
  max-width: 500px;
}
.content p {
  margin-bottom: 1rem;
}

.location-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.flex-box {
  display: flex;
  gap: 1rem;
}
.flex-box img {
  width: 400px;
}

.mt {
  margin-top: 1rem;
}

footer {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
}
footer .logos {
  width: 14rem;
  padding: 1rem;
}
footer .logo {
  max-width: 200px;
  min-width: 100px;
  color: #b600ff;
}
footer .foot-menu li {
  padding: 1rem;
  font-size: 1.5rem;
}
footer .foot-menu li a {
  color: white;
  text-decoration: none;
}
footer .foot-menu li a:hover {
  color: #b600ff;
}

@media screen and (min-width: 800px) {
  footer {
    justify-content: space-around;
    padding: 4rem;
  }
  .foot-menu {
    display: flex;
  }
  .foot-menu li {
    position: relative;
    padding: 1rem;
    font-size: 1.5rem;
  }
  .foot-menu li a {
    color: white;
    text-decoration: none;
  }
  .foot-menu li a:hover {
    color: #b600ff;
  }
}/*# sourceMappingURL=styles.css.map */