* {
  margin: 0%;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #e5e5e5;
}

header {
  height: 120px;
  width: 100%;
  background-color: #faf9f9;
  -webkit-box-shadow: 2px 3px 10px #747074;
          box-shadow: 2px 3px 10px #747074;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.logo img {
  margin-left: 2.5rem;
  width: 170px;
  height: 52px;
  border-radius: 7px;
  border: 2px solid #196888;
  padding: 2px;
}

.desktop-menu {
  width: 100%;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu {
  width: 85%;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu li {
  list-style: none;
}

.menu li a {
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  color: #555151;
  padding: 0.5rem;
}

.a {
  text-decoration: none;
  color: #555151;
  padding: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}

.menu li a:hover,
.a:hover {
  background-color: #c8cbcc;
  padding: 0.5rem;
  color: mintcream;
}

.dropdown:hover .a {
  background-color: #c8cbcc;
  color: mintcream;
  -webkit-box-shadow: 1px 0px 3px #747074;
          box-shadow: 1px 0px 3px #747074;
}

.a {
  border: none;
  background: none;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  background-color: #c8cbcc;
  margin-top: 0px;
  display: none;
  cursor: pointer;
  width: 15rem;
  height: 15rem;
  -webkit-box-shadow: 1px 0px 3px #747074;
          box-shadow: 1px 0px 3px #747074;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown Content link styles  */
.dropdown-content li {
  color: #555151;
  font-size: inherit;
  letter-spacing: 0.05rem;
  padding: 0.5rem;
}

.dropdown-content li a {
  font-size: inherit;
}

.dropdown-content li a:hover {
  background: none;
}

.dropdown-content li:hover {
  background-image: linear-gradient(45deg, #7dd5f0, #196888);
}

.dropdown-content li:hover a {
  color: mintcream;
}

.accordion-container {
  display: none;
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
  .menu-mobile {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    margin-right: 20px;
    margin-top: 8px;
    cursor: pointer;
  }
  nav .logo {
    margin-left: -23px;
  }
  .logo img {
    border: 2px solid mintcream;
  }
  .menu-mobile span {
    position: absolute;
    background-color: mintcream;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .menu-mobile:before,
  .menu-mobile:after {
    content: "";
    background-color: mintcream;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .menu-mobile:before {
    top: 0;
  }
  .menu-mobile:after {
    bottom: 0;
  }
  .menu-mobile.menu-mobile-active::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 9px;
  }
  .menu-mobile.menu-mobile-active::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 9px;
  }
  .menu-mobile.menu-mobile-active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  header {
    height: 13vh;
    width: 100%;
    background-image: linear-gradient(45deg, #1692b1, #266d8a);
    z-index: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .menu {
    background-color: #faf9f9;
    position: absolute;
    margin-top: 9.5vh;
    width: 100%;
    height: 1610px;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .menu.menu-mobile-active {
    opacity: 100%;
  }
  .menu li {
    margin-top: 2rem;
  }
  .menu.menu-mobile-active {
    visibility: visible;
  }
  .desktop-menu {
    display: none;
  }
  .accordion-wrapper {
    margin-top: 5rem;
    width: 300px;
    overflow: scroll;
    height: 510px;
  }
  .accordion-container {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    background: #d5e5e9;
  }
  .accordion-container button {
    border: none;
    cursor: pointer;
    margin-top: 1.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    color: mintcream;
    padding: 1rem;
    margin-top: 1rem;
    background-image: linear-gradient(45deg, #7dd5f0, #196888);
  }
  .accordion-panel {
    display: none;
    background-color: #ece3e3;
    width: 100%;
  }
  .accordion-panel ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  .accordion-panel ul li {
    margin-top: 1rem;
    margin-bottom: -1rem;
  }
}

body.menu-mobile-active {
  overflow: hidden;
}

main {
  height: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* On-page-links-section */
.on-page-links-section {
  background-color: #faf9f9;
  width: 320px;
  height: 500px;
  margin-top: 9rem;
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 7px;
  -webkit-box-shadow: 2px 3px 10px #747074;
          box-shadow: 2px 3px 10px #747074;
  border: 1px solid #faf9f9;
}

.on-page-links-title {
  background-color: #d1d1d1;
  padding: 1rem;
  border-radius: 7px;
  color: mintcream;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-align: center;
  background-image: linear-gradient(45deg, #7dd5f0, #196888);
}

.on-page-links-ul {
  list-style: none;
  text-align: center;
  letter-spacing: 0.05rem;
}

.on-page-links-ul li a {
  line-height: 1.5rem;
  text-decoration: none;
}

/* on-page-links-section mobile */
@media screen and (max-width: 460px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .on-page-links-section {
    margin-right: 0rem;
    margin-left: 0rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
  }
}

.calc-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 45%;
  margin: auto;
  border-radius: 5px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 8rem;
}

@media screen and (max-width: 460px) {
  main {
    height: 1700px;
  }
  .calc-section {
    width: 100%;
  }
}

@media screen and (min-width: 460px) {
  .calc-section {
    width: 460px;
  }
}

.convert {
  background-color: #faf9f9;
  height: 500px;
  width: 460px;
  -webkit-box-shadow: 2px 3px 10px #747074;
          box-shadow: 2px 3px 10px #747074;
  border: 1px solid #faf9f9;
  border-radius: 7px;
  margin-top: 1rem;
}

@media screen and (max-width: 460px) {
  .convert {
    width: 100%;
    margin-top: -10px;
  }
}

/* Homepage */
.hero-section {
  height: 1100px;
  background-color: #3f8abd;
}

.square {
  height: 50px;
  width: 50px;
  border: 2px solid mintcream;
  position: absolute;
  left: 100vh;
  background-color: mintcream;
  opacity: 40%;
  -webkit-animation: rotating-square 5s ease-in-out;
          animation: rotating-square 5s ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes rotating-square {
  0% {
    position: absolute;
    bottom: 25vh;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    position: absolute;
    bottom: 65vh;
    -webkit-transform: rotate(345deg);
            transform: rotate(345deg);
  }
}

@keyframes rotating-square {
  0% {
    position: absolute;
    bottom: 25vh;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    position: absolute;
    bottom: 65vh;
    -webkit-transform: rotate(345deg);
            transform: rotate(345deg);
  }
}

.com {
  position: absolute;
  top: 50vh;
  left: 100vh;
  color: mintcream;
  opacity: 80%;
  font-size: 70px;
  -webkit-animation: change-com 3s ease-in-out;
          animation: change-com 3s ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes change-com {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 20%;
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 80%;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 20%;
  }
}

@keyframes change-com {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 20%;
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 80%;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 20%;
  }
}

.convert-chef {
  position: absolute;
  top: 40vh;
  left: 40vh;
  font-size: 80px;
  color: mintcream;
  opacity: 80%;
  -webkit-animation: change-convert-chef 3s;
          animation: change-convert-chef 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes change-convert-chef {
  0% {
    -webkit-transform: scaleZ(1);
            transform: scaleZ(1);
  }
  50% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
  }
  100% {
  }
}

@keyframes change-convert-chef {
  0% {
    -webkit-transform: scaleZ(1);
            transform: scaleZ(1);
  }
  50% {
    -webkit-transform: scaleX(0.8);
            transform: scaleX(0.8);
  }
  100% {
  }
}

/* Hompage Animation Ipad */
@media screen and (max-width: 820px) {
  .square {
    height: 50px;
    width: 50px;
    border: 2px solid mintcream;
    position: absolute;
    left: 50vh;
  }
  .com {
    position: absolute;
    top: 50vh;
    left: 50vh;
    color: mintcream;
    opacity: 80%;
    font-size: 70px;
  }
  .convert-chef {
    position: absolute;
    top: 40vh;
    left: 10vh;
    font-size: 80px;
  }
}

/* Hompage Animation Mobile */
@media screen and (max-width: 460px) {
  .square {
    height: 35px;
    width: 35px;
    border: 2px solid mintcream;
    position: absolute;
    left: 35vh;
    -webkit-animation: mobile-animation 5s ease-in-out;
            animation: mobile-animation 5s ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  @-webkit-keyframes mobile-animation {
    0% {
      position: absolute;
      bottom: 40vh;
      -webkit-transform: rotate(15deg);
              transform: rotate(15deg);
    }
    100% {
      position: absolute;
      bottom: 60vh;
      -webkit-transform: rotate(345deg);
              transform: rotate(345deg);
    }
  }
  @keyframes mobile-animation {
    0% {
      position: absolute;
      bottom: 40vh;
      -webkit-transform: rotate(15deg);
              transform: rotate(15deg);
    }
    100% {
      position: absolute;
      bottom: 60vh;
      -webkit-transform: rotate(345deg);
              transform: rotate(345deg);
    }
  }
  .com {
    position: absolute;
    top: 45vh;
    left: 33vh;
    color: mintcream;
    opacity: 80%;
    font-size: 35px;
  }
  .convert-chef {
    position: absolute;
    top: 40vh;
    left: 2vh;
    font-size: 50px;
  }
}

.title-weight-units {
  padding-bottom: 2rem;
  color: #555151;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 1rem;
}

#convert {
  height: 2rem;
  width: 15rem;
  text-align: center;
}

.kg-amount {
  margin-left: 1.2rem;
  margin-top: -0.5rem;
  color: #555151;
}

input {
  width: 20rem;
  margin-top: 0.5rem;
  height: 3rem;
  outline: none;
  border-bottom: 1px solid #555151;
  background-color: transparent;
}

#amount {
  font-size: 1.2rem;
  padding-left: 0.5rem;
}

.kg-results {
  margin-left: 1.2rem;
  margin-top: 0.5rem;
  color: #555151;
}

.result-weight-units {
  margin-top: 0.5rem;
  margin-left: 1.2rem;
  color: #555151;
}

#result {
  font-size: 1.2rem;
  padding-left: 0.5rem;
  color: #555151;
}

.swap li {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}

ul li #link-swap,
#btn-clear {
  letter-spacing: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border: 1px solid #c8cbcc;
  cursor: pointer;
  width: 7rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: auto;
  text-align: center;
  list-style: none;
  color: mintcream;
  border-radius: 2px;
  font-size: 1.5rem;
  background-color: #c8cbcc;
  background-image: linear-gradient(45deg, #7dd5f0, #196888);
  border-radius: 2px;
}

#link-swap {
  margin-bottom: 1rem;
}

#link-swap:hover {
  background-color: #dddedf;
  background-image: linear-gradient(45deg, #1692b1, #2cbbf3);
}

#btn-clear:hover {
  background-color: #dddedf;
  background-image: linear-gradient(45deg, #1692b1, #2cbbf3);
}

.chart-section {
  width: 35%;
  margin: auto;
  margin-top: 1rem;
  border-radius: 5px;
  text-align: center;
  -webkit-box-shadow: 2px 3px 10px #747074;
          box-shadow: 2px 3px 10px #747074;
  border: 1px solid #faf9f9;
  background-color: #faf9f9;
  height: 520px;
}

.chart-title {
  margin-top: 1rem;
  color: #555151;
}

table,
th,
td {
  border: 1px solid #555151;
  border-collapse: collapse;
}

table {
  margin-top: 1rem;
  margin: auto;
  width: 80%;
  margin: auto;
  margin-top: 1rem;
  color: #555151;
}

th {
  height: 3rem;
  color: white;
  background-image: linear-gradient(45deg, #7dd5f0, #196888);
}

tr {
  height: 2rem;
}

@media screen and (max-width: 460px) {
  .chart-section {
    width: 100%;
  }
}

@media screen and (min-width: 460px) {
  .chart-section {
    width: 460px;
  }
}

.footer {
  height: 150px;
  width: 100%;
  background-color: #faf9f9;
  -webkit-box-shadow: 2px 3px 10px #747074;
          box-shadow: 2px 3px 10px #747074;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.copy {
  list-style: none;
}

/* Calculator */
.title-calculator {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 8px;
  color: #555151;
}

.calculator {
  height: 1000px;
  width: 100vh;
  background-color: #faf9f9;
  position: absolute;
  top: 120px;
}

.percent {
  margin-left: 8px;
  width: 280px;
}

.section1,
.section2,
.section3 {
  border: 2px solid #555151;
  font-size: 18px;
  color: #555151;
  padding: 10px;
  background-color: #f5fafa;
  margin-top: 10px;
  width: 500px;
}

.section3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.percent,
.percent-section-3 {
  border: none;
  border-bottom: 2px solid #555151;
  font-size: 18px;
  margin-left: 30px;
}

.percent-section-3 {
  width: 200px;
}

h3.sec3 {
  margin-right: 15px;
}
/*# sourceMappingURL=style.css.map */