.content-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}
.resume .main-col {
    
    padding-left: 10%;
}

.layout-container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 1rem;
}

.layout-image,
.layout-content {
  flex: 1;
  min-width: 300px; /* Adjust as needed for responsiveness */
}

/* Specific styles for image on the left */
.layout-image-left {
  order: 1;
}
.layout-content-right {
  order: 2;
}

/* Specific styles for image on the right */
.layout-image-right {
  order: 2;
}
.layout-content-left {
  order: 1;
}

.layout-image img {
  width: 100%;
  height: 350px;
  display: block;
}
 input[type="text"], input[type="password"], input[type="email"], textarea, select {
    display: block;
    padding: 18px 15px;
    margin: 0 0 24px 0;
    border: 0;
    outline: none;
    vertical-align: middle;
    min-width: 550px;
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
    color: #647373;
    background: #D3D9D9;
}
.resume{
    padding-bottom:0px !important;
    padding-top:60px;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
  .layout-container {
    flex-direction: column;
  }
  .layout-image-left,
  .layout-content-right,
  .layout-image-right,
  .layout-content-left {
    order: unset; /* Reset order to stack vertically */
  }
}
@media (max-width: 600px) {
    input[type="text"], input[type="password"], input[type="email"], textarea, select {
        min-width:0;
    }
    .logo{
        padding-left:30px;
    }
}

