.mn-contact-page{
  padding: 50px 0;
  overflow: hidden;
}


.mn-contact-page .container{
  width: min(1300px, 92%);
  margin: auto;
}
.mn-contact-page .ts-contact-head{
  text-align: center;
}

.mn-contact-page .contact-min{
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid rgb(196 233 68);
    border-radius: 999px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .5px;
    background: #cde96c;
    color: #030402;
    margin-bottom: 12px;
}

.mn-contact-page .ts-contact-head h2{
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}
.mn-contact-page .ts-contact-head h2::after{
    content: "";
    position: absolute;
    top: 107%;
    left: 46%;
    bottom: 2px;
    width: 125px;
    height: 4px;
    background-color: #cde96c;
}
.mn-contact-page .ts-contact-head p{
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: rgba(255,255,255,.72);
}

.mn-contact-page .ts-info-card{
background: rgba(255, 255, 255, .04);
    border: 1px solid rgb(19 17 17 / 33%);
    padding: 18px 18px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: .25s;
    margin: 10px 0;
}

.mn-contact-page .ts-info-card:hover{
  border-color: rgba(157,182,94,.5);
  transform: translateY(-4px);
}

.mn-contact-page .ts-info-card h3{
  font-size: 20px;
  color: #000;
  margin-bottom: 8px;
}
.mn-contact-page .ts-info-card h3 i{
    color: #638905;
}
.mn-contact-page .ts-info-card p{
  margin: 0;
  font-size: 18px;
  color: rgba(20, 17, 17, 0.841);
  line-height: 1.6;
}

.mn-contact-page .ts-info-card a{
  color: #9db65e;
  text-decoration: none;
}

.mn-contact-page .ts-contact-form{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.mn-contact-page .ts-contact-form h3{
  font-size: 20px;
  margin-bottom: 18px;
}

.ts-contact-form form{
  display: grid;
  gap: 14px;
}

.mn-contact-page .ts-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mn-contact-page .ts-contact-form .mentor-input,
.mn-contact-page .ts-contact-form .txt-mentor{
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: #eefac0;
  outline: none;
  font-size: 18px;
  font-weight: bold;
}
.mn-contact-page .ts-contact-form .mentor-input::placeholder{
    color: #242424;
}
.mn-contact-page .ts-contact-form .mentor-input:focus,
.mn-contact-page .ts-contact-form .txt-mentor:focus{
  border-color: rgba(157,182,94,.7);
}

.mn-contact-page .ts-contact-form textarea{
  resize: none;
}

.mn-contact-page .contact-btn{
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(354deg, #cde96c, #000000);
    color: #f8fffb;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s;
}

.mn-contact-page .contact-btn span{
  font-size: 18px;
  transition: .25s;
}

.contact-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #fff;
}

.mn-contact-page .contact-btn:hover span{
  transform: translateX(4px);
}

.mn-contact-page .ts-map-wrap{
  margin-top: 30px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.mn-contact-page .ts-map-wrap iframe {
    width: 100% !important;
    margin: auto;
    height: 100%;
}
/* responsive */
@media (max-width: 900px){
 .mn-contact-page .ts-contact-grid{
    grid-template-columns: 1fr;
  }

 .mn-contact-page .ts-form-row{
    grid-template-columns: 1fr;
  }

 .mn-contact-page .ts-contact-head h2{
    font-size: 30px;
  }
}
@media (min-width:1200px) and (max-width:1399px) {
  .mn-contact-page .contact-min {
    font-size: 16px;
}
.mn-contact-page .ts-contact-head h2 {
    font-size: 32px;
}
.mn-contact-page .ts-info-card h3 {
    font-size: 18px;
}
.mn-contact-page .ts-info-card p {
    font-size: 16px;
}
.mn-contact-page .ts-contact-form .mentor-input, .mn-contact-page .ts-contact-form .txt-mentor {
    font-size: 16px;
}
}