@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #222222;
}

.container {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: rgb(54, 54, 54);
  color: white;
  padding: 10px 4%;
}

.headerLeft {
  display: flex;
  align-items: center;
}

.headerLink {
  color: white;
  text-decoration: none;
  font-size: 15px;
  margin-left: 50px;
  display: inline-block;
}

.headerRight {
  display: flex;
  align-items: center;
}

.headerIcon {
  font-size: 18px;
  margin-right: 15px;
}

.headerPara {
  font-size: 15px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
}

.logo {
  font-weight: 400;
  color: white;
}

.navButton {
  border: 1px solid #8a8a8a;
  background-color: #171717;
  color: #8a8a8a;
  text-decoration: none;
  display: inline-block;
  padding: 13px 30px;
  border-radius: 30px;
}

.homeContent {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.homeContentUpper {
  display: flex;
  justify-content: space-between;
}

.homeContentLeft {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
}

.homeContentRight {
  width: 30%;
}

.stroke1 {
  position: absolute;
  top: 100%;
  left: 0;
}

.homeHeadingWrapper {
  position: relative;
}
.homeHeading {
  color: white;
  font-weight: 400;
  font-size: 60px;
}
.homePara {
  margin-top: 30px;
}

.paraDiv {
  color: #bcbcbc;
  font-size: 16px;
  position: inline-block;
  margin: 10px 0;
}

.homeImageWrapper {
  position: relative;
}
.homeImage {
  width: 100%;
  height: 100%;
}

.homeIcon {
  position: absolute;
  left: 100%;
  transform: translateX(-70%);
}

.homeContentMiddle {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.homeContentMiddleLeft {
  width: 30%;
}
.homeContentMiddleRight {
  width: 65%;
}

.homePara2 {
  margin-top: 30px;
  color: #bcbcbc;
}

ul {
  display: inline-block;
}
li {
  margin: 10px 0;
  margin-left: 20px;
  color: #bcbcbc;
}

.homeImage2 {
  width: 100%;
}

.homeContentLower {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 70px;
}

.card {
  width: 23%;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  min-height: 230px;
  flex-direction: column;
  text-decoration: none;
}

.cardImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cardBackground {
  position: absolute;
  z-index: -1;
  opacity: 18%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cardHeader {
  width: 100%;
}

.cardHeadingWrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}

.cardHeading {
  top: 25px;
  font-weight: 400;
  color: white;
  right: 40px;
  text-align: right;
  margin-right: 40px;
  width: 100%;
}

.cardStroke {
  position: absolute;
  top: 100%;
  right: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

.card:hover .cardStroke {
  opacity: 1;
}

.circleContainer {
  display: flex;
  /* position: absolute; */
  top: 20px;
  left: 40px;
  margin-top: 20px;
  margin-left: 50px;

  justify-content: flex-start;
  width: 100%;
}

.circle {
  background-color: red;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 10px;
}

.circle1 {
  background-color: #ff5b5b;
}
.circle2 {
  background-color: #ffdb5b;
}
.circle3 {
  background-color: #67ff32;
}

@media screen and (max-width: 1500px) {
  .homeContent {
    margin-top: 30px;
  }
  .homeHeading {
    font-size: 50px;
  }
  .homePara {
    font-size: 13px;
  }
  .homePara2 {
    font-size: 13px;
  }
  .paraDiv {
    font-size: 13px;
  }
  .logo {
    font-size: 20px;
  }

  .headerHeading {
    font-size: 14px;
  }
  .headerLink {
    font-size: 13px;
  }
  .headerPara {
    font-size: 13px;
  }
  .headerIcon {
    font-size: 15px;
  }
  .header {
    padding: 5px 2%;
  }
  .homeImageWrapper {
    display: flex;
    justify-content: center;
  }
  .homeImage {
    width: 80%;
  }
  .homeImage2 {
    width: 80%;
  }
}

@media screen and (max-width: 1250px) {
  .homeHeading {
    font-size: 40px;
  }

  .nav {
    padding: 15px 5%;
  }
  .navButton {
    padding: 10px 30px;
  }
  .homeIcon {
    left: 90%;
    transform: translateX(-70%);
    width: 50px;
  }
  .card {
    width: 23%;
    border-radius: 20px;
    min-height: 160px;
  }
  .circleContainer {
    margin-top: 10px;
    margin-left: 10px;
  }
  .circle {
    width: 10px;
    height: 10px;
    margin-left: 7px;
  }
  .cardHeading {
    font-size: 15px;
  }
  .cardStroke {
    width: 52px;
  }
  .cardImage {
    width: 50px;
  }
}

@media screen and (max-width: 900px) {
  .homeHeading {
    font-size: 28px;
  }
}
@media screen and (max-width: 850px) {
  .homeImage {
    width: 100%;
  }
  .homeImage2 {
    width: 100%;
  }
  .homeHeading {
    font-size: 28px;
  }
  .homePara {
    font-size: 15px;
  }
  .homeContentLower {
    margin-top: 90px;
  }

  .homeContentUpper {
    margin-top: 40px;
  }
  .nav {
    padding: 20px 5%;
  }
  .card {
    min-height: 150px;
  }
}

@media screen and (max-width: 650px) {
  .headerLink {
    font-size: 10px;
    margin-left: 10px;
  }

  .headerHeading {
    display: none;
  }
  .header {
    padding: 2px 2%;
  }
  .headerIcon {
    font-size: 12px;
    margin-right: 5px;
  }
  .homeContentUpper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .homeContentLeft {
    width: 97%;
    text-align: center;
  }
  .homeContentMiddleRight {
    width: 97%;
    text-align: center;
  }
  .homeContentRight {
    /* display: none; */
  }
  .homeContentUpper {
    margin-top: 0px;
  }
  .homeHeadingWrapper {
    margin-top: 20px;
  }
  .homeContentLower{
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .circle {
    width: 45%;
    width: 5px;
    height: 5px;
    margin-left: 5px;
  }
  .cardHeading {
    font-size: 10px;
    margin-right: 10px;
  }
  .homeContent {
    width: 95%;
  }
  .cardImage {
    width: 30px;
    margin-top: 13px;
  }
  .card {
    min-height: 100px;
    width: 45%;
    margin-top: 5%;
  }
  .stroke1 {
    left: 50%;
    transform: translateX(-50%);
  }
  .homeHeading {
    font-size: 25px;
  }
  .homePara {
    font-size: 12px;
  }
  .navButton {
    font-size: 13px;
    padding: 6px 20px;
  }
  .logo {
    font-size: 17px;
  }
  .headerPara {
    font-size: 10px;
  }
  .homeImage {
    width: 300px;
  }
  .homeImage2 {
    width: 300px;
  }
  .homeContentMiddle {
    flex-direction: column;
  }

  .homeContentMiddleLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .homeContentMiddleRight {
    margin-top: 20px;
  }
  li {
    text-align: left;
  }
  .homeContentLower {
    margin-top: 10px;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 550px) {
  .homeImage,
  .homeImage2 {
    width: 200px;
  }
  .homePara2,
  .homePara,
  .paraDiv {
    font-size: 11px;
  }

  .homeHeading {
    font-size: 20px;
  }
  .stroke1 {
    top: 107%;
    opacity: 0.5;
  }
}
