@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap");
:root {
  --primary-color: #EB7439;
  --shade: #fff6f2;
  --dark-shade: #ffe5d7;
  --black: #0d0f10;
  --white: #fff;
  --grey: #eee;
  --txt-dark: #200f06;
  --txt-light: #554f4c;
  --fs-small: 12px;
  --fs-medium: 14px;
  --fs-medium-large: 15px;
  --fs-large: 20px;
  --fs-extra-large: 35px;
  --fw-medium: 500;
  --fw-medium-bold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --lh-medium: 22px;
  --lh-medium-large: 28px;
  --lh-large: 45px;
  --br-small: 5px;
  --br-medium: 10px;
  --br-medium-large: 15px;
  --br-large: 20px;
  --separator-margin: 100px;
}

@media screen and (max-width: 1200px) {
  :root {
    --fs-small: 11px;
    --fs-medium: 13px;
    --fs-medium-large: 14px;
    --fs-large: 18px;
    --fs-extra-large: 30px;
    --separator-margin: 80px;
  }
}
@media screen and (max-width: 999px) {
  :root {
    --fs-medium: 12.5px;
    --fs-extra-large: 23px;
    --lh-large: 30px;
    --lh-medium: 19px;
    --lh-medium-large: 24px;
    --separator-margin: 60px;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

.medium-heading,
.large-heading,
.extra-large-heading,
.medium-heading span,
.large-heading span,
.extra-large-heading span {
  color: var(--txt-dark);
  font-family: "DM Serif Text", sans-serif;
}

body {
  background-color: var(--white);
}

p,
a {
  font-size: var(--fs-medium);
  line-height: var(--lh-medium);
  font-weight: var(--fw-medium);
  color: var(--txt-light);
  text-decoration: none;
}

ul li {
  list-style: none;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium-bold);
  border-radius: 50px;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  padding: 8px 8px 8px 30px;
  gap: 20px;
  flex-shrink: 0;
}
button.to-bottom:hover span svg {
  animation: to-down 1s linear;
}
button.to-top:hover span svg {
  animation: to-up 1s linear;
}
@keyframes to-down {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  30% {
    transform: translateY(60px);
    visibility: hidden;
  }
  60% {
    transform: translateY(-40px);
    visibility: hidden;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes to-up {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  30% {
    transform: translateY(-60px);
    visibility: hidden;
  }
  60% {
    transform: translateY(40px);
    visibility: hidden;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
button.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
}
button.primary-btn:hover {
  background-color: #e76727;
}
button.primary-btn span {
  background-color: var(--black);
  color: var(--white);
}
button.secondary-btn {
  color: var(--txt-light);
}
button span {
  width: 40px;
  overflow: hidden;
}
button span svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

div img {
  width: 100%;
}

.section-title {
  gap: 50px;
}
.section-title .pill {
  width: fit-content;
  border: 1px solid var(--dark-shade);
  background-color: var(--shade);
  padding: 5px 25px 5px 15px;
  gap: 12px;
  border-radius: 50px;
  margin-bottom: 40px;
}
.section-title .pill p {
  font-family: "DM Serif Text", sans-serif;
  color: var(--primary-color);
  font-size: var(--fs-small);
}
.section-title .pill svg {
  width: 10px;
  height: 10px;
  color: var(--primary-color);
}
.section-title h2 span {
  color: var(--primary-color);
}

.medium-heading {
  font-size: var(--fs-medium-large);
  font-weight: var(--fw-medium-bold);
}

.large-heading {
  font-size: var(--fs-large);
  font-weight: var(--fw-medium-bold);
  line-height: var(--lh-medium-large);
}

.extra-large-heading {
  font-size: var(--fs-extra-large);
  font-weight: var(--fw-medium-bold);
  line-height: var(--lh-large);
}

.section-padding {
  padding: 100px 0px;
}

.inner-container {
  width: 92%;
  max-width: 1400px;
  margin: 0px auto;
}

.bg-img {
  background-color: var(--grey);
  background-size: cover;
  background-position: center;
}

.flex-left {
  display: flex;
  align-items: center;
  justify-content: left;
}

.flex-right {
  display: flex;
  align-items: center;
  justify-content: right;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.round {
  border-radius: 50%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
  .section-padding {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 999px) {
  button {
    padding: 5px 5px 5px 30px;
  }
  button span {
    width: 38px;
  }
  .section-title {
    flex-direction: column;
    gap: 0px;
  }
  .section-title .pill {
    margin-bottom: 20px;
  }
  .section-title h2 {
    margin-bottom: 20px;
  }
  .section-padding {
    padding: 60px 0px;
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: background-color 0.5s;
  background-color: transparent;
}
header.dark {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
header.dark .inner-container {
  border-color: var(--white);
}
header.dark .inner-container .menu .nav li {
  color: var(--txt-dark);
}
header.dark .inner-container .menu .nav li:hover {
  color: var(--primary-color);
}
header.dark .inner-container .menu-btn {
  color: var(--txt-dark);
}
header .inner-container {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
header .inner-container .logo {
  width: 90px;
  flex-shrink: 0;
  margin-right: auto;
}
header .inner-container .menu {
  width: fit-content;
}
header .inner-container .menu .overlay {
  display: none;
}
header .inner-container .menu .nav {
  width: fit-content;
  gap: 60px;
}
header .inner-container .menu .nav li {
  color: var(--white);
  cursor: pointer;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium-bold);
  transition: letter-spacing 0.25s;
  text-transform: uppercase;
}
header .inner-container .menu .nav li .icon {
  display: none;
}
header .inner-container .menu .nav li:hover {
  color: var(--primary-color);
  letter-spacing: 1px;
}
header .inner-container .menu-btn {
  display: none;
  color: var(--white);
  flex-shrink: 0;
  padding: 0px;
}
header .inner-container .menu-btn svg {
  width: 26px;
  height: 26px;
}

.hero-section {
  width: 100%;
  background-color: var(--black);
  height: fit-content;
  min-height: 100vh;
  position: relative;
}
.hero-section .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section .backgrounds .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.hero-section .backgrounds .bg.active {
  opacity: 1;
  z-index: 2;
}
.hero-section .content {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 5;
  position: relative;
}
.hero-section .inner-container {
  height: 100%;
  padding: 150px 0px 50px 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-section .inner-container h1 {
  color: var(--white);
  margin-bottom: auto;
  font-size: 40px;
  line-height: 50px;
}
.hero-section .inner-container h1 .break1 {
  display: none;
}
.hero-section .inner-container h1 span {
  color: var(--primary-color);
  position: relative;
  padding-right: 5px;
  text-transform: capitalize;
  white-space: nowrap;
}
.hero-section .inner-container h1 span::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0px;
  height: 80%;
  transform: translateY(-50%);
  border-right: 2px solid rgba(255, 255, 255, 0.7);
}
.hero-section .inner-container .description {
  max-width: 650px;
  margin-top: 50px;
}
.hero-section .inner-container .description p {
  width: 100%;
  font-size: var(--fs-medium-large);
  line-height: var(--lh-medium-large);
  color: var(--white);
}
.hero-section .inner-container .middle-actions {
  width: 100%;
}
.hero-section .inner-container .middle-actions .scroll-btns {
  width: 100%;
  gap: 10px;
}
.hero-section .inner-container .middle-actions .scroll-btns button {
  background-color: var(--white);
}
.hero-section .inner-container .middle-actions .scroll-btns button:hover span {
  background-color: var(--primary-color);
}
.hero-section .inner-container .middle-actions .scroll-btns button span {
  background-color: var(--black);
  color: var(--white);
}
.hero-section .inner-container .middle-actions .tracks {
  gap: 20px;
  margin: 30px 0px;
}
.hero-section .inner-container .middle-actions .tracks .track {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  height: 2px;
  border-radius: 50px;
}
.hero-section .inner-container .middle-actions .tracks .track.active span {
  width: 100%;
  animation: progress 4s linear forwards;
}
.hero-section .inner-container .middle-actions .tracks .track span {
  display: block;
  background-color: var(--primary-color);
  width: 0%;
  height: 100%;
}
@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.hero-section .inner-container .cta {
  width: 100%;
  gap: 40px;
}
.hero-section .inner-container .cta .secondary-btn {
  border: none;
  padding: 0px;
  color: var(--white);
}
.hero-section .inner-container .cta .secondary-btn span {
  background-color: var(--black);
}

.about-section .section-title {
  margin-bottom: var(--separator-margin);
  align-items: stretch;
}
.about-section .section-title .left {
  max-width: 700px;
}
.about-section .section-title .left h2 {
  margin-bottom: 20px;
}
.about-section .section-title .right {
  max-width: 450px;
  display: flex;
  flex-direction: column;
}
.about-section .section-title .right .image {
  width: 100%;
  height: 100%;
  max-height: 240px;
  border-radius: var(--br-small);
  background-image: url("../img/backgrounds/business-vr.jpeg");
  margin-bottom: 20px;
}
.about-section .section-title .right p {
  margin-top: auto;
}
.about-section .numbers {
  border-radius: var(--br-medium-large);
  background-color: var(--primary-color);
  background-image: url("../img/backgrounds/geometric-bg.jpg");
  position: relative;
  overflow: hidden;
  background-size: 100%;
  background-repeat: repeat;
  margin-top: var(--separator-margin);
}
.about-section .numbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(236, 109, 46, 0.7);
}
.about-section .numbers .number {
  width: 100%;
  text-align: center;
  z-index: 2;
}
.about-section .numbers .number h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 60px;
}
.about-section .numbers .number h3 {
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.services-section {
  background-color: #f5f5f5;
}
.services-section .section-title {
  margin-bottom: var(--separator-margin);
  align-items: flex-end;
}
.services-section .section-title .left {
  max-width: 700px;
}
.services-section .section-title .right {
  max-width: 450px;
}
.services-section .services {
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.services-section .services .service {
  width: 100px;
  overflow: hidden;
  border-radius: var(--br-small);
  background-color: var(--white);
  border: 1px solid var(--white);
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.45s;
  height: 440px;
  position: relative;
}
.services-section .services .service::before {
  content: "";
  background-color: var(--black);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.services-section .services .service:nth-child(1)::before {
  background-image: url("../img/backgrounds/coding.jpg");
}
.services-section .services .service:nth-child(2)::before {
  background-image: url("../img/backgrounds/class-vr.jpg");
}
.services-section .services .service:nth-child(3)::before {
  background-image: url("../img/backgrounds/virtualisation.jpg");
}
.services-section .services .service:nth-child(4)::before {
  background-image: url("../img/backgrounds/printing.jpg");
}
.services-section .services .service:nth-child(5)::before {
  background-image: url("../img/backgrounds/web-360-2.png");
}
.services-section .services .service:nth-child(6)::before {
  background-image: url("../img/backgrounds/vr-solution.png");
}
.services-section .services .service:hover:not(.services-section .services .service.expanded) {
  border-color: var(--primary-color);
}
.services-section .services .service.expanded {
  flex-shrink: unset;
  width: 100%;
  cursor: unset;
}
.services-section .services .service.expanded::before {
  opacity: 1;
}
.services-section .services .service.expanded .content .title {
  transform: unset;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}
.services-section .services .service.expanded .content .title p {
  display: block;
  margin-top: 20px;
}
.services-section .services .service.expanded .content .title .icon svg {
  transform: rotate(0deg);
}
.services-section .services .service .content {
  width: 100%;
  height: 100%;
  padding: 200px 20px 20px 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.services-section .services .service .content .title {
  width: 100%;
  gap: 30px;
  transform: rotate(-90deg);
}
.services-section .services .service .content .title .icon {
  background-color: var(--primary-color);
  border-radius: var(--br-small);
  width: 60px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  color: var(--white);
}
.services-section .services .service .content .title .icon svg {
  width: 25px;
  height: 25px;
  transform: rotate(90deg);
}
.services-section .services .service .content .title h2 {
  margin-bottom: 10px;
  white-space: nowrap;
}
.services-section .services .service .content .title p {
  display: none;
}

.pricing-section .section-title {
  align-items: flex-end;
}
.pricing-section .section-title .left {
  max-width: 620px;
}
.pricing-section .section-title .right {
  max-width: 450px;
}
.pricing-section .tabs {
  width: 100%;
  border-radius: var(--br-medium);
  overflow: hidden;
  margin: 50px 0px;
  margin-bottom: var(--separator-margin);
  overflow-x: auto;
}
.pricing-section .tabs .tab {
  width: fit-content;
  flex-shrink: 0;
  padding: 12px 30px 12px 20px;
  gap: 20px;
  border: 1px solid var(--grey);
  cursor: pointer;
}
.pricing-section .tabs .tab:first-child {
  border-top-left-radius: var(--br-medium);
  border-bottom-left-radius: var(--br-medium);
}
.pricing-section .tabs .tab:last-child {
  border-top-right-radius: var(--br-medium);
  border-bottom-right-radius: var(--br-medium);
}
.pricing-section .tabs .tab.active, .pricing-section .tabs .tab:hover {
  background-color: var(--shade);
  border-color: var(--primary-color);
}
.pricing-section .tabs .tab.active p, .pricing-section .tabs .tab:hover p {
  color: var(--txt-dark);
}
.pricing-section .tabs .tab .icon {
  color: var(--primary-color);
  flex-shrink: 0;
}
.pricing-section .cards {
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  display: none;
}
.pricing-section .cards.contact {
  flex-direction: column;
  background-color: var(--shade);
  width: 100%;
  border-radius: var(--br-medium);
  padding: 60px 0px;
  text-align: center;
  grid-template-columns: repeat(1, 1fr);
}
.pricing-section .cards.contact button {
  margin: 0px auto;
}
.pricing-section .cards.active {
  display: grid;
}
.pricing-section .cards .card {
  width: 100%;
  border-radius: var(--br-medium);
  border: 1px solid var(--grey);
  background-color: var(--white);
  overflow: hidden;
}
.pricing-section .cards .card:hover {
  background-color: var(--shade);
  border-color: var(--dark-shade);
}
.pricing-section .cards .card:hover .subscription {
  background-color: var(--white);
}
.pricing-section .cards .card .image {
  width: 100%;
  height: 100px;
  position: relative;
  padding: 30px;
  background-image: url("../img/backgrounds/linear-gradient1.jpg");
  transition: transform 0.5s;
}
.pricing-section .cards .card .image .subscription {
  width: fit-content;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: var(--fs-small);
  font-family: "DM Serif Text", sans-serif;
  background-color: var(--white);
}
.pricing-section .cards .card .details {
  padding: 40px 30px;
}
.pricing-section .cards .card h2 {
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
}
.pricing-section .cards .card h2 span {
  font-size: var(--fs-medium);
  color: var(--txt-light);
  font-weight: var(--fw-medium);
}
.pricing-section .cards .card ul {
  margin: 20px 0px 40px 0px;
  width: 100%;
}
.pricing-section .cards .card ul li {
  width: 100%;
  gap: 15px;
  margin: 10px 0px;
}
.pricing-section .cards .card ul li .icon {
  color: var(--primary-color);
}
.pricing-section .cards .card button {
  width: 100%;
}
.pricing-section .cards .card button:hover span {
  transform: rotate(0deg);
}
.pricing-section .cards .card button span {
  transition: transform 0.25s;
}

.black-section {
  background-color: var(--black);
  padding-bottom: 0px;
  overflow: hidden;
  position: relative;
}
.black-section .svg {
  position: absolute;
  top: 0;
  right: 90px;
  opacity: 0.2;
}
.black-section .section-title {
  padding-bottom: var(--separator-margin);
  max-width: 750px;
}
.black-section .section-title h2 {
  color: var(--white);
  margin-bottom: 30px;
}
.black-section .section-title p {
  color: white;
  margin-bottom: 40px;
}
.black-section .blocks {
  width: 100%;
  position: relative;
  align-items: stretch;
}
.black-section .blocks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid #505050;
  width: 200%;
}
.black-section .blocks .block {
  width: 100%;
  border-right: 1px solid #505050;
  padding: 100px 30px 50px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.black-section .blocks .block:hover .indicator {
  width: 70%;
}
.black-section .blocks .block:hover button {
  background-color: var(--primary-color);
  transform: rotate(-40deg);
}
.black-section .blocks .block:first-child {
  border-left: 1px solid #505050;
}
.black-section .blocks .block:first-child .indicator {
  width: 90px;
}
.black-section .blocks .block .indicator {
  position: absolute;
  width: 90px;
  background-color: var(--primary-color);
  top: -1px;
  height: 2px;
  left: 30px;
  width: 0;
  transition: width 0.25s;
}
.black-section .blocks .block h3 {
  color: var(--white);
}
.black-section .blocks .block .descr {
  margin: 40px 0px auto 0px;
  color: var(--grey);
}
.black-section .blocks .block button {
  margin-top: 40px;
  width: 45px;
  background-color: #202020;
  padding: 0px;
  color: var(--white);
  transform: rotate(-90deg);
  transition: transform 0.25s;
}
.black-section .blocks .block button svg {
  width: 18px;
  height: 18px;
}

.contact-section .section-title {
  margin-bottom: var(--separator-margin);
}
.contact-section .section-title h2 {
  margin-bottom: 20px;
  max-width: 800px;
}
.contact-section .container {
  width: 100%;
  border-radius: var(--br-small);
  position: relative;
  gap: 20px;
  flex-direction: row-reverse;
  align-items: stretch;
}
.contact-section .container .image {
  width: 100%;
  border-radius: var(--br-small);
  background-color: var(--shade);
  background-image: url("../img/backgrounds/contact-bg.jpg");
  background-size: cover;
  background-position-y: center;
  background-position-x: center;
}
.contact-section .container .form {
  width: 100%;
  padding: 50px 40px;
  border: 1px solid var(--dark-shade);
  background-color: var(--shade);
  border-radius: var(--br-small);
}
.contact-section .container .form .heading {
  margin-bottom: 40px;
}
.contact-section .container .form .heading p {
  margin-top: 8px;
}
.contact-section .container .form .double-input {
  gap: 15px;
}
.contact-section .container .form input,
.contact-section .container .form textarea,
.contact-section .container .form select {
  width: 100%;
  border: 1px solid var(--txt-light);
  background-color: var(--shade);
  height: 50px;
  border-radius: var(--br-small);
  padding-left: 20px;
  margin-bottom: 25px;
  outline: none;
  font-weight: var(--fw-medium);
  font-size: var(--fs-medium);
  color: var(--txt-dark);
}
.contact-section .container .form input::placeholder,
.contact-section .container .form textarea::placeholder,
.contact-section .container .form select::placeholder {
  font-size: var(--fs-medium);
  color: var(--txt-light);
}
.contact-section .container .form textarea {
  max-height: 150px;
  height: 90px;
  min-height: 50px;
  resize: vertical;
  padding: 20px;
}
.contact-section .container .form button {
  background-color: var(--black);
}
.contact-section .container .form button:hover {
  background-color: var(--primary-color);
}
.contact-section .container .form button:hover .icon {
  background-color: var(--black);
}
.contact-section .container .form button span {
  background-color: var(--primary-color);
}

.custom-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #e6ffed;
  color: #2d6a4f;
  border: 1px solid #95d5b2;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  z-index: 9999;
}
.custom-alert.hidden {
  display: none;
}

footer {
  padding-bottom: 0px !important;
  width: 100%;
  background-color: var(--black);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
footer::before {
  content: "Ulink";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 560px;
  font-weight: 600;
  color: #111314;
  opacity: 0.5;
  bottom: 0;
  z-index: -1;
}
footer .top {
  margin-bottom: var(--separator-margin);
  border-radius: var(--br-small);
  background-color: var(--primary-color);
  padding: 50px 40px;
  background-image: url("../img/backgrounds/geometric-bg.jpg");
  background-size: 100%;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
footer .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(236, 109, 46, 0.8);
  z-index: -1;
}
footer .top h2 {
  max-width: 500px;
  color: var(--white);
}
footer .top button {
  background-color: var(--black);
}
footer .top button:hover {
  background-color: var(--white);
  color: var(--txt-dark);
}
footer .top button span {
  background-color: var(--primary-color);
}
footer .columns {
  width: 100%;
  gap: 100px;
  align-items: flex-start;
}
footer .columns .column {
  width: 100%;
}
footer .columns .column:nth-child(3) ul {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .columns .column:nth-child(3) ul .social {
  gap: 10px;
}
footer .columns .column:nth-child(3) ul .social:hover .icon {
  border-color: var(--primary-color);
}
footer .columns .column:nth-child(3) ul .social:hover p, footer .columns .column:nth-child(3) ul .social:hover a {
  color: var(--primary-color);
}
footer .columns .column:nth-child(3) ul .social p {
  color: var(--grey);
}
footer .columns .column:nth-child(3) ul .social .icon {
  width: 40px;
  border: 1px solid #252525;
  background-color: #151515;
  color: var(--primary-color);
}
footer .columns .column:nth-child(3) ul .social .icon svg {
  width: 18px;
  height: 18px;
}
footer .columns .column:nth-child(1) {
  max-width: 400px;
  flex-shrink: 0;
}
footer .columns .column:nth-child(1) .logo {
  width: 90px;
  margin-bottom: 20px;
}
footer .columns .column:nth-child(1) p {
  color: var(--white);
}
footer .columns .column:nth-child(1) .contacts {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .columns .column:nth-child(1) .contacts .contact {
  gap: 10px;
}
footer .columns .column:nth-child(1) .contacts .contact:hover .icon {
  border-color: var(--primary-color);
}
footer .columns .column:nth-child(1) .contacts .contact:hover p, footer .columns .column:nth-child(1) .contacts .contact:hover a {
  color: var(--primary-color);
}
footer .columns .column:nth-child(1) .contacts .contact .icon {
  width: 40px;
  border: 1px solid #252525;
  background-color: #151515;
  color: var(--primary-color);
}
footer .columns .column:nth-child(1) .contacts .contact .icon svg {
  width: 18px;
  height: 18px;
}
footer .columns .column h2 {
  margin-bottom: 30px;
  color: var(--white);
}
footer .columns .column ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
footer .columns .column ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
footer .columns .column ul li a, footer .columns .column ul li p {
  cursor: pointer;
  color: var(--grey);
  transition: letter-spacing 0.25s;
}
footer .columns .column ul li a:hover, footer .columns .column ul li p:hover {
  color: var(--primary-color);
  letter-spacing: 1px;
}
footer .bottom {
  width: 100%;
  padding: 15px 0px;
  border-top: 1px solid #202020;
  margin-top: var(--separator-margin);
}
footer .bottom .inner-container {
  gap: 40px;
}
footer .bottom .block {
  width: fit-content;
  flex-shrink: 0;
  gap: 10px;
  cursor: pointer;
}
footer .bottom .block:hover .icon {
  border-color: var(--primary-color);
}
footer .bottom .block:hover p, footer .bottom .block:hover a {
  color: var(--primary-color);
}
footer .bottom .block:last-child {
  margin-left: auto;
}
footer .bottom .block .icon {
  background-color: #151515;
  border: 1px solid #252525;
  width: 25px;
  color: var(--primary-color);
}
footer .bottom .block .icon svg {
  width: 13px;
  height: 13px;
}
footer .bottom .block p, footer .bottom .block a {
  font-size: var(--fs-small);
  color: var(--grey);
}
footer .bottom .block a {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  .about-section .section-title .left {
    width: 55%;
  }
  .about-section .section-title .right {
    width: 45%;
  }
  .about-section .numbers {
    padding: 50px 0px;
  }
  .about-section .numbers .number h2 {
    font-size: 50px;
  }
  .services-section .services .service.expanded .content .title {
    padding: 10px;
  }
  .pricing-section .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .black-section .blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 1px solid #505050;
  }
  .black-section .blocks .block:nth-child(1), .black-section .blocks .block:nth-child(2), .black-section .blocks .block:nth-child(3) {
    border-bottom: 1px solid #505050;
  }
  .black-section .blocks .block:nth-child(3) {
    border-right: none;
  }
  .black-section .blocks .block:nth-child(4) {
    border-left: 1px solid #505050;
  }
  .black-section .blocks .block h3 br {
    display: none;
  }
  .contact-section .container .image {
    width: 46%;
  }
  .contact-section .container .form {
    width: 54%;
    padding: 40px 30px;
  }
  footer .columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  footer .columns .column {
    width: 100%;
  }
  footer .columns .column:nth-child(3) {
    width: 100%;
    grid-column: span 3;
  }
  footer .columns .column:nth-child(3) ul {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (max-width: 999px) {
  header.dark {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
  }
  header .inner-header {
    padding: 12px 0px;
  }
  header .inner-header .logo {
    width: 70px;
  }
  header .inner-header .menu-btn {
    display: flex;
  }
  header .inner-header .menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 999;
  }
  header .inner-header .menu.open {
    display: block;
  }
  header .inner-header .menu.open .nav {
    animation: comeUp 0.5s ease forwards;
  }
  header .inner-header .menu.open .overlay {
    opacity: 1;
  }
  header .inner-header .menu .overlay {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
  }
  header .inner-header .menu .nav {
    flex-direction: column;
    width: 100%;
    background-color: var(--white);
    gap: 5px;
    padding: 10px 0px;
    border-top-right-radius: var(--br-small);
    border-top-left-radius: var(--br-small);
    transform: translateY(100%);
  }
  header .inner-header .menu .nav li {
    width: 100%;
    padding: 15px 25px;
    color: var(--txt-dark);
  }
  header .inner-header .menu .nav li:hover {
    background-color: var(--light-grey);
  }
  @keyframes comeUp {
    to {
      transform: translateY(0%);
    }
  }
  .hero-section {
    min-height: 90vh;
  }
  .hero-section .content {
    min-height: 90vh;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .hero-section .inner-container {
    padding: 100px 0px 50px 0px;
    min-height: 90vh;
  }
  .hero-section .inner-container h1 {
    font-size: 32px;
    line-height: 45px;
  }
  .hero-section .inner-container h1 .break1 {
    display: block;
  }
  .hero-section .inner-container .middle-actions .tracks {
    gap: 5px;
  }
  .hero-section .inner-container .middle-actions .scroll-btns {
    display: none;
  }
  .hero-section .inner-container .cta .secondary-btn {
    display: none;
  }
  .about-section .section-title {
    flex-direction: column;
  }
  .about-section .section-title .left {
    width: 100%;
    max-width: unset;
  }
  .about-section .section-title .right {
    width: 100%;
    max-width: unset;
  }
  .about-section .section-title .right .image {
    height: 150px;
    margin-top: 40px;
  }
  .about-section .numbers {
    padding: 35px 10px;
    border-radius: var(--br-small);
  }
  .about-section .numbers .number h2 {
    font-size: var(--fs-extra-large);
    margin-bottom: 8px;
  }
  .about-section .numbers .number h3 {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
  }
  .services-section .section-title {
    flex-direction: column;
  }
  .services-section .section-title .left {
    max-width: unset;
    width: 100%;
  }
  .services-section .section-title .right {
    max-width: unset;
    width: 100%;
  }
  .services-section .services {
    flex-direction: column;
  }
  .services-section .services .service,
  .services-section .services .service.expanded {
    width: 100%;
    height: unset;
  }
  .services-section .services .service::before,
  .services-section .services .service.expanded::before {
    opacity: 1;
    height: 160px;
  }
  .services-section .services .service .content,
  .services-section .services .service.expanded .content {
    padding: 150px 0px 0px 0px;
  }
  .services-section .services .service .content .title,
  .services-section .services .service.expanded .content .title {
    transform: unset;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px 20px 20px;
    margin-top: -50px;
  }
  .services-section .services .service .content .title p,
  .services-section .services .service.expanded .content .title p {
    display: block;
    margin-top: 20px;
  }
  .services-section .services .service .content .title .icon svg,
  .services-section .services .service.expanded .content .title .icon svg {
    transform: rotate(0deg);
  }
  .pricing-section .tabs {
    margin: 40px 0px;
    margin-bottom: var(--separator-margin);
  }
  .pricing-section .tabs .tab {
    gap: 10px;
    padding: 10px 20px 10px 15px;
  }
  .pricing-section .tabs .tab .icon svg {
    width: 18px;
    height: 18px;
  }
  .pricing-section .cards {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .pricing-section .cards.active {
    display: flex;
  }
  .pricing-section .cards .card {
    flex-shrink: 0;
    max-width: 260px;
  }
  .pricing-section .cards .card .image {
    height: 70px;
    padding: 20px;
  }
  .pricing-section .cards .card .details {
    padding: 20px;
  }
  .pricing-section .cards .card .details h2 {
    font-size: 35px;
  }
  .pricing-section .cards .card .details ul {
    margin: 20px 0px 30px 0px;
  }
  .pricing-section .cards .card .details ul li {
    gap: 10px;
  }
  .black-section .svg {
    width: 90px;
    height: 90px;
  }
  .black-section .blocks {
    grid-template-columns: repeat(1, 1fr);
    border-left: 1px solid #505050;
  }
  .black-section .blocks .block {
    border: none;
    border-bottom: 1px solid #505050;
  }
  .contact-section .container {
    flex-direction: column-reverse;
  }
  .contact-section .container .form {
    width: 100%;
    padding: 40px 15px;
  }
  .contact-section .container .image {
    width: 100%;
    height: 220px;
  }
}
@media screen and (max-width: 900px) {
  footer .top {
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .top h2 {
    margin-bottom: 20px;
  }
  footer .columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  footer .columns .column {
    width: 100%;
  }
  footer .columns .column:nth-child(3) {
    width: 100%;
    grid-column: span 1;
  }
  footer .columns .column:nth-child(3) ul {
    flex-direction: row;
    gap: 20px;
  }
  footer .columns .column:nth-child(3) ul li {
    margin-bottom: 0px;
  }
  footer .columns .column ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .bottom .inner-container {
    overflow-x: auto;
    gap: 20px;
  }
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.input-error {
  border: 1px solid #ff4d4d !important;
  background-color: #fff5f5;
  outline: none;
  animation: shake 0.3s;
}

/* Privacy Policy Specific Styles */
.privacy-content h3 {
    color: var(--txt-dark);
    font-family: "DM Serif Text", sans-serif;
    font-weight: var(--fw-medium-bold);
}

.privacy-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-content a:hover {
    text-decoration: none;
}

.privacy-content .flex-between ul li::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
}

@media screen and (max-width: 999px) {
    .privacy-content .flex-between {
        flex-direction: column;
    }
    
    .privacy-content .flex-between > div {
        width: 100% !important;
    }
    
    .privacy-content .image {
        height: 200px !important;
        margin-top: 30px;
    }
}

/*# sourceMappingURL=main.css.map */
