.contact-info {}

.contact-info>h4 {
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-info>h2 {
  text-transform: uppercase;
  color: var(--orange);
  font-size: 48px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #000;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.contact-info>div>div {
  width: 60px;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  font-size: 16px;
  margin-top: 5px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
}

.contact-info>div>p {
  width: calc(100% - 60px);
}

.contact-info>img {
  width: 60%;
  height: auto;
}

.conatct-form,
.career-form {
  border: 2px solid var(--orange);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.conatct-form input,
.conatct-form>textarea {
  border: 2px solid #e1e1e1;
  outline: none;
  background: #fafafa;
  color: #b6b6b6;
  padding: 20px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  resize: none;
  margin-bottom: 20px;
}

.conatct-form .iti--allow-dropdown {
  margin-bottom: 20px !important;
}

.career-form input,
.career-form textarea {
  border: 2px solid #e1e1e1;
  outline: none;
  color: #b6b6b6;
  padding: 20px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  resize: none;
  background-color: #f9f9f9;
}

.career-form select {
  border: 2px solid #e1e1e1;
  padding: 20px;
  font-size: 16px;
  color: #6c757d;
  background-color: #f9f9f9;
}

.iti__country-list {
  display: block;
}

.iti {
  display: block !important;
}

form .error {
  color: red;
}

.career-form .col-md-6,
.career-form .col-md-12 {
  margin-bottom: 20px;
}

.conatct-form>input::placeholder,
.conatct-form>textarea::placeholder {
  color: #b6b6b6;
}

.submit-btn {
  font-size: 18px;
  width: fit-content;
  border-radius: none;
  width: 150px;
  height: 57px;
  border: none;
  position: relative;
  background: var(--orange);
  margin: 0px 0px 15px 10px;
}

.submit-btn::before {
  position: absolute;
  content: "Submit";
  color: var(--orange);
  font-size: 18px;
  border: 2px solid var(--orange);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 500;
  height: 100%;
  width: 100%;
  top: 8px;
  right: 8px;
}

.contact-info>div>p {
  font-size: 16px;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #f0c8ac;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(255, 210, 177);
}

.iti__selected-flag {
  max-height: 67px;
}

.contact-info-card {
  border: 1px solid #dee2e6 !important;
  border-radius: 1rem;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
   transform: scale(1.03);
   -webkit-transform: scale(1.03);
   -moz-transform: scale(1.03);
   -ms-transform: scale(1.03);
   -o-transform: scale(1.03);
   border: 2px solid #fa7c20 !important;
}

.achievement .contact-info-card {
  padding: 20px 0;
}

.achievement .contact-info-card p{
  padding: 0 20px;
}

.contact-info-card img {
  margin-top: 20px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .contact-info>h4 {
    font-size: 25px;
  }

  .contact-info>h2 {
    font-size: 35px;
  }

  .contact-info>img {
    width: 100%;
  }

  .contact-info-card {
    border: 1px solid #dee2e6 !important;
    border-radius: 1rem;
    padding: 20px 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  }

  .contact-info>div>p {
    font-size: 15px;
  }
}