/*form styling*/

:root {
    --blue--: #3A8DDE;
    --yellow--: #fbb03b;
  }

  body {
    color: #65707e;
  }



input[type="file"]
{
  width: 35%;
  padding: 18px;
  border: 1px solid gray;
  border-radius: 16px;
}

input[type="text"],
[type="tel"],
[type="email"],
select,
textarea {
  width: 93%;
  padding: 18px;
  border: 1px solid gray;
  border-radius: 16px;
  resize: vertical;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgb(119, 119, 119) 50%), linear-gradient(135deg, rgb(119, 119, 119) 50%, transparent 50%), radial-gradient(#ddd0 70%, transparent 72%);
    background-position: calc(97% - 25px) calc(1em + 11px), calc(97% - 18px) calc(1em + 11px), calc(97% - 0.95em) 1em;
    background-size: 7px 7px, 8px 7px, 2em 2em;
    background-repeat: no-repeat;
    cursor: pointer;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type="submit"] {
    background-color: #318cdd;
    cursor: pointer;
    border: 1px solid white;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 46px;
    border-radius: 24px;
    letter-spacing: 0.07rem;
    transition: 0.3s ease-in-out;
}

input[type="submit"]:hover {
    transform: scale(1.2);
}

.container {
  /* border-radius: 20px;
  border: 1px solid #dadada;
  background: #ffffff;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff; */
  padding: 0px 20px 60px 20px;
  /* width: 80%; */
  /* margin: 60px auto; */
  display: block;
}

.upload-doc {
  float: right;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 100%;
  /* margin-top: 6px; */
  margin-bottom: 12px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* new style */

/* .nav-link {
    color: #65707e;
} */

.contact-cont {
    text-align: center;
}

.contact-us {
    text-align: center;
    font-size: 36px;
    color: #318cdd;
}

.contact-title {
    color: #65707e;
    font-size: 52px;
    text-align: center;
}

.contact-body-img {
    max-width: 100%;
}

.contact-mob-img {
  display: none;
}

.body-wrap-1 {
    /* display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-auto-rows: minmax(100px, auto);
    grid-template-areas: 'bodCont form';
    margin: 0 5%; */
}

.cnt-frm {
    grid-area: form;
    padding-left: 8px;
}

.body-cont {
    grid-area: bodCont;
}

.body-title {
    font-size: 36px;
    color: #318cdd;
    margin-bottom: 12px;
}

.form-title {
    font-size: 36px;
    color: #318cdd;
    margin-bottom: 14px;
    margin-top: 48px;
}

.body-par {
    margin-top: 20px;
    margin-right: 20%;
}

.form-row-ext {
    width: 98.5%;
    color: #65707e;
}

.nav-logo {
  display: none;
}

.nav-logo-2 {
  display: block;
  margin-left: 4%;
}

.bar {
  background-color: #65707e;
}

.type-form {
  height: 740px;
  margin-top: 1rem;
}

.logo-click-1 {
  display: none;
}

.logo-click-2 {
  display: block;
}

@media (max-width: 1500px) {
  .form-row-ext {
    width: 100%;
  }

  input[type="file"] {
    width: 50%;
  }

}

@media (min-width:1029px) {
  .nav-link{
      color: #65707e;
  }

  .body-wrap-1 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: minmax(100px, auto);
    grid-template-areas: 'bodCont form';
    margin: 0 10%;
}



}

@media (max-width: 1028px){
  .body-cont {
    text-align: center;
  }

  .body-par {
    margin:0 2rem;
  }

  .body-wrap-1 {
    justify-items: center;
  }

  .submit-adjust {
    text-align: center;
  }

  input[type="file"] {
    width: 93%;
  }

  .form-row-ext {
    width: 97.5%;
  }

  .form-title {
    text-align: center;
  }

  .contact-us {
    font-size: 28px;
  }

  .contact-title {
    font-size: 32px;
  }

  .body-title {
    font-size: 28px;
  }

  .form-title {
    font-size: 22px;
  }

  .nav-logo-2 {
    margin-left: 8%;
    width: 220px;
}

.navbar {
  justify-content: flex-start;
  margin-top: 7%;
}

.contact-body-img{
  display: none;
}

.contact-mob-img{
  display: block;
  width: 100%;
}
}





/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .col-25,
  .col-75
  {
    width: 100%;
    margin-top: 0;
  }

  input[type="submit"]{
    width: 98%;
  }

  input[type="email"], 
  input[type="tel"]{
    width: 85%;
  }

  input[type="file"]{
    width: 85.5%;
  }

  .form-row-ext {
    width: 94.5%;
  }
}

@media screen and (max-width: 800px) {
  .container {
    width: 100%;
    padding: 0 0 60px 0;
  }
}

@media screen and (max-width: 800px) {
  input[type="text"],
  select,
  textarea {
    width: 85%;
  }
}




