 .section3 {
     overflow: hidden;
     position: relative;
     padding: 180px 0 60px;
     background-size: cover !important;
 }

 .box3 {
     position: relative;
     z-index: 2;
     display: flex;
     flex-wrap: wrap;
 }

 .box3 .text {
     width: 40%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
 }

 .box3 .text h1 {
     font-weight: 400;
     font-size: 50px;
     line-height: 1;
     color: #000000;
 }

 .box3 .text span {
     display: block;
     width: 100px;
     height: 4px;
     background: var(--color2);
     margin-top: 30px;
     margin-bottom: 45px;
 }

 .box3 .text h2 {
     font-size: 16px;
     line-height: 2;
     text-align: justify;
     color: #333333;
     width: 100%;
     max-width: 600px;
 }

 .box3 .text img {
     filter: invert(1);
     margin-top: 75px;
     display: block;
 }

 .box3 .imgBox {
     width: 60%;
     overflow: hidden;
     border-radius: 15px 15px 15px 60px;
 }

 .box3 .imgBox img {
     width: 100%;
     object-fit: cover;
     transition: 0.5s;
 }

 .box3 .imgBox:hover img {
     transform: scale(1.02);
 }

 @media (max-width: 1440px) {
     .box3 .text h1 {
         font-size: 42px;
     }

 }

 @media (max-width: 992px) {
     .section3 {
         padding: 90px 0;
     }

     .box3 .text {
         width: 100%;
         margin-bottom: 30px;
         padding-right: 0;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
     }

     .box3 .imgBox {
         width: 100%;
         border-radius: 15px 15px 60px 60px;
     }

     .box3 .text span {
         margin-top: 20px;
         margin-bottom: 30px;
     }

     .box3 .text h2 {
         line-height: 1.5;
         text-align: center;
     }

     .box3 .text img {
         margin-top: 30px;
         width: 120px;
     }
 }

 @media (max-width: 640px) {
     .section3 {
         padding: 60px 0;
     }

     .box3 .text h1 {
         font-size: 28px;
     }
 }