

.bigbox-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: fit-content;
	padding: 2vw 5vw;
	gap: 17px;
}
.bigbox {
    width: 50vw;
    height: 320px;
   
    box-shadow: 0px 1px 4px rgba(3, 5,75, 0.1);
   position: relative;
   border: 2px solid grey;
   color: grey;
   align-items: center;
}

.imgg{
    position: absolute;
    width: 340px;
    height: 240px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.imgg img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
}
.bigbox:first-child {
    align-self: flex-start;
   
}
.bigbox:first-child {
    display: grid;
    grid-template-columns: 75% 25%;
}
.bigbox:last-child {
    display: flex;
    align-items: center;
  
}
.bigbox:last-child .contentt{
  width: 75%;


}
.bigbox:first-child .imgg  {
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(19%);
}
.bigbox:last-child {
    align-self: flex-end;
    display: flex;
   
    justify-content: flex-end;
}
.bigbox:last-child .imgg  {
    left: 0;
    top: 0;
    transform: translateX(-50%) translateY(19%);
}
.contentt{
    padding: 0vw 1vw;
}
.contentt h4 {
    font-size: 24px;
    color: #ffb002;
    position: relative;
    display: inline-block;
}

.bigbox h4::before {
  content: '';
  width: 10%;
  height: 3px;
  background: linear-gradient(45deg, #ffb001, #724e01);
  bottom: -5px;
  position: absolute;
  transition: 0.5s linear;
}
.bigbox:hover h4::before{
    width: 100%; 
}
.bigbox:hover .imgg {
   box-shadow: 1px 1px 30px rgba(0,0,0,0.4);
}

