@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap");
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  overflow-x: hidden;
  background-color: #000000;
}

img {
  width: 100%;
  height: auto;
}

a,
ol,
ul,
li,
p {
  list-style-type: none;
  text-decoration: none;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-family: "Syne", sans-serif;
}

ul {
  padding: unset;
}
.cnt {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header css starts */
header {
}
header .nav {
}
header .nav ul {
  display: flex;
  justify-content: flex-end;
}
header .nav ul li a {
}
/* Header css ends */
/* banner css starts */
section.banner {
  display: flex;
  align-items: center;
  height: 100vh;
}
section.banner .banner_outterwrap {
  background-color: #1a1826;
  padding: 60px;
}
.eyebrow_txt {
  display: flex;
  gap: 5px;
}
.eyebrow_txt span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.eyebrow_txt img {
  width: 14px;
}
section.banner .banner_outterwrap .banner_cntnt {
}
section.banner .banner_outterwrap .banner_cntnt h1 {
  display: flex;
  flex-direction: column;
  color: #d5d2e4;
  font-size: 70px;
  margin: 20px 0 40px;
  font-weight: bold;
  line-height: 1;
}
section.banner .banner_outterwrap .banner_cntnt h1 span {
  color: #e7bd8d;
}
section.banner .banner_outterwrap .banner_cntnt p {
  color: rgb(213, 210, 228);
  width: 100%;
  max-width: 65%;
}
section.banner .banner_outterwrap .banner_cntnt hr {
  color: #000000;
  background-color: #000000;
  width: 100%;
  max-width: 65%;
  margin: 40px 0 60px;
}
/* banner css ends */
/* experience css starts */
section.experience {
  padding: 120px 0;
  background-color: #100f15;
}
.heading h2 {
  font-size: 64px;
  color: #e7bd8d;
  font-weight: bold;
  line-height: 1.2;
  margin: 30px 0 40px;
}
.title_badge {
  position: relative;
  margin-bottom: 40px;
}
.title_badge::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
}
.title_badge h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(231, 189, 141);
  border: 2px solid rgb(231, 189, 141);
  padding: 5px 10px;
  width: fit-content;
  background-color: #000000;
}
.experience_block h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(213, 210, 228);
  margin-bottom: 40px;
}
.experience_block h4 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(213, 210, 228);
  margin-bottom: 40px;
}
.experience_block ul {
  padding-left: 20px;
}
.experience_block ul li {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: rgb(213, 210, 228);
  list-style-type: disc;
}
.experience_block_wrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
/* experience css ends */
/* tools css starts */
section.tools {
  padding: 50px 0;
}
section.tools .heading h2 {
  text-align: center;
  color: rgb(213, 210, 228);
}
section.tools .heading h2 span {
  color: #e7bd8d;
}
section.tools .tool_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.tools .tool_wrap .tool h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(213, 210, 228);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #342f4d8f;
}
section.tools .tool_wrap .tool h3 span {
  color: #342f4d;
  font-size: 32px;
  font-weight: 600;
}
section.tools .tool_wrap .tool p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fafafa;
  margin-bottom: 40px;
  opacity: 0.7;
}
/* tools css ends */
/* fotter css  */
footer {
  background-color: #100f15;
  padding: 60px 0;
}
footer .footer_outterwrap {
  display: flex;
  gap: 60px;
}
footer .footer_outterwrap .footer_cntnt {
  width: 30%;
}
footer .footer_outterwrap .footer_form {
  width: 70%;
}
.heading p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: rgb(213, 210, 228);
  list-style-type: disc;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #342f4d;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  background-color: #0f0f14;
  border: 1px solid #342f4d;
  color: #ffffff;
  font-size: 14px;
}
::placeholder {
  color: #342f4d;
}
textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: vertical;
}

.full-width {
  grid-column: span 2;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 90px;
  background-color: #e7bd8d;
  color: #000;
  border: none;
  border-radius: 0px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  textarea {
    grid-column: span 1;
  }
  .full-width {
    grid-column: span 1;
  }
}
/* fotter css  */
/* query starts */
@media screen and (max-width: 1366px) {
  .cnt {
    max-width: 1024px;
  }
  section.banner .banner_outterwrap .banner_cntnt p {
    max-width: 100%;
  }
  section.banner .banner_outterwrap .banner_cntnt hr {
    display: none;
  }
  section.experience {
    padding: 60px 0;
  }
  .heading h2 {
    font-size: 54px;
    margin: 10px 0 30px;
  }
  .experience_block_wrap {
    gap: 50px;
  }
  .experience_block h3 {
    margin-bottom: 20px;
  }
  .title_badge {
    margin-bottom: 30px;
  }
  section.tools .tool_wrap .tool p {
    margin-bottom: 10px;
  }
  section.tools .tool_wrap {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .cnt {
    max-width: 835px;
  }
  section.banner .banner_outterwrap .banner_cntnt h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 835px) {
  section.banner {
    padding: 0 20px;
  }
  footer .footer_outterwrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .footer_outterwrap .footer_cntnt,
  footer .footer_outterwrap .footer_form {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  section.banner .banner_outterwrap {
    padding: 20px;
  }
  section.banner .banner_outterwrap .banner_cntnt h1 {
    font-size: 30px;
  }
  section.banner .banner_outterwrap .banner_cntnt h1 {
    font-size: 30px;
    margin: 10px 0 20px;
    font-weight: bold;
  }
  section.banner .banner_outterwrap .banner_cntnt p {
    font-size: 14px;
  }
  section.banner {
    padding: 100px 20px;
    height: auto;
  }
  .eyebrow_txt span {
    font-size: 12px;
  }
  .heading h2 {
    font-size: 40px;
    margin: 10px 0 10px;
  }
  .title_badge {
    margin-bottom: 10px;
  }
  .experience_block h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .experience_block h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .experience_block_wrap {
    gap: 30px;
  }
  section.tools .tool_wrap .tool h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  section.tools .tool_wrap .tool p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.7;
  }
}
/* query ends */
