* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 100px;
  overflow: hidden;
}
.inner {
  position: relative;
}
.bread {
  position: absolute;
  bottom: -25px;
  right: 76px;
}

.bread-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:var(--red);
  border-radius: 30px;
  color: white;
  padding: 8px 20px;
}
.bread-about p a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.bread-about p {
  margin: 10px;
  font-size: 18px;
}
/* concat-details */
.address-clg {
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.address-clg h1 {
  margin: 0;
  font-weight: bold;
  color: var(--red);
  padding-bottom: 25px;
  font-size: 28px;
}
.addr-locations,
.numbers,
.mails {
  display: flex;
  column-gap: 20px;
}
.numbers {
  padding: 36px 0px 22px;
}

.addr-locations p {
  margin: 0;
  font-size: 20px;
  color: var(--form-label);
  font-weight: 700;
  text-align: start;
}
.numbers div:nth-child(2) a,
.mails div:nth-child(2) a {
  text-decoration: none;
  color: var(--form-label);
  font-size: 20px;
  font-weight: 700;
}
/* form */
.form-address {
  overflow: hidden;
  padding: 50px 0px;
  background-color: #cccccc8f;
}
.form-head {
  overflow: hidden;
  padding: 0px 30px;
}
.cap-sec {
  text-align: end;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
}
#captcha {
  font-size: 22px;
  letter-spacing: 3px;
  float: left;
  margin-left: 10px;
  margin-top: 10px;
  padding: 0px 10px;
  color:var(--red);
  font-weight: bold;
}
.cap-sec button {
  color: white;
  padding: 14px 20px;
  text-align: end;
  border: 1px solid var(--red);
  background-color: var(--red);
}
.contact-button input {
  padding: 15px;
  border: 1px solid #ccc;
  width: 100%;
  box-shadow: none;
  font-weight: bold;
}
.contact-button input:hover {
  border: 1px solid var(--red);
}
.cont-sub button {
  border-color: var(--red);
  background-color:var(--red);
  color: white;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}
.cont-sub button:hover {
  border: 1px solid var(--red);
  color:var(--red);
}
.address-map {
  overflow: hidden;
  margin-top: 60px;
  padding: 20px;
}
.form-address h4 span {
  color: var(--red);
}
.form-head h4 {
  font-size: 30px;
  font-weight: bold;
}
.form-head h4 {
  width: fit-content;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
/* .form-control{
    border:1px solid #ccc;
} */
.contact-input label {
  font-weight: bold;
}

.contact-input input {
  font-weight: bold;
}
.contact-input input:hover {
  box-shadow: none;
  border: 1px solid var(--red)
}
.contact-input textarea {
  font-weight: bold;
}
.contact-input textarea:hover {
  box-shadow: none;
  border: 1px solid var(--red)
}
.contact-input textarea:focus,
.contact-input input:focus {
  border: solid 1px black;
  box-shadow: none;
}
 .contact-input #textBox:hover {
  border: 1px solid var(--red)
}
.contact-img {
  position: relative;
}
.contact-img::after {
  position: absolute;
  content: "";
  height: 345px;
  width: 71%;
  border: 1px solid var(--red);
  background-color: var(--red);
  left: 39px;
  bottom: -15px;
  z-index: -1;
}
.contact-input label:after{
  content:"*";
  color:red;
  font-size: 25px;
}
