/* font family */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

:root {
  --primary: #e2fe98;
  --secondary: #4a1995;
  --light: #c0fb5b;
  --text: #737373;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Syne", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
.container {
  max-width: 1600px !important;
  padding: 0px !important;
}
p,
ul {
  margin: 0px !important;
}

/* top header */
.uiux_crafts_top_header {
  background: linear-gradient(90.3deg, #6836b7 -6.91%, #3c0b84 121.42%);
  padding: 10px 0px;
}
.uiux_crafts_top_header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uiux_crafts_top_header_wrapper p {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  color: white;
  text-transform: capitalize;
}
.uiux_crafts_top_header_wrapper p span {
  font-weight: 700;
  color: var(--light);
}
.uiux_crafts_top_header_links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.uiux_crafts_social_links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.uiux_crafts_social_links a {
  color: white;
  font-size: 20px;
  opacity: 0.5;
}
.uiux_crafts_social_links a:hover {
  opacity: 1;
  color: white;
}
a.uiux_crafts_top_header_button {
  background: var(--primary);
  border-radius: 50px;
  padding: 9.5px 18px;
  text-decoration: none;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
}
a.uiux_crafts_top_header_button:hover {
  color: var(--secondary);
}
a.uiux_crafts_top_header_button i {
  margin-left: 2px;
  transform: rotate(-45deg);
}

/* header */
.uiux_crafts_header {
  position: sticky;
  margin-bottom: -104px;
  z-index: 2;
  top: 0;
}
.uiux_crafts_header_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 10;
  padding: 40px 0;
}
.uiux_crafts_header_toggle_menu {
  width: 40px;
  height: 4px;
  border-radius: 10px;
  background: var(--secondary);
  position: relative;
  transition: 0.3s ease;
  top: 18px;
  right: 2px;
  margin-left: auto;
}
.uiux_crafts_header_toggle_menu::before,
.uiux_crafts_header_toggle_menu::after {
  content: "";
  width: 80%;
  height: 4px;
  background: var(--secondary);
  border-radius: 10px;
  position: absolute;
  right: 0;
  transition: 0.3s ease;
}
.uiux_crafts_header_toggle_menu::before {
  top: -10px;
}
.uiux_crafts_header_toggle_menu::after {
  bottom: -10px;
  width: 50%;
}
.uiux_crafts_header_toggle_close_icon .uiux_crafts_header_toggle_menu {
  background-color: transparent;
}
.uiux_crafts_header_toggle_close_icon .uiux_crafts_header_toggle_menu::before {
  transform: rotate(45deg);
  top: 0;
  width: 100%;
}
.uiux_crafts_header_toggle_close_icon .uiux_crafts_header_toggle_menu::after {
  transform: rotate(-45deg);
  bottom: 0;
  width: 100%;
}
.uiux_crafts_header_toggle_menu_overlay {
  display: none;
  transition: 1.2s all ease;
  position: absolute;
}
.uiux_crafts_header_toggle_menu_active {
  display: block;
  transition: 1.2s all ease;
  width: 250px;
}
.uiux_crafts_header_toggle_menu_icon {
  padding: 10px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50px;
  transition: 0.5s all ease;
  right: 0;
  overflow: hidden;
  position: absolute;
}
.uiux_crafts_header_toggle_close_icon {
  width: 300px;
  height: 450px;
  padding: 30px;
  transition: 0.5s all ease;
  border-radius: 30px;
}
.uiux_crafts_header_toggle_menu_list {
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 395px;
}
.uiux_crafts_header_toggle_menu_list span {
  text-transform: uppercase;
  margin-bottom: 13px;
  display: block;
}
.uiux_crafts_header_toggle_menu_item a {
  text-decoration: none;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  transition: 0.5s all ease;
}
.uiux_crafts_header_toggle_menu_item a:hover {
  color: var(--secondary);
  padding-left: 10px;
  transition: 0.5s all ease;
}
.uiux_crafts_header nav {
  position: relative;
}
.uiux_crafts_header_sticky a.uiux_crafts_header_logo {
  opacity: 0;
  visibility: hidden;
}
.uiux_crafts_header_sticky .uiux_crafts_header_toggle_menu_icon {
  box-shadow: 0 0 8px 0px #b6b6b6;
}

/* banner */
.uiux_crafts_banner {
  border-top: 3px solid var(--primary);
  padding: 31px 0 49px;
  background: url(/images/banner.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.uiux_crafts_banner:before {
  content: "";
  background: #1c1c1c;
  opacity: 0.77;
  position: absolute;
  inset: 0;
}
.uiux_crafts_banner_wrapper {
  position: relative;
  height: 80vh;
  z-index: 1;
}
.uiux_crafts_scroll_up {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translate(-50%, 0);
  z-index: 2;
}
.uiux_crafts_scroll_up a {
  font-size: 18px;
  font-weight: 700;
  line-height: 21.6px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  justify-content: center;
}
.uiux_crafts_scroll_up a:hover {
  color: white;
}
.uiux_crafts_banner_text {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
}
.uiux_crafts_banner_text .uiux_crafts_title {
  font-weight: 400;
  color: white;
}
.uiux_crafts_banner_text .uiux_crafts_title:before {
  left: 50%;
  transform: translate(-50%, 0);
}
.uiux_crafts_banner_text h1 {
  color: white;
  font-size: 54px;
  font-weight: 700;
  line-height: 86px;
}
#uiux_crafts_changing_text {
  color: var(--light);
}

/* about */
.uiux_crafts_about_wrapper {
  display: flex;
  gap: 137px;
}
.uiux_crafts_about {
  padding: 160px 0;
  background: url(/images/texture.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.uiux_crafts_title {
  color: #151219;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  position: relative;
  padding-bottom: 12px;
  text-transform: capitalize;
}
.uiux_crafts_title:before {
  content: "";
  background: url(/images/title_curve.svg) no-repeat;
  background-size: contain;
  width: 122px;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.uiux_crafts_about_wrapper_image img {
  margin-top: 73px;
  max-width: 308px;
}
.uiux_crafts_about_wrapper_content h2 {
  color: #151219;
  font-size: 54px;
  font-weight: 700;
  line-height: 86px;
  text-transform: capitalize;
}
.uiux_crafts_about_wrapper_content p {
  padding: 30px 0 40px;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}
.uiux_crafts_theme_button {
  display: inline-block;
  background: var(--light);
  border-radius: 50px;
  padding: 20.5px 41px;
  text-align: center;
  text-decoration: none;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  position: relative;
}
.uiux_crafts_theme_button:hover {
  color: var(--secondary);
}
.uiux_crafts_theme_button i {
  margin-left: 6px;
  transform: rotate(-45deg);
}

/* services */
.uiux_crafts_services {
  padding: 160px 0;
}
div#v-pills-tab {
  max-width: 461px;
  margin-right: 60px;
  position: relative;
}
button#v-pills-services1-tab {
  margin-top: 60px;
}
.uiux_crafts_services .nav-link p {
  display: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 31px;
}
.uiux_crafts_services .nav-link.active p {
  display: block;
}
.uiux_crafts_services .nav-link {
  margin-bottom: 20px;
  background: transparent !important;
  text-align: left;
  padding-left: 50px;
}
.uiux_crafts_services .nav-link h3 {
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 6px;
}
.uiux_crafts_services .nav-link.active h3 {
  color: var(--secondary);
}
.uiux_crafts_service_progress {
  width: 4px;
  height: 158px;
  position: absolute;
  top: 110px;
  left: 0;
  background: var(--light);
}
.uiux_crafts_service_progress:after {
  content: "";
  background: var(--light);
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: 0;
  left: -6px;
  border-radius: 50%;
  border: 2px solid #f7f9f5;
  opacity: 0;
  z-index: 1;
}
.active .uiux_crafts_service_progress:after {
  opacity: 1;
}
button#v-pills-services2-tab.active .uiux_crafts_service_progress {
  height: 240px;
}
button#v-pills-services3-tab.active .uiux_crafts_service_progress {
  height: 328px;
}
button#v-pills-services4-tab.active .uiux_crafts_service_progress {
  height: 410px;
}
.uiux_crafts_service_progress:before {
  content: "";
  width: 4px;
  height: 298px;
  position: absolute;
  top: 110px;
  left: 0;
  background: #f7f9f5;
  z-index: -1;
}
.uiux_crafts_tab_content {
  padding: 40px 40px 50px;
  border-radius: 20px;
  background: url(/images/tabs_bg.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.uiux_crafts_tab_content p {
  margin: 17px 0 25px;
}
.uiux_crafts_tab_content p,
.uiux_crafts_tab_content li {
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}
.uiux_crafts_tab_content li {
  list-style: square;
  margin-left: 5px;
}
.uiux_crafts_tab_content .uiux_crafts_theme_button {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

/* projects */
.uiux_crafts_projects {
  padding: 160px 0 100px;
  background: url(/images/texture.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.uiux_crafts_projects_intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.uiux_crafts_projects_intro p {
  max-width: 958px;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}
.uiux_crafts_projects_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 80px 0;
  gap: 120px;
}
.uiux_project_image {
  overflow: hidden;
  border-radius: 22px;
}
.uiux_project_image img {
  transition: 0.8s all ease;
}
.uiux_project_image:hover img {
  transform: scale(1.1);
  transition: 0.8s all ease;
}
.uiux_project_content {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  align-items: center;
}
.uiux_project_content h3 {
  color: #151219;
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 700;
  line-height: 26.4px;
}
.uiux_project_content p {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 26.3px;
}
a.uiux_crafts_project_button {
  color: var(--secondary);
  white-space: nowrap;
  font-size: 11.3px;
  font-weight: 700;
  line-height: 13.57px;
  padding: 11px 22px;
  background: transparent;
  border: 2px solid var(--light);
  border-radius: 50px;
  text-decoration: none;
}
a.uiux_crafts_project_button:hover {
  color: var(--secondary);
}
.uiux_crafts_get_services {
  text-align: center;
}

/* ticker */
.ticker_item {
  font-size: 28px;
  font-weight: 600;
  line-height: 80px;
}
.ticker_wrap {
  width: 102%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  margin-left: -1%;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker_primary {
  background: var(--primary);
  transform: rotate(4deg);
}
.ticker_secondary {
  background: var(--secondary);
  color: white;
  transform: rotate(-4deg);
  margin-top: -100px;
}
.separator_pipe {
  margin: 0 25px;
}
.ticker_animate_left .ticker_item:after {
  content: " Design Agency | UI/UX | UX Research | Design Audit | Graphic Design | App Design | Development | Marketing | Design Agency | UI/UX | UX Research | Design Audit | Graphic Design | App Design | Development | Marketing | ";
  position: absolute;
  right: -100.2%;
}
.ticker_animate_right .ticker_item:before {
  content: " Design Agency | UI/UX | UX Research | Design Audit | Graphic Design | App Design | Development | Marketing | Design Agency | UI/UX | UX Research | Design Audit | Graphic Design | App Design | Development | Marketing | ";
  position: absolute;
  left: -100.2%;
}

/* agency */
.uiux_crafts_agency {
  padding: 160px 0;
}
.uiux_crafts_agency_title {
  display: flex;
  align-items: flex-start;
  gap: 114px;
}
.uiux_crafts_agency_headings h3 {
  color: #151219;
  margin-top: 27px;
  font-size: 54px;
  font-weight: 700;
  line-height: 76px;
  text-transform: capitalize;
}
.uiux_crafts_agency_title p {
  color: var(--text);
  margin-bottom: 58px !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  max-width: 747px;
}
.uiux_crafts_agency_images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 67px;
  align-items: flex-end;
  margin-top: -114px;
}
.uiux_crafts_agency_image1 {
  position: relative;
}
.star {
  position: absolute;
  top: -35px;
  left: -30px;
}

/* testimonials */
.uiux_crafts_testimonials {
  padding: 160px 0;
  background: url(/images/testimonial_bg.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.uiux_crafts_testimonials_left h2.uiux_crafts_title {
  color: white;
}
.uiux_crafts_testimonials_left img {
  margin-top: 73px;
  max-width: 308px;
}
.uiux_crafts_testimonials_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 109px;
}
.uiux_crafts_testimonials_right {
  max-width: 1183px;
}
p.uiux_crafts_testimonials_sayings {
  color: white;
  font-size: 36px;
  font-weight: 600;
  line-height: 57.6px;
  letter-spacing: -0.03em;
}
.uiux_crafts_testimonials_info {
  margin-top: 74px;
}
.uiux_crafts_testimonials_info_client img {
  width: 70px;
}
.uiux_crafts_testimonials_info_client {
  display: flex;
  gap: 24px;
  align-items: center;
}
.uiux_crafts_testimonials_client_info h5 {
  color: white;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
}
.uiux_crafts_testimonials_client_info h6 {
  color: white;
  opacity: 0.5;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
.uiux_crafts_testimonials_navigations {
  display: flex;
  align-items: center;
  gap: 38px;
  justify-content: flex-end;
  margin-top: -72px;
  width: 500px;
  margin-left: auto;
  z-index: 1;
  position: relative;
}
.uiux_crafts_testimonials_navigations .carousel-indicator {
  font-size: 16px;
  font-weight: 600;
  line-height: 28.8px;
  color: white;
}
.uiux_crafts_testimonials_navigations .carousel-indicator span {
  text-decoration: underline;
  opacity: 1;
}
.uiux_crafts_testimonials_navigations .carousel-indicator .fade {
  opacity: 0.4;
  text-decoration: none;
}
.uiux_crafts_testimonials_navigations i {
  font-size: 24px;
  background: transparent;
  border: 1px solid white;
  padding: 15px 32px;
  border-radius: 50px;
  color: white;
  opacity: 0.7 !important;
}
.uiux_crafts_testimonials_navigations button {
  opacity: 1 !important;
  position: static;
}
.uiux_crafts_testimonials_navigations i:hover,
.uiux_crafts_testimonials_navigations i:focus {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--secondary);
  opacity: 1 !important;
}

/* portfolio */
.uiux_crafts_portfolio {
  padding: 160px 0;
}
.uiux_crafts_portfolio_intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.uiux_crafts_portfolio_intro p {
  max-width: 958px;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
}
.uiux_crafts_portfolio_slider > div {
  display: flex;
  align-items: center;
  gap: 40px;
}
.uiux_crafts_portfolio_slider img {
  max-width: 424px;
  border-radius: 20px;
}
.uiux_crafts_portfolio_slider_top {
  margin: 80px 0 40px;
}

/* contact */
.uiux_crafts_contact {
  padding: 160px 0;
  background: url(/images/contact_bg.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.uiux_crafts_contact_wrapper {
  display: flex;
  align-items: center;
  gap: 27px;
}
.uiux_crafts_contact_detail h3 {
  margin: 27px 0;
  color: white;
  font-family: Syne;
  font-size: 74px;
  font-weight: 700;
  line-height: 96px;
  text-align: left;
}
.uiux_crafts_contact_detail h2.uiux_crafts_title {
  color: white;
}
.uiux_crafts_contact_detail {
  max-width: 739px;
}
.uiux_crafts_contact_info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.uiux_crafts_contact_info img {
  max-width: 120px;
}
.uiux_crafts_contact_email h6 {
  margin-bottom: 10px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  opacity: 0.5;
}
.uiux_crafts_contact_email h5 a {
  font-size: 22px;
  font-weight: 700;
  line-height: 39.6px;
  color: white;
  text-decoration: none;
}
.uiux_crafts_contact_form label {
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: 0.5s all ease;
}
.uiux_crafts_contact_form label span {
  color: #f74b15;
}
.uiux_crafts_form_submit button {
  border: none !important;
}
.uiux_crafts_contact_form input,
.uiux_crafts_contact_form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  width: 100%;
  height: 45px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.uiux_crafts_contact_form textarea {
  height: 134px;
}
.uiux_crafts_contact_form input:focus,
.uiux_crafts_contact_form textarea:focus {
  outline: none;
}
.uiux_crafts_form_message {
  margin: 47px 0 20px;
}
.uiux_crafts_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.uiux_crafts_contact_form form > div {
  position: relative;
}
.uiux_crafts_contact_form form {
  width: 834px;
}
.uiux_crafts_name:focus-within label {
  font-size: 12px;
  transition: 0.5s all ease;
  margin-top: -10px;
}
.uiux_crafts_form_message p {
  text-align: right;
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 28.8px;
  opacity: 0.5;
}
.uiux_crafts_form_file input {
  position: absolute;
  opacity: 0;
}
.uiux_crafts_form_file {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}
.uiux_crafts_form_file p {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.uiux_crafts_form_policy p {
  margin: 20px 0 47px !important;
  color: rgb(255 255 255 / 50%);
  font-size: 18px;
  font-weight: 500;
  line-height: 44px;
  text-align: left;
}
.uiux_crafts_form_policy p a {
  color: var(--primary);
  text-decoration: none;
}

/* footer */
.uiux_crafts_footer {
  padding: 63px 0;
}
.uiux_crafts_footer_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uiux_crafts_copyright {
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: var(--text);
}
