* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "gilroy"; */
  font-family: "Work Sans", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}
.main {
  height: 100%;
  width: 100%;
  /* background-color: red; */
  display: flex;
  /* justify-content: space-between; */
  /* align-items: center; */
  align-items: flex-end;
  gap: 80px;
  padding: 0px 90px;
  padding-top: 100px;
}


.left {
  width: 48%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* background-color: red; */
}
.left h1 {
  font-size: 100px;
  font-weight: 400;
  font-family: "Work Sans", sans-serif; /* font keliye */
  line-height: 120px;
}
.color-box {
  width: 100%;
  /* height: 40%; */
  margin-top: 50px;
  /* background-color: yellow; */
}
.color-box .color {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #333;
}
.color-box .color h5 {
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
}
.color-box .color .color1 {
  height: 20px;
  width: 20px;
  background-color: brown;
  border-radius: 50%;
  margin: 2px;
}
.color-box .color .color2 {
  height: 20px;
  width: 20px;
  background-color: burlywood;
  border-radius: 50%;
  margin: 2px;
}
.left h2 {
  margin-top: 50px;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.left p {
  width: 70%;
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  color: #444;
  line-height: 30px;
}


.right {
  width: 35%;
  height: 90%;
  position: relative; /* position relative ka use  taki pairent ko pawer mil ske child ko control krne keliye */
  /* background-color: blue; */
}
.right .right-top {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}
.right .right-top h4 {
  font-size: 30px;
  font-weight: 500;
}
.right .right-top h5 {
  font-size: 16px;
}
.right .right-top h5 i {  /* star ko color dene keliye */
  color: gold;
}

.right img {
  width: 100%;
  height: 83%;
  object-fit: cover; /* img ko fit krne kelye */
}

.right .black-bag {
  position: absolute;
  height: 180px;
  width: 180px;
  background-color: rgb(36, 7, 7);
  color: #fff;
  border-radius: 50%;
  right: -16%;
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  top: 24%;
}

.right .black-bag h5 {
  font-size: 26px;
  font-weight: 400;
}

.right .rotated {
  position: absolute;
  left: -13%;
  /* background-color: red; */
  bottom: 2%;
  /* rotate: -90deg; */
  transform-origin: 0 0; /* rotate krne keliye */
  font-size: 35px;
  font-weight: 500;
}
