@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0069ff;
  --black: #040404;
  --white: #fff;
  --bg: #d6efff;
  --bg2: #edf9ff;
  --border: #d1d1d1;
  --border2: #e7e7e7;
  --text2: #3d3d3d;
  --text3: #6d6d6d;
  --gradient: linear-gradient(94deg, #0069ff 0%, #233886 99.66%);
  --primary-font: "Kanit";
  --secondary-font: "Saira";
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
}

p,
h5,
h6 {
  font-family: var(--secondary-font);
}
/* ..................... */

/* Hero Section Start */
.contact-hero {
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  background-image: url(../img/Hero4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
/* Hero Section End */


/* Contact Start */

.contact {
  position: relative;
  width: 100%;
  margin-top: 80px;
}

.contact .shape {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: -1;
}

.contact .shape svg {
  width: 100px;
  height: 100px;
}

.contact .infonmation .header {
  margin-bottom: 40px;
}

.contact .infonmation .title {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 20px;
}

.contact .infonmation .desc {
  font-family: var(--secondary-font);
    font-weight: 400;
    color: var(--text2);
    font-size: 1rem;
    margin-bottom: 0px !important;
}

.contact .item-wrap .items {
 display: flex;
 align-items: center;
 margin-bottom: 30px;
 gap: 10px
}

.contact .item-wrap .items .item {
 display: flex;
 flex-direction: column;
 gap: 10px
}

.contact .item-wrap h4 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0px;
}

.contact .item-wrap .link,
.contact .item-wrap p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0px;
}

.contact .item-wrap .items svg {
 width: 48px;
 height: 48px;
}

.contact .form {
 border: 1px solid var(--border);
 padding: 20px;
 border-radius: 24px;
 -webkit-border-radius: 24px;
 -moz-border-radius: 24px;
 -ms-border-radius: 24px;
 -o-border-radius: 24px;
}

.contact .form .form-grp {
  width: 100%;
 display: flex;
 align-items: center;
 gap: 10px;
}

.contact .form .form-grp textarea,
.contact .form .form-grp input {
  width: 100%;
  padding: 10px;
  background: #F6F6F6;
  color: var(--black);
  border: none;
  font-size: 16px;
  font-family: var(--secondary-font);
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  margin-bottom: 16px;
}

.contact .form .form-grp textarea {
  margin-bottom: 0px;
  min-height: 160px;
}

.contact .form .form-grp textarea::placeholder,
.contact .form .form-grp input::placeholder {
color: #5D5D5D;
}


.contact .form .send-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  text-align: center;
  gap: 10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  border: none;
  padding: 10px 0px;
  transition: 0.5s;
  width: 200px;
  margin-top: 20px;
}

.contact .form .send-btn svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact .form .send-btn svg path {
  transition: 0.4s;
}

.contact .form .send-btn:hover svg path {
  fill: var(--black);
}

.contact .form .send-btn span {
  position: relative;
  z-index: 1;
  margin: 0px 4px 0px 28px;
}

.contact .form .send-btn:hover span {
  color: var(--white);
}

.contact .form .send-btn img {
  width: 30px;
  z-index: 1;
  position: relative;
}


@media screen and (max-width: 992px) {
  
.contact .form .form-grp {
  flex-direction: column;
}

.contact .infonmation .title {
  font-size: calc(1.375rem + 1.5vw);
}

.contact .item-wrap h4 {
  font-size: 1.2rem;
}
}

/* Contact End */

/* Map Start */
.map {
  width: 100%;
  margin-top: 80px;
}
.map iframe {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}