@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

:root {
  --des-text: #272727;
  --des-secondary: #8f8f8f;
  --primary-color: #006ff1;
  --primary-heading: #050505;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.only-mobile {
  display: none;
}

/* Header section start */

.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cont {
  width: 100%;
  height: 41px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 41px 140px;
  max-width: 1600px;
}

.header-logo {
  width: 206px;
  height: auto;
}

.nav-links {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  list-style: none;
  column-gap: 25px;
}

.nav-links li {
  font-size: 16px;
  font-weight: 500;
  line-height: 20.16px;
  text-align: left;
}
.nav-links li a {
  color: var(--des-text);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav {
  display: none;
}

/* Header section end */

/* Hero section start */

.contact-hero-section {
  width: 100%;
  /* padding: 200px 140px; */
  overflow-x: clip;
  max-width: 1600px;
  position: relative;
  height: 759px;
}

.contact-hero-bg-img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -999;
  height: 100%;
}

.contact-hero-content {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
}
.contact-hero-heading {
  font-size: 88px;
  font-weight: 500;
  line-height: 92px;
  text-align: left;
  color: #ffff;
  text-transform: uppercase;
}

.contact-hero-sub-heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  width: 481px;
  color: #ffff;
}

/* Hero section End */

/* Contact form container start */

.contact-form-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.contact-form-container {
  width: 100%;
  max-width: 1600px;
  padding: 150px 140px;
  display: flex;
  flex-direction: row;
}

.contact-description {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 35px;
  justify-content: center;
}

.contact-description h2 {
  font-size: 88px;
  font-weight: 500;
  line-height: 92px;
  text-align: left;
  color: var(--primary-heading);
  text-transform: uppercase;
  max-width: 437px;
}

.contact-description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  max-width: 437px;
  color: var(--des-text);
}

.contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.form-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 30px;
}

.form-header p {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 2px solid #d1d1d1;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;

  height: 100%;
  width: 100%;
  column-gap: 27px;
  row-gap: 30px;
}

.first-name-section {
  grid-area: 1 / 1 / 2 / 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 8px;
}

.first-name-section label {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--des-text);
}
.first-name-section input {
  height: 57px;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  border: 1px solid #b7b7b7;
}

.last-name-section {
  grid-area: 1 / 3 / 2 / 5;
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 8px;
}

.last-name-section label {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--des-text);
}
.last-name-section input {
  height: 57px;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  border: 1px solid #b7b7b7;
}

.email-section {
  grid-area: 2 / 1 / 3 / 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 8px;
}

.email-section label {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--des-text);
}
.email-section input {
  height: 57px;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  border: 1px solid #b7b7b7;
}

.phone-section {
  grid-area: 2 / 3 / 3 / 5;
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 8px;
}

.phone-section label {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--des-text);
}
.phone-section input {
  height: 57px;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  border: 1px solid #b7b7b7;
}

.tell-us-section {
  grid-area: 3 / 1 / 5 / 5;
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 8px;
}

.tell-us-section textarea {
  height: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  border: 1px solid #b7b7b7;
  max-width: 100%;
}

.button-section {
  grid-area: 5 / 1 / 6 / 5;

  display: flex;
}

.form-button {
  height: 62px;
  width: 162px;
  background: #006ff1;
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

::-webkit-input-placeholder {
  color: #cfcfcf;
}
:-moz-placeholder {
  color: #cfcfcf;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #cfcfcf;
}
::-ms-input-placeholder {
  color: #cfcfcf;
}

::placeholder {
  color: #cfcfcf;
}

/* Contact form container End */

/* Location section start */

.location-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.location-map-container {
  width: 100%;
  max-width: 1600px;
  display: flex;
  padding: 0px 140px 160px 140px;
  flex-direction: column;
  row-gap: 90px;
}

.india-location-container,
.us-location-container {
  width: 100%;
}
.location-header {
  font-size: 48px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  color: var(--primary-heading);
  padding: 15px 0;
}

.location-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #c4c4c4;
  width: 100%;
  height: 491px;
}

.map {
  width: 55%;
  height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.info-container {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  justify-content: center;
}

.info-card {
  height: 81px;
  width: 294px;
  border: 1px solid #b7b7b7;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding-left: 36px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.info-card i {
  font-size: 35px;
  color: #006ff1;
}

.info-card p:nth-child(1) {
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.info-card p:nth-child(2) {
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

/* Location section End */

/* Footer section start */

.footer-section {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container {
  color: #ffff;
  padding: 91px 140px;
  max-width: 1600px;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-logo {
  width: 256px;
  height: auto;
}

.footer-content-two {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

.footer-content-one p {
  width: 351px;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
}

.active-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 21px;
  width: 300px;
}

.active-link-container p {
  font-size: 25px;
  font-weight: 600;
  line-height: 31.5px;
  text-align: left;
  text-transform: uppercase;
}

.active-link-container li {
  list-style: none;
}

.active-link-container li a {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 21px;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}

.address-container {
  max-width: 229px;
}

.address-container-header {
  font-size: 25px;
  font-weight: 600;
  line-height: 31.5px;
  text-align: left;
  text-transform: uppercase;
}

.address-container p:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.16px;
  text-align: left;
  padding: 21px 0;
}

/* Footer section end */

@media only screen and (min-width: 1024px) and (max-width: 1340px) {
  /* Header section start  */

  .header-cont {
    padding: 41px 65px;
  }

  .nav-links {
    column-gap: 10px;
    column-gap: 14px;
  }

  .nav-links li {
    font-size: 14px;
  }

  .header-cont {
    width: 100%;
    height: 41px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 54px 65px;
  }
  /* Header section End */

  /* Hero section start */

  .contact-hero-heading {
    font-size: 70px;
  }
  .contact-hero-sub-heading {
    font-size: 12px;
    line-height: 21px;
    width: 362px;
  }

  .contact-form-container {
    padding: 100px 65px;
  }

  .contact-description h2 {
    font-size: 63px;
    line-height: 70px;
    text-transform: uppercase;
    max-width: 320px;
  }

  .contact-description p {
    font-size: 12px;
    line-height: 19px;
    max-width: 320px;
  }

  /* Hero section End */

  /* Contact form container Start */

  .form-header p {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    padding: 10px 10px;
    border-bottom: 2px solid #d1d1d1;
  }

  .form-header {
    margin-bottom: 20px;
  }

  .first-name-section label,
  .last-name-section label,
  .email-section label,
  .phone-section label,
  .tell-us-section label {
    font-size: 14px;
  }

  .first-name-section input,
  .last-name-section input,
  .email-section input,
  .phone-section input {
    height: 51px;
  }

  .form-grid {
    row-gap: 27px;
    column-gap: 15px;
  }

  .location-map-container {
    padding: 0px 65px 160px 65px;
  }

  .form-button {
    height: 55px;
    width: 162px;
    font-size: 16px;
  }

  /* Contact form container End */

  /* Location section Start */
  .location-header {
    font-size: 43px;
  }
  /* Location section End */

  /* Footer section start 1024*/

  .footer-container {
    background-color: #000000;
    color: #ffff;
    padding: 91px 65px;
  }

  .footer-content-one p {
    width: 323px;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-align: left;
  }

  .active-link-container li a {
    font-size: 14px;
    padding-bottom: 9px;
  }

  .active-link-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 21px;
    width: 181px;
  }

  .address-container p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    padding: 21px 0;
  }
  /* Footer section End 1024 */
}

@media only screen and (min-width: 1340px) and (max-width: 1439px) {
  /* Header section start  */
  .header-cont {
    padding: 41px 100px;
  }

  .nav-links {
    column-gap: 10px;
    column-gap: 14px;
  }

  .nav-links li {
    font-size: 14px;
  }

  .header-cont {
    width: 100%;
    height: 41px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 54px 160px;
  }

  /* Header section End */

  /* Hero section start */
  .form-header p {
    width: 100%;
    font-size: 18px;
  }
  /* Hero section End */

  /* Footer section start 1024*/

  .footer-container {
    background-color: #000000;
    color: #ffff;
    padding: 91px 160px;
  }
  /* Footer section End 1024 */
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  /* common */
  .only-mobile {
    display: block;
  }
  /* Header section start  */

  .nav-container {
    display: none;
  }

  .header-cont {
    padding: 40px 35px;
  }

  .header-logo {
    width: 99px;
    height: auto;
  }
  /* Header section End  */

  /* Hero section start */

  .contact-hero-heading {
    font-size: 48px;
    line-height: 54px;
  }

  .contact-hero-sub-heading {
    font-size: 11px;
    width: 301px;
    line-height: 16px;
  }

  .contact-hero-section {
    height: 604px;
  }
  /* Hero section End */

  /* Contact form container Start */

  .contact-form-container {
    width: 100%;
    max-width: 1600px;
    padding: 40px 35px;
    flex-direction: column;
    row-gap: 20px;
  }

  .contact-description {
    width: 100%;
    row-gap: 17px;
  }
  .contact-description p {
    font-size: 12px;
    line-height: 20px;
  }

  .contact-description h2 {
    font-size: 44px;
    font-weight: 500;
    line-height: 50px;
  }

  .contact-form {
    width: 100%;
  }

  .form-header p {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    padding: 10px 0px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    row-gap: 0px;
  }

  .first-name-section label,
  .last-name-section label,
  .email-section label,
  .phone-section label,
  .tell-us-section label {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }

  .first-name-section {
    grid-area: 1 / 1 / 2 / 5;
  }

  .first-name-section input,
  .last-name-section input,
  .email-section input,
  .phone-section input {
    height: 49px;
    padding: 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .last-name-section {
    grid-area: 2 / 1 / 3 / 5;
  }

  .email-section {
    grid-area: 3 / 1 / 4 / 5;
  }

  .phone-section {
    grid-area: 4 / 1 / 5 / 5;
  }

  .tell-us-section {
    grid-area: 5 / 1 / 6 / 5;
  }
  .button-section {
    grid-area: 6 / 1 / 7 / 5;
    margin: auto;
  }

  .form-button {
    height: 48px;
    width: 165px;
    background: #006ff1;
    color: white;
    font-size: 15px;
  }

  /* Contact form container End */

  /* Location section Start */

  .location-map-container {
    max-width: 1600px;
    display: flex;
    padding: 0px 35px 40px 35px;
  }

  .location-container {
    flex-direction: column;
    row-gap: 10px;
    height: 100%;
  }

  .map {
    width: 100%;
    height: 300px;
  }

  .info-card {
    height: 72px;
    width: 286px;
    border: 1px solid #b7b7b7;
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding-left: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .info-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 21px;

    padding: 20px 0px;
  }

  .location-map-container {
    row-gap: 36px;
  }

  .location-header {
    font-size: 35px;
  }
  /* Location section End */

  /* Footer section Start */

  .footer-container {
    padding: 57px 35px;
    column-gap: 40px;
    margin-top: 52px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-content-one p {
    width: 154px;
    margin-top: 15px;

    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    text-align: left;
  }

  .footer-content-two {
    flex-direction: column-reverse;
    row-gap: 33px;
  }

  .active-link-container {
    width: auto;
    align-items: start;
    row-gap: 9px;
  }

  .address-container-header {
    font-size: 15px;
    font-weight: 600;
    line-height: 18.9px;
    text-align: left;
    text-transform: uppercase;
  }

  .address-container p:nth-child(2) {
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
    padding: 21px 0;
  }

  .active-link-container p {
    font-size: 15px;
    font-weight: 600;
    line-height: 18.9px;
    text-align: left;
    text-transform: uppercase;
  }

  .active-link-container li a {
    font-size: 10px;
    line-height: 20px;
    padding-bottom: 10px;
  }

  /* Footer section End */

  .mobile-nav {
    height: 100vh;
    width: 100%;
    background: #ffffff;
    right: -100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    transition: right 1s ease-in-out;
    padding: 30px;
  }

  .mobile-nav-header {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-nav-header .logo img {
    width: 150px;
    height: auto;
  }

  .mobile-nav-header i {
    font-size: 20px;
  }

  .mobile-nav .mobile-nav-list {
    transition: opacity 1s ease-in-out;
  }

  .mobile-nav.expanded {
    height: 100vh;
    right: 0%;
    transition: right 1s ease-in-out;
  }

  .mobile-nav.expanded .mobile-nav-list {
    opacity: 1;
    transition: opacity 1s ease-in-out;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

  .mobile-active-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
  }

  .mobile-active-links a {
    color: var(--des-text);
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
  }

  .hamburger {
    cursor: pointer;
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
  }

  .hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .bar {
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .footer-section {
    margin-top: 50px;
  }
}
div#responseMessage {
    width: 100%;
    display: block;
    position: relative;
}
.error,.error-message{
  color:red;
  font-size: 11px;
}
.success-msg{
  color: green;
}