* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive, sans-serif;
  font-weight: bold;
}
body {
  background-color: #141414;
}

/* ------------------------GLOBAL CSS----------------------- */

a {
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: 60px;
}

/* -----------------------------NAVIGATION BAR------------------------- */

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background: rgb(202, 188, 188);
  position: sticky;
  padding-bottom: 20px;
}

header .logo img {
  height: 80px;
  width: 80px;
  margin-left: 20px;
}

nav {
  margin-right: 0;
  margin-left: auto;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  list-style: none;
}
nav ul li {
  margin: 18px 22px;
}
nav ul li a {
  padding: 9px 17px;
  transition: all 0.5s linear;
  background-color: rgba(138, 132, 132, 0.3);
  box-shadow: inset 5px 5px 8px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

nav ul li:hover a {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  color: #ffffff;
}

form .input-box {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 0 6px 0 40px;
  position: relative;
  min-width: 200px;
}
header form input {
  text-align: center;
  width: 90%;
  outline: none;
  border: 3px solid rgba(0, 255, 255, 0.5);
  background: transparent;
  box-shadow: inset 2px 5px 5px rgba(163, 103, 53, 0.863);
  border-radius: 6px;
}

/* -----------------------body----------------------------- */

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
  /* max-width: 1200px;  background-color: #080808; */
}

.box {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 2px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.1);
  margin: 0 20px;
  border-radius: 12px;
  margin: 40px;
  box-sizing: border-box;
}

.card {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #1b1a1a;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s linear;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.card:hover {
  transform: translateY(-50px);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5);
  background: #1a1b1a;
}

.content {
  padding: 12px;
  text-align: center;
  box-sizing: border-box;
}

.content h2 {
  position: absolute;
  top: -19px;
  right: 17px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 6em;
}

.content h3 {
  position: relative;
  font-size: 2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.content p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.7px;
  word-spacing: 2.5px;
  text-align: justify;
}

.content a {
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  padding: 5px 15px;
  border-radius: 12px;
  box-shadow: 5px 3px 2px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.box:nth-child(1) .content a {
  background: #0bd11c;
}
.box:nth-child(2) .content a {
  background: #ebc90a;
}
.box:nth-child(3) .content a {
  background: #dd0606;
}
.box:nth-child(4) .content a {
  background: #0b0ed1;
}
.box:nth-child(5) .content a {
  background: #e65b0b;
}
.box:nth-child(6) .content a {
  background: #d10b96;
}
.box:nth-child(7) .content a {
  background: #0b88d1;
}
.box:nth-child(8) .content a {
  background: #43d10b;
}
.box:nth-child(9) .content a {
  background: #3a3b58;
}
.box:nth-child(10) .content a {
  background: #fcfcff;
  color: black;
}

/* -------------FOOTER--------------- */

/*  footer global css */
footer {
  background: #eee;
}

.footer-links {
  text-decoration: none;
  list-style: none;
  margin: 12px 20px;
  font-weight: bold;
  font-family: cursive, sans-serif;
  transition: all 0.3s linear;
}
.footer-links:hover {
  border-bottom: 2px solid grey;
  color: black;
}

/* --------footer logo------ */
.footer-logo-img {
  display: block;
  height: 150px;
  width: 150px;
  margin: 0px auto;
}

/* -----------------------More footer items---------------------- */
.footer-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px;
}

.footer-list a {
  display: inline-block;
  margin: 20px 40px;
  font-size: 1.5em;
  font-weight: bold;
  font-family: cursive;
}

/* - -------------SOCIAL MEDIA ICONS-------------- */

.social-media-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 13px 12px;
  height: 100px;
  width: 100px;
  background: linear-gradient(0deg, #ddd, #fff);
  position: relative;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
}
.footer-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.inside-box {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  border-radius: 50%;
  width: 100%;
  background: linear-gradient(0deg, #fff, #ddd);
  position: relative;
}

.footer-img {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert();
  transition: all 0.5s;
}
.footer-box:hover .footer-img {
  filter: none;
}

/* ----------------------Terms and condition part of footer-------------------------- */

.lowest-footer {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto;
  justify-content: center;
  align-items: center;
}

.lowest-footer .footer-links {
  text-decoration: none;
  color: gray;
  margin: 12px 20px;
  font-weight: bold;
  font-family: cursive, sans-serif;
  transition: all 0.3s linear;
}
.lowest-footer .footer-links:hover {
  border-bottom: 1px solid rgb(32, 27, 27);
  color: black;
}
