@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mainfont: "Roboto", sans-serif;
  --dark: black;
}

html {
  font-family: var(--mainfont);
}

body {
  background-color: #e4e4e4;
}

.container {
  width: 99%;
  height: 100%;
}

.container-x {
  width: 90%;
  height: auto;
}

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  width: 100%;
  height: 60px;
  background-color: #fff;
}
.navbar .container-x .logo-box {
  width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar .container-x .logo-box a img {
  width: auto;
  height: 50px;
}
.navbar .container-x .menu {
  display: flex;
  gap: 30px;
}
.navbar .container-x .menu a {
  text-decoration: none;
  color: var(--dark);
}

.hero-banner {
  width: 100%;
  height: 600px;
}
.hero-banner img {
  width: 100%;
  height: 100%;
}

.heading {
  width: 100%;
}
.heading .container {
  background-color: #fff;
  padding: 20px 0;
}
.heading .container span {
  color: gray;
}

.category-card {
  width: 100%;
  height: auto;
}
.category-card .container {
  gap: 10px;
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.category-card .container .card {
  border-radius: 10px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.category-card .container .card img {
  width: 70%;
  transition: all 0.3s ease-in-out;
}
.category-card .container .card:hover img {
  transform: scale(1.2);
}

.sub-banner {
  width: 100%;
  height: 300px;
  margin: 10px 0;
}
.sub-banner .container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sub-banner .container h1 {
  color: #fff;
}
.sub-banner .container h1 span {
  color: #e9a83b;
  font-size: 70px;
}
.sub-banner .container p {
  color: #fff;
  margin-top: 20px;
}

.sub-card {
  width: 100%;
  height: auto;
}
.sub-card .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 10px;
}
.sub-card .container .card {
  height: 500px;
  flex: 1 1 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.sub-card .container .card img {
  width: 100%;
  height: 100%;
}
.sub-card .container .card .text-box.left {
  position: absolute;
  top: 40px;
  left: 40px;
  height: 85%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.sub-card .container .card .text-box.left .upper .num {
  font-size: 20px;
}
.sub-card .container .card .text-box.left .upper .num::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 40px;
  width: 50px;
  height: 1px;
  background-color: black;
}
.sub-card .container .card .text-box.left .upper h2 {
  margin: 20px 0;
  font-size: 50px;
}
.sub-card .container .card .text-box.left .upper .sub-heading {
  font-size: 20px;
  color: gray;
}
.sub-card .container .card .text-box.left .upper .arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.sub-card .container .card .text-box.left .upper .arrow .icon-box {
  border: 1px solid black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.sub-card .container .card .text-box.left .upper .arrow a {
  text-decoration: none;
  color: var(--mainfont);
}
.sub-card .container .card .text-box.left .sub-text {
  font-size: 12px;
  letter-spacing: 4px;
  word-spacing: 4px;
}
.sub-card .container .card .text-box.right {
  position: absolute;
  top: 40px;
  right: 40px;
  height: 85%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.sub-card .container .card .text-box.right .upper .num {
  font-size: 20px;
}
.sub-card .container .card .text-box.right .upper .num::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 40px;
  width: 50px;
  height: 1px;
  background-color: black;
}
.sub-card .container .card .text-box.right .upper h2 {
  margin: 20px 0;
  font-size: 50px;
}
.sub-card .container .card .text-box.right .upper .sub-heading {
  font-size: 20px;
  color: gray;
}
.sub-card .container .card .text-box.right .upper .arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.sub-card .container .card .text-box.right .upper .arrow .icon-box {
  border: 1px solid black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.sub-card .container .card .text-box.right .upper .arrow a {
  text-decoration: none;
  color: var(--mainfont);
}
.sub-card .container .card .text-box.right .sub-text {
  font-size: 12px;
  letter-spacing: 4px;
  word-spacing: 4px;
}
.sub-card .container .card .text-box.light {
  color: #fff;
}
.sub-card .container .card .text-box.light .icon-box {
  border: 2px solid red;
}

.footer {
  width: 100%;
  height: auto;
  margin-top: 10px;
  background-color: rgb(4, 4, 4);
  padding: 50px 0px;
}
.footer .container-x {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.footer .container-x .col img {
  width: 100px;
}
.footer .container-x .col .heading {
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.footer .container-x .col ul {
  margin-left: 15px;
}
.footer .container-x .col ul li {
  list-style: none;
  color: #fff;
  margin-bottom: 5px;
}
.footer .container-x .col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-line {
  background-color: rgb(98, 0, 128);
  padding: 10px 0;
  color: #fff;
}
.footer-line .social-links {
  gap: 10px;
}
.footer-line .social-links a i {
  color: #fff;
}

@media screen and (max-width: 800px) {
  .navbar {
    background-color: red;
  }
  .navbar .container-x {
    background-color: green;
  }
  .navbar .container-x .menu {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */