@import url("https://fonts.googleapis.com/css2?family=Anton&family=Courgette&family=Fira+Sans:wght@200;400&family=Grenze+Gotisch&family=Roboto&family=Satisfy&family=Smooch&family=Source+Code+Pro&family=Source+Sans+Pro&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Fira Sans", sans-serif;
  background-color: #eaeaea;
}
.container {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  width: 998px;
  margin: 0 auto;
}
.logo img {
  width: 9rem;
  height: 9rem;
}

/* * ******styling of Navbar starts from here******  */

nav {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 3px solid #bd10e0;
}
nav h2 {
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
nav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
}
nav ul li {
  list-style-type: none;
}
nav a {
  color: black;
  text-align: center;
  padding: 14px 16px;
  margin: 0 10px;
  text-decoration: none;
  font-size: 25px;
  position: relative;
}
nav ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.3s;
  transform-origin: left;
  box-sizing: border-box;
  top: 0;
  left: 0;
  border-top: 3px solid #2874a6;
  border-left: 3px solid #2874a6;
}
nav ul li a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.3s;
  transform-origin: left;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #2874a6;
  border-right: 3px solid #2874a6;
}

nav ul li a:hover:before,
nav ul li a:hover:after {
  width: 10%;
  height: 20%;
  transform: rotate(360deg);
}
.hero {
  display: flex;
}
.left {
  padding: 4rem;
}
.left p {
  margin: 2rem 0;
}
.data {
  height: 100vh;
}
/* ******styling of buttons start from here****** */

button {
  padding: 15px 45px;
  background-color: #2874a6;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  border: none;
  letter-spacing: 1px;
}

button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-top: 5px solid #2e86c1;
  border-left: 5px solid #2e86c1;
  transition: all 0.4s;
}
button::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-bottom: 5px solid #2e86c1;
  border-right: 5px solid #2e86c1;
  transition: all 0.4s;
}

button:hover:before,
button:hover:after {
  width: 100%;
  height: 100%;
}
button:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* * ******styling of feauters section starts from here******  */

.card {
  position: relative;
  width: 280px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  padding: 30px 40px;
  background-color: #fff;
  cursor: pointer;
}

.imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-80px);
  z-index: 99;
}
.imgbox img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}
.content {
  padding: 10px 1px;
  text-align: center;
  transform: translateY(-140px);
  opacity: 1;
  transition: 0.3s;
}

.content p {
  margin-top: 8px;
}
#features .container .content h2 {
  color: #7f9ead;
  margin: 1.3rem 0 0 0;
}
#features .container .content p {
  margin: 0.3rem 0 0 0;
}
.card-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 7rem;
}

.transaction-history button {
  margin: 3rem 2rem 0;
}

/* * ******styling of Transaction data starts from here******  */

table {
  border: 1px solid black;
  margin: 3rem 0 0 3rem;
  padding: 1rem;
  width: 90%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
table,
th,
td {
  padding: 1rem;
  border: 1px solid black;
  border-collapse: collapse;
}
.top-row {
  background: #2e86c1;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
tr:hover {
  background-color: #a1b7c2;
}

/* ******styling of footer section start from here****** */

footer {
  position: relative;
  width: 998px;
  height: auto;
  padding: 50px 100px;
  background-color: #2e86c1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  margin-top: 2rem;
}
footer .container {
  background-color: #2e86c1;
  display: flex;
  flex-direction: row;
}
footer .container .sec {
  margin-right: 30px;
}
footer .container .sec.aboutUs {
  width: 40%;
}
footer .container h2 {
  position: relative;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}
footer .container h2:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f00;
}
footer .container .sec.aboutUs p {
  color: #999;
}
footer .container .sec.aboutUs p:hover {
  color: #fff;
}
.sci {
  margin-top: 20px;
  display: flex;
}
.sci li {
  list-style-type: none;
}
.sci li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #7f9ead;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.7rem;
}
.sci li a:hover {
  background: #2874a6;
}
.sci li a .fa {
  color: #fff;
  font-size: 20px;
}
.sci li a .fa:hover {
  color: #f00;
}
#features .container h2,
#features .container p {
  margin: 0 0 1rem 2rem;
}
.aboutUs p:hover {
  color: #fff;
}
.quicklinks {
  position: relative;
  width: 25%;
}
.quicklinks ul li {
  list-style-type: none;
}
.quicklinks ul li a {
  color: #999;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.quicklinks ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.contactUs {
  width: calc(35% - 60px);
  margin-right: 0 !important;
}
.contactUs .info {
  position: relative;
}
.contactUs .info li {
  display: flex;
  margin-bottom: 1rem;
}
.contactUs .info .fa {
  margin-right: 0.5rem;
  color: #fff;
  font-size: 1.2rem;
}
.contactUs ul li {
  list-style-type: none;
}
.info {
  color: #999;
}
.info:hover {
  color: #fff;
}
.copyright-text {
  width: 998px;
  background: #181818;
  margin: auto;
}
.copyright-text p {
  color: #fff;
  text-align: center;
  padding: 8px 100px;
}

