
                
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: "Hermes";
    src: url("assets/fonts/hermesfb-bold.woff2") format("woff2"),
    url("assets/fonts/hermesfb-bold.woff") format("woff");
}


@font-face {
    font-family: "HermesFb";
    src: url("assets/fonts/hermesfb-regular.woff2") format("woff2"),
    url("assets/fonts/hermesfb-regular.woff") format("woff");
}
body {
  /* font-family: 'Segoe UI', Arial, sans-serif; */
  background-color: #fff;
  overflow-x: hidden;
  font-family: 'HermesFb' !important;
}

/* Layout */
.eicher-proxy-section {
  display: flex;
  min-height: 100vh;
     
}

/* Left Section */
.leftBody {
  width: 50%;
  padding: 60px 60px 0px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  width: 140px;
}

.leftText {
  margin-top: 110px;
  
}

.leftText h1 {
  color: #083A81;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Hermes";
}

.leftText p {
  font-size: 20px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 20px;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px; 
  background-color: #083A81;
  color: #FFFFFF;
  padding: 16px 52px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
}

.btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: transform 0.5s ease; 
}

.btn:hover img {
  transform: translateX(10px);
}

.btn:hover {
box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 10px 0px;

}

footer {
  font-size: 14px;
  font-weight: 700;
  color: #363636;
  margin-top: 150px;
  padding-bottom: 33px;
  display:flex;
  justify-content: center;
}

/* Right Section */
.rightBody {
  width: 50%;
  position: relative;
  flex: 1;
  overflow: hidden;
  /* height: 100%;
  min-height: 100vh; */
  aspect-ratio: 2052/800;
}

.rightBody img.truck-image {
  /* width: 100%; */
  object-fit: cover;
  overflow: hidden;
  height: 100%;
  width: 100%;
 
}
