html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* header */

header {
  padding: 24px 53px;
  background: linear-gradient(
    rgba(19, 17, 17, 0.9) 0%,
    rgba(19, 17, 17, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 117px;
  object-fit: contain;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  display: flex;
}
.menu-list li a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
}
.menu-list li a:hover {
  color: rgb(179, 179, 179);
}
.menu-list li a.get_app_btn {
  height: 26px;
  width: 104px;
  background-color: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.menu-list li a.get_app_btn:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

@media (max-width: 809px) {
  header {
    padding: 20px 15px;
  }
}

/* Main Banner  */
.main_banner {
  height: 100vh;
  background-color: #141212;
  padding: 10px 50px;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}
.main_banner_heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: white;
  width: 460px;
  position: absolute;
  right: 222px;
  margin: 0;
  bottom: 594px;
}
.main_banner_heading span {
  opacity: 0.5;
}

.main-banner-img {
  max-width: 1446px;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding-bottom: 93px;
}

.main-banner-text {
  display: inline-block;
  transform: translateY(0) rotate(0deg);
  will-change: transform;
  position: relative;
}
@media (max-width: 1919px) {
  .main-banner-img {
    gap: 7.6px;
  }
  .main-banner-text {
    height: 231px;
  }
  .main-banner-text.main-banner-text-e {
    height: 191px;
  }
  .main-banner-text.main-banner-text-i {
    height: 185px;
  }
  .main-banner-text.main-banner-text-x {
    height: 185px;
  }

  .main_banner_heading {
    right: 60px;
    bottom: 594px;
    top: unset;
    transform: unset;
    margin: 0;
  }
}

@media (max-width: 1279px) {
  .main-banner-img {
    gap: 3.75px;
  }
  .main-banner-text {
    height: 114px;
  }
  .main-banner-text.main-banner-text-e {
    height: 94px;
  }
  .main-banner-text.main-banner-text-i {
    height: 92px;
  }
  .main-banner-text.main-banner-text-x {
    height: 91px;
  }
  .main_banner {
    padding: 15px 50px;
  }
  .main_banner_heading {
    bottom: 540px;
    right: 114px;
  }
  .main-banner-img {
    padding-bottom: 93px;
  }
}
@media (max-width: 809px) {
  .main_banner_heading {
    bottom: 396px;
    right: 19px;
    width: 337px;
    text-align: right;
    transform: unset;
    top: unset;
    margin: 0;
  }

  .main-banner-img {
    gap: 2.1px;
  }
  .main-banner-text {
    height: 63px;
  }
  .main-banner-text.main-banner-text-e {
    height: 52px;
  }
  .main-banner-text.main-banner-text-i {
    height: 51px;
  }
  .main-banner-text.main-banner-text-x {
    height: 51px;
  }
  .main-banner-img {
    padding-bottom: 83px;
  }
  .main_banner {
    padding: 0 50px;
    background-color: transparent;
    height: 100svh;
  }
}

/* knowledge_transfer_section */

.knowledge_transfer_section {
  height: 100vh;
  width: 95%;
  margin: 0 auto;
  align-items: center;
  display: flex;
}
.knowledge_transfer_section_wrapper {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #3838381a;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 10px;
  border-radius: 10px;
  height: 100%;
}
.knowledge_transfer_section h2,
.knowledge_transfer_section .right-content h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin: 0;
}
.knowledge_transfer_section .right-content h3 {
  text-transform: none;
}
.knowledge_transfer_section .right-content {
  display: flex;
  gap: 50px;
  flex-direction: column;
  max-width: 53%;
  margin: 0 auto;
}

@media (max-width: 1919px) {
  .knowledge_transfer_section .right-content {
    max-width: 90%;
  }
}

@media (max-width: 1279px) {
  .knowledge_transfer_section .right-content {
    max-width: 100%;
  }
  .knowledge_transfer_section_wrapper {
    grid-template-columns: 1fr 1.25fr;
  }
}

@media (max-width: 1199px) {
  .knowledge_transfer_section .right-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .knowledge_transfer_section_wrapper {
    padding: 15px;
  }
}
@media (max-width: 809px) {
  .knowledge_transfer_section_wrapper {
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .knowledge_transfer_section .right-content {
    gap: 15px;
  }

  .knowledge_transfer_section_wrapper {
    padding: 30px 15px;
  }
}

/* your experties css */

.your_experties_section {
  background-color: #141212;
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  justify-content: space-between;
  overflow: visible;
  padding: 50px;
  position: relative;
  width: 100%;
}

.your_experties_section .video_div {
  text-align: end;
  width: 700px;
  margin-top: 50px;
}

.your_experties_section video {
  border-radius: 8px;
}
.your_experties_details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.your_experties_details h3 {
  font-size: 135px;
  line-height: 121.5px;
  font-weight: 400;
  letter-spacing: 1.7px;
  color: white;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1919px) {
  .your_experties_details h3 {
    font-size: 100px;
    line-height: 103px;
    letter-spacing: 1.7px;
  }
  .your_experties_section .video_div {
    width: 500px;
  }
}

@media (max-width: 1440px) {
  .your_experties_section .video_div {
    width: 450px;
    margin-left: -70px;
  }
}
@media (max-width: 1279px) {
  .your_experties_section .video_div {
    width: 74%;
  }
  .your_experties_details h3 {
    font-size: 75px;
    line-height: 80px;
  }
  .your_experties_section {
    flex-direction: column-reverse;
    gap: 100px;
    justify-content: center;
  }
  .your_experties_section .video_div {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .your_experties_section .video_div {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 810px) {
  .your_experties_section .video_div {
    width: 100%;
    margin-left: 0;
  }
  .your_experties_section {
    padding: 100px 15px;
  }
  .your_experties_section {
    padding: 15px;
  }
  .your_experties_details {
    gap: 0;
  }
  .your_experties_details h3 {
    font-size: 40px;
    line-height: 54px;
    letter-spacing: -1.7px;
  }
}

/* knowledge_project_section css */

.knowledge_project_section {
  background-color: white;
  padding: 100px 50px;
}
.knowledge_project_section .video_div {
  /* overflow: hidden; */
  position: relative;
  height: 300px;
}
.knowledge_project_section .video_div video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  will-change: transform;
  /* initial transform */
  transform: translateY(0);
}
.knowledge_project_section .knowledge_hedaing h3 {
  font-size: 135px;
  line-height: 121.5px;
  font-weight: 400;
  letter-spacing: -2.7px;
  color: black;
  text-transform: uppercase;
  max-width: 50%;
  margin: 0;
}

.knowledge_hedaing .video_div {
  margin-left: 15%;
}
.video_with_details.right_block .video_div {
  margin-left: 30%;
}
.knowledge_project_section .video_div {
  width: 469px;
  height: 835px;
  margin-top: -200px;
}
.knowledge_project_section .video_div video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.video_with_details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.video_with_details h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  max-width: 591px;
}
.video_with_details .video_div {
  margin-left: 50px;
}
.video_with_details.right_block {
  margin-bottom: 100px;
}
.video_with_details.right_block h3 {
  margin-left: auto;
}

@media (max-width: 1919px) {
  .knowledge_project_section .knowledge_hedaing h3 {
    font-size: 100px;
    line-height: 120px;
    max-width: 910px;
    letter-spacing: 2px;
  }
  .knowledge_project_section .video_div {
    width: 379px;
    height: 675px;
  }
  .knowledge_hedaing .video_div,
  .video_with_details.right_block .video_div {
    margin-left: 7%;
  }
}
@media (max-width: 1279px) {
  .knowledge_project_section .video_div {
    margin-top: 20px;
  }
  .video_with_details {
    grid-template-columns: 1.5fr 1fr;
  }
  .video_with_details.right_block {
    grid-template-columns: 1fr 1fr;
  }
  .video_with_details.right_block .video_div {
    margin-left: 13%;
  }
}
@media (max-width: 1279px) {
  .knowledge_project_section .knowledge_hedaing h3 {
    font-size: 75px;
    line-height: 121.5px;
    max-width: 76%;
  }

  .knowledge_hedaing .video_div {
    margin: 0 auto -140px auto;
    right: 0;
  }
  .knowledge_project_section .video_div {
    width: 337px;
    height: 598px;
    margin-left: auto;
    position: relative;
    right: 120px;
  }
  .video_with_details.right_block .video_div {
    margin: 0 auto;
    right: 0;
  }
  .video_with_details.right_block {
    margin-bottom: 100px;
    flex-direction: column-reverse;
  }
  .video_with_details {
    display: flex;
    margin: 0;
    flex-direction: column;
  }
  .video_with_details h3 {
    max-width: 50%;
    width: 100%;
    margin-right: auto;
  }
  .video_with_details.right_block h3 {
    margin-left: auto;
    margin-right: unset;
  }
}

@media (max-width: 1199px) {
  .knowledge_project_section .knowledge_hedaing h3 {
    font-size: 75px;
    line-height: 121.5px;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .knowledge_project_section {
    padding: 100px 15px;
  }
  .knowledge_project_section .knowledge_hedaing h3 {
    font-size: 40px;
    line-height: 64px;
    letter-spacing: -1px;
  }
  .video_with_details h3 {
    max-width: 90%;
  }
  .knowledge_project_section .video_div {
    right: 0;
  }
  .knowledge_project_section .video_div {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .knowledge_project_section {
    padding: 100px 15px;
  }

  .knowledge_project_section,
  .video_with_details h3 {
    max-width: 100%;
  }
}
.video_with_details.right_block {
  margin-bottom: 50px;
}
/* what_we_do css */

.what_we_do {
  padding: 100px 50px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.what_we_do .main-heading {
  font-size: 135px;
  line-height: 140px;
  font-weight: 400;
  letter-spacing: -2.7px;
  color: white;
  margin-top: 0;
  margin-bottom: 0;
}
.services-list h3 {
  font-size: 135px;
  line-height: 140px;
  font-weight: 400;
  letter-spacing: -2.7px;
  color: white;
  text-decoration: underline;
  margin: 0;
}
.content-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}

@media (max-width: 1919px) {
  .services-list h3,
  .what_we_do .main-heading {
    font-size: 100px;
    line-height: 120px;
    letter-spacing: 1.7px;
  }
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 1279px) {
  .services-list h3,
  .what_we_do .main-heading {
    font-size: 75px;
    line-height: 87.5px;
  }
}
@media (max-width: 809px) {
  .services-list h3,
  .what_we_do .main-heading {
    font-size: 40px;
    line-height: 54px;
    letter-spacing: 0;
  }
  .what_we_do {
    padding: 15px;
  }
}

/* creation section css  */

.creation-section {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  overflow: visible;
}
.creation-wrapper {
  background: white;
  border-radius: 10px;
  padding: 50px 75px 75px;
  width: 100%;
  position: relative;
  overflow: hidden;
  position: sticky;
  top: 50px;
  height: 545px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.creation-wrapper:nth-child(1) {
  z-index: 1;
}
.creation-wrapper:nth-child(2) {
  z-index: 2;
  top: 90px;
}
.creation-wrapper:nth-child(3) {
  z-index: 3;
}

.content-wrapper {
  display: flex;
  align-items: end;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 45px;
  line-height: 54px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  margin: 0;
}

.number {
  font-family: "Epilogue", sans-serif;
  font-size: 307px;
  line-height: 168px;
  font-weight: 600;
  color: #9c5bff;
}

.creation-section .heading {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: #141212;
  margin: 5px 0;
  letter-spacing: -0.24px;
}

.description {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.24px;
  color: #141212;
  max-width: 680px;
  opacity: 0.4;
  margin-bottom: 0;
  margin-top: 10px;
}

@media (max-width: 1279px) {
  .creation-section {
    padding: 0 25px;
  }
 
 }

@media (max-width: 809px) {
  .creation-section {
    padding: 0 15px;
  }
  .content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 45px;
    flex-direction: column;
  }
  .creation-wrapper {
    justify-content: flex-start;
    padding: 50px 15px 15px;
    gap: 20px;
    height: 545px;
  }
  .number {
    font-size: 100px;
    line-height: 55px;
  }
  .section-title {
    letter-spacing: 0;
  }
}

/* craft section css */

.craft-section {
  padding: 150px 50px;
  display: flex;
  background-color: #141212;
  gap: 10px;
}

.craft-heading {
  width: 359px;
  flex-shrink: 0;
}
.craft-heading h3 {
  font-size: 45px;
  line-height: 54px;
  font-weight: 400;
  color: white;
  margin: 0;
  position: sticky;
  top: 150px;
  max-width: 300px;
  letter-spacing: 2px;
}
.craft-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 10px 25px;
}

.craft-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.craft-box h4 {
  font-size: 12px;
  letter-spacing: -0.24px;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  margin: 0;
}
.craft-box-img {
  height: 435px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.craft-box-img img {
  max-width: 280px;
  width: 100%;
}
.bg-purple {
  background-color: #e1dbfd;
}
.bg-green {
  background-color: #47b172;
}
.bg-skyblue {
  background-color: #90c3cd;
}
.bg-lightblue {
  background-color: #90c3cd;
}
.bg-yellow {
  background-color: #f8b84f;
}
.bg-peach {
  background-color: #ffeae3;
}
.bg-orange {
  background-color: #ff764a;
}
.bg-white {
  background-color: #fcfcfc;
}
.bg-midblue {
  background-color: #8da4e0;
}

@media (max-width: 1919px) {
  .craft-heading h3 {
    font-size: 35px;
    line-height: 44px;
    max-width: 100%;
  }
  .craft-box-img {
    height: 270px;
  }

  .craft-box-img img {
    max-width: 280%px;
    width: 100%;
  }
  .craft-heading {
    width: 360px;
    flex-shrink: 0;
  }
}

@media (max-width: 1600px) {
  .craft-box-img img {
    max-width: 180px;
    width: 100%;
  }
  .craft-heading {
    width: 234px;
  }
}

@media (max-width: 1279px) {
  .craft-section {
    flex-wrap: wrap;
    gap: 30px;
  }
  .craft-heading {
    width: 100%;
  }
  .craft-box-img {
    height: 220px;
  }
  .craft-box-img img {
    max-width: 220px;
    width: 100%;
  }
  .craft-heading h3 {
    font-size: 45px;
    line-height: 54px;
  }
}

@media (max-width: 991px) {
  .craft-box-img {
    padding: 30px;
  }
  .craft-box-img img {
    max-width: 180px;
    width: 100%;
  }
}

@media (max-width: 809px) {
  .craft-heading h3 {
    max-width: 100%;
  }
  .craft-section {
    padding: 15px;
  }
  .craft-box-img {
    height: 170px;
    padding: 0;
  }
  .craft-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 10px 25px;
  }
  .craft-heading h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.7px;
  }

  .craft-box-img img {
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  .craft-box-img img {
    max-width: 107px;
  }
}

/* tekflix value section css */

.tekflix-value-section {
  height: 100vh;
  padding: 100px 50px;
  display: grid;
  place-content: center;
}
.tekflix-value-details {
  max-width: 362px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.tekflix-value-section h3 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.24px;
  color: white;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 991px) {
  .tekflix-value-section {
    padding: 50px;
  }
}

/* form_section */
.form_section {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  position: relative;
  margin: 50px 50px 50px 50px;
  height: calc(100vh - 100px);
}
.tekflix-t-img {
  position: absolute;
  left: 10px;
  top: 110px;
  transform: rotate(341deg);
}
.tekflix-e-img {
  position: absolute;
  left: 20%;
  bottom: 0;
  transform: rotate(341deg);
  opacity: 0.8;
}
.tekflix-k-img {
  position: absolute;
  left: 30%;
  top: 20%;
  transform: rotate(341deg);
  opacity: 0.8;
}
.tekflix-f-img {
  position: absolute;
  right: 34%;
  top: 10%;
  transform: rotate(341deg);
}
.tekflix-l-img {
  position: absolute;
  right: 34%;
  bottom: 5%;
  transform: rotate(341deg);
}
.tekflix-i-img {
  position: absolute;
  right: 10%;
  bottom: 10%;
  transform: rotate(341deg);
}
.tekflix-x-img {
  position: absolute;
  right: 0;
  top: 15%;
  transform: rotate(25deg);
}
.btn_grp {
  position: relative;
  width: 300px;
}
.form_section_inner,
.footer_inner {
  -webkit-backdrop-filter: blur(60px);
  align-content: center;
  align-items: center;
  backdrop-filter: blur(60px);
  background-color: #37373766;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.form_section_inner {
  border-radius: 10px 10px 0 0;
  padding: 50px 25px 0;
  gap: 0;
  height: 86vh;
  position: relative;
}
.form_section_inner:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff3;
}
.footer_inner {
  border-radius: 00px 0px 10px 10px;
}
.form_header_box {
  width: 100%;
  position: relative;
  display: flex;
  gap: 10px;
  padding-top: 50px;
  flex-direction: column;
  flex-wrap: nowrap;
}
.form_header_box h5 {
  font-size: 135px;
  font-weight: 400;
  line-height: 121px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.32px;
}
.form_header_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  width: 300px;
}
.form_main {
  margin: 60px 0;
  height: 100%;
  display: flex;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: #ffffff;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 12px;
  background-color: #2b292e7a;
  border: 1px solid transparent;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: "Inter", "Inter Placeholder", sans-serif;
  box-shadow: 2px 6px 20px #00000020;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #0099ff;
  background: rgba(187, 187, 187, 0.15);
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.submit-btn {
  height: 100%;
  width: 100%;
  padding: 13px 12px;
  background-color: rgb(51, 51, 51);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  font-family: "Inter", "Inter Placeholder", sans-serif;
}
#contactForm {
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  position: relative;
}

/* form_section */
/* footer  */
footer {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  margin-top: -2px;
}
.footer_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_logo span {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0;
}
.footer_logo .anshar-labs-logo {
  width: 70px;
}
.footer_inner {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: min-content;
  justify-content: space-between;
  min-height: 85px;
  overflow: visible;
  padding: 0 25px;
  position: relative;
}
.footer .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}
.menu {
  gap: 20px;
}
.social_menu {
  gap: 40px;
}
li {
  list-style: none;
}

.social_icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(1);
}
.social_menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-decoration: none;
  color: #ffffff;
}
/* footer  */

@media (max-width: 1919px) {
  .footer_inner {
    flex-direction: column;
    min-height: 125px;
    padding: 10px 25px;
    justify-content: center;
  }
  .footer .menu {
    gap: 20px;
  }
}
@media (max-width: 1279px) {
  .form_header_box h5 {
    font-size: 95px;
    line-height: 90px;
  }
  .form_header_box {
    padding-top: 25px;
  }
  .form_section_inner {
    padding: 25px 25px 0;
  }
  .form_main {
    margin: 40px 0;
  }
}

@media (max-width: 991px) {
  .footer_inner {
    min-height: unset;
    gap: 20px 10px;
    justify-content: flex-start;
    padding: 15px 25px;
  }

  .footer .menu {
    gap: 15px;
  }
}
@media (max-width: 809px) {
  .form_section {
    margin: 0 15px 50px 15px;
    height: auto;
  }
  .form_section_inner {
    height: auto;
  }
  .form_main {
    margin: 50px 0;
  }
  .tekflix-k-img,
  .tekflix-f-img {
    display: none;
  }
  .tekflix-x-img,
  .tekflix-t-img {
    transform: unset;
  }
  .tekflix-i-img {
    right: 40px;
  }
  .tekflix-l-img {
    right: 34%;
  }
  .tekflix-e-img {
    left: 80px;
  }
  .form_header_box h5 {
    font-size: 40px;
    line-height: 35px;
  }
  .social_menu {
    flex-direction: column !important;
    gap: 15px;
  }
  .footer_logo {
    flex-direction: column;
    gap: 10px;
  }
}

.success-msg {
  display: none;
  background-color: #47b172;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  z-index: 99;
}
.success-msg p {
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
}
.closebtn {
  cursor: pointer;
  font-size: 24px;
}

.error-msg {
  display: grid;
  place-content: center;
  height: 100vh;
  text-align: center;
  color: white;
}
.error-msg h1 {
  font-size: 64px;
  margin-top: 0;
  margin-bottom: 25px;
}
.error-msg .desc {
  font-size: 18px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 30px;
  opacity: 0.8;
}
.error-msg .btn {
  color: #9c5bff;
  text-decoration: underline;
  margin: 0 auto;
}

@media (max-width: 809px) {
  .error-msg h1 {
    font-size: 54px;
    margin-bottom: 25px;
  }
}

/* .mac-os input[type="text"],
.mac-os input[type="email"],
.mac-os textarea {
  box-shadow: 2px 6px 20px #ffffff20;
} */

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:not(:focus) {
  background-color: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
  -webkit-transition: background-color 5000s ease-in-out 0s,
    color 5000s ease-in-out 0s !important;
}

input:-moz-autofill {
  background-color: transparent !important;
  color: #ffffff !important;
  -moz-text-fill-color: #ffffff !important;
}

input:-ms-autofill {
  background-color: transparent !important;
  color: #ffffff !important;
  -ms-text-fill-color: #ffffff !important;
}
