/* contact page */
.contact-wrapper {
  display: grid;
  gap: 30px;
  align-items: stretch;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.contact_form_area h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  color:#212529;
}
.contact_form_area p {
  font-size: 1rem;
  color: #666;
  line-height: 1.3;
  margin-bottom: 20px;
}
.contact_form_area .form_wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
.form-container textarea {
  min-height: 100px;
  max-height: 150px;
  resize: vertical;
}
.form-container button {
  padding: 0.875rem;
  border-radius: 10px;
  background: #f79f24;
  transition: 0.3s ease-in-out;
}
 
.form-container input[placeholder="Subject"],
.form-container textarea,
.form-container select,
.form-container button {
  grid-column: span 2;
}
.contact_information {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.contact_box {
  display: flex;
  align-items: center;
 flex-direction: column;
  gap: 20px;
  justify-content:center;
  text-align:center;
}
.contact_box .icon_area {
  background: #f6f6fa;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color:#f79f24;
  width: 60px;
  height: 60px;
}
.contact_box h3 {
  font-size: 1.5rem;
  color: #212529; 
}
.contact_box span,
.contact_box a {
  color: #666;
  font-size: 1rem;
}
.contact_box ul {
  display: flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items: center;
}
.contact_box ul li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #323232;
  background: #edf1fc;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.contact_box ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: currentColor;
  height: 100%;
}
.contact_box ul li:hover {
  background:#212529;
  color: white;
}
#map {
    margin-bottom:60px;
  height: 400px;
  width: 100%;
}

@media screen and (min-width: 576px) {
    .contact_box .icon_area {
  font-size: 25px;
  width: 90px;
  height: 90px;
}
.contact_box{
    text-align:start;
    flex-direction:row;
            justify-content: unset;
}
}
@media screen and (min-width: 992px) {
  .contact-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



/*about-page*/

.static-wrapper {
  display: grid;
  row-gap:30px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.static_area {
    row-gap:30px;
  gap: 20px;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.static_area h2,
.static_area h3 {
  color: var(--default);
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 1.5rem;
}
.static_area article{
    color:var(--default);
    font-size:1rem;
    line-height:1.3;
}
.static_area ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.static_area ul li:before {
  content: "✔";
  margin-right: 6px;
  color: var(--main);
}
.static_area figure img {
  max-height: 400px;
  width: 100%;
  margin:0 auto;
  border-radius: 10px;
object-fit: contain;
  height: 100%;
}
.static-page hr {
  height: 1px;
  background: #ddd;
  margin: 10px 0;
}
.social_about {
  margin: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.social_about li a {
  border: 1px solid #e6e6e6;
  color: #565872;
  display: flex;
  font-size: 15px;
  height: 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 5px;
}
.social_about li a:hover {
  background: #fc9615;
  border-color: #fc9615;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .static_area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .static_area ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


 .scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 2px;
  }

  .scrollbar::-webkit-scrollbar-track {
    border-radius: 6px;
    background: #fff;
  }

  .scrollbar::-webkit-scrollbar-thumb {
    background: #dbdadd;
    border-radius: 6px;
  }

  .scrollbar::-webkit-scrollbar-thumb:hover {
    background: #dbdadd;
  }