@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Plus Jakarta Sans";
  --secondary-font: "Mulish";
  --primary-color: #8634da;
  --secondary-color: #ffffff;
  --ac-20: #e6f5ff;
  --ac-40: #99d6ff;
  --ac-60: #66c2ff;
  --ac-80: #33adff;
  --ac-120: #007acc;
  --ac-140: #005c99;
  --ac-160: #003d66;
  --ac-180: #000f19;
  --ac-ash: #9ca3af;
  --ac-black: #000000;
  --ac-border: #2b343a;
  --ac-BG: #02070a;
  --text-gradient: linear-gradient(91deg, #fff 0.61%, #695b5b 100%);
  --background: linear-gradient(45deg, #fff, #908c9b);
  --box-shadow: 0px 0px 100px 0px rgba(0, 153, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none !important;
}

p {
  color: var(--ac-ash);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--ac-black) !important;
}

html, body {
  overflow: hidden;
}

.container {
  max-width: 1400px !important;
  margin: auto;
  padding: 0 14px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: 0.3s;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Webkit Scroll bar */

/* Contact Us page Start */

.contact_section {
  padding: 80px 0px;
  background: var(--ac-black);
}

.contact_section .section_title {
  font-size: 48px;
  text-align: center;
  font-family: var(--primary-font);
  margin-bottom: 80px;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact_cards {
  width: 100%;
  padding: 0;
}

.contact_section .card {
  background-color: var(--ac-180);
  border-radius: 16px;
  border: 1px solid var(--ac-border);
  text-align: center;
  box-shadow: none;
  padding: 40px 20px;
  width: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.contact_section .card h3 {
  font-size: 32px;
  font-family: var(--primary-font);
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.6em * 2);
  margin: 20px 0;
}

.contact_section .card p {
  font-size: 17px;
  font-weight: 600;
  color: var(--ac-ash);
  font-family: var(--secondary-font);
  margin-bottom: 22px;
  transition: 0.4s;
}

.contact_section .card a {
  font-size: 17px;
  font-weight: 600;
  color: var(--ac-ash);
  font-family: var(--secondary-font);
  margin-bottom: 22px;
  transition: 0.4s;
}

.contact_section .card .call {
  display: inline-block;
  border: 1px solid var(--ac-border);
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.contact_section .icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: inline-flex;
  margin: auto;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ac-border);
}

.contact_section .icon img {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .contact_section .section_title {
    font-size: 34px;
  }

  .contact_section .card h3 {
    font-size: 24px;
  }
}

/* Contact Us page End */

/* Get in touch Start */

.get_in_touch {
  position: relative;
  width: 100%;
  background: var(--ac-black);
  padding-top: 100px;
}

.get_in_touch .map {
  width: 100%;
}

.get_in_touch .map iframe {
  width: 100%;
  height: 480px;
}

.get_in_touch .container {
    width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.get_in_touch .form_wrapper {
  float: right;
  max-width: 600px;
  background: var(--ac-BG);
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--ac-border);
  pointer-events: painted;
  overflow: hidden;
}

.get_in_touch .form_wrapper .heading {
  display: block !important;
  font-size: 48px;
  font-family: var(--primary-font);
  margin-bottom: 40px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

.get_in_touch .form_wrapper form textarea {
  height: 140px !important;
  margin-bottom: 0px !important;
}

.get_in_touch .form_wrapper form textarea:focus,
.get_in_touch .form_wrapper form input:focus {
  border-color: var(--primary-color);
}

.get_in_touch .form_wrapper form textarea::placeholder,
.get_in_touch .form_wrapper form input::placeholder {
  color: var(--ac-ash);
}

.get_in_touch .form_wrapper form textarea,
.get_in_touch .form_wrapper form input {
  width: 100%;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--ac-border);
  border-radius: 30px;
  padding: 12px 20px;
  background: transparent;
  outline: none;
  box-shadow: none;
  transition: 0.3s;
}

.get_in_touch .form-group {
  display: block;
  margin-bottom: 20px;
}

.get_in_touch .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.get_in_touch .form-group label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 600;
}

.get_in_touch .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--ac-ash);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 8px;
}

.get_in_touch .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.get_in_touch .emailjs_response {
  margin: 0;
}

.get_in_touch #emailjs-response {
 margin-bottom: 10px;
}

.get_in_touch .form_wrapper .submit_btn {
  width: 100%;
  font-size: 18px;
  font-family: var(--secondary-font);
  color: var(--secondary-color);
  font-weight: 500;
  background: var(--primary-color);
  padding: 12px 20px;
  /* margin-top: 20px; */
  border-radius: 30px;
  transition: 0.4s;
}

.get_in_touch .form_wrapper .submit_btn:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

@media screen and (max-width: 992px) {
  .get_in_touch .form_wrapper .heading {
    font-size: 34px;
  }

  .get_in_touch .container {
    position: relative;
    pointer-events: painted;
  }

  .get_in_touch {
    padding-top: 0px;
  }

  .get_in_touch .form_wrapper {
    margin-bottom: 80px;
  }
}
/* Get in touch End */
