.en-header-logo {
  max-height: 75px;
  padding: 15px 0 15px 92px;
}

.en-line-container {
  display: flex;
  justify-content: center;
}

.en-line {
  background: rgba(53, 4, 195, 0.73);
  width: 95%;
  height: 11px;
  border-radius: 0 0 5px 5px;
  position: absolute;
  z-index: 1;
}

.en-wrapper {
  background-image: url(../img/enquire-now-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.en-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding-top: 84px;
  padding-bottom: 90px;
  max-width: 1400px;
  margin: 0 auto;
}

.en-back-button {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  top: 25px;
  left: 70px;
  color: black;
  display: flex;
  align-items: center;

  outline: none;
  border: none;
  background-color: transparent;
}

.en-back-button p {
  text-decoration: underline;
  margin-bottom: 0;
}

.en-left {
  padding: 0px 0 0 62px;
}

.en-heading {
  font-family: "Inter";
  font-weight: 600;
  font-size: 45px;
  color: black;
}

.en-heading span {
  background-image: linear-gradient(to right, #00F260, #f79d00, #0575E6, #64f38c);
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent;
  
  background-size: 300%;
  background-position: -100%;  
  
  animation: animatedText 3s infinite alternate-reverse;
}

.en-heading.two {
  display: none;
}


.en-left-lists {
  list-style-type: none;
  margin-top: 40px;
  margin-bottom: 30px;
  padding-left: 0px;
}

.en-left-lists.two {
  display: none;
}

.en-left-lists li {
  display: flex;
  align-items: center;
  color: black;
  font-size: 30px;
  gap: 10px;
}

.en-left-lists li p {
  margin-bottom: 0;
}

.en-left-button {
  font-size: 20px;
  font-family: "Inter";
  font-weight: 600;
  background-color: #ffcc4a;
  color: black;
  outline: none;
  border: none;
  padding: 20px 25px;
  border: 2 px solid #ffcc4a;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

.en-left-button:hover {
  background-color: black;
  color: #ffcc4a;
}

.en-right-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  top: 34px;
  right: 19px;
  border-radius: 10px;

  position: absolute;
  z-index: 0;
}

.en-right-form {
  z-index: 1;
  position: relative;

  background-color: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  border-radius: 6px;
  margin-top: 20px;
}

.form-heading {
  color: #007c23;
  font-family: "Inter";
  font-weight: 600;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.form-description {
  font-size: 23px;
  font-family: "Inter";
  color: black;
  text-align: center;
  margin-bottom: 30px;
}

.form-heading span {
  text-decoration: underline;
  color: #ff0000;
  font-weight: 500;
}

.form-input {
  background: #e3e3e3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset 0px 4px 4px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 20px;
  font-family: "Inter";
  padding: 10px 18px;
  font-weight: 100;
  width: 100%;
  margin-bottom: 26px;
}

.form-input::placeholder {
  color: black;
}

/* Chrome, Safari, Edge, Opera */
.form-input::-webkit-outer-spin-button,
.form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form-input[type=number] {
  -moz-appearance: textfield;
}

.form-submit {
  margin-top: 20px;
  color: white;
  font-family: "Inter";
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 20px;
  background: linear-gradient(
    180deg,
    #970353 0%,
    rgba(53, 4, 195, 0.73) 83.12%
  );
  border: 6px solid #e2e2e2;
  border-radius: 40px;
  padding: 15px 0;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  gap: 15px;
}

.form-submit img  {
  max-width: 20px;
  background-color: white;
  border-radius: 50%;
  color: #5301FD;
  padding: 4px 5px; 
}

@media (max-width: 1300px) {
  .en-header-logo {
    padding: 15px 0 15px 72px;
  }
  .en-container {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 1200px) {
  .en-header-logo {
    padding: 15px 0 15px 52px;
  }

  .en-container {
    column-gap: 5px;
  }
  .en-heading {
    font-size: 40px;
  }

  .en-left-lists li {
    font-size: 25px;
  }

  .en-right-form {
    padding: 15px;
  }

  .form-heading {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .form-description {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .form-input {
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 21px;
    max-width: 320px;
  }

  .form-submit {
    margin-top: 15px;
    font-size: 18px;
  }

  .form-submit img {
    max-width: 15px;
    padding: 3px 4px;
  }
}

@media (max-width: 992px) {
  .en-header-logo {
    padding: 15px 0 15px 32px;
  }

  .en-line {
    width: 98%;
  }

  .en-container {
    padding-top: 74px;
    padding-bottom: 90px;
  }

  .en-back-button {
    left: 32px;
    font-size: 18px;
  }

  .en-heading {
    font-size: 30px;
  }

  .en-left {
    padding: 0 0 0 32px;
  }

  .en-left-lists {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .en-left-lists li {
    font-size: 20px;
  }

  .en-left-button {
    font-size: 16px;
    padding: 12px 15px;
  }

  .en-right-image {
    right: 15px;
    max-width: 300px;
  }

  .en-right-form {
    max-width: 300px;
    margin-right: 15px;
  }
  
  .form-heading {
    font-size: 20px;
  }

  .form-description {
    font-size: 18px;
  }

  .form-input {
    font-size: 14px;
    padding: 8px 12px;
  }

  .form-submit {
    padding: 10px 0;
    font-size: 16px;
    width: 85%; 
  }
}

@media (max-width: 768px) {
  .en-header-logo {
    padding: 15px 0 15px 15px;
  }

  .en-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .en-back-button {
    left: 15px;
  }

  .en-left {
    padding: 0 0 0 15px;
  }
  
  .en-heading {
    font-size: 22px;
  }


  .en-left-lists li {
    font-size: 16px;
  }

  .en-left-lists li img {
    max-width: 20px;
  }

  .en-left-button {
    font-size: 12px;
    padding: 10px 12px;
  }

  .en-right-image {
    display:none;
    max-width: 220px;
    border-radius: 5px;
  }

  .en-right-form {
    margin-top: 0px;
  }

  .form-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .form-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .form-submit {
    margin-top: 5px;
  }
}

@media (max-width: 576px) {
  .en-container {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 43px;

  }

  .en-heading  {
    display: none;
  }

  .en-heading.two {
    display: block;
    font-size: 23px;
    text-align: center;
    margin-top: 36px;
  }

  .en-left-lists {
    display: none;
  }

  .en-left-lists.two {
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 25px;
  }

  .en-left-lists.two li {
    margin-bottom: 10px;
    font-size: 18px;
  }


  .en-line {
    height: 6px;
    width: 100%;
    border-radius: 0;
    background-color: #3504C3;
  }

  .en-back-button {
    top: unset;
    bottom: 20px;
    font-size: 12px;
  }

  .en-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .en-left-button {
    margin-top: 44px;
    font-size: 15px;
    padding: 15px 8px;
  }
  
  .en-right-image {
    position: static;
    display: block;
    width: 100%;
    max-width: unset;
    border-radius: 10px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .en-right-form {
    margin: 0 auto;
    border-radius: 5px;
    max-width: unset;
    margin: 0 30px;
  }

  .form-heading {
    font-size: 22px;
  }

  .form-description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .form-input {
    margin-bottom: 20px;
    max-width: unset;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0px 3.14007px 3.14007px rgba(0, 0, 0, 0.25), inset 0px 3.14007px 3.14007px rgba(0, 0, 0, 0.02);
  }

  .form-submit {
    font-size: 15px;
    margin-top: 10px;
  }
}

@keyframes animatedText{
  to{
    background-position: 100%; 
  }
}

