.navbar__container,
.navlinks__cont ul {
  justify-content: space-between;
  display: flex;
  gap: 1rem;
}
.nav__book-call a,
.navlinks__cont a {
  font-size: var(--seventeen-px);
  text-decoration: none;
}
#preloader,
body {
  background: var(--white);
}
.behind-brand h4,
.home__content h2,
.home__content h3 {
  font-family: var(--figtree-font);
}
.about-right img,
.home__cont img {
  object-position: center;
  object-fit: cover;
}
.testimonial__client-msg,
body,
footer a {
  font-family: var(--manrope-font);
}
:root {
  --manrope-font: "Manrope", sans-serif;
  --figtree-font: "Figtree", sans-serif;
  --white: hsl(0, 0%, 100%);
  --blue: #2563eb;
  --dark-blue: #1e3a8a;
  --accent-blue: #f4f4f4;
  --black: #131313;
  --faded-yellow: #aeaeae2b;
  --dark-grey: #1d1d1d;
  --light-gray: #b5b5b5;
  --red-border: 2px solid red;
  --transition-ani: 300ms ease-out;
  --width-1200: min(90%, 1200px);
  --width-800: min(90%, 800px);
  --shadow: 0 3px 10px rgba(18, 26, 44, 0.15);
  --thirteen-px: 13px;
  --fifteen-px: 15px;
  --seventeen-px: 17px;
  --nineteen-px: 19px;
  --twentyone-px: 21px;
  --twentyfour-px: 24px;
  --twentyseven-px: 27px;
  --forty-px: 40px;
  --sixty-px: 60px;
}
html {
  width: 100%;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body div {
  line-height: 1.75;
}
body :where(h2, h3, h4, a) {
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.3;
  text-decoration: none;
}
body :where(p, li) {
  font-weight: 500;
  text-wrap: pretty;
  letter-spacing: -8%;
  line-height: 1.75;
}
.navbar__container {
  padding: 1rem 5rem;
  align-items: center;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cube,
.nav__book-call {
  background: var(--blue);
}
.nav__book-call,
.navlinks__cont li {
  border-radius: 10px;
  transition: var(--transition-ani);
}
.navbar__logo {
  width: min(100%, 160px);
  height: 60px;
  overflow: hidden;
  font-size: var(--nineteen-px);
}
.navbar__logo img {
  width: 100%;
  height: 60px;
  scale: 1.3;
  object-fit: cover;
}
.navlinks__cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navlinks__cont ul {
  list-style: none;
}
.navlinks__cont li {
  padding: 0.6rem 1rem;
}
.navlinks__cont li:hover {
  background: var(--faded-yellow);
}
.about-me a:hover,
.behind-brand button:hover,
.book-call__cta:hover,
.nav__book-call:hover {
  background: var(--dark-blue);
}
.navlinks__cont a {
  color: var(--black);
}
.nav-right {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.nav__book-call {
  padding: 0.7rem 1.2rem;
}
.nav__book-call a {
  color: var(--white);
}
.nav__profile-img {
  border-radius: 50%;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
}
.nav__profile-img img {
  width: 100%;
}
.navbar__menu {
  display: none;
}
#preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.cube-loader {
  width: 60px;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  transform: rotate(45deg);
}
.cube {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  animation: 1.2s ease-in-out infinite bounce;
}
.cube1 {
  animation-delay: 0s;
}
.cube2 {
  animation-delay: 0.1s;
}
.cube3 {
  animation-delay: 0.2s;
}
.cube4 {
  animation-delay: 0.3s;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.home__cont {
  padding: 8rem 2rem;
  text-align: center;
  background-image: url("media/grad-image2.webp");
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  background-color: var(--white);
}
.home__cont img {
  width: 120px;
  height: 120px;
  border: 7px solid var(--accent-blue);
  border-radius: 50%;
}
.home__content h2 {
  font-size: var(--twentyseven-px);
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  justify-content: center;
}
.home__socials,
.home__socials div {
  justify-content: center;
  display: flex;
}
.home__content h2 .icon {
  font-size: var(--twentyseven-px);
  color: var(--blue);
}
.home__content h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--dark-grey);
  font-size: clamp(30px, 5vw, 60px);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    to right,
    var(--dark-blue),
    var(--blue),
    #4c5363
  );
}
.home__content p {
  color: var(--dark-grey);
  font-size: var(--seventeen-px);
  margin: auto auto 2rem;
  width: var(--width-800);
}
.home__socials {
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.home__content span {
  font-weight: 700;
}
.home__socials div {
  background: var(--white);
  border-radius: 50%;
  border: 1.5px solid var(--accent-blue);
  width: 3rem;
  height: 3rem;
  align-items: center;
}
.home__socials a {
  color: var(--black);
  font-size: var(--twentyfour-px);
  margin-top: 8px;
}
.book-call__cta {
  background: var(--blue);
  margin: auto;
  width: fit-content;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  transition: var(--transition-ani);
}
.book-call__cta a {
  font-size: var(--seventeen-px);
  text-decoration: none;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.book-call__cta .icon,
.work-flow__xp h3 {
  font-size: var(--twentyfour-px);
}
.work-flow {
  width: 100%;
  margin: 3rem auto 6rem;
}
.work-flow__xp {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}
.work-flow__xp .cont {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 1rem;
  height: 7rem;
  overflow: hidden;
}
.work-flow__xp h3 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-weight: 800;
}
.behind-brand h2,
.what-i-do h2 {
  margin-bottom: 3rem;
  text-align: center;
}
.work-flow__xp p {
  font-size: var(--seventeen-px);
  font-weight: 600;
  color: var(--dark-grey);
}
.what-i-do {
  padding: 3rem 0;
  background: var(--light-grey);
  width: var(--width-1200);
  margin: auto auto 6rem;
}
.what-i-do h2 {
  font-size: var(--forty-px);
  font-weight: 800;
  color: var(--blue);
}
.card-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}
.flip-card {
  background-color: transparent;
  height: 20rem;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.about-me a,
.behind-brand button,
.book-call__btn,
.pricing__cont .left .bottom a,
.pricing__cont .right .bottom a {
  transition: var(--transition-ani);
}
.flip-card-back,
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-back,
.flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.flip-card-front {
  background-color: var(--white);
}
.about-me a,
.behind-brand .btn:hover,
.behind-brand button,
.icon-card {
  background: var(--blue);
}
.flip-card-back {
  background-color: var(--blue);
  color: var(--white);
  font-size: var(--seventeen-px);
}
.flip-card-front .icon,
.left-cont .icon {
  font-size: var(--twentyseven-px);
  color: var(--white);
  height: fit-content;
  margin-bottom: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.icon-card,
.icon-con,
.stick .bottom,
.system,
.testimonial__slider,
dialog img {
  position: relative;
}
.book-call__time .icon,
footer .icon {
  transform: translateY(2px);
}
.icon-card {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.about-me,
.cta-btns,
.graph,
.stick {
  display: grid;
}
.main,
.sidebar {
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.design-card h3,
.flip-card h3 {
  font-size: var(--nineteen-px);
  color: var(--black);
}
.behind-brand,
.pricing {
  width: var(--width-1200);
  margin: auto auto 8rem;
}
.behind-brand .cont {
  display: grid;
  gap: 2rem;
}
.behind-brand h2 {
  color: var(--blue);
  font-size: var(--forty-px);
}
.behind-brand h4,
.pricing__cont .pack .icon {
  font-size: var(--twentyone-px);
}
.behind-brand h4 {
  margin-bottom: 1rem;
  color: var(--blue);
}
.behind-brand li,
.behind-brand p {
  color: var(--dark-grey);
  font-size: var(--seventeen-px);
}
.behind-brand ol,
.faqs-section .faqs-container__top {
  margin-bottom: 2rem;
}
.behind-brand li {
  list-style-type: circle;
  font-weight: 800;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
.about-me a,
.book-call__btn a {
  font-weight: 700;
  text-decoration: none;
}
.behind-brand p {
  margin-bottom: 2rem;
}
.behind-brand .btn:hover a,
.behind-brand a {
  color: var(--white);
}
.sidebar {
  height: fit-content;
  padding: 1rem;
}
.main {
  padding: 2rem 1rem;
  background: var(--white);
}
.cta-btns {
  width: 100%;
  margin-bottom: 2rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.behind-brand button {
  border: 2px solid transparent;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
}
.behind-brand .btn {
  background: var(--white);
  border: 2px solid var(--blue);
}
.behind-brand a {
  font-size: var(--seventeen-px);
}
.behind-brand .btn a {
  font-size: var(--seventeen-px);
  color: var(--blue);
}
.about-me {
  width: var(--width-1200);
  margin: auto auto 6rem;
  padding: 1rem 0;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.about-left {
  order: 2;
}
.about-left h3,
.work-together h3 {
  font-size: var(--forty-px);
  color: var(--blue);
  margin-bottom: 2rem;
}
.about-left h4,
.about-left p,
.system .left p {
  margin-bottom: 1rem;
}
.about-left h4 {
  font-size: var(--nineteen-px);
  color: var(--black);
}
.about-cta,
.about-left p,
.system .left p,
.work-together p {
  font-size: var(--seventeen-px);
  color: var(--dark-grey);
}
.about-right {
  order: 1;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.5rem;
  height: 30rem;
}
.about-right img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.about-me a,
.book-call,
.book-call__btn:hover a,
.stick .bottom p {
  color: var(--white);
}
.about-work {
  margin-top: 2rem;
  width: 100%;
}
.about-me a {
  font-size: var(--nineteen-px);
  padding: 0.7rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.book-call__btn a,
.stick p,
.week-schedule h2 {
  color: var(--blue);
}
.book-call {
  background-color: var(--blue);
  width: var(--width-1200);
  margin: auto auto 6rem;
  padding: 2rem;
  border-radius: 1rem;
}
.book-call h3 {
  font-size: var(--twentyseven-px);
  margin-bottom: 2rem;
}
.book-call p {
  font-size: var(--seventeen-px);
  margin-bottom: 2rem;
}
.book-call__time .icon {
  margin-right: 0.2rem;
}
.book-call__time span {
  margin-right: 1rem;
}
.book-call__btn {
  background: var(--accent-blue);
  border-radius: 10px;
  padding: 0.8rem 3.5rem;
  width: fit-content;
  margin-top: 2rem;
}
.book-call__btn:hover,
.system .left button:hover {
  background: var(--dark-blue);
}
.book-call__btn a {
  font-size: var(--seventeen-px);
}
.week-schedule {
  width: var(--width-800);
  margin: auto auto 6rem;
  padding: 1rem 0;
  border-bottom: 2px solid var(--faded-yellow);
}
.week-schedule h2 {
  font-size: var(--twentyseven-px);
  margin-bottom: 2rem;
}
.week-schedule p {
  color: var(--light-gray);
  font-size: var(--seventeen-px);
  margin-bottom: 2rem;
}
.stick .bottom p,
.stick p {
  font-size: var(--thirteen-px);
}
.graph {
  gap: 0.5rem;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 2rem;
  height: 20rem;
  align-items: end;
}
.stick {
  justify-content: center;
  gap: 0.5rem;
  grid-template-rows: auto auto auto;
  height: 100%;
}
.stick .bottom,
.stick .top {
  border-radius: 1rem;
  width: 6rem;
  margin: 0 auto;
  height: 0;
  transition: height 1s ease-in-out;
}
.stick .top {
  background: var(--accent-blue);
}
.stick .bottom {
  background: var(--blue);
}
.stick p {
  margin-top: 0.5rem;
  text-align: center;
}
.pricing h2,
.service-testimonials h3,
.testimonials h3 {
  font-size: var(--forty-px);
  color: var(--blue);
}
.week-schedule.animate-bars .t-one,
.week-schedule.animate-bars .t-two {
  height: 8.4rem;
}
.week-schedule.animate-bars .b-one,
.week-schedule.animate-bars .b-two {
  height: 9rem;
}
.week-schedule.animate-bars .t-three {
  height: 6.4rem;
}
.week-schedule.animate-bars .b-three {
  height: 11rem;
}
.week-schedule.animate-bars .t-four {
  height: 10.4rem;
}
.week-schedule.animate-bars .b-four {
  height: 7rem;
}
.week-schedule.animate-bars .t-five {
  height: 12.4rem;
}
.week-schedule.animate-bars .b-five {
  height: 5rem;
}
.week-schedule.animate-bars .t-six {
  height: 3.4rem;
}
.week-schedule.animate-bars .b-six {
  height: 14rem;
}
.stick .bottom p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.2rem;
}
.testimonials {
  width: var(--width-1200);
  margin: auto auto 6rem;
}
.testimonail__con h3,
.testimonail__con p {
  text-align: center;
}
.testimonial__slider {
  display: flex;
  overflow-y: hidden;
  width: min(97%, 1200px);
  margin: 3rem auto auto;
}
.testimonial__slider-track {
  display: flex;
  pointer-events: none;
  width: max-content;
  animation: 20s linear infinite tstmSlide;
}
#testimonialSlider .testimonial__slide {
  width: min(90%, 400px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  gap: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  color: var(--primary-white);
}
.testimonial__slide .image-cont {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 2rem;
}
.testimonial__slide .user-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial__slide img {
  width: 100%;
  object-fit: cover;
}
.contact-info div,
.testimonial__client-rating {
  margin-bottom: 1rem;
}
.chose-me h3,
.chose-me p {
  margin-bottom: 2rem;
}
.testimonial__client-rating .icon {
  color: #ffd900;
  font-size: var(--nineteen-px);
}
.pricing .accent-txt,
.testimonial__client-msg {
  color: var(--dark-grey);
  font-size: var(--seventeen-px);
}
.testimonial__client-msg {
  letter-spacing: -8%;
  font-weight: 600;
}
@keyframes tstmSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.pricing .accent-txt {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing h2 {
  text-align: center;
}
.pricing h3 {
  font-size: var(--twentyseven-px);
}
.pricing .left p {
  background: rgba(255, 255, 255, 0.347);
  padding: 0.3rem 1rem;
  margin: 1rem 0;
  font-size: var(--seventeen-px);
  font-weight: 600;
  border-radius: 20px;
}
.pricing__cont,
.work-together__con {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}
.pricing .bottom {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
}
.pricing .bottom .book {
  margin-top: 0.7rem;
}
.pricing .bottom a {
  background: var(--accent-blue);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: var(--dark-blue);
}
.pricing .bottom span {
  font-size: var(--twentyfour-px);
  font-weight: 800;
}
.pricing__cont .left .top {
  border: 1px solid #f4f4f4a4;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.chose-me,
.contact-me {
  border-radius: 1rem;
  margin: auto auto 5rem;
  width: var(--width-1200);
}
.pricing__cont .left li {
  padding: 0.5rem;
  border-bottom: 1px solid #f4f4f4a4;
}
.pricing__cont .pack {
  padding: 0.6rem;
  color: var(--dark-grey);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.pricing__cont .top {
  padding: 2rem;
  border-radius: 15px;
  background: var(--accent-blue);
}
.pricing__cont .left,
.pricing__cont .right .bottom a {
  background: var(--dark-blue);
  color: var(--white);
}
.ribbon-icon {
  font-size: 40px;
}
.pricing__cont .pack li {
  list-style: none;
  display: flex;
  border-bottom: 1px solid var(--light-gray);
  align-items: center;
  padding: 0.5rem;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing__cont .right p {
  background: rgba(229, 227, 255, 0.347);
  padding: 0.3rem 1rem;
  margin: 1rem 0;
  font-size: var(--seventeen-px);
  font-weight: 600;
  border-radius: 20px;
}
.chose-me,
.contact--cta a,
.get-started,
.pricing__cont .right .bottom a:hover,
.system .left button {
  background: var(--blue);
}
.pricing__cont .right .bottom {
  margin-top: 4rem;
}
.pricing__cont .left .bottom a:hover {
  background: var(--blue);
  color: var(--white);
}
.chose-me {
  padding: 2rem;
  color: var(--white);
}
.chose-me h3 {
  font-size: var(--forty-px);
}
.chose-me p,
footer a {
  font-size: var(--seventeen-px);
}
.contact-me h3,
.get-started__con h3,
.section-title,
.system .left h3 {
  font-size: var(--forty-px);
}
.contact-me {
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.8fr 1.2fr;
}
.contact-me .left {
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.contact-me .left img {
  height: 100%;
  object-fit: cover;
}
.contact-me .right {
  padding: 2rem 1rem;
}
.contact-me h3 {
  color: var(--blue);
}
.contact-me p {
  margin-bottom: 1rem;
  color: var(--dark-grey);
}
.contact-me img {
  width: 100%;
  height: 100%;
}
.contact-info a {
  text-decoration: none;
  color: var(--blue);
  font-size: var(--seventeen-px);
}
.contact--cta a {
  padding: 0.8rem 3rem;
  margin: 2rem 0;
  display: flex;
  width: max-content;
  border-radius: 10px;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition-ani);
}
.contact--cta a:hover{
  background: var(--dark-blue);
}
.get-started__con button,
.system .left button {
  padding: 1rem;
  transition: var(--transition-ani);
}
.contact-info .socials a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contact-info .icon {
  font-size: var(--twentyfour-px);
  color: var(--dark-grey);
}
footer {
  padding: 2rem;
  width: var(--width-1200);
  margin: auto;
  text-align: center;
  border-top: 2px solid var(--faded-yellow);
}
footer a {
  color: var(--DeepGray);
  font-weight: 400;
}
.system {
  width: var(--width-1200);
  margin: auto auto 5rem;
  padding: 8rem 0 5rem;
  display: flex;
  justify-content: right;
}
.system .left {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 4rem 2rem;
  border-radius: 10px;
  top: 50%;
  left: 0;
  width: var(--width-1200);
  transform: translateY(-50%);
}
.system .left h3 {
  margin-bottom: 1rem;
  color: var(--blue);
}
.get-started__con,
.get-started__con button:hover a,
.system .left a {
  color: var(--white);
}
.system .left button {
  border-radius: 10px;
  border: none;
}
.get-started__con button:hover,
.work-together__con .left button:hover {
  background: var(--dark-blue);
}
.system .left a {
  text-decoration: none;
  font-size: var(--seventeen-px);
}
.system .right {
  width: var(--width-1200);
  border-radius: 10px;
  overflow: hidden;
}
.system .right img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.get-started {
  padding: 5rem 0;
  margin-bottom: 5rem;
}
.get-started__con {
  width: var(--width-1200);
  margin: auto;
  text-align: center;
}
.get-started__con h3 {
  margin-bottom: 2rem;
}
.get-started__con p {
  font-size: var(--seventeen-px);
  margin-bottom: 2rem;
  text-wrap: balance;
}
.get-started__con button {
  background: var(--accent-blue);
  border-radius: 10px;
  border: none;
}
.get-started__con a {
  text-decoration: none;
  color: var(--blue);
  font-size: var(--seventeen-px);
}
.faqs-section,
.work-together {
  width: var(--width-1200);
  margin: auto auto 5rem;
}
.work-together__con .left .step {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}
.work-together h4 {
  font-size: var(--twentyone-px);
  margin-bottom: 1rem;
  color: var(--black);
}
.icon-con {
  background: var(--blue);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.work-together__con .left button {
  padding: 1rem 2rem;
  background: var(--blue);
  border-radius: 10px;
  border: none;
  transition: var(--transition-ani);
}
.work-together__con .left button a {
  text-decoration: none;
  color: var(--white);
  font-size: var(--seventeen-px);
}
.work-together__con .right {
  height: 92%;
}
.work-together__con .right img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.faqs-section .faqs-container__top h2 {
  font-size: var(--twentyseven-px);
  color: var(--blue);
  margin-bottom: 1rem;
}
.faqs-section .faqs-container__lower .accordion {
  margin: 5px auto;
}
.faqs-section .faqs-container__lower .accordion-item {
  box-shadow: var(--shadow);
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.faqs-section .faqs-container__lower .accordion-header {
  background-color: var(--white);
  padding: max(2rem, 1vw);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--seventeen-px);
  font-weight: 600;
  color: var(--black);
  position: relative;
}
.faqs-section .faqs-container__lower .accordion-header .close-btn {
  height: -moz-max-content;
  height: max-content;
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.faqs-section .faqs-container__lower .accordion-header .close-btn .icon {
  font-size: 30px;
  color: #1549f3;
  transition: 0.2s ease-in-out;
}
.faqs-section .faqs-container__lower .accordion-header.active .close-btn {
  background: #1549f3;
}
.faqs-section .faqs-container__lower .accordion-header.active .close-btn .icon {
  transform: rotate(45deg);
  color: #fff;
}
.faqs-section .faqs-container__lower .accordion-content {
  max-height: 0;
  margin: auto;
  width: var(--width-1200);
  overflow: hidden;
  font-weight: 500;
  transition: max-height 0.3s ease-out;
}
.faqs-section .faqs-container__lower .accordion-content p {
  border-top: 1px solid var(--accent-blue);
  font-size: var(--seventeen-px);
  color: var(--dark-grey);
  padding-block: max(2rem, 2vw);
  margin: 0;
}
.designs-section {
  padding: 8rem 0 5rem;
  background: var(--light-grey);
}
.design-card,
.fa-times {
  background: var(--white);
}
.container,
dialog {
  width: var(--width-1200);
  margin: auto;
}
.section-title {
  color: var(--blue);
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-subtitle {
  font-size: var(--seventeen-px);
  color: var(--dark-grey);
  margin-bottom: 2rem;
  text-align: center;
  text-wrap: balance;
}
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.design-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-ani) !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.design-card img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.card-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.design-card:hover {
  transform: translateY(-5px) !important;
}
.design-thumbnail {
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.design-card p {
  color: var(--dark-grey);
  font-size: var(--fifteen-px);
}
dialog::backdrop {
  background: var(--black);
}
dialog img {
  width: 100%;
  object-fit: contain;
}
.fa-times {
  position: fixed;
  top: 3%;
  right: 19%;
  z-index: 100;
  border: 2px solid var(--black);
  border-radius: 10px;
  color: var(--black);
  font-size: 2rem;
  transition: 0.2s ease-in-out;
}
.cta-design {
  background: var(--blue);
  padding: 4rem 1.5rem;
  width: var(--width-1200);
  text-align: center;
  border-radius: 1rem;
  margin: 5rem auto 10rem;
}
.cta-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.cta-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--white);
}
.cta-btn {
  background-color: var(--light-grey);
  color: var(--blue);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: var(--transition-ani);
}
.cta-btn:hover {
  color: var(--white);
  background-color: var(--dark-blue);
}
@media (max-width: 768px) {
  .sidebar,
  .system .left {
    position: static;
  }
  .book-call__btn,
  .pricing__cont .pack {
    text-align: center;
  }
  :root {
    --thirteen-px: 13px;
    --seventeen-px: 1px;
    --fifteen-px: 14px;
    --seventeen-px: 16px;
    --nineteen-px: 18px;
    --twentyone-px: 19px;
    --twentyfour-px: 20px;
    --twentyseven-px: 21px;
    --forty-px: 25px;
    --sixty-px: 26px;
  }
  .system {
    padding: 20rem 0 5rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .system .left {
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
  }
  .system .right img {
    width: 100%;
    object-fit: cover;
    padding: 0;
  }
  .system .right {
    width: 100%;
    height: 30rem;
    margin: -10rem auto auto;
  }
  .behind-brand .cont,
  .contact-me {
    grid-template-columns: 1fr;
  }
  .book-call__cta {
    width: 100%;
  }
  #testimonialSlider .testimonial__slide {
    width: min(90%, 350px);
  }
  .navbar__container {
    padding: 1rem 2rem 1rem 0;
  }
  .navlinks__cont {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    height: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-ani);
  }
  .navlinks__cont ul {
    flex-direction: column;
    width: 95%;
    margin: 1rem 0;
  }
  .navlinks__cont li {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
  }
  .get-started__con button,
  .navlinks__cont a,
  .pricing .bottom .book,
  .work-together__con .left button {
    width: 100%;
  }
  .nav-right {
    width: 95%;
    margin: auto auto 1rem;
  }
  .navbar__logo img {
    width: 100%;
    height: 60px;
    scale: 1.1;
    object-fit: cover;
  }
  .navlinks__cont.open {
    height: 240px;
    opacity: 1;
  }
  .navbar__menu .equals {
    display: block;
  }
  .nav__profile-img,
  .navbar__menu .times {
    display: none;
  }
  .nav-right .nav__book-call {
    padding: 0.7rem 2rem;
  }
  .contact--cta a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar__menu {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .navbar__menu .icon {
    font-size: 1.5rem;
  }
  .home__cont {
    padding: 10rem 2rem;
    border: none;
    background-position: 50% 100px;
  }
  .book-call {
    padding: 1.5rem;
  }
  .stick .bottom,
  .stick .top {
    width: 4rem;
  }
  .about-me a {
    display: flex;
    justify-content: center;
  }
  .pricing .left p,
  .pricing__cont .right p {
    padding: 0.3rem 0.5rem;
  }
  .book-call__btn {
    width: 100%;
  }
  .pricing__cont .top {
    padding: 1rem;
  }
  .pricing .bottom {
    flex-direction: column;
  }
  .pricing .bottom .book a {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .contact-me .left {
    overflow: hidden;
    border-radius: 1rem;
  }
  .home__content h3 {
    font-size: var(--sixty-px);
  }
}
@media (max-width: 480px) {
  :root {
    --thirteen-px: 13px;
    --seventeen-px: 1px;
    --fifteen-px: 14px;
    --seventeen-px: 16px;
    --nineteen-px: 18px;
    --twentyone-px: 19px;
    --twentyfour-px: 20px;
    --twentyseven-px: 21px;
    --forty-px: 25px;
    --sixty-px: 24px;
  }
  .stick .bottom,
  .stick .top {
    width: 3rem;
  }
  .system .left button {
    width: 100%;
  }
  .fa-times {
    position: fixed;
    top: 5%;
    right: 2%;
    z-index: 100;
    border-radius: 10px;
    color: var(--black);
    font-size: 2rem;
    background: var(--white);
    transition: 0.2s ease-in-out;
  }
}
@media (max-width: 370px){
.nav__book-call{
  display: none;
}
}
