:root {
    --base-color: #edefef;
    --container-height: 2.5em;
    --circle-container-diameter: 3.375em;
    --primary-colour-hue: 252;
    --colour-white: hsl(252, 30%, 100%);
    --colour-light: hsl(252, 30%, 95%);
    --colour-dark: hsl(252, 30%, 17%);
    --primary-colour-light: #f6f5ff;
    --text-colour: #707070;
    --card-border-radius: 1rem;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
    --font-size: 16px;
    --opacity-background: rgba(75, 75, 75, 0.5);
    --sidebar-bg: #000c1e;
    --border: hsl(40, 65%, 80%);
}

.darkmode {
  --base-color: #0b1e2a;
  --primary-colour: #3a3b3c;
  --text-colour: #ccc;
  --colour-white: hsl(252, 30%, 20%);
  --colour-light: hsl(252, 30%, 15%);
  --colour-dark: hsl(252, 30%, 95%);
  --opacity-background: rgba(255, 255, 255, 0.5)
}

body {
  margin: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

.pocket {
  width: 80%;
  margin: 0 auto;
}

.btn {
  display: flex;
  width: 40px;
  height: 40px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 0.9rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  background: #e5e4e2;
  color: white;
}

.btn span {
  font-size: 35px;
  color: #c1c1c1;
}

.top-nav {
  height: 80px;
    background: #000c1e;
    padding: 0px 50px 0px 100px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-nav .pocket {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav .customisation {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1;
}

.logo {
  width: 100px;
}

.dark-label {
  width: 500px;
  height: 200px;
  position: relative;
  margin: 0 auto;
  display: block;
  background: linear-gradient(to bottom right, #00B2D2, #9AB8D2, #E8C2CD, #FF9A9E, #FA4E5E);
  border-radius: 200px;
  box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.4), inset 0px -5px 15px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}

.dark-label:after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(to right, #D7D7D7, #F5F5F5);
  border-radius: 180px;
  box-shadow: 0 0 0 0.6em rgba(255, 255, 255, 0.05), 0 0 0 1.2em rgba(255, 255, 255, 0.05), 0 0 0 1.8em rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.dark-label:hover:after { left: calc(var(--circle-container-offset) + 3.187em); }

.dark-input:checked + .dark-label:hover:after { left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em); }

.dark-label .sun {
  height: 66px;
  width: 66px;
  position: absolute;
  top: 136px;
  left: 470px;
  background-color: #ffe484;
  margin-top: -100px;
  margin-left: -100px;
  border-radius: 50%;
  box-shadow: 0 0 84px orange;
}

.dark-input:checked + .dark-label .sun {
  display: none;
}

.dark-label .star {
  display: none;
}

.dark-input {
  width: 0;
  height: 0;
  visibility: hidden;
}

.dark-input:checked + .dark-label {
  background: linear-gradient(to bottom right, #2A1780, #60329E, #9D4CB5, #E25CB1);
}

.dark-input:checked + .dark-label:after {
  left: 490px;
  transform: translateX(-100%);
  background: linear-gradient(to right, #2E3138, #1C2021);
}

.dark-input:checked + .dark-label .moon {
    position: absolute;
    top: 17px;
    left: 34px;
    width: 66px;
    height: 65px;
    border-radius: 50%;
    transform: rotate(220deg);
    box-shadow: -15px 0 0 5px #f5f5f5;
}

.dark-input:checked + .dark-label .landscape {
  position: relative;
  right: 94px;
}

.dark-input:checked + .dark-label .star {
    max-width: 100%;
    max-height: 100%;
    background-repeat: no-repeat;
    display: block;
}

.dark-label .cloud-2 {
    max-width: 100%;
    max-height: 100%;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.customise-theme {
  background: var(--opacity-background);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  text-align: center;
  place-items: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
  transition: opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
}

.customise-theme .card {
  background: var(--colour-white);
  padding: 3rem;
  border-radius: var(--card-border-radius);
  width: 50%;
  position: relative;
  top: 12%;
}

.customise-theme.show {
  opacity: 10;
  pointer-events: auto;
}

.customise-theme .card {
    display: none;
}

.customise-theme .card {
  display: block;
}

.card #closed {
  position: absolute;
  z-index: 2000;
  right: 5px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 4px solid var(--colour-dark);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 10px 20px;
}

.card #closed:before {
    left:50%;
    top:50%;
    margin-left:-12px;
    margin-top:-2px;
    width:24px;
    height:4px;
    background-color: var(--colour-dark);
    content:"";
    position:absolute;
    transform: rotate(45deg);
}

.card #closed:after {
  width: 24px;
  height: 4px;
  background-color: var(--colour-dark);
  content: "";
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  position: absolute;
  transform: rotate(-45deg);
}

.card #closed[data-animation="xMarks"] {
  border: 0px solid white;
  overflow: hidden;
  transition: 200ms cubic-bezier(0.175, 0.885, 0.52, 1.775);
}

.card #closed[data-animation="xMarks"]:before, #closed[data-animation="xMarks"]:after {
  transition: 200ms cubic-bezier(0.175, 0.885, 0.52, 1.775);
}

.card #closed[data-animation="xMarks"]:not(.xMarks):hover:before {
  transform: scale(0.7) rotate(45deg);
  transition-delay: 100ms;
}

.card #closed[data-animation="xMarks"]:not(.xMarks):hover:after {
  transform: scale(0.7) rotate(-45deg);
  transition-delay: 100ms;
}

.card #closed.xMarks {
  transition: transform 400ms ease-out, opacity 200ms ease-in;
  transition-delay: opacity 100ms;
  transform: scale(2);
  opacity: 0;
  box-shadow: 0 0 0 20px var(--colour-dark) inset;
}

.card #closed.xMarks:before {
  background-color: white;
  transform: scale(2) rotate(45deg);
}

.card #closed.xMarks:after {
  background-color: white;
  transform: scale(2) rotate(-45deg);
}

.cover, .search-data { 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.search-box form {
  align-items: center;
  background: #ffffff;
  height: 40px;
  width: 350px;
  position: relative;
  box-shadow: 6px 10px 28px rgba(0, 0, 0, 0.16);
}

.search-box input {
  height: 40px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #1e1e1e;
  padding: 0 20px;
}

.search-box .search-btn {
  position: absolute;
  top: 0;
  right: -1px;
  width: 50px;
  height: 40px;
  background: #00253f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(12px 0%, 100% 0%, 100% 100%, 12px 100%, 0% 50%);
}

.search-btn .btn-icon {
  display: block;
  width: 20px;
  height: 20px;
  color: white;
}

.search-data input {
  height: 60px;
  width: 700px;
  outline: none;
  border: none;
  font-size: 22px;
  font-weight: 500;
  border-style: solid;
  border-width: 5px;
  border-image: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) 1;
  padding-left: 90px;
  background: whitesmoke;
}

.reveal-search {
  display: none;
      width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    right: 115px;
    border: none;
    background: none;
    color: white;
}

.reveal-search div {
  font-size: 30px;
}

.search-data span {
  color: #fff;
  position: absolute;
  width: 50px;
  font-size: 25px;
  right: 0;
  top: 0;
  line-height: 45px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  z-index: 2000;
  right: 25px;
  top: 25px;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}

.search-data span,
.search-data label, .close-btn {
  display: none;
}

.search-data {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
}

.search-data button {
  position: absolute;
  width: 107px;
  height: 107px;
  top: -22px;
  left: -30px;
  border-radius: 3px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F2D6;
  z-index: 1;
  cursor: pointer;
  clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
}

.search-data button .btn-icon {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
    font-size: 35px;
  -webkit-text-stroke: .3px #000;
}

.search-data button:before {
  content: '';
  position: absolute;
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --b: 10px;
  clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%,50% 0, 50% var(--b), var(--b) 50%, 50% calc(100% - var(--b)), calc(100% - var(--b)) 50%, 50% var(--b));
    width: 110px;
    height: 110px;
    z-index: 0;
}

#suggestions {
    position: relative;
    max-height: 280px;
    overflow-y: auto;
    background: white;
    z-index: 10;
    color: black;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
    padding: 10px 8px;
}

.suggestion-item:hover {
    background: #eee;
}

.suggestion-item.active {
    background-color: #ddd;
}

.hamburger {
  width: 60px;
  height: 60px;
  background: var(--sidebar-bg);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 10px;
  left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  z-index: 101;
  transition: var(--tran-05);
}

.hamburger span {
  width: 30px;
  height: 5px;
  background: #fff;
  position: absolute;
  border-radius: 10px;
  transition: 0.4s;
}

.hamburger span:first-child {
  transform: translateY(-15px);
  width: 30px;
}

.hamburger span.bottom {
  transform: translateY(15px);
  width: 30px;
}

.hamburger.turn span:nth-child(2) {
  transform: translateX(80px);
}

.hamburger.turn span:first-child {
  width: 30px;
  transform: translateY(0) rotate(45deg);
}

.hamburger.turn span.bottom {
  width: 30px;
  transform: translateY(0) rotate(315deg);
  transition-delay: 0.2;
}

.hamburger.active {
  left: 350px;
  top: 10px;
}

.sidebar .text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-colour);
  transition: var(--tran-04);
}

.sidebar {
    width: 305px;
    height: 100%;
    background: var(--sidebar-bg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    left: -600px;
    position: fixed;
    transition: var(--tran-05);
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 11;
}

.sidebar-header {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.sidebar-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.sidebar-links {
  list-style: none;
  margin-top: 20px;
}

.sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  color: white;
  font-weight: 500;
  padding: 15px 20px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  left: -20px;
}

.border-card {
    background: var(--background);
    width: 220px;
    height: 91vh;
    border: 2px solid var(--border);
    position: absolute;
    padding: 1rem;
    left: 25px;
    top: 23px;
    box-sizing: content-box;
}
 .border-card .corner {
	 width: 0.5rem;
	 height: 0.5rem;
	 border: 2px solid var(--border);
	 position: absolute;
}
 .border-card .corner::after, .border-card .corner::before {
	 content: "";
	 position: absolute;
}
 .border-card .corner::after {
	 width: 2rem;
	 height: calc(1rem - 1px);
}
 .border-card .corner::before {
	 width: calc(1rem - 1px);
	 height: 2rem;
}
 .border-card .corner.left {
	 left: -0.5rem;
}
 .border-card .corner.left::after {
	 left: calc(-2px + 1rem);
	 border-left: 2px solid var(--border);
}
 .border-card .corner.left::before {
	 left: -1px;
	 border-left: 2px solid var(--border);
}
 .border-card .corner.right {
	 right: -0.5rem;
}
 .border-card .corner.right::after {
	 right: calc(-2px + 1rem);
	 border-right: 2px solid var(--border);
}
 .border-card .corner.right::before {
	 right: -1px;
	 border-right: 2px solid var(--border);
}
 .border-card .corner.top {
	 top: -0.5rem;
}
 .border-card .corner.top::after {
	 top: -1px;
	 border-top: 2px solid var(--border);
}
 .border-card .corner.top::before {
	 top: calc(-2px + 1rem);
	 border-top: 2px solid var(--border);
}
 .border-card .corner.bottom {
	 bottom: -0.5rem;
}
 .border-card .corner.bottom::after {
	 bottom: -1px;
	 border-bottom: 2px solid var(--border);
}
 .border-card .corner.bottom::before {
	 bottom: calc(-2px + 1rem);
	 border-bottom: 2px solid var(--border);
}
 
.sidebar-links li a:hover {
  background: #ffffff2d;
  color: #fff;
  border-radius: 4px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  vertical-align: middle;
  color: inherit;
}

.sidebar.active {
  left: 0px;
}

footer {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #fff;
  background: #000c1e;
  text-align: center;
  padding: 100px 0 30px;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer .menu li {
  display: inline-block;
  margin: 0.7em;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
  z-index: 1;
  position: relative;
}

.brand {
  display: block;
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 1em;
}

footer .menu a {
  transition: 0.3s;
  font-weight: 600;
  z-index: 2;
}

footer .menu a:hover {
  color: hsl(40, 65%, 80%);
}

hr {
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}

.footer-card {
background: var(--background);
    position: absolute;
    padding: 1rem;
    left: 25px;
    top: 25px;
    right: 25px;
  bottom: 25px;
    z-index: 0;
}
 footer .quarter {
	 width: 0.5rem;
	 height: 0.5rem;
	 border: 2px solid var(--border);
	 position: absolute;
}
 .footer-card .quarter::after, .footer-card .quarter::before {
	 content: "";
	 position: absolute;
}
 .footer-card .quarter::after {
	 width: 2rem;
	 height: calc(1rem - 1px);
}
 .footer-card .quarter::before {
	 width: calc(1rem - 1px);
	 height: 2rem;
}
 .footer-card .quarter.left {
	 left: -0.5rem;
}
 .footer-card .quarter.left::after {
	 left: calc(-2px + 1rem);
	 border-left: 2px solid var(--border);
}
 .footer-card .quarter.left::before {
	 left: -1px;
	 border-left: 2px solid var(--border);
}
 .footer-card .quarter.right {
	 right: -0.5rem;
}
 .footer-card .quarter.right::after {
	 right: calc(-2px + 1rem);
	 border-right: 2px solid var(--border);
}
 .footer-card .quarter.right::before {
	 right: -1px;
	 border-right: 2px solid var(--border);
}
 .footer-card .quarter.top {
	 top: -0.5rem;
}
 .footer-card .quarter.top::after {
	 top: -1px;
	 border-top: 2px solid var(--border);
}
 .footer-card .quarter.top::before {
	 top: calc(-2px + 1rem);
	 border-top: 2px solid var(--border);
}
 .footer-card .quarter.bottom {
	 bottom: -0.5rem;
}
 .footer-card .quarter.bottom::after {
	 bottom: -1px;
	 border-bottom: 2px solid var(--border);
}
 .footer-card .quarter.bottom::before {
	 bottom: calc(-2px + 1rem);
	 border-bottom: 2px solid var(--border);
}


@media (max-width: 1280px) {
  .hamburger {
    top: 10px;
  }
}

@media (max-width: 1200px) {
  .pocket {
    width: 96%;
  }

  .customise-theme .card {
    width: 92vw;
  }

  .customise-theme label {
    width: 450px;
    height: 180px;
  }

  .customise-theme label:after {
    width: 150px;
    height: 150px;
    top: 15px;
    left: 15px;
  }

  .customise-theme input:checked + .dark-label:after {
    left: 435px;
  }

  .customise-theme label .sun {
    width: 60px;
    height: 60px;
    left: 440px;
  }
}

@media (max-width: 1024px) {

  .sidebar {
        width: 280px;
    }

    .hamburger {
      top: 10px;
    }

    .hamburger.active {
        left: 375px;
    }

    .sidebar {
      height: 100%;
      width: 360px;
    }

    .border-card {
      width: 273px;
      height: 93vh;
    }

    .sidebar-header h2 {
      font-size: 29px;
    }

    .sidebar-links li a {
      font-size: 27px;
    }
}

@media (max-width: 992px) {
  .customise-theme .card {
    width: 92vw;
  }

  .customise-theme label {
    width: 420px;
    height: 150px;
  }

  .customise-theme label:after {
    width: 130px;
    height: 130px;
    top: 10px;
    left: 15px;
  }

  .customise-theme input:checked + .dark-label:after {
    left: 410px;
  }

  .customise-theme label .sun {
    width: 55px;
    height: 55px;
    left: 420px;
  }

  .customise-theme label .cloud-2 {
    width: 100%;
    height: 100%;
  }

  .dark-input:checked + label .landscape {
    right: 64px;
  }

  .dark-input:checked + label .moon {
    top: 17px;
    left: 34px;
    width: 56px;
    height: 55px;
}
}

@media (max-width: 940px) {

  .sidebar.active {
    left: 0;
  }
}

@media (max-width: 912px) {

  .border-card {
    height: 95vh;
  }

}

@media (max-width: 853px) {
  .border-card {
    height: 94vh;
  }

}

@media (max-width: 820px) {

  .hamburger {
    top: 10px;
  }

  .sidebar {
    height: 100%;
    width: 300px;
  }

  .border-card {
    height: 93vh;
    width: 218px;
  }

  .sidebar-header h2 {
    font-size: 24px;
  }

  .sidebar-links {
    margin-top: 35px;
  }

  .sidebar-links li a {
    font-size: 21px;
  }

}

@media (max-width: 768px) {
  .customise-theme .card {
    width: 88vw;
  }

  .customise-theme label {
    width: 400px;
    height: 130px;
  }

  .customise-theme label:after {
    width: 115px;
    height: 115px;
    top: 8px;
    left: 15px;
  }

  .customise-theme input:checked + .dark-label:after {
    left: 385px;
  }

  .customise-theme label .sun {
    width: 50px;
    height: 50px;
    left: 405px;
    top: 122px;
  }

  .customise-theme label .cloud-2 {
    width: 100%;
    height: 100%;
  }

  .dark-input:checked + label .moon {
    top: 17px;
    left: 34px;
    width: 56px;
    height: 55px;
  }

  .hamburger {
    top: 10px;
    left: 30px;
  }

  .sidebar {
    height: 100vh;
    width: 350px;
  }

  .border-card {
    height: 91vh;
    width: 275px;
  }

  .sidebar-header h2 {
    font-size: 27px;
  }

  .sidebar-links li a {
    font-size: 20px;
  }

  .hamburger.active {
    left: 370px;
  }
}

@media (max-width: 600px) {
  .search-box {
    width: 92vw;
    max-width: 340px;
  }

  .search-box input {
    font-size: .95rem;
    padding: 0 75px 0 22px;
  }

  .search-btn {
    width: 52px;
    height: 52px;
    right: 8px;
  }

  .logo {
    position: absolute;
    right: 0;
    top: -4px;
  }

  .reveal-search {
    display: block;
  }

  .mobile-search {
        background: #000f27;
        width: 100vw;
        height: 79px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 70px;
        z-index: 1;
  }

  .hidden {
  display: none;
}

}

@media (max-width: 576px) {
  .customise-theme .card {
    width: 84vw;
  }

  .customise-theme label {
    width: 340px;
    height: 110px;
  }

  .customise-theme label:after {
    width: 95px;
    height: 95px;
    top: 7px;
    left: 15px;
  }

  .customise-theme input:checked + .dark-label:after {
    left: 328px;
  }

  .customise-theme label .sun {
    width: 40px;
    height: 40px;
    left: 360px;
    top: 122px;
  }

  .customise-theme label .cloud-2 {
    width: 100%;
    height: 100%;
  }

  .dark-input:checked + label .landscape {
    right: 54px;
  }

  .dark-input:checked + label .moon {
    top: 17px;
    left: 34px;
    width: 36px;
    height: 35px;
  }

        .hamburger {
        width: 55px;
        height: 55px;
        left: 20px;
        top: 20px;
    }

    .hamburger.active {
        left: calc(100vw - 75px);
    }

    .sidebar {
        width: 100%;
        height: 100vh;
        left: -100%;
        top: 0;
        margin-top: 0;
        z-index: 100;
        overflow-y: auto;
    }

    .sidebar.active {
        left: 0;
    }

    .border-card {
        width: calc(100% - 50px);
        height: calc(100vh - 50px);
        left: 25px;
        top: 25px;
        box-sizing: border-box;
    }

    .sidebar-header {
        margin-top: 100px;
    }

    .sidebar-links li a {
        font-size: 15px;
        padding: 14px 20px;
    }

}

@media (max-width: 540px) {
  .hamburger {
    width: 50px;
    height: 50px;
    top: 15px;
  }

  .hamburger.active {
    top: 50px;
  }
}

@media (max-width: 480px) {

  .hamburger span:first-child {
    width: 30px;
  }

  .hamburger span.bottom {
    width: 30px;
  }

  .customise-theme .card {
    width: 84vw;
  }

  .customise-theme label {
    width: 250px;
    height: 90px;
  }

  .customise-theme label:after {
    width: 80px;
    height: 80px;
    top: 6px;
    left: 15px;
  }

  .customise-theme input:checked + .dark-label:after {
    left: 240px;
  }

  .customise-theme label .sun {
    width: 30px;
    height: 30px;
    left: 290px;
    top: 122px;
  }

  .customise-theme label .cloud-2 {
    width: 100%;
    height: 100%;
  }

  .dark-input:checked + label .moon {
    top: 12px;
    left: 20px;
    width: 31px;
    height: 30px;
  }

  button {
    width: 130px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .hamburger.active {
    top: 45px;
  }

  .sidebar-header h2 {
    font-size: 27px;
  }

  .sidebar-links li a {
    font-size: 20px;
  }
}

@media (max-width: 414px) {
  .hamburger {
    width: 50px;
    height: 50px;
  }

  .hamburger.active {
    top: 45px;
  }
}

@media (max-width: 400px) {

  .reveal-search {
    right: 90px;
  }

  .reveal-search div {
    font-size: 28px;
  }


}

@media (max-width: 375px) {
  .hamburger {
    top: 17px;
    left: 30px;
    width: 45px;
    height: 45px;
  }

  .hamburger.active {
    top: 45px;
  }

  .logo {
    width: 80px;
  }

  .search-box {
    max-width: 305px;
  }

  .search-box form {
    width: 305px;
    height: 35px;
  }

  .search-box input {
    height: 35px;
  }

  .search-box .search-btn {
    top: -1px;
    height: 36px;
  }
}

@media (max-width: 320px) {

  .top-nav {
    padding: 0;
    height: 70px;
  }

  .logo {
    width: 80px;
  }

  .search-box {
    max-width: 275px;
  }

  .search-box form {
    width: 275px;
  }

    .pocket {
    width: 90%;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .hamburger span:first-child {
    width: 25px;
  }

  .hamburger span {
    height: 4px;
    width: 25px;
  }

  .hamburger span.bottom {
    width: 25px;
  }

  .hamburger.active {
    top: 45px;
  }

  .sidebar {
    height: 100vh;
    z-index: 11;
    width: 320px;
    margin-top: 0;
  }

  .border-card {
    height: 90vh;
    width: 272px;
    left: 23px;
  }

  .sidebar-header h2 {
    font-size: 24px;
  }

  .sidebar-links li a {
    font-size: 17px;
  }

  .customise-theme {
    width: 91vw;
  }

  .customise-theme .card {
    width: 79vw;
  }

  .customise-theme label {
    width: 190px;
    height: 80px;
    left: -17px;
  }

  .customise-theme label:after {
    width: 70px;
    height: 70px;
    top: 5px;
    left: 10px;
  }

  .dark-input:checked + .dark-label:after {
    left: 180px;
  }

  .cover.active {
    width: 101%;
  }

  .search-data form {
    bottom: 150px;
    left: 10px;
  }

  .search-data input {
    width: 250px;
    height: 50px;
    font-size: 20px;
    padding-left: 45px;
    padding-right: 80px;
  }

  .search-data button {
    width: 67px;
    height: 67px;
    top: -9px;
  }

  .search-data button:before {
    width: 70px;
    height: 70px;
  }

  #suggestions {
    font-size: 15px;
  }

  .top-nav {
    width: 100%;
  }
}