/* font */
@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=PT+Sans+Caption:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "SF Pro";
  src: url("./sf-pro-display/SFPRODISPLAYBOLD.OTF");
  src: url("./sf-pro-display/SFPRODISPLAYREGULAR.OTF");
}
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=PT+Sans+Caption:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sorts+Mill+Goudy:ital@0;1&display=swap");
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF Pro";
  background-color: #000;
  color: #fff;
  font-size: 18px;
}
.content_center {
  display: flex;
  justify-content: center;
}
.limit_width_page {
  width: 1000px;
}
.navbar_main {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.text_center > h1 {
  font-size: 58px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  margin: 0;
  padding: 0;
  animation: fadeInHeadline 1s ease-in-out forwards;
  color: #fff;
}
/* Fade-in keyframes */
@keyframes fadeInHeadline {
  from {
    opacity: 0;
    transform: translateY(20px); /* Optional: Adds slight slide-up effect */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.outline_circle {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 0;
  border: 0;
 
}
.outline_circle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
}
.cover_thumbnail {
  margin-top: 50px;
}
.cover_thumbnail > img {
  width: 1000px;
}
.content_main {
  margin: 50px 0 100px 0;
  display: flex;
  justify-content: space-between;
}
.left_cont > p {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}
.left_cont > p > span {
  color: rgba(255, 255, 255, 0.9);
}
.content_main > .left_cont {
  flex: 2;
}
.content_main > .right_content_NFT {
  flex: 1;
  margin-left: 100px;
}
.right_content_NFT > ul > li {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.col_details > p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 10px;
}
.col_details > p > span {
  color: rgba(255, 255, 255, 0.9);
}
.hr_line_NFT {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 100px 0;
}
.left_cont > ul > li,
.right_content > ul > li {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.max_opac {
  color: rgba(255, 255, 255, 0.9);
}
.mt_0 {
  margin-top: 0;
}
.cta_button {
  display: flex;
  justify-content: center;
  margin: 60px 0 100px 0;
}
.resume_download_btn > button,
.cta_button > button {
  background-color: rgba(255, 255, 255, 0.2);
  outline: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  width: 340px;
  height: 54px;
  border-radius: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px 0 24px;
  cursor: pointer;
}
.resume_download_btn {
  margin-top: 48px;
}
.resume_download_btn > button {
  width: 180px;
}
.cta_button > button:hover,
.resume_download_btn > button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}
.icon_add {
  margin-top: 5px;
}
.cta_button > button > h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}
.mt_2x {
  margin-top: 200px;
}
.gradient_text {
  background: -webkit-linear-gradient(45deg, #2ee6ff, #ef47e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
}
.fade-up-about {
  opacity: 0;
  transform: translateY(20px); /* Slightly below its original position */
  animation: fadeUpAbout 1s ease-out forwards; /* Adjust duration and easing as needed */
}

@keyframes fadeUpAbout {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.offers {
  margin-top: 50px;
}
.offers > p {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.scroll-text {
  opacity: 0;
  transform: translateX(-100px); /* Initially off the left */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-text.visible {
  opacity: 1;
  transform: translateX(0); /* Move into view */
}
.desc_bullets {
  display: flex;
  margin: 50px 0 100px 0;
}
.desc_bullets > div > ul > li {
  background: -webkit-linear-gradient(45deg, #ccffb4, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
}
.dec_p > p {
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}
.text_center {
  display: flex;
  justify-content: center;
}
.grad_text > h1 {
  background: -webkit-linear-gradient(45deg, #ff5df9, #fbff2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 200px;
  margin-bottom: 100px;
}
.bulletS_gaming > ul > li {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px !important;
  font-weight: 600;
  letter-spacing: 1px;
}
.gaming_main {
  display: flex;
}
.left_img_gaming > img {
  width: 600px;
}
.gaming_main > .content_right {
  margin-left: 50px;
}
.mt_4 {
  margin: 60px 0 0 0;
}
.mt_1X {
  margin-top: 100px;
}
.mt_4 > button {
  width: 325px;
}
.desc_music {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.desc_music > ul > li {
  line-height: 30px;
  background: -webkit-linear-gradient(45deg, #ff2c91, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
}
.desc_p > p {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  margin: 50px 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.desc_p_gen_AI > p {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.desc_blog {
  display: flex;
}
.desc_blog > ul > li {
  line-height: 30px;
  background: -webkit-linear-gradient(45deg, #d8cfff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
}
.center_text_AI > h1 {
  font-size: 58px;
  background: -webkit-linear-gradient(45deg, #5fd8ff, #9969ff, #ff4b4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}
.desc_bullets_AI {
  margin-top: 50px;
  display: flex;
}
.desc_bullets_AI > ul > li {
  line-height: 30px;
  background: -webkit-linear-gradient(45deg, #5fd8ff, #ece3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 600;
}
.AI_button > button {
  width: 410px;
}
/* on scroll effect */
.target-class {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.target-class.show {
  opacity: 1;
  transform: translateY(0);
}
.slideUp {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
#openPopup {
  transition: filter 0.3s ease;
}
.blur {
  filter: blur(2px);
}
/* ============= popUp =========== */
.popup {
  display: none;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  width: 80%;
  height: 98%;
  overflow-y: auto;
  box-shadow: rgba(255, 255, 255, 0.5) 0px 7px 29px 0px;
  border-radius: 16px;
  padding: 32px;
}

/* Show popup */
.popup.show {
  display: block;
}

.close_btn {
  display: flex;
  justify-content: flex-end;
}
.popUp_grad_1 {
  background: -webkit-linear-gradient(45deg, #5fd8ff, #f7b643);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
}
.popUp_grad_2 {
  background: -webkit-linear-gradient(45deg, #ff5ff9, #a587ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}
.popUp_grad_3 {
  background: -webkit-linear-gradient(45deg, #5fd8ff, #9969ff, #ff4b4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}
.NFT_image_grid {
  display: flex;
  margin-top: 50px;
}
.NFT_image_grid > div {
  margin-right: 24px;
}
.NFT_image_grid > div > img {
  width: 232px;
}
.limit_popUp {
  width: 1200px;
}
.NFT_desc > h1 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.nft_mt_0 > p {
  margin-top: 16px;
}
.nft_img_desc_group {
  display: flex;
}
.mr_4 {
  margin-right: 100px;
}
.main_content_popUp2 {
  display: flex;
}
.title_popUp2 > h1 {
  background: -webkit-linear-gradient(45deg, #f45ef2, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.AI_img_desc_group {
  display: flex;
}
.AI_img > img {
  width: 500px;
}
.AI_img_flow {
  display: flex;
  justify-content: center;
  margin: 100px 0;
}
.AI_img_flow > img {
  width: 1000px;
}
.nft_bullets > ul > li {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
}

.fancy_line {
  border-top: 1px solid rgb(191, 115, 237);
  width: 100%;
  margin: 50px 0;
  opacity: 0.5;
}
/* ====== Dealdome ==========  */
.hidden_line {
  display: none;
}
.dealdomeText > h1 {
    font-size: 38px;
  max-width: 800px;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
   opacity: 0;
  transform: translateY(20px); /* start slightly down */
  animation: fadeMoveUp 1s ease forwards;
}
@keyframes fadeMoveUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover_img_dealdome{
  margin: 50px 0;
}
.cover_img_dealdome > img{
  width: 1000px;
}
.outlined_track {
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}
.deal_sec_1{
  display: flex;
  padding:  50px;
}
.deal_sec_1 > div {
  flex: 1;
}
.deal_left_content > .text_para > p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.deal_left_content > .text_para > p > .bold_headline {
  font-size: 24px;
  letter-spacing: 1px;
}
.deal_right_content > ul > li {
  list-style: none;
  text-decoration: none;
  margin-bottom: 24px;
  line-height: 24px;
}
.deal_right_content > ul  {
  margin: 0 0;
}
.deal_right_content > ul > li > p {
 margin: 0 0;
}
.deal_right_content > ul > li > p:nth-child(1){
  opacity: 0.6;
}
.mt-4 {
  padding-top: 6px;
  font-style: italic;
}
.mt-15{
  margin-top: 150px;
}
.dealdome_cover_3 > img,
.dealdome_cover_4 > img,
.dealdome_cover_5 > img,
.typography_guides > img {
  width: 1000px;
}
.deal_problem_statement{
  margin: 150px 0 0 0;
}
.deal_problem_statement > p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.our_solution > ul > li {
  line-height: 26px;
}
.dealdome_cover_4{
margin-top: 150px;
}
.design_system{
  margin: 150px 0 0 0;
}
.ideation_wireframe {
  margin-top: 150px;
}
.ideation_wireframe > p {
    margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.dealdome_cover_5{
  margin-top: 48px;
}
.text_center_align > p{
  font-size: 32px;
  text-align: center;
  margin: 88px 0 48px 0;
}
.breakPoint_img > img{
  width: 1000px;
}
.spatial_img{
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.spatial_img > img{
  width: 750px;
}
.modules_breakdown > h1,
.inspiration_dealdome > h1 {
  font-size: 36px;
  margin: 150px 0 24px 0;
}
.modules_breakdown > p,
.inspiration_dealdome > p {
  line-height: 24px;
  font-size: 18px;
  margin: 0 0 48px 0;
}
.modules_schema_img > img {
  width: 1000px;
}
.insp_img {
  margin-bottom: 150px;
}
.insp_img > img{
   width: 1000px;
}
.final_design_img {
margin-top: 48px;
}
.final_design_img > img {
   width: 1000px;
}
.goodBye_msg{
  margin:148px 0;
}
.goodBye_msg > p {
  text-align: center;
  font-size: 48px;
  font-style: italic;
}
/* ====== HiresGulf App ======== */
.hiresGulfText > h1 {
  font-size: 38px;
  max-width: 700px;
  letter-spacing: 1px;
}
.app_cover {
  margin: 50px 0;
}
.app_cover > img {
  width: 100%;
}
.app_details {
  display: flex;
  justify-content: space-between;
}
.app_details > div {
  flex: 1;
}
.app_details > .right_cont {
  margin-left: 10vw;
}
.data_title > .contentTxt > span {
  color: #fff;
  line-height: 30px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
}
.data_title {
  margin-bottom: 16px;
}
.data_title > .title > span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
}
.cover2 {
  display: flex;
  justify-content: center;
  margin: 100px 0 0 0;
}
.cover2 > img {
  width: 750px;
}
.para_center {
  display: flex;
  justify-content: center;
}
.hr_full_length {
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
}
.problem_state {
  display: flex;
  margin: 200px 0 0 0;
}
.problem_state > .left_headline > h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}
.problem_state > div {
  flex: 1;
}
.problem_state > .right_content > p {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: lighter;
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 0;
}
.cust_color > .white {
  color: rgba(255, 255, 255, 0.9);
}
.cust_color > .green {
  color: #c3ffa7;
}
.problem_state > .right_content > .group > p {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: lighter;
  margin: 0;
  padding: 0;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}
.problem_state > .right_content > .group > h4 {
  font-weight: 600;
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: 1px;
}
.process_group > h1 {
  margin: 0;
  font-size: 32px;
  margin-top: 100px;
  font-weight: 600;
  letter-spacing: 1px;
}
.old_ui {
  margin-top: 50px;
}
.old_ui > p {
  font-weight: 600;
  letter-spacing: 1px;
}
.analy_old_ui {
  margin-top: 32px;
}
.analy_old_ui > img {
  margin-right: 24px;
}
.bullets_exp {
  margin-top: 50px;
}
.bullets_exp > ul {
  line-height: 30px;
}
.bullets_exp > ul > li {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}
.user_flow {
  margin: 50px 0;
}
.user_flow > p {
  margin: 0 0 30px 0;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 1);
}
.img_user_flow > img {
  width: 1000px;
}
.para_center {
  display: flex;
  justify-content: center;
  margin: 0;
}
.para_center > p {
  font-size: 18px;
  margin: 0;
  margin-top: 8px;
  text-align: center;
  line-height: 24px;
}
.ui_guides > p {
  margin: 50px 0 25px 0;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 1);
}
.thubnail_img > img {
  width: 100%;
}
.flex_group {
  display: flex;
}
.flex_group > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.desc_thum > p {
  margin-top: 8px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.ml-3 {
  margin-left: 24px;
}
.exp_p > p {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
}
.presentations > p {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 1);
}
.presentation > img {
  width: 100%;
}
.presentation {
  margin: 25px 0 0 0;
}
.final_Design {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 100px 0;
}
.final_design_content,
.final_design_content2 {
  display: flex;
}
.final_design_content2 {
  margin-top: 200px;
}
.left_dummy2 {
  display: flex;
  justify-content: flex-end;
}
.final_design_content > div,
.final_design_content2 > div {
  flex: 1;
}
.right_content {
  margin-top: 80px;
}
.right_content > p {
  color: rgba(255, 255, 255, 0.4);
  line-height: 30px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}
.right_content > ol {
  color: rgba(255, 255, 255, 0.4);
  line-height: 34px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.cover_resume {
  display: flex;
  justify-content: center;
  margin-top: 200px;
}
.cover_resume > img {
  width: 700px;
}
.title_resume > p {
  font-size: 18px;
  margin: 0;
  margin-top: 8px;
  text-align: center;
  line-height: 24px;
}
.custom_resume {
  display: flex;
  margin-top: 200px;
}
.custom_resume > div {
  flex: 1;
}
.left_cover > img {
  width: 450px;
}
.right_content > ul > li {
  line-height: 36px;
}
.job_categories {
  margin: 200px 0 0 0;
  display: flex;
}
.job_categories > div {
  flex: 1;
}
.left_slide_show {
  display: flex;
  justify-content: center;
}
.slider {
  position: relative;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}
.slide {
  min-width: 100%;
  box-sizing: border-box;
}
.slide img {
  width: 100%;
  display: block;
}
.indicators {
  display: flex;
  justify-content: center;
  margin-top: 0px;
}
.indicator {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: rgba(255, 255, 255, 0.8);
}
.right_content_slideShow {
  margin-top: 80px;
}
.right_content_slideShow > ul > li {
  color: rgba(255, 255, 255, 0.4);
  line-height: 34px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.impact_content {
  margin: 100px 0 200px 0;
  display: flex;
}
.impact_content > div {
  flex: 1;
}
.impact_content > .impact_headline > h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}
.desc_para {
  line-height: 30px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  letter-spacing: 1px;
}
.val_ind {
  display: flex;
  align-items: center;
}
.val_ind > .val {
  font-size: 32px;
  font-weight: 600;
}
.img_indi_up {
  margin-left: 8px;
}
.img_indi_up > img {
  width: 16px;
}
.hr_line {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 24px 0;
}
.green_val {
  color: #81ff45;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 12px 0;
}

@keyframes blinkEffect {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.brand_name > p {
  font-size: 24px;
  margin: 0;
}
.nav_links > ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav_links > ul > li > a {
  color: #fff;
  text-decoration: none;
}
.nav_links > ul > li:nth-child(2) {
  margin-left: 32px;
}
.active_nav {
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}
.intro_grad_text {
  margin-top: 88px;
}
.about_content {
  display: flex;
  margin-top: 100px;
}
.left_content {
  margin-right: 100px;
}
.left_content > h3 {
  margin: 0;
}
.left_content > p {
  font-weight: 400;
  line-height: 26px;
  opacity: 0.5;
}
.grad_highlighted {
  background: linear-gradient(to right, #ffffff, #c4c4c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 58px;
  line-height: 75px;
  font-weight: 400;
}
@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
.featured_work_tagline {
  margin-top: 100px;
}
.featured_work_tagline > h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: 1px;
}
.cards_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
.grad_card {
  background: linear-gradient(
    45deg,
    rgba(95, 216, 255, 0.2),
    rgba(153, 105, 255, 0.2),
    rgba(255, 75, 75, 0.2)
  );
  border-radius: 24px;
  width: 100%;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.content {
  padding: 24px;
}
.content > p,
.content3_lock > p {
  padding: 0;
  margin: 0;
  opacity: 0.5;
  font-weight: 400;
}
.content > h3 {
  font-size: 24px;
  font-weight: 400;
  padding: 16px 0;
  margin: 0;
  line-height: 32px;
}
.content > a {
  text-decoration: none;
  color: #fbfbfb;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.5;
}
.content3_lock {
  display: flex;
  justify-content: space-between;
}
.device_mockUp_0{
  display: flex;
  justify-content: flex-end;
  margin-top: 88px;
}
.device_mockUp_1 {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}
.device_mockUp_2 {
  display: flex;
  justify-content: flex-end;
  margin-top: 88px;
}
.device_mockUp_3 {
  display: flex;
  justify-content: flex-end;
  margin-top: 82px;
}
.device_mockUp_4 {
  display: flex;
  justify-content: flex-end;
  margin-top: 88px;
}
.device_mockUp_5 {
  display: flex;
  justify-content: flex-end;
  margin-top: 82px;
}
.device_mockUp_0 > img {
  width: 318px;
}
.device_mockUp_1 > img {
  width: 318px;
}
.device_mockUp_2 > img {
  width: 300px;
}
.device_mockUp_3 > img {
  width: 293px;
}
.device_mockUp_4 > img {
  width: 350px;
}
.device_mockUp_5 > img {
  width: 293px;
}
.lock_content > img {
  height: 18px;
}
.footer_nav_links > ul > li {
  list-style: none;
  text-decoration: none;
}
.footer_nav_links > ul > li > a > img {
  width: 16px;
}
.footer_nav_links > ul > li > a {
  list-style: none;
  text-decoration: none;
}
.low_opc {
  color: #fff;
  opacity: 0.5;
}
.footer_nav_links > ul > li {
  margin-left: 24px;
}
.footer_nav_links > ul {
  display: flex;
}
.grad_card:hover {
  transform: translateY(-2%);
  transition: all 0.8s ease-in;
  cursor: pointer;
}
.grad_card {
  transform: translateY(0%);
  transition: all 0.4s ease-in;
}
.seeWork {
  opacity: 0.5;
}
.grad_card:hover .seeWork {
  opacity: 1;
  text-decoration: underline;
}
.footer_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0 16px 0;
}
.italic_text > p {
  font-style: italic;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
.group_story {
  margin-top: 200px;
}
.group_text_s {
  display: flex;
  margin-top: 80px;
}
.group_text_s > div {
  flex: 1;
}
.caps {
  text-transform: uppercase;
  font-size: 32px;
}
.right_content_s > p {
  color: #fff;
  opacity: 0.5;
  margin: 0;
  line-height: 26px;
  font-weight: 400;
}

/* =============================== */
/* ======= NEO Bank Page  ======== */
/* =============================== */

.diffused_grad {
  background-image: url(./img/Neo/grad_rays.png);
  width: 100%;
  min-height: 500px;
  background-size: cover;
}
.container_center {
  display: flex;
  justify-content: center;
}
.limit_content2 {
  width: 1200px;
}
.headline_block_1 {
  padding: 148px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.glow3 {
  font-family: "Lobster Two", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10vw;
  animation-name: glow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  margin: 0;
}
.lobster-font {
  font-family: "Lobster Two", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 160px;
  margin: 0;
}
.sf-pro-light {
  margin: 0;
  font-size: 160px;
  margin-top: -30px;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}
.fade-in:nth-child(1) {
  animation-delay: 0s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.5s;
}
.fade-in:nth-child(3) {
  animation-delay: 1s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes glow {
  from {
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff;
  }
  to {
    text-shadow: 0px 0px 20px #ffa770, 0px 0px 20px #ffa770;
  }
}
.features_bg {
  background: url(./img/Neo/flow_1.png);
  width: 1139px;
  height: 539px;
  background-size: cover;
  margin-top: 100px;
}
.device_1 {
  display: flex;
  justify-content: center;
  animation: moveUpDown 6s ease-in-out infinite;
}
.device_1 > img {
  height: 772px;
}
.closing_grad {
  background: url(./img/Neo/hero\ glow\ bottom.png);
  width: 100%;
  max-height: 1300px;
  background-size: cover;
}
.content_center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.limit_content_4 {
  width: 60vw;
}
.limit_content_4 > h1 {
  text-align: center;
  font-size: 48px;
  margin-top: 64px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.limit_content_4 > p {
  text-align: center;
  font-size: 24px;
  line-height: 34px;
}
.flex_main {
  display: flex;
  justify-content: space-between;
  margin-top: 100vh;
}
.left_content_neo > h2 {
  font-size: 64px;
  background: linear-gradient(to right, #fff, #7e7e7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m_sec {
  margin-top: 200px;
}
.list_items > ul > li {
  line-height: 60px;
  font-size: 32px;
  opacity: 0.5;
}
.right_img_neo > img {
  width: 40vw;
}
.limit_content2 > h2 {
  font-size: 64px;
  background: linear-gradient(to right, #fff, #7e7e7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sandwich_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
.sandwich_grid > .box_1 {
  width: 592px;
  height: 557px;
  background: linear-gradient(to right, #d7d0ff, #a393ff);
  border-radius: 24px;
}
.sandwich_grid > .box_1 > h3,
.sandwich_grid > .box_2 > h3 {
  margin: 32px 0 0 32px;
  font-size: 24px;
  color: #2e2e2e;
}
.sandwich_grid > .box_2 {
  width: 592px;
  height: 557px;
  background: linear-gradient(to right, #95c1ff, #d3fff5);
  border-radius: 24px;
}
.sandwich_banner {
  width: 100%;
  height: fit-content;
  background: linear-gradient(to right, #cde8ff, #4aeec7);
  border-radius: 24px;
  margin-top: 16px;
  padding-bottom: 48px;
}

.headline_fade > h1 {
  font-size: 140px;
  color: #62bfb4;
  opacity: 0.3;
  padding: 48px 0 0 48px;
  margin: 0;
}
.deals_group {
  display: flex;
  justify-content: space-between;
}
.deals_para {
  margin-left: 48px;
}
.deals_para > p {
  font-size: 24px;
  font-weight: 700;
  color: #2e2e2e;
}
.right_deals_img {
  margin-right: 100px;
  margin-top: -150px;
}
.right_deals_img > img {
  width: 460px;
}
.sandwich_grid > .box_1 > .img_center {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}
.sandwich_grid > .box_2 > .img_right {
  display: flex;
  justify-content: flex-end;
  padding-top: 48px;
}
.img_right > img,
.img_center > img {
  width: 300px;
}
.headline_center_userflow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.headline_center_userflow > .flow1 {
  font-size: 64px;
  background: linear-gradient(to right, #fff, #7e7e7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  margin-bottom: -50px;
}

.tab-bar {
  margin: 100px 0 100px 0;
  border-bottom: 1px solid rgba(221, 185, 130, 0.5);
  width: fit-content;
}
.tab {
  border: none;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  padding-bottom: 8px;
  margin-right: 24px;
}
.mr-0 {
  margin-right: 0;
}
.active-tab {
  border-bottom: 2px solid rgba(221, 185, 130, 1);
}
#tab-image {
  max-width: 100%;
  width: 1000px;
  height: auto;
}
/* Animation for up and down */
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* Adjust this value for movement distance */
  }
  100% {
    transform: translateY(0);
  }
}
.grad3_overlay > img {
  width: 100%;
}
.container_center > img {
  width: 100%;
}
.features_list {
  display: flex;
  justify-content: center;
}
.features_list > img {
  width: 1046px;
}
.text-outline {
  font-size: 19vw;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.final_screens_cover {
  margin-top: 150px;
}
.final_screens_cover > img {
  width: 100%;
}
.thanks_text > p {
  text-align: center;
  font-family: "Lobster Two", sans-serif;
  font-size: 10vw;
  background: linear-gradient(to right, #fff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#backButton {
  position: fixed;
  left: 80px;
  top: 30px;
  display: none; /* Initially hidden */
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Apply blur effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  z-index: 1000;
}
#backButton img {
  width: 20px;
  height: auto;
  margin-right: 4px;
}
/* Smooth visibility transition */
#backButton.show {
  display: block;
}
.glob_pay_illustrator {
  margin: 300px 0 0 0;
  background: url(./img/global_payment_illustrator.png);
  background-size: calc(100% + 200px);
  background-position: -100px center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 1800px;
}
.mobile_dummay {
  display: flex;
  justify-content: center;
}
.mobile_dummay > img {
  width: 464px;
}
.grad_bg {
  background: url(./img/hero_grad_bg\ 1.png);
  min-height: 558px;
  width: 100%;
}
.text_content_center {
  padding-top: 80px;
}
.text_content_center > p {
  text-align: center;
  font-size: 24px;
  margin: 0;
}
.text_content_center > p:nth-child(1) {
  margin-bottom: 8px;
}
.text_content_center > .light_opac {
  font-weight: 400;
  opacity: 0.5;
}
.slide_show_paras > .para_1,
.slide_show_paras > .para_2,
.slide_show_paras > .para_3 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide_show_paras > .para_1 > .icon > img,
.slide_show_paras > .para_2 > .icon > img,
.slide_show_paras > .para_3 > .icon > img {
  width: 34px;
}
.slide_show_paras > .para_1 > .text > p {
  margin: 0;
  color: #8974ff;
  font-size: 48px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  margin-left: 16px;
  text-transform: lowercase;
}
.slide_show_paras > .para_2 > .text > p {
  margin: 0;
  color: #ff50d9;
  font-size: 48px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  margin-left: 16px;
  text-transform: lowercase;
}
.slide_show_paras > .para_3 > .text > p {
  margin: 0;
  color: #e3ff0d;
  font-size: 48px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  margin-left: 16px;
  text-transform: lowercase;
}
.headline_main {
  background: linear-gradient(to bottom, #fff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.5;
  margin: 32px 0 24px 0;
}
.headline_main > .icon > img {
  height: 32px;
}
.slide_show_paras {
  position: relative;
  height: 100px;
  overflow: hidden;
}
.slide_show_paras > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide_show_paras > div.active {
  opacity: 1;
  transform: translateY(0);
}
.companies_experience > .grad_line {
  height: 1px;
  background-image: radial-gradient(circle, #fff, #474747 60%);
  width: 100%;
}
.companies_list {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.companies_list > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.companies_list > div > span {
  opacity: 0.5;
}
.companies_list > div > img {
  height: 32px;
}
.font_change {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
}
.scroll-target {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out,
    filter 0.5s ease-out;
}
.scroll-target.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* ======== Media Query ======== */
@media (max-width: 1244px) {
  .center_content3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #tab-image {
    width: 90%;
    margin-left: 25px;
  }
  .headline_center_userflow > .flow1 {
    margin-bottom: -20px;
  }
  .features_list > img {
    width: 90%;
  }
  .limit_content2 {
    width: 100%;
  }
  .NFT_image_grid > div {
    margin-right: 0;
  }
  .NFT_image_grid {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
  }
  .popup {
    width: 90%;
  }
  .AI_img_flow > img {
    width: 90vw;
  }
  .sf-pro-light {
    margin-top: -10px;
  }
  .sf-pro-dark {
    margin-top: -15px;
  }
  .flex_main {
    margin: 0 5vw;
    margin-top: 70vh;
  }
  .sandwich_grid {
    display: block;
    margin-left: 24px;
  }
  .sandwich_banner {
    margin-left: 24px;
  }
  .headline_fade > h1 {
    font-size: 10vw;
  }
  .right_deals_img {
    margin-right: 50px;
  }
  .sandwich_grid > .box_1,
  .sandwich_grid > .box_2 {
    width: 95%;
    height: fit-content;
  }
  .sandwich_banner {
    width: 93%;
    height: fit-content;
  }
  .sandwich_grid > .box_1 > h3,
  .sandwich_grid > .box_2 > h3 {
    padding-top: 32px;
  }
  .closing_grad {
    min-height: 70vh;
  }
  .limit_content2 > h2 {
    margin-top: 0;
    margin-left: 24px;
  }
  .lobster-font,
  .sf-pro-light {
    font-size: 100px;
  }
  .features_bg {
    width: 800px;
    height: 350px;
  }
  .device_1 > img {
    height: 80vh;
  }
}
@media (max-width: 1050px) {
  .cover_img_dealdome > img,
  .dealdome_cover_3 > img,
  .dealdome_cover_4 > img,
  .dealdome_cover_5 > img,
  .typography_guides > img,
  .breakPoint_img > img,
  .modules_schema_img > img,
  .insp_img > img,
  .final_design_img > img {
    width: 90vw;
  }
  .dealdomeText > h1 {
    margin-left: 32px;
  }
 
  .headline_main {
    font-size: 32px;
  }
  .slide_show_paras > .para_1 > .text > p,
  .slide_show_paras > .para_2 > .text > p,
  .slide_show_paras > .para_3 > .text > p {
    font-size: 20px;
    margin-left: 8px;
  }
  .slide_show_paras > .para_1 > .icon > img,
  .slide_show_paras > .para_2 > .icon > img,
  .slide_show_paras > .para_3 > .icon > img {
    width: 24px;
  }
  .grad_bg {
    background: none;
    width: 100%;
  }
  .sandwich_banner {
    padding-bottom: 16px;
  }
  .right_deals_img {
    margin-top: 0;
  }
  .about_content {
    display: flex;
    flex-direction: column-reverse;
  }
  .about_content > .left_content {
    margin: 60px 60px 0 0;
  }
  .left_titles {
    display: none;
  }
  .brand_name > p {
    font-size: 20px;
  }
  .nav_links > ul {
    margin-block-start: 0;
  }
  .nav_links > ul > li > a {
    font-size: 14px;
  }
  .cards_grid {
    display: flex;
    flex-direction: column;
    width: 500px;
  }
  .limit_width_page {
    width: fit-content;
    margin: 0 25px;
  }
  .cover_thumbnail > img {
    width: 90vw;
  }
  .left_img_gaming > img {
    width: 90vw;
  }
  .gaming_main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .bullets_gaming {
    margin-top: 50px;
  }
  .gaming_main > .content_right {
    margin-left: 0;
  }
  .desc_music,
  .desc_blog,
  .desc_bullets_AI,
  .desc_bullets {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .content_main {
    display: flex;
    flex-direction: column;
  }
  .content_main > .right_content_NFT {
    margin-left: 0;
    margin-top: 0;
  }
  .content_main {
    margin-top: 50px;
  }
  .nft_img_desc_group,
  .main_content_popUp2 {
    display: flex;
    flex-direction: column;
  }
  .popUp2_img {
    margin-bottom: 100px;
  }
  .AI_img_desc_group {
    display: flex;
    flex-direction: column;
  }
  .NFT_image_grid > div > img {
    width: 20vw;
  }
  .problem_state {
    display: flex;
    flex-direction: column;
  }
  .problem_state > .right_content {
    margin-top: 50px !important;
  }
  .analy_old_ui {
    display: flex;
    flex-direction: column;
  }
  .final_design_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .final_design_content2 {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .left_cover > img,
  .img_user_flow > img,
  .app_cover > img,
  .presentation > img,
  .thubnail_img > img,
  .cover2 > img,
  .cover_resume > img {
    width: 90vw;
  }
  .ml-3 {
    margin-left: 0;
    margin-top: 50px;
  }
  .flex_group {
    display: flex;
    flex-direction: column;
  }
  .custom_resume,
  .job_categories,
  .impact_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .impact_group {
    margin-top: 50px;
  }
  .analy_old_ui > img {
    width: 430px;
    margin-top: 32px;
  }
  .app_details {
    display: flex;
    flex-direction: column;
  }
  .app_details > .right_cont {
    margin-left: 0;
    margin-top: 48px;
  }
  .headline_center_userflow > .flow1 {
    margin-bottom: 0;
  }
}
@media (max-width: 866px) {
  .hidden_line {
    margin-top: 48px;
    display: block;
    border-top: 1px dotted #fff;
  }
  .deal_sec_1 {
    display: flex;
    flex-direction: column;
    padding: 25px;
  }
  .goodBye_msg {
    margin: 100px 0;
  }
  .goodBye_msg > p {
    font-size: 32px;
  }
  .deal_right_content > ul {
    padding-top: 48px;
    padding-inline-start: 0px;
  }
  .spatial_img > img {
    width: 80vw;
  }
  .mobile_dummay > img {
    width: 80vw;
  }
  .limit_content_4 {
    margin-top: 0;
    width: 80vw;
  }
  .limit_content_4 > h1 {
    font-size: 32px;
    margin-top: 32px;
  }
  .text_center > h1 {
    font-size: 40px;
  }
  .right_deals_img {
    display: none;
  }
  .text-outline {
    margin-top: 200px;
  }
  .flex_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    margin-top: 60vh;
  }
  .right_img_neo {
    margin-left: 0;
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }
  .right_img_neo > img {
    width: 60vw;
  }
  .glob_pay_illustrator {
    margin-top: 200px;
    min-height: 1000px;
  }
  .center_text_AI > h1 > br,
  .text_center > h1 > br {
    display: none;
  }
  .glow3 {
    font-size: 15vw;
  }
  .features_bg {
    width: 550px;
    height: 250px;
    margin-top: 0;
  }
  .lobster-font,
  .sf-pro-light {
    font-size: 68px;
  }
}
@media (max-width: 600px) {

  .content {
    padding: 24px 24px 0 24px;
  }
  .dealdomeText > h1 {
    font-size: 24px;
  }
  .diffused_grad {
    min-height: 350px;
  }
  .deals_para > p {
    font-size: 20px;
  }
  .sandwich_banner {
    width: 90%;
  }
  .features_bg {
    background: none;
    width: unset;
    height: unset;
  }
  .text_content_center > .headline_main > br {
    display: none;
  }
  #backButton {
    left: 24px;
    top: 24px;
  }
  .left_content_neo > h2 {
    font-size: 48px;
  }
  .list_items > ul > li {
    font-size: 20px;
  }
  .tab {
    font-size: 14px;
  }
  .final_screens_cover {
    margin-top: 48px;
  }
  .right_img > img {
    width: 90vw;
  }
  .cards_grid {
    width: 90vw;
  }
  .cta_button {
    margin-top: 60px;
  }
  .navbar_main {
    margin-top: 32px;
  }
  .footer_brand {
    font-size: 16px;
  }
  .center_text_AI > h1 {
    font-size: 48px;
  }
  .popUp2_img > img,
  .nft_img > img {
    width: 80vw;
  }
  .AI_img > img {
    width: 80vw;
  }
  .hiresGulfText > h1 {
    font-size: 20px;
    max-width: 100%;
    letter-spacing: normal;
  }
  .analy_old_ui > img {
    width: 250px;
  }
  .text_center > h1 {
    font-size: 24px;
    margin: 0 8px;
  }
  .grad_text > h1 {
    margin-bottom: 48px;
  }
}
@media (max-width: 490px) {
  .final_design_content > div > img {
    width: 300px;
  }
  .left_dummy2 > img {
    width: 300px;
  }
  .outline_circle {
    width: 42px;
    height: 42px;
  }
  .cta_button > button {
    width: 280px;
  }
  .resume_download_btn > button {
    width: 180px;
  }
  .img_right > img,
  .img_center > img {
    width: 250px;
  }
  .companies_list {
    display: flex;
    flex-direction: column;
  }
  .deals_para {
    margin-left: 24px;
  }
  .headline_fade > h1 {
    padding: 24px 0 0 24px;
  }
  .companies_list > div {
    margin-bottom: 16px;
  }
  .lobster-font,
  .sf-pro-light {
    font-size: 48px;
  }
  .device_mockUp_1 {
    margin-top: 16px;
  }
  .device_mockUp_2 {
    margin-top: 48px;
  }
  .device_mockUp_3 {
    margin-top: 48px;
  }
  .device_mockUp_4 > img {
    width: 300px;
  }
  .cta_button > button {
    height: 48px;
  }
  .cta_button > button > h3 {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (max-width: 390px) {
  .deal_problem_statement,
  .mt-15,
  .dealdome_cover_4,
  .ideation_wireframe,
  .design_system{
    margin: 100px 0 0 0;
  }
  .modules_breakdown > h1,
  .inspiration_dealdome > h1{
    margin: 100px 0 24px 0;
  }
  .insp_img{
    margin-bottom: 100px;
  }
  .dealdomeText > h1{
    margin-left: 16px;
  }
  .device_mockUp_1 {
    margin-top: 32px;
  }
  .device_mockUp_3 {
    margin-top: 24px;
  }
  .device_mockUp_4 {
    margin-top: 48px;
  }
  .device_mockUp_1 > img,
  .device_mockUp_2 > img,
  .device_mockUp_3 > img,
  .device_mockUp_4 > img {
    width: 80vw;
  }
  .footer_brand {
    font-size: 14px;
  }
  .footer_nav_links > ul > li {
    margin-left: 16px;
  }
}
