/* =========================
   Mileast Font
========================= */

@font-face {
  font-family: "Mileast";
  src: url("../fonts/mileast/Mileast.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* =========================
   Grift Font Family
========================= */

/* Regular */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/OpenType-TT/Grift-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/OpenType-TT/Grift-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/OpenType-TT/Grift-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Grift";
  src: url("../fonts/grift/OpenType-TT/Grift-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Brand palette */
  --primary: #edebde; /* cream background */
  --black: #1e1e1e; /* main text */
  --wine: #511e25; /* deep burgundy */
  --red: #68100f; /* accent red */
  --taupe: #b6a697; /* muted neutral */
  --gold: #c0914b; /* premium accent */

  /* Semantic tokens */
  --heading: var(--black);
  --paragraph: rgba(30, 30, 30, 0.7);
  --text: rgba(30, 30, 30, 0.85);

  --white: #ffffff;
  --secondary: var(--gold);
  --extra: #1e1e1e; /* dark sections */
  --button-color: var(--wine);
  --transparent: #fff0;
  --tertiary: rgba(104, 16, 15, 0.1);
  --box-shadow: rgba(0, 0, 0, 0.08);

  --radius-4px: 4px;
  --button-radius: 48px;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

body {
  background-color: var(--primary);
  color: var(--black);
  font-family: "Grift", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mileast", serif;
  font-weight: normal;
}

h1 {
  color: var(--heading);
  text-transform: capitalize;
  max-width: 1110px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 84px;
  font-weight: 400;
  line-height: 98px;
}

h2 {
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
}

h3 {
  color: var(--heading);
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

h4 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

h5 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

h6 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

p {
  color: var(--paragraph);
  margin-bottom: 0;
  font-family: Grift, sans-serif;
  font-weight: 400;
}

a {
  color: var(--heading);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  display: block;
}

.navbar {
  z-index: 99;
  background-color: var(--primary);
  border-bottom: 1px solid #0000;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
  position: sticky;
  top: 0;
}

.link-dropdown {
  z-index: 1;
}

.navbar-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  background-color: var(--red);
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 28px;
  transition:
    color 1s ease-out,
    background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar-button:hover {
  background-color: var(--wine);
}

.button-text-wrapper {
  white-space: nowrap;
  height: 28px;
  overflow: hidden;
}

.container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1630px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: relative;
}

.container.middle-allign {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: center;
  display: flex;
}

.container.style-guide-page {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container.gap-60px {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: stretch;
  display: flex;
}

.container.blog-container {
  max-width: 1480px;
}

.container._1480px {
  max-width: 1440px;
}

.default-text {
  color: #fff;
  font-weight: 300;
}

.nav-list {
  color: #131316;
  flex: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.icon-outlined {
  font-family:
    Material Icons Outlined,
    sans-serif;
}

.icon-outlined._24px-white {
  color: var(--heading);
  font-size: 24px;
}

.button-svg {
  width: 24px;
  height: 24px;
}

._3-column-grid {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  display: grid;
}

.footer {
  margin-top: 120px;
  position: relative;
}

.contents {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  max-width: 700px;
  display: flex;
}

.contents._60 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 60%;
  margin-top: -100px;
}

.section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 120px;
  margin-bottom: 120px;
  display: flex;
  position: relative;
}

.section.single-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.title-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  display: flex;
}

.title-wrapper.left-align {
  z-index: 2;
  text-align: left;
  align-items: flex-start;
  position: relative;
}

.mask {
  position: relative;
  overflow: hidden;
}

.heading {
  text-transform: capitalize;
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.heading._940px {
  max-width: 940px;
}

.slider-navigation {
  width: 100%;
  max-width: 135px;
  inset: 210px auto auto -190px;
}

.gathering-slider-navigation {
  width: 100%;
  max-width: 135px;
  inset: -100px 0% auto auto;
}

.secondary-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  background-color: var(--wine);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  font-size: 18px;
  line-height: 28px;
  transition:
    color 1s ease-out,
    background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  position: relative;
}

.secondary-button:hover {
  background-color: var(--red);
}

.movement-card {
  justify-content: center;
  align-items: center;
  max-width: 635px;
  height: 440px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-thumbnail {
  transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.blog-thumbnail:hover {
  transform: scale(1.1);
}

.blog-body {
  grid-column-gap: 31px;
  grid-row-gap: 31px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.blog-card {
  border-radius: 5px;
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.blog-card-title {
  color: #efefef;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 35px;
  transition: color 0.2s;
}

.blog-card-title:hover {
  color: var(--secondary);
}

.banner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 77px;
  padding-bottom: 131px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.breadcrumb-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-merge {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.breadcrumb {
  color: var(--heading);
  font-size: 17px;
  font-weight: 300;
  line-height: 195%;
}

.breadcrumb.w--current {
  line-height: 26px;
}

.heading-style-box {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--extra);
  width: 100%;
  min-width: 700px;
  max-width: 700px;
  margin-bottom: 40px;
  padding: 50px;
  display: flex;
}

._20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.button-style-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  display: flex;
}

.color-box-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.color-box {
  background-color: var(--secondary);
  border: 1px solid #fff;
  border-radius: 4px;
  width: 100px;
  height: 100px;
}

.color-box.heading-color {
  background-color: var(--heading);
}

.color-box.paragraph-color {
  background-color: var(--paragraph);
}

.color-box.secondary-color {
  background-color: var(--secondary);
  color: #428bca;
}

.color-box.primary-color {
  background-color: var(--primary);
}

.color-box.button-color {
  background-color: var(--button-color);
  color: #ecf3fa;
}

.color-box.text-color {
  background-color: var(--heading);
}

.color-box.extra-color {
  background-color: var(--extra);
  color: #ecf3fa;
}

.sub-title-of-style-guide {
  color: var(--paragraph);
  min-width: 100px;
  margin-right: 0;
  font-weight: 400;
  line-height: 20px;
}

.tag-box {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.font-weight-bold-text {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1px;
}

.color-hex-code {
  color: var(--paragraph);
  text-transform: uppercase;
  line-height: 24px;
}

.flex-horizontal {
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-horizontal.style-guide-flex {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.font-details-text {
  margin-left: 0;
  margin-right: 0;
  line-height: 20px;
}

.style-guide-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.heading-details {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: -10px;
  display: flex;
}

.text-type {
  color: var(--heading);
  margin-bottom: -5px;
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
}

.tag-text {
  color: #fff;
  font-size: 100px;
  font-weight: 600;
  line-height: 130px;
}

.title-with-border {
  color: var(--heading);
  border-bottom: 3px solid #d9d9d9;
  margin-bottom: 45px;
  padding-bottom: 10px;
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
}

.heading-details-block {
  grid-column-gap: 20px;
  display: flex;
}

.color-box-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  display: flex;
}

._12px-gap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

._60px-margin-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 120px;
  display: flex;
  position: relative;
}

.widget-sidebar {
  grid-row-gap: 0px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 360px;
  max-width: 400px;
  padding: 20px 40px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 30px #4050de1a;
}

.main-block {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 550px;
  max-width: none;
  display: flex;
}

.rich-text-block {
  margin-bottom: 20px;
}

.rich-text-block img {
  border-radius: 10px;
  max-height: 590px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.rich-text-block p {
  color: var(--white);
  max-width: none;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 30px;
}

.rich-text-block h4 {
  margin-top: 32px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.changelog-section {
  margin-top: 40px;
  margin-bottom: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

.changelog-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.version-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.version-description {
  line-height: 28px;
}

.license-section {
  margin-top: 40px;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

.license-main-text {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.license-block {
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.license-wrapper {
  max-width: 720px;
}

.license-link-block {
  grid-row-gap: 6px;
  flex-direction: column;
  display: flex;
}

.license-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.license-paragraph {
  margin-bottom: 4px;
}

.absolute-linear-for-button {
  z-index: -1;
  background-image: linear-gradient(125deg, #fff, #ffffff26 20% 80%, #fff);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.site-logo-wrapper {
  width: 100%;
  max-width: 160px;
}

.nav-button-list {
  display: none;
}

.site-logo {
  max-width: 220px;
}

.cross-icon {
  display: none;
}

.nav-menu-border {
  background-color: var(--secondary);
  border-radius: 2px;
  width: 100%;
  height: 2px;
}

.nav-menu {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.button-link-text-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--button-color);
  -webkit-backdrop-filter: blur(400px);
  backdrop-filter: blur(400px);
  color: #fff;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  border: 2px #fff;
  border-radius: 48px;
  justify-content: center;
  align-items: center;
  padding: 15px 27px;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-link-text-block.transparent-color {
  background-color: var(--primary);
}

.nav-link {
  color: var(--black);
  letter-spacing: 0.84px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease-out;
  display: flex;
}

.nav-link:hover {
  color: var(--wine);
}

.nav-link:focus {
  color: var(--wine);
}

.nav-link:focus-visible,
.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: var(--secondary);
}

.navbar-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.primary-button {
  z-index: 1;
  white-space: nowrap;
  border-radius: 48px;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.background-photo-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 1800px;
  display: flex;
}

.hero-paragraph {
  color: #fff;
  max-width: 1100px;
  line-height: 30px;
}

.margin-top-20px {
  margin-top: 20px;
}

.background-image-animation {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1760px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.linear-black-background {
  z-index: 1;
  background-image: linear-gradient(
    rgba(7, 7, 7, 0.25),
    rgba(7, 7, 7, 0.45) 45%,
    rgba(7, 7, 7, 0.65) 85%
  );
  position: absolute;
  inset: 0%;
}

.hero-section {
  padding-top: 80px;
  padding-bottom: 240px;
  position: relative;
  overflow: hidden;
}

._100px-svg {
  max-width: 100px;
  position: absolute;
  inset: auto 20px 0% auto;
}

.creative-absolute-block {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 120px -130px;
  transform: rotate(-90deg);
}

.creative-divider {
  background-color: #fff;
  width: 70px;
  height: 1px;
}

.background-portrait-image {
  height: 400px;
}

.highlight {
  background-image: url("../images/Group-111_1Group 111.webp");
  background-position: 50% 96%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 20px;
  display: inline-block;
}

.hero-block {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 30px;
  display: flex;
}

.absolute-block-title {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 20px;
  line-height: 155%;
}

.hero-title {
  margin-top: 0;
  margin-bottom: 0;
}

.icon {
  letter-spacing: 0;
  text-transform: none;
  font-family:
    Material Icons,
    sans-serif;
}

.icon._20px {
  font-size: 20px;
  line-height: 20px;
}

.icon._32px {
  font-size: 32px;
  line-height: 32px;
}

.icon._50px {
  font-size: 50px;
  line-height: 50px;
}

._2-column-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  display: flex;
  position: relative;
}

._2-column-block.about-page-section {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

._2-column-block.center {
  justify-content: center;
}

.service-card-wrapper {
  max-width: 510px;
  padding: 4px;
  position: relative;
  overflow: hidden;
}

._45px-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  line-height: 80px;
}

._45px-title._590px {
  max-width: 590px;
}

._45px-title._720px {
  max-width: 720px;
}

._45px-title.uppercase {
  text-transform: uppercase;
}

.about-image {
  max-height: 784px;
}

._17px-paragraph {
  color: #fff;
  font-size: 17px;
}

._18px-paragraph {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
}

.about-contents {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 41%;
  max-width: 628px;
  display: flex;
}

.margin-top-15px {
  margin-top: 15px;
  display: flex;
}

.absolute-image {
  z-index: 2;
  justify-content: center;
  align-items: center;
  max-width: 355px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

._15px-gap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.absolute-linear {
  z-index: -1;
  background-image: linear-gradient(120deg, #fff, #040404 25% 75%, #fff);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.absolute-linear.rounded {
  border-radius: 100%;
}

.image-wrapper {
  justify-content: flex-end;
  width: 60%;
  display: flex;
  position: relative;
}

.image-wrapper._50 {
  width: 50%;
}

.image-wrapper.max-width-590px {
  max-width: 590px;
}

._35px-svg {
  max-width: 35px;
}

._24px-text {
  font-size: 24px;
  line-height: 30px;
}

.page-wrapper {
  overflow: hidden;
}

._14px-title {
  letter-spacing: 0.84px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
}

.icon-and-contents-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 15px;
}

.about-image-wrapper {
  width: 80%;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.secondary-button-link-text {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-backdrop-filter: blur(400px);
  backdrop-filter: blur(400px);
  color: #fff;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  background-color: #ffffff26;
  border: 2px #fff;
  border-radius: 48px;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.secondary-button-link-text.different-bg {
  background-color: #fff6;
}

.services-slider {
  background-color: #0000;
  width: 95%;
  height: 100%;
  margin-top: 15px;
}

.services-arrow-left {
  align-items: center;
  display: flex;
  left: -40px;
}

._30px-gap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

._9px-margin-both-side {
  margin-left: 9px;
  margin-right: 9px;
}

.navigation-icon {
  color: #1a1919;
  background-color: #ffffffbf;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  padding: 14px;
  font-family:
    Material Icons,
    sans-serif;
  font-size: 48px;
  line-height: 48px;
  display: flex;
}

.services-arrow-right {
  align-items: center;
  display: flex;
  right: -40px;
}

.services-card {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--extra);
  text-align: left;
  border-radius: 4px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 50px;
  display: flex;
}

._5px-margin-both-sides {
  margin-left: 5px;
  margin-right: 5px;
}

.hidden {
  display: none;
}

.services-mask {
  max-width: 540px;
  overflow: visible;
}

._64px-number {
  color: var(--secondary);
  font-size: 64px;
  line-height: 75px;
}

.logo-block {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  place-content: stretch center;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo-image {
  object-fit: contain;
  max-width: 244px;
  max-height: 70px;
  transition: transform 0.4s;
}

.logo-image:hover {
  transform: translate(0, -10px);
}

.full-height-image {
  height: 100%;
}

.margin-bottom-10px {
  margin-bottom: 10px;
}

._2-grid-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.content-block {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--primary);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 730px;
  padding: 80px 100px 80px 80px;
  display: flex;
}

.wrapper-for-background-animation {
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.wrapper-for-background-animation._5px-border {
  text-align: left;
  padding: 5px;
}

.vertical-wrapper {
  z-index: 1;
  flex-direction: column;
  display: flex;
  position: relative;
}

.list-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.footer-text {
  color: var(--paragraph);
  font-size: 17px;
  line-height: 26px;
}

.footer-block {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-direction: column;
  align-items: stretch;
  min-width: 147px;
  display: flex;
}

.footer-block.follow-block {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  max-width: 285px;
}

.footer-block.first-block {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  width: 100%;
  max-width: 323px;
}

.footer-block.copyrights-block {
  border-top: 1px solid var(--paragraph);
  min-width: 150px;
  max-width: 198px;
  padding-top: 30px;
}

.link-lists {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.footer-title {
  color: #fff;
  font-size: 25px;
  line-height: 35px;
}

.footer-wrapper {
  grid-column-gap: 40px;
  border-bottom: 1px solid #d1d1d1;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 30px;
  display: flex;
}

.footer-link {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  color: var(--paragraph);
  justify-content: flex-start;
  font-size: 17px;
  line-height: 26px;
  text-decoration: none;
  transition: color 0.4s ease-out;
  display: flex;
}

.footer-link:hover {
  color: var(--secondary);
}

.information-wrapper {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 8px;
  display: flex;
}

.information-block {
  grid-column-gap: 15px;
  align-items: center;
  display: flex;
}

.social-icon {
  font-family: Icofont, sans-serif;
  font-size: 20px;
  line-height: 20px;
  transition:
    color 0.4s,
    transform 0.2s;
}

.social-icon:hover {
  color: var(--secondary);
  transform: translate(0, -5px);
}

.copyrights-text {
  color: var(--heading);
  letter-spacing: 0.84px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 24px;
}

.max-width-800px {
  max-width: 800px;
}

.testimonial-slider {
  background-color: var(--transparent);
  height: 100%;
  overflow: hidden;
}

.testimonial-block {
  padding-top: 60px;
  display: flex;
}

.testimonial-card-wrapper {
  background-color: var(--extra);
  width: 78%;
  padding: 30px 40px 78px 47px;
}

.testimonial-image {
  width: 34%;
  position: absolute;
  bottom: 150px;
  left: auto;
  right: 0;
}

.testimonial-card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  max-width: 810px;
  display: flex;
}

.testimonial-text {
  color: var(--heading);
  font-size: 32px;
  line-height: 60px;
}

.divider {
  background-color: #efefef;
  width: 100%;
  height: 1px;
}

._36px-text {
  font-size: 36px;
  line-height: 42px;
}

._24px-text-paragraph-color {
  color: var(--paragraph);
  font-size: 24px;
  line-height: 30px;
}

.testimonial-mask {
  overflow: visible;
}

.testiomonial-arrow {
  inset: auto 0% 80px -150px;
}

.testiomonial-arrow.right {
  left: 0;
  right: -50px;
}

.testimonial-slider-nav-style-css {
  display: none;
}

.slide-nav {
  display: flex;
  left: 45px;
}

._4-column-flex {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.pricing-card {
  text-align: left;
  background-color: #353535;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 35px;
  display: flex;
}

.pricing-card.featured {
  background-color: var(--extra);
  padding-top: 70px;
  padding-bottom: 53px;
}

.pricing-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
}

.pricing-card-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px dashed #dadada;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 25px;
  padding-bottom: 25px;
  display: flex;
}

.pricing-card-body {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
  display: flex;
}

.pricing-feature-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  font-size: 17px;
  line-height: 26px;
}

.price {
  font-size: 35px;
  line-height: 47px;
}

.featured-text {
  color: var(--secondary);
  letter-spacing: 0.84px;
  text-transform: uppercase;
  background-color: #ffffff40;
  padding: 10px 25px;
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.secondary-color {
  color: var(--secondary);
}

.paragraph-color {
  color: var(--paragraph);
}

.pricing-card-wrapper,
.featured-pricing-card {
  width: 100%;
  max-width: 337px;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

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

.blog-date {
  color: var(--paragraph);
  font-size: 24px;
  line-height: 28px;
}

.margin-top-30px {
  margin-top: 30px;
}

.call-to-action {
  background-image: url("../images/website-assets/Julie/Part 3/Julie0669_(2) 1.jpg");
  background-position: top;
  background-size: cover;
  padding-top: 162px;
  padding-bottom: 124px;
}

._72px-title {
  text-transform: capitalize;
  max-width: 1270px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 72px;
  line-height: 84px;
}

._72px-title._985px-width-uppercase {
  text-transform: uppercase;
  max-width: 985px;
}

.paragraph-white {
  color: var(--white);
}

.paragraph-white._980px-width {
  max-width: 980px;
}

.banner-background-overlay {
  z-index: 1;
  background-image: linear-gradient(
    to bottom,
    #07070799,
    #070707cc 50%,
    var(--primary) 84%
  );
  position: absolute;
  inset: 0%;
}

.banner-background-overlay.darker {
  background-image: linear-gradient(
    180deg,
    #070707d9,
    #070707e6 50%,
    var(--primary) 84%
  );
}

.page-title {
  font-size: 57px;
  line-height: 140%;
}

.breadcrumb-svg {
  object-fit: contain;
  width: 32px;
}

.margin-top-60px-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 67%;
  max-width: 590px;
  margin-top: 60px;
  display: flex;
}

.image-wrapper-590px {
  justify-content: flex-end;
  width: 40%;
  max-width: 590px;
  min-height: 615px;
  display: flex;
  position: relative;
}

.about-cards-wrapper {
  background-color: var(--extra);
  padding: 35px 28px 35px 12px;
  position: absolute;
  top: 385px;
  left: auto;
  right: 0%;
}

.about-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 353px;
  padding-left: 23px;
  padding-right: 7px;
  display: flex;
}

.about-card.middle-border-card {
  border-left: 1px solid #3b3b3b;
  border-right: 1px solid #3b3b3b;
}

._26px-text {
  font-size: 26px;
  line-height: 30px;
}

._2-column-grid {
  grid-column-gap: 37px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 23px;
  display: grid;
}

.card {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  background-color: var(--extra);
  flex-direction: column;
  align-items: flex-start;
  padding: 35px;
  display: flex;
}

._35px-number {
  color: var(--secondary);
  margin-bottom: 13px;
  font-size: 35px;
  line-height: 47px;
}

._20px-text {
  font-size: 20px;
}

.portfolio-title-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  max-width: 706px;
}

.portfolio-container {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  justify-content: space-between;
  margin-top: 98px;
}

.portfolio {
  max-width: 705px;
  position: relative;
  overflow: hidden;
}

.portfolio-body {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-color: var(--extra);
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 48px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.see-details-button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--white);
  align-items: center;
  margin-top: 38px;
  font-size: 20px;
  line-height: 20px;
  display: flex;
}

.portfolio-vertical-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.portfolio-vertical-block.move-top-350px {
  transform: translate(0, -360px);
}

._470px-max-width {
  max-width: 470px;
}

.background-video {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 630px;
  display: flex;
}

.package-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.package-body {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.package-body.package-page {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  margin-top: 9px;
}

.package-title {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 34px;
}

.package-title._42px {
  font-size: 42px;
  line-height: 60px;
}

.package-image-wrapper {
  cursor: pointer;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.package-card-price {
  background-color: var(--white);
  color: var(--primary);
  text-transform: uppercase;
  border-radius: 40px;
  padding: 20px 32px 18px 33px;
  font-size: 30px;
  position: absolute;
  inset: auto auto 20px 20px;
}

.package-thumbnail {
  max-height: 470px;
}

.package-thumbnail.height-710px {
  max-height: 710px;
}

.dropdown-texts {
  color: var(--heading);
  padding-bottom: 38px;
  padding-right: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.dropdown-faq-block {
  z-index: auto;
  border-bottom: 1px solid var(--white);
  color: #fff;
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.dropdown-wrapper {
  grid-row-gap: 0px;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1008px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.dropdown-contents {
  background-color: var(--transparent);
  width: 100%;
  display: flex;
  position: static;
  overflow: hidden;
}

.dropdown-switch {
  grid-column-gap: 20px;
  color: #000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 55px 0 50px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.dropdown-title {
  color: var(--heading);
  white-space: pre-wrap;
  font-size: 40px;
  font-weight: 400;
  line-height: 47px;
}

.dropdown-heading {
  color: var(--secondary);
  font-size: 18px;
  line-height: 22px;
}

#faqs .dropdown-wrapper {
  opacity: 1 !important;
  transform: none !important;
}

.faq-icon {
  border: 1px solid var(--white);
  color: var(--heading);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60px;
  height: 60px;
  font-size: 20px;
  line-height: 20px;
  display: flex;
}

.portfolio-image {
  min-height: 600px;
}

.button-wrapper-20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 15px;
}

.absolute-floating-wrapper {
  z-index: 1;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 115px;
}

.absolute-floating-wrapper.card-2 {
  width: 254px;
  height: 108px;
  inset: auto auto 120px 0%;
}

.portrait-image {
  object-fit: contain;
  max-height: 560px;
}

.right-align-paragraph {
  text-align: right;
  max-width: 590px;
}

.photography-service-card {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--extra);
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 35px;
  display: flex;
}

._45px-icon {
  color: #7e7f83;
  letter-spacing: 0;
  text-transform: none;
  font-family:
    Material Icons,
    sans-serif;
  font-size: 45px;
  line-height: 45px;
}

._10px-gap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.tab-switch {
  background-color: var(--button-color);
  letter-spacing: 0.96px;
  text-transform: uppercase;
  border-radius: 48px;
  justify-content: center;
  align-items: center;
  padding: 17px 40px;
  display: flex;
}

.tab-switch.w--current {
  background-color: var(--button-color);
  color: var(--secondary);
}

.tabs-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  display: flex;
}

.tab-wrapper {
  background-color: var(--transparent);
  color: var(--paragraph);
  border-radius: 48px;
  width: 100%;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.tab-wrapper.w--current {
  background-color: var(--transparent);
  color: var(--secondary);
}

.flex-box-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  display: flex;
}

.tabs {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.tabs-content {
  width: 100%;
  margin-top: 70px;
}

.portfolio-thumbnail {
  width: auto;
  height: 250px;
}

.portfolio-hover-block {
  background-color: #00000080;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 15px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

.portfolio-hover-title {
  text-transform: uppercase;
  font-size: 19px;
  line-height: 28px;
}

.story-card {
  width: 100%;
  position: relative;
}

.story-image-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.story-body {
  border-bottom: 3px solid var(--paragraph);
  background-color: var(--extra);
  padding: 32px 20px;
}

._28px-uppercase {
  letter-spacing: 10px;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 28px;
}

.story-image {
  max-height: 470px;
}

.story-hover-wrapper {
  background-color: #000c;
  justify-content: center;
  align-items: center;
  padding: 24px 60px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.decorative-image {
  max-width: 90%;
  position: absolute;
}

.story-grid {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  max-width: 1280px;
  display: grid;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.max-width-640 {
  max-width: 640px;
}

.package-grid {
  grid-column-gap: 48px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  margin-top: 50px;
  display: grid;
}

.middle-align {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.package-hover-image {
  max-width: 80%;
}

.hover-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.package-button {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  padding: 24px 80px 20px;
  font-size: 20px;
  transition:
    color 0.4s,
    background-color 0.3s ease-out;
  display: flex;
  position: absolute;
}

.package-button:hover {
  background-color: var(--transparent);
  color: var(--white);
}

.relative-block {
  position: relative;
}

.package-cover-image {
  max-height: 710px;
}

.block-50-width {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

._60px-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  line-height: 80px;
}

.package-price {
  color: var(--secondary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 45px;
  line-height: 45px;
}

.margin-20px-both-side {
  margin-top: 20px;
  margin-bottom: 20px;
}

.package-body-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 680px;
  padding-top: 30px;
  display: flex;
}

._20px-text-uppercase {
  text-transform: uppercase;
  font-size: 20px;
}

.blog-head {
  position: relative;
}

.blog-cover-image {
  height: 400px;
}

.black-overlay {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  background-image: linear-gradient(125deg, #000000e6, #0009 50%, #000000e6);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.blog-category {
  background-color: var(--white);
  color: var(--black);
  text-transform: uppercase;
  padding: 4px 16px;
  font-size: 12px;
  line-height: 20px;
}

._13px-text {
  font-size: 13px;
  line-height: 18px;
}

._13px-text.captiliza-underline {
  color: var(--secondary);
  text-transform: capitalize;
  text-decoration: underline;
}

._16px-gap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

._5px-gap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.blog-body-container {
  grid-column-gap: 47px;
  grid-row-gap: 47px;
  justify-content: space-between;
  max-width: 1120px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-description p {
  color: var(--white);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 28px;
}

.blog-category-sidebar {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  min-width: 120px;
  display: flex;
}

.category-sidebar-title {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
}

.blgo-summery {
  color: var(--heading);
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 32px;
}

._24px-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.contact-icon-wrapper {
  border: 1px solid var(--white);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  font-family:
    Material Icons Outlined,
    sans-serif;
  font-size: 24px;
  line-height: 24px;
  display: flex;
}

.icon-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
}

.contact-contents {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 442px;
  display: flex;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 610px;
}

.contact-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.input-label {
  color: #f8f9fa;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 22px;
}

.input-field {
  background-color: var(--extra);
  color: #cfd3d7;
  border: 1px solid #8a8888;
  min-height: 56px;
  margin-bottom: 0;
  padding: 16px;
}

.input-field.text-area {
  min-height: 136px;
}

.field-wrapper {
  width: 100%;
}

.cotnact-form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.submit-button {
  color: var(--primary);
  background-color: #ffd970;
  border-radius: 68px;
  padding: 16px 48px;
  line-height: 150%;
}

.field-inputs-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

._404-wrapper {
  background-image:
    url("../images/wepik-export-20240131054208cVSR-1_1wepik-export-20240131054208cVSR 1.webp"),
    linear-gradient(#013364, #013364);
  background-position:
    50%,
    0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding-top: 77px;
  padding-bottom: 131px;
  display: flex;
  position: relative;
  overflow: hidden;
}

._404-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

._404-sub-title {
  text-transform: capitalize;
  font-size: 43px;
  line-height: 50px;
}

._404-text {
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 45px;
  font-size: 20px;
}

._404-image {
  max-width: 720px;
  margin-bottom: 10px;
}

.info {
  color: var(--text);
  letter-spacing: 0.96px;
  text-transform: uppercase;
  line-height: 18px;
}

.portfolio-info {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: flex-end;
}

._15px-uppercase {
  color: var(--white);
  letter-spacing: 0.96px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
}

.portfolio-information-block {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  align-items: flex-end;
}

.portfolio-cover-image-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 90px;
  margin-bottom: 80px;
  display: flex;
  position: relative;
}

.portfolio-cover-image {
  height: 100%;
  max-height: 720px;
}

.absolute-logo {
  max-width: 230px;
  position: absolute;
  top: 7%;
}

.portfolio-name-floating {
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #0003;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 19px;
  position: absolute;
  bottom: 10%;
}

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

.section-top {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 120px;
  display: flex;
  position: relative;
}

.portfolio-video {
  justify-content: center;
  align-items: center;
  height: 720px;
  display: flex;
}

.play-pause-button {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.full-width {
  width: 100%;
}

.portfolio-landscape-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-contain-image {
  max-width: none;
  max-height: 314px;
}

.portfolio-contain-image.landscape {
  width: 100%;
  max-width: 776px;
  height: 100%;
  max-height: none;
}

.landscape-grid {
  grid-column-gap: 37px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.portfolio-title-on-hover {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #0003;
  align-items: center;
  padding: 6px 7px 6px 15px;
  font-size: 50px;
  line-height: 50px;
  display: flex;
  position: absolute;
  inset: auto auto 20px 20px;
}

.portfolio-card-title {
  text-transform: uppercase;
  max-width: 260px;
  font-size: 18px;
  line-height: 26px;
}

.flex-box {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

._38px-svg {
  max-width: 38px;
}

.photography-slider {
  width: 100%;
  height: 100%;
}

.slider-arrow {
  inset: auto 110px 0% auto;
}

.slider-arrow.right-arrow {
  right: 20px;
}

.slider-icon {
  letter-spacing: 0;
  text-transform: none;
  font-family:
    Material Icons,
    sans-serif;
  font-size: 16px;
  line-height: 16px;
}

.slider-icon._24px {
  font-size: 24px;
  line-height: 24px;
}

.arrow {
  -webkit-backdrop-filter: blur(400px);
  backdrop-filter: blur(400px);
  background-color: #ffffff26;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  font-family:
    Material Icons,
    sans-serif;
  display: flex;
}

.photoshoot-mask {
  max-width: 1060px;
  overflow: visible;
}

.slider {
  background-color: #0000;
  width: 100%;
  max-width: 1640px;
  height: 100%;
  min-height: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.inner-slide-block {
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 700px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
}

.inner-slide-block.w--current {
  background-color: #0000;
  width: 100%;
  max-width: 1060px;
  height: 700px;
  overflow: hidden;
}

.photograph-info-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
  position: absolute;
  inset: auto auto 45px 45px;
}

.slider-image {
  border: 15px solid #040404;
  width: 100%;
  height: 100%;
  max-height: 750px;
}

.image-info-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #efefef;
  white-space: nowrap;
  background-color: #0d0d0dcc;
  border-radius: 36px;
  align-items: center;
  padding: 20px 30px;
  display: flex;
}

.photography-slides {
  width: 100%;
  height: 100%;
}

.arrow-background-wrapper {
  border-radius: 100%;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.buy-button-2 {
  color: #000;
  background-color: var(--secondary);
  border: 2px solid #000;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 12px 21px;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  transition: background-color 0.35s;
  display: flex;
}

.buy-button-2:hover {
  color: #fff;
  background-color: #fff0;
  border: 2px solid var(--secondary);
}

.buy-button-2.trasparent-btn {
  color: #fff;
  background-color: #fff0;
  border: 2px solid var(--secondary);
  font-size: 16px;
  line-height: 26px;
}

.buy-button-2.trasparent-btn:hover {
  color: #040404;
  background-color: var(--secondary);
}

.buy-button-2.red-button {
  background-color: var(--secondary);
  border: 2px solid #fff0;
  padding: 14px 30px;
  font-size: 16px;
  line-height: 26px;
}

.buy-button-2.red-button:hover {
  color: #fff;
  background-color: #fff0;
  border: 2px solid var(--secondary);
}

.preview-navbar {
  background-color: #040404;
  border-bottom: 1px solid #0000;
  width: 100%;
  margin-bottom: -100px;
  padding-top: 24px;
  padding-bottom: 24px;
  position: fixed;
  top: 0;
}

.preview-title-2 {
  color: #fff;
  max-width: 950px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 80px;
}

._356px-image-2 {
  max-width: 356px;
  position: absolute;
  top: 854px;
  right: 0;
}

.topbar {
  object-fit: contain;
  width: auto;
  height: 36px;
}

.preview-nav-menu {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 0;
  display: flex;
}

._476px-image-2 {
  max-width: 476px;
  position: absolute;
  inset: 860px auto auto -3%;
}

.preview-4-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  width: 100%;
}

.preview-4-col-grid.features-preview {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  margin-top: 70px;
}

.site-feature-card-2 {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  box-shadow: 9px 12px #fff9;
}

.site-feature-card-2:hover {
  box-shadow: 0 0 #fff9;
}

.site-images {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  width: 100%;
  margin-top: 75px;
  display: flex;
}

.large-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.large-container.middle-allign {
  border: 0 #fff;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

._408px-image {
  max-width: 408px;
  max-height: 270px;
  position: absolute;
  left: 108px;
}

.homepage-demos-2 {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 70px;
  display: grid;
}

.navbar-wrapper-3 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  overflow: hidden;
}

._122px-image {
  max-width: 122px;
  height: 100%;
  max-height: 270px;
  position: absolute;
  left: -25px;
}

.toggle-buttons-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  display: flex;
}

.div-block-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.footer-copyrights-container {
  color: #8e8e99;
  text-align: center;
  background-color: #252525;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 30px;
  font-size: 16px;
  line-height: 26px;
  display: flex;
}

.why-choose-us-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 100px;
}

.hamburger-icon-5 {
  font-family: Icofont, sans-serif;
}

.template {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 505px;
  height: 100%;
  display: flex;
  position: relative;
}

.section-preview-2 {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section-preview-2.features {
  background-image: url("../images/23080992_Gradient_background_18-1-2_123080992_Gradient_background_18 1 (2).webp");
  background-position: 50%;
  background-size: cover;
}

.section-preview-2.cta {
  background-image: url("../images/footer-bg_1footer-bg.webp");
  background-position: 0 0;
  background-size: auto;
  padding-bottom: 145px;
}

.section-preview-2.top-40px-padding {
  padding-top: 40px;
}

.section-preview-2.demo-page-section {
  text-align: center;
  background-image: url("../images/Group-1_1Group (1).webp");
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.navigation-link {
  color: #fff;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.navigation-link.w--current {
  color: var(--secondary);
}

._374px-image {
  max-width: 374px;
  position: absolute;
  right: 0;
}

.template-tabs {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.paragraph-785px {
  color: #5a5a5a;
  max-width: 785px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-785px.preview-para {
  color: #c8c8c8;
  max-width: 900px;
  margin-top: 30px;
}

.paragraph-785px.cta-paragraph {
  color: #fffc;
  text-align: center;
  max-width: 900px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
}

.preview-heading {
  color: #fff;
  text-align: center;
  max-width: 1050px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 60px;
}

.preview-heading.white {
  color: #fff;
  max-width: 980px;
}

.highlight-3 {
  color: #f37576;
  background-image: url("../images/Group-205.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  display: inline-block;
}

.highlight-3.smaller {
  background-size: contain;
  padding: 6px 30px;
}

.template-image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
}

._870px-image-2 {
  object-fit: cover;
  max-width: 845px;
}

.main-logo {
  width: 100%;
  min-width: auto;
  max-width: 190px;
  min-height: auto;
}

.preview-paragraph {
  color: #666;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
}

.page-wrapper-preview {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.template-page-name {
  color: #fff;
  margin-top: 33px;
  font-size: 18px;
  line-height: 28px;
}

.semi-bold-title-3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.semi-bold-title-3.margin-both-sides {
  margin-top: 26px;
  margin-bottom: 12px;
}

.semi-bold-title-3.why-choose-us-title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

._32px-image {
  max-width: 32px;
}

.vertical-wrapper-4._20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.brand {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 260px;
  padding-left: 0;
  display: flex;
}

._120px-image {
  max-width: 120px;
}

.preview-heading-photo {
  color: #fff;
  text-align: center;
  max-width: 1050px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 60px;
}

.tabs-contents-2 {
  margin-top: 70px;
}

.toggle-button {
  color: #e8e8e8;
  background-color: #ddd0;
  padding: 0 0 4px;
  font-size: 18px;
  line-height: 28px;
}

.toggle-button.w--current {
  color: #fff;
  background-color: #02020200;
  border-bottom: 3px solid #f37576;
  border-radius: 3px;
}

.cross-icon-4 {
  font-family: Icofont, sans-serif;
  display: none;
}

.mobile-image {
  object-fit: contain;
  max-width: 232px;
  margin-top: 60px;
  margin-left: -210px;
}

.nav-button-list-3 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: 1;
  align-items: center;
  display: none;
}

.horizontal-wrapper {
  display: flex;
}

.horizontal-wrapper._20px-gap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.horizontal-wrapper.z-index-10 {
  z-index: 10;
  width: 100%;
  max-width: 845px;
  position: relative;
}

.template-image-wrappper {
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 460px;
  position: relative;
  overflow: hidden;
}

.footer-copyrights {
  color: #e8e8e8;
  margin-bottom: 0;
}

.preview-feature-paragraph {
  text-align: left;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 25px;
}

.preview-nav-list {
  flex: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.why-choose-us-card-2 {
  text-align: center;
  background-color: #e9f2ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  transition: transform 0.35s;
  display: flex;
}

.why-choose-us-card-2:hover {
  transform: translate(0, -20px);
}

.why-choose-us-card-2.color-3 {
  background-color: #e9fcff;
}

.why-choose-us-card-2.color-4 {
  background-color: #f8e9ff;
}

.why-choose-us-card-2.color-2 {
  background-color: #fff5e9;
}

.menu-button-5 {
  padding-bottom: 15px;
}

.floating-image {
  max-width: 40px;
  position: absolute;
  inset: 18% auto auto 12%;
}

.floating-image._3 {
  inset: 17% 14% auto auto;
}

.floating-image._2 {
  max-width: 25px;
  inset: 35% 22% auto auto;
}

.remove-this-for-production {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  display: none;
}

.customize-template-wrapper {
  z-index: 100000;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-radius: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 240px;
  height: 200px;
  padding: 10px 15px 28px;
  display: flex;
  position: fixed;
  inset: auto 1% 2% auto;
}

.close-icon {
  color: #1f2544;
  cursor: pointer;
  max-width: 16px;
  max-height: 16px;
  font-family:
    Material Icons,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}

.customization-texts-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.customization-texts {
  color: #1f2544;
  text-align: center;
  font-family: Grift, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.preview-buttons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.let-s-talk-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: background-color 0.5s;
  display: flex;
}

.let-s-talk-button:hover {
  color: #fff;
  background-color: #fff0;
}

.let-s-talk-text {
  color: #fff;
  font-weight: 500;
}

.template-name {
  color: #000;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  transition: color 0.3s;
}

.product-template-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.product-title {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.delete-this-for-production {
  margin-top: -110px;
}

.product-buy-button {
  background-color: #4353ff;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  transition: background-color 0.2s;
  display: flex;
}

.product-buy-button:hover {
  background-color: #0055d4;
}

.buy-now-thumbnail {
  width: 110px;
  max-height: 70px;
  margin-top: -1px;
}

.template-paragraph {
  color: #757575;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

._10px-svg {
  max-width: 14px;
}

.buy-template-wrapper {
  z-index: 100000;
  background-color: #fff;
  border-top: 1px solid #00000026;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-right: 10px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.extra-height {
  height: 160px;
}

.view-templates-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  align-items: center;
  height: 40px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  transition: background-color 0.3s;
  display: flex;
}

.view-templates-button:hover {
  background-color: #e4e4e4;
}

.production-button-arrow {
  max-width: 14px;
}

.production-template-title {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  display: flex;
}

.production-template-block {
  z-index: 100;
  background-color: #fff;
  border-top: 1px solid #00000026;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-top: 0;
  padding-right: 10px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.production-template-height {
  height: 80px;
}

.production-template-link {
  color: #000;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.5s;
  display: inline;
}

.production-template-link:hover {
  color: #4353ff;
}

.production-view-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  align-items: center;
  height: 46px;
  padding: 9px 18px;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  transition: background-color 0.5s;
  display: flex;
}

.production-view-button:hover {
  color: #000;
  background-color: #ebebeb;
}

.production-template-paragraph {
  color: #757575;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
}

.production-template-image {
  object-fit: cover;
  width: 130px;
  height: 100%;
}

.production-buy-button {
  color: #fff;
  background-color: #4353ff;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding-left: 18px;
  padding-right: 18px;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  transition: opacity 0.5s;
  display: flex;
}

.production-buy-button:hover {
  opacity: 0.75;
  color: #fff;
}

.delete-this-production-section {
  z-index: 100000;
  display: none;
  position: relative;
}

.production-template-name {
  color: #000;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.production-template-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  height: 100%;
  display: flex;
}

.production-button-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.buy-now-details {
  z-index: 1;
}

.buy-now-button {
  color: #000;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  transition: opacity 0.4s;
  display: flex;
}

.buy-now-button:hover {
  opacity: 0.6;
}

.buy-now {
  z-index: 999;
  background-color: #fff;
  border-radius: 4px;
  flex-flow: column;
  width: 282px;
  padding: 14px 20px;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
  overflow: hidden;
}

.buy-now-icon {
  width: 20px;
  height: 20px;
}

.buy-now-list-icon {
  background-color: #ececff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.buy-now-list {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: column;
  display: flex;
}

.buy-now-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #606060;
  letter-spacing: -0.32px;
  justify-content: flex-start;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  transition: color 0.5s;
  display: flex;
}

.buy-now-item:hover {
  color: #000;
}

.buy-now-favicon {
  width: auto;
}

.buy-now-text {
  color: #606060;
  margin-top: 10px;
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.buy-now-line {
  width: 100%;
  height: 6px;
}

@media screen and (min-width: 1440px) {
  .delete-this-production-section {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 80px;
  }

  h2 {
    font-size: 50px;
    line-height: 65px;
  }

  h3 {
    font-size: 40px;
    line-height: 50px;
  }

  .navbar {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .link-dropdown {
    z-index: 3;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: static;
  }

  .container {
    width: 100%;
  }

  .nav-list {
    z-index: 1;
    border-bottom: 1px #fff3;
    position: relative;
  }

  ._3-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    margin-top: 80px;
  }

  .contents {
    width: 100%;
  }

  .contents._60 {
    width: 100%;
    margin-top: 0;
  }

  .section {
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .gathering-slider-navigation {
    top: -70px;
  }

  .movement-card {
    max-width: none;
  }

  .blog-card-title {
    font-size: 19px;
    line-height: 28px;
  }

  .banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heading-style-box {
    min-width: auto;
  }

  .flex-horizontal.style-guide-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .style-guide-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  ._12px-gap {
    width: 100%;
  }

  ._60px-margin-section {
    z-index: 1;
    margin-bottom: 80px;
  }

  .widget-sidebar {
    min-width: auto;
    max-width: none;
  }

  .main-block {
    min-width: auto;
  }

  .nav-menu-wrapper {
    z-index: 2;
    background-color: var(--extra);
    flex-direction: row;
    min-width: 420px;
    padding: 30px 0 0;
  }

  .site-logo-wrapper {
    z-index: 1;
  }

  .nav-button-list {
    display: flex;
  }

  .menu-button {
    color: var(--secondary);
    flex-direction: row;
    padding: 0;
    font-family:
      Material Icons,
      sans-serif;
    font-size: 25px;
    line-height: 25px;
    display: flex;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #0000;
  }

  .cross-icon {
    z-index: 99999;
    flex-direction: row;
    display: none;
  }

  .nav-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    border-radius: 0;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    min-width: auto;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 40px;
    display: flex;
  }

  .hide-in-tablet {
    display: none;
  }

  .nav-link {
    z-index: 1;
    color: #fff;
    width: 100%;
    padding: 0 5px;
  }

  .nav-link:hover {
    color: #fff;
  }

  .hamburger-icon {
    flex-direction: row;
  }

  .hero-section {
    padding-bottom: 60px;
  }

  .background-portrait-image {
    height: 280px;
  }

  .hero-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._2-column-block {
    flex-direction: column;
  }

  ._2-column-block.about-page-section {
    flex-direction: column-reverse;
  }

  ._45px-title {
    font-size: 40px;
  }

  .about-contents {
    width: auto;
    max-width: none;
  }

  .absolute-image {
    max-width: 350px;
    right: -30px;
  }

  .image-wrapper,
  .image-wrapper._50 {
    width: auto;
  }

  .services-arrow-left {
    left: -30px;
  }

  .navigation-icon {
    width: 60px;
    height: 60px;
    font-size: 40px;
    line-height: 40px;
  }

  ._2-grid-block {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  ._2-grid-block.reverse {
    flex-direction: column-reverse;
  }

  .content-block {
    min-height: auto;
  }

  .footer-block {
    grid-row-gap: 20px;
    width: 100%;
    max-width: 150px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-block.follow-block {
    border-bottom-color: #c3c3c3;
  }

  .footer-block.first-block {
    border-bottom: 1px solid var(--paragraph);
    max-width: none;
  }

  .footer-block.copyrights-block {
    max-width: none;
  }

  .footer-wrapper {
    border-bottom-color: #c3c3c3;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .testimonial-card-wrapper {
    width: 100%;
  }

  .testimonial-image {
    display: none;
  }

  .testimonial-text {
    font-size: 28px;
    line-height: 44px;
  }

  .testiomonial-arrow {
    inset: auto 137px 80px auto;
  }

  .testiomonial-arrow.right {
    top: auto;
    left: auto;
    right: 40px;
  }

  .call-to-action {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  ._72px-title {
    font-size: 56px;
    line-height: 74px;
  }

  .margin-top-60px-content {
    width: auto;
    max-width: none;
  }

  .image-wrapper-590px {
    width: 100%;
    max-width: none;
  }

  .about-cards-wrapper {
    top: auto;
    bottom: -6%;
    left: auto;
  }

  .portfolio-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-vertical-block.move-top-350px {
    transform: none;
  }

  .background-video {
    height: 500px;
  }

  .dropdown-faq-block {
    align-items: stretch;
    min-width: auto;
  }

  .dropdown-wrapper {
    justify-content: center;
    align-items: center;
  }

  .tabs-menu {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .tab-wrapper {
    width: auto;
  }

  .portfolio-thumbnail {
    height: auto;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-cover-image {
    max-height: 580px;
  }

  .block-50-width {
    width: 100%;
  }

  .package-price {
    font-size: 40px;
  }

  .package-body-block,
  .contact-contents {
    width: 100%;
    max-width: none;
  }

  .contact-form-wrapper {
    max-width: none;
  }

  .contact-block {
    flex-direction: column;
  }

  ._404-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  ._404-image {
    max-width: 90%;
  }

  .portfolio-info {
    align-items: flex-start;
  }

  .portfolio-information-block {
    flex-direction: row;
  }

  .portfolio-cover-image-wrapper {
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .portfolio-upper-body {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-top {
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .portfolio-video {
    height: 420px;
  }

  .landscape-grid {
    grid-template-columns: 1fr;
  }

  .flex-box {
    flex-direction: column;
  }

  .slider-arrow {
    top: 0;
  }

  .photoshoot-mask {
    overflow: hidden;
  }

  .slider {
    padding-top: 100px;
  }

  .inner-slide-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .photograph-info-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    left: 20px;
  }

  .slider-image {
    border-style: none;
    min-height: 750px;
    max-height: none;
  }

  .image-info-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .preview-title-2 {
    font-size: 50px;
    line-height: 60px;
  }

  .preview-nav-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    border-radius: 0;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .preview-nav-wrapper {
    background-color: #110a23;
    flex-direction: row;
    padding: 60px 55px 50px;
    display: block;
  }

  .preview-4-col-grid,
  .preview-4-col-grid.features-preview {
    grid-template-columns: 1fr 1fr;
  }

  .site-images {
    margin-top: 20px;
  }

  .homepage-demos-2 {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-wrapper-3 {
    overflow: visible;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hamburger-icon-5 {
    color: #4865ff;
    background-color: #fff0;
    flex-direction: row;
    font-size: 25px;
    line-height: 25px;
  }

  .section-preview-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-preview-2.demo-page-section {
    padding-top: 150px;
  }

  .navigation-link {
    color: #fff;
  }

  .hide-from-tablet {
    display: none;
  }

  .hamburger-and-close-icon-wrapper {
    align-items: center;
  }

  ._870px-image-2 {
    object-fit: contain;
  }

  .vertical-wrapper-4._20px-gap {
    display: none;
  }

  .cross-icon-4 {
    z-index: 99999;
    color: #f64848;
    background-color: #0000;
    flex-direction: row;
    font-size: 25px;
    font-style: normal;
    line-height: 25px;
  }

  .nav-button-list-3 {
    text-align: center;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .preview-nav-list {
    text-align: center;
    border-bottom: 1px #fff3;
  }

  .menu-button-5 {
    z-index: 10;
    flex-direction: row;
    padding: 0;
    display: block;
  }

  .menu-button-5.w--open {
    color: #fff;
    background-color: #0000;
  }

  .floating-image {
    top: 21%;
  }

  .floating-image._3 {
    top: 11%;
  }

  .floating-image._2 {
    top: 32%;
  }

  .customize-template-wrapper {
    padding-bottom: 28px;
    bottom: 1%;
  }

  .production-template-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .production-template-info {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .buy-now-button {
    font-size: 16px;
  }

  .buy-now {
    width: 250px;
    bottom: 15px;
    right: 15px;
  }

  .buy-now-icon {
    width: 16px;
    height: 16px;
  }

  .buy-now-list-icon {
    width: 24px;
    height: 24px;
  }

  .buy-now-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .buy-now-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    font-size: 14px;
  }

  .buy-now-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 50px;
    line-height: 65px;
  }

  h2 {
    font-size: 42px;
    line-height: 60px;
  }

  h3 {
    font-size: 36px;
  }

  .navbar {
    z-index: 99999;
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .container.middle-allign {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  ._3-column-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .footer {
    margin-top: 80px;
  }

  .section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .slider-navigation {
    top: -56px;
    left: auto;
    right: 0;
  }

  .movement-card {
    width: 100%;
    max-width: 440px;
  }

  .blog-card {
    max-width: none;
  }

  .banner {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .heading-style-box {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-direction: column;
    padding: 30px;
  }

  .tag-box {
    width: 100%;
    height: 150px;
  }

  .tag-text {
    font-size: 70px;
    line-height: 70px;
  }

  .changelog-section {
    margin-top: 40px;
    margin-bottom: -40px;
  }

  .nav-menu-wrapper {
    z-index: 1;
    min-width: 320px;
  }

  .site-logo-wrapper {
    z-index: 1;
  }

  .cross-icon {
    font-style: normal;
    display: none;
  }

  .nav-menu {
    border-radius: 0;
  }

  .nav-link {
    display: inline-block;
  }

  .background-photo-grid.hide-for-responsive {
    display: none;
  }

  .hero-section {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  ._100px-svg {
    max-width: 60px;
  }

  .creative-absolute-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    bottom: 90px;
    left: -80px;
  }

  .creative-divider {
    width: 40px;
  }

  .highlight {
    padding-bottom: 15px;
  }

  .hero-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .absolute-block-title {
    font-size: 18px;
    line-height: 140%;
  }

  ._2-column-block.about-page-section {
    margin-bottom: 100px;
  }

  ._45px-title {
    font-size: 36px;
    line-height: 40px;
  }

  .absolute-image {
    max-width: 50%;
    right: -8px;
  }

  .content-block {
    padding-left: 40px;
    padding-right: 50px;
  }

  .footer-block {
    flex-direction: column;
  }

  .footer-block.follow-block {
    border-top: 1px solid var(--paragraph);
    max-width: none;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .testimonial-card-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-text {
    font-size: 24px;
    line-height: 40px;
  }

  .slide-nav {
    left: 30px;
  }

  .space-between-block.vertical-in-mobile-landscape {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .call-to-action {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  ._72px-title {
    font-size: 48px;
    line-height: 60px;
  }

  .image-wrapper-590px {
    min-height: auto;
  }

  .about-cards-wrapper {
    flex-direction: column;
    padding: 12px 35px 25px;
    bottom: -182px;
  }

  .about-card {
    max-width: none;
    padding: 23px 0 10px;
  }

  .about-card.middle-border-card {
    border-style: solid none;
    border-top-width: 1px;
    border-top-color: #3b3b3b;
    border-bottom-width: 1px;
    border-bottom-color: #3b3b3b;
  }

  ._2-column-grid._1-column-from-landscape {
    grid-template-columns: 1fr;
  }

  .portfolio-container {
    flex-direction: column;
  }

  .background-video {
    height: 420px;
  }

  .package-card-price {
    font-size: 24px;
    line-height: 24px;
  }

  .dropdown-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .dropdown-switch {
    padding-top: 35px;
    padding-bottom: 30px;
  }

  .dropdown-title {
    width: 100%;
    font-size: 30px;
    line-height: 36px;
  }

  .dropdown-heading {
    font-size: 16px;
    line-height: 20px;
  }

  .faq-icon {
    max-width: 40px;
    height: 40px;
  }

  .right-align-paragraph.left-align-from-landscape {
    text-align: left;
  }

  .decorative-image {
    max-width: 72%;
  }

  .story-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .package-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .package-button {
    font-size: 24px;
    line-height: 24px;
  }

  ._60px-title {
    font-size: 40px;
    line-height: 60px;
  }

  .package-price {
    font-size: 36px;
    line-height: 40px;
  }

  .margin-20px-both-side {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .blog-body-container {
    flex-direction: column;
    margin-top: 40px;
  }

  ._404-wrapper {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  ._404-sub-title {
    font-size: 32px;
    line-height: 48px;
  }

  .portfolio-name-floating {
    font-size: 30px;
    line-height: 40px;
  }

  .section-top {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .portfolio-video {
    height: 340px;
  }

  .slider,
  .inner-slide-block {
    min-height: auto;
  }

  .photograph-info-block {
    display: none;
  }

  .slider-image {
    min-height: 420px;
  }

  .preview-title-2 {
    font-size: 46px;
    line-height: 60px;
  }

  .preview-nav-menu {
    border-radius: 0;
  }

  .preview-nav-wrapper {
    z-index: 2;
  }

  .preview-4-col-grid,
  .preview-4-col-grid.features-preview {
    grid-template-columns: 1fr;
  }

  .site-images {
    margin-top: 0;
  }

  .homepage-demos-2 {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    display: flex;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .section-preview-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-preview-2.demo-page-section {
    padding-top: 160px;
  }

  .preview-heading {
    font-size: 36px;
    line-height: 50px;
  }

  .highlight-3 {
    padding: 16px;
  }

  .highlight-3.smaller {
    padding: 0 20px;
  }

  .preview-heading-photo {
    font-size: 36px;
    line-height: 50px;
  }

  .cross-icon-4 {
    font-size: 30px;
    font-style: normal;
    line-height: 40px;
    display: none;
  }

  .mobile-image {
    max-width: 192px;
  }

  .remove-this-for-production {
    display: block;
  }

  .customize-template-wrapper {
    bottom: 1%;
  }

  .let-s-talk-button:hover {
    transform: none;
  }

  .delete-this-for-production,
  .production-template-block,
  .production-template-height {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
    line-height: 54px;
  }

  h2 {
    font-size: 34px;
    line-height: 42px;
  }

  h3 {
    font-size: 28px;
    line-height: 40px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .container {
    align-items: center;
    padding: 0 15px;
  }

  ._3-column-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .footer {
    margin-top: 60px;
  }

  .section {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .slider-navigation,
  .gathering-slider-navigation {
    max-width: 110px;
  }

  .movement-card {
    height: 320px;
  }

  .blog-thumbnail {
    height: 240px;
  }

  .blog-body {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .banner {
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .breadcrumb.w--current {
    font-size: 15px;
    line-height: 24px;
  }

  .heading-style-box {
    padding: 20px;
  }

  .sub-title-of-style-guide {
    min-width: 85px;
    font-size: 14px;
  }

  .font-details-text {
    font-size: 14px;
  }

  .style-guide-wrapper {
    width: 100%;
  }

  .heading-details-block {
    grid-column-gap: 14px;
  }

  ._12px-gap.vertical-in-mobile {
    flex-direction: column;
  }

  ._60px-margin-section {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 60px;
  }

  .widget-sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .rich-text-block p {
    font-size: 18px;
    line-height: 28px;
  }

  .changelog-section {
    margin-bottom: -20px;
  }

  .license-section {
    margin-top: 40px;
  }

  .license-main-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .license-title {
    font-size: 18px;
    line-height: 27px;
  }

  .license-paragraph {
    font-size: 14px;
    line-height: 21px;
  }

  .nav-menu-wrapper {
    z-index: 2;
    min-width: 260px;
  }

  .site-logo-wrapper {
    max-width: 120px;
    padding-left: 0;
  }

  .menu-button {
    margin-left: 10px;
  }

  .nav-menu-border {
    height: 4px;
  }

  .nav-menu {
    grid-row-gap: 20px;
    flex-direction: column;
    overflow: visible;
  }

  .nav-link {
    font-size: 14px;
    line-height: 22px;
  }

  .nav-link.w--current {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hamburger-icon {
    background-color: #fff0;
  }

  .background-photo-grid.hide-in-mobile,
  .hero-paragraph {
    display: none;
  }

  .margin-top-20px {
    margin-top: 10px;
  }

  .hero-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .background-portrait-image {
    height: 240px;
  }

  .hero-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .icon._50px,
  .icon.hide-in-mobile {
    display: none;
  }

  ._2-column-block.about-page-section {
    margin-bottom: 0;
  }

  ._45px-title {
    font-size: 30px;
  }

  ._18px-paragraph {
    font-size: 16px;
  }

  ._24px-text {
    font-size: 20px;
    line-height: 28px;
  }

  ._30px-gap.vertical-in-mobile {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .services-card {
    padding: 30px;
  }

  .content-block {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    padding: 30px 20px;
  }

  .footer-block {
    grid-row-gap: 20px;
    border-top: 1px solid #d2d2d2;
    max-width: none;
  }

  .footer-block.first-block {
    border-top-style: none;
    border-bottom-style: none;
  }

  .footer-title {
    font-size: 22px;
    line-height: 32px;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link {
    font-size: 16px;
    line-height: 26px;
  }

  .information-block {
    grid-column-gap: 15px;
  }

  .testimonial-card-wrapper {
    padding-left: 22px;
    padding-right: 20px;
  }

  .testimonial-text {
    font-size: 20px;
    line-height: 30px;
  }

  ._36px-text {
    font-size: 28px;
    line-height: 36px;
  }

  ._24px-text-paragraph-color {
    font-size: 20px;
    line-height: 26px;
  }

  .testiomonial-arrow {
    display: none;
    inset: auto 60px 0% auto;
  }

  .testiomonial-arrow.right {
    right: 0;
  }

  .slide-nav {
    left: 22px;
  }

  .margin-top-30px {
    margin-top: 20px;
  }

  .call-to-action {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  ._72px-title {
    font-size: 36px;
    line-height: 48px;
  }

  .about-cards-wrapper {
    display: none;
  }

  .card {
    padding: 25px;
  }

  ._20px-text {
    font-size: 18px;
    line-height: 28px;
  }

  .background-video {
    height: 300px;
  }

  .package-title {
    font-size: 22px;
    line-height: 30px;
  }

  .package-title._42px {
    font-size: 28px;
    line-height: 40px;
  }

  .package-card-price {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 20px;
    line-height: 20px;
  }

  .dropdown-texts {
    padding: 0 0 15px;
    font-size: 14px;
    line-height: 21px;
  }

  .dropdown-faq-block {
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .dropdown-wrapper {
    width: 100%;
    display: flex;
  }

  .dropdown-switch {
    justify-content: space-between;
    padding: 15px 0;
  }

  .dropdown-title {
    font-size: 24px;
    line-height: 30px;
  }

  .faq-icon {
    max-width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 15px;
  }

  .button-wrapper-20px-gap {
    flex-wrap: wrap;
  }

  .absolute-floating-wrapper {
    display: none;
    top: 5%;
  }

  .absolute-floating-wrapper.card-2 {
    bottom: 5%;
  }

  .photography-service-card {
    flex-direction: column;
  }

  .tab-switch {
    padding: 10px 20px;
    font-size: 15px;
  }

  .tabs-menu {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }

  .story-hover-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .decorative-image {
    max-width: 90%;
  }

  .story-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .package-button {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 16px;
  }

  .package-price {
    font-size: 30px;
  }

  .package-body-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .contact-icon-wrapper {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 18px;
  }

  .field-inputs-wrapper {
    flex-direction: column;
  }

  ._404-wrapper {
    height: 70vh;
    padding-top: 45px;
    padding-bottom: 40px;
  }

  ._404-sub-title {
    font-size: 24px;
    line-height: 30px;
  }

  ._404-text {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 28px;
  }

  .portfolio-information-block {
    flex-wrap: wrap;
  }

  .portfolio-cover-image-wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .absolute-logo,
  .portfolio-name-floating {
    display: none;
  }

  .section-top {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .portfolio-video {
    height: 280px;
  }

  .slider-arrow {
    max-width: 60px;
    right: 80px;
  }

  .slider-arrow.right-arrow {
    right: 10px;
  }

  .arrow {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .slider {
    padding-top: 80px;
  }

  .inner-slide-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slider-image {
    min-height: 280px;
  }

  .arrow-background-wrapper {
    width: 60px;
    height: 60px;
  }

  .preview-title-2 {
    font-size: 30px;
    line-height: 45px;
  }

  .preview-nav-menu {
    grid-row-gap: 15px;
    flex-direction: column;
    overflow: visible;
  }

  .large-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hamburger-icon-5 {
    background-color: #fff0;
    font-size: 20px;
    line-height: 20px;
  }

  .section-preview-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-preview-2.demo-page-section {
    padding-top: 120px;
  }

  .preview-heading {
    font-size: 22px;
  }

  .highlight-3 {
    padding: 0 9px;
  }

  .highlight-3.smaller {
    background-size: contain;
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-logo,
  .brand {
    max-width: 150px;
  }

  .preview-heading-photo {
    font-size: 22px;
  }

  .cross-icon-4 {
    font-size: 20px;
    line-height: 20px;
  }

  .mobile-image {
    max-width: 92px;
    margin-left: -100px;
  }

  .customize-template-wrapper {
    padding-top: 10px;
    bottom: 1%;
    right: 2%;
  }

  .buy-now {
    padding-left: 18px;
    padding-right: 18px;
    bottom: 15px;
    right: 7px;
  }
}

#w-node-_050527c6-60a3-58af-04ca-141a71425437-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142543d-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425463-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425469-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142546f-46916813,
#w-node-_543e78fa-5c63-9a73-7597-2b205ba994ea-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425475-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142547b-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425481-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425487-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142548d-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425493-46916813,
#w-node-_69bef481-1ba4-33b5-f72e-1f8e23833c0c-46916813,
#w-node-_69bef481-1ba4-33b5-f72e-1f8e23833c12-46916813,
#w-node-_69bef481-1ba4-33b5-f72e-1f8e23833c18-46916813,
#w-node-_69bef481-1ba4-33b5-f72e-1f8e23833c36-46916813,
#w-node-_80f84d26-45d1-0c20-d1b8-20f1f50c3bd9-46916813,
#w-node-_80f84d26-45d1-0c20-d1b8-20f1f50c3bdf-46916813,
#w-node-_80f84d26-45d1-0c20-d1b8-20f1f50c3be5-46916813,
#w-node-_80f84d26-45d1-0c20-d1b8-20f1f50c3beb-46916813,
#w-node-_80f84d26-45d1-0c20-d1b8-20f1f50c3bf1-46916813,
#w-node-_80f84d26-45d1-0c20-d1b8-20f1f50c3bf7-46916813,
#w-node-e8047be2-35f7-ecba-7615-628668328269-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a714254dc-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a714254e2-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a714254e8-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a714254ee-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a714254f5-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a714254fb-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425501-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425507-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142550d-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425513-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425519-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142551f-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425525-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142552b-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425531-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425537-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425545-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a7142554b-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425551-46916813,
#w-node-_050527c6-60a3-58af-04ca-141a71425557-46916813,
#w-node-_21187038-c796-f43f-b55d-1d8a7765eded-46916814,
#w-node-_21187038-c796-f43f-b55d-1d8a7765edf9-46916814,
#w-node-_21187038-c796-f43f-b55d-1d8a7765edfb-46916814,
#w-node-_21187038-c796-f43f-b55d-1d8a7765edfe-46916814,
#w-node-_21187038-c796-f43f-b55d-1d8a7765ee0b-46916814,
#w-node-_21187038-c796-f43f-b55d-1d8a7765ee15-46916814,
#w-node-_525b3a65-1f10-65a6-5f0b-645c24f6957a-46916814,
#w-node-_43986326-30d3-e857-8087-ee1f363a3b2b-363a3b2b,
#w-node-_5c679fe0-47ef-da8b-c5b1-5ac8666f0e06-46916816,
#w-node-f5cd9c43-40c9-5fe7-ee32-4156d2c72664-46916816,
#w-node-bbd83a86-bf91-3ad3-e8d9-ff82657b786a-46916816,
#w-node-_0eab4287-167a-17ba-366c-288abbf97720-46916816,
#w-node-e1b523e4-8b73-bc53-8c79-bfea63f5c40b-46916816,
#w-node-_76d86559-5147-091a-dff2-bff84cefe67b-46916822,
#w-node-_488f78d6-9148-4e68-f2ec-e9fb1a03744e-1a03744e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@font-face {
  font-family: "Icofont";
  src: url("../fonts/icofont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.font-weight-900 {
  font-weight: 900;
}

/* Reliable video embed (no Webflow dependency) */
.video-embed {
  width: 100%;
  max-width: 980px; /* optional */
  margin-left: auto;
  margin-right: auto;

  border-radius: 22px;
  overflow: hidden;

  /* maintains visible height */
  aspect-ratio: 16 / 9;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.video-embed__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.card-title {
  margin: 0 0 8px;
  font-weight: 500;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Desktop Images */
.slide-1 {
  background-image: url("../images/website-assets/hero_bg_2.jpg");
}

.slide-2 {
  background-image: url("../images/website-assets/hero_bg_1.jpeg");
}
@media (max-width: 767px) {
  .slide-1 {
    background-image: url("../images/website-assets/Julie/Part 1/Colored/Julie0380_(2) 1.jpg");
  }

  .slide-2 {
    background-image: url("../images/website-assets/Julie/Part 2/Julie0489_(2) 1.jpg");
  }
}
.services-card,
.card,
.heading-style-box,
.portfolio-body,
.about-cards-wrapper,
.testimonial-card-wrapper {
  background-color: var(--extra);
  color: var(--white);
}

.services-card p,
.card p,
.heading-style-box p,
.portfolio-body p {
  color: rgba(255, 255, 255, 0.75);
}
@media (min-width: 992px) {
  .spotlight-section .primary-button {
    display: inline-block;
    width: auto;
  }
}
.for-you-note {
  margin-top: 18px;
  max-width: 62ch;
  line-height: 1.7;
  font-size: 18px;
  letter-spacing: 0.2px;

  /* Elegant, softer contrast */
  color: rgba(255, 255, 255, 0.85);

  /* Subtle “card” treatment so it feels intentional */
  padding: 14px 16px;
  border-left: 3px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.for-you-note br {
  display: block;
  content: "";
  margin-top: 10px;
}
/* Prevent full-width stretching */
.primary-button {
  display: inline-block;
  margin-top: 18px;
}

/* Make the actual clickable element content-sized */
.primary-button .button-link-text-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: auto;
  padding: 14px 28px;

  border-radius: 999px; /* elegant pill shape */
  text-decoration: none;
}

/* Make sure inner divs don’t stretch */
.primary-button .button-link-text-block div {
  width: auto;
}
.primary-button {
  display: flex;
  justify-content: center;
}
/* =========================
   INCLUDED SECTION (CSS)
   Paste into your stylesheet
========================= */

/* The responsive grid */
.included-grid {
  display: grid;
  gap: 30px;
  margin-top: 15px;
  width: 100%;
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
  .included-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Card layout (centers content like your inline styles did) */
.included-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* Keep this if your .card already has padding/shadow, otherwise it helps */
  padding: 30px 20px;
  box-sizing: border-box;
}

/* Slightly tighter on mobile */
@media (max-width: 767px) {
  .included-card {
    padding: 24px 18px;
  }
}

/* Material icon styling */
.material-icon {
  font-family: "Material Icons";
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
}

/* Optional: reduce icon size on small screens */
@media (max-width: 767px) {
  .material-icon {
    font-size: 38px;
  }
}

/* Optional: CTA spacing */
.included-cta {
  margin-top: 40px;
}

/* OPTIONAL: If your primary-button stretches full width on desktop
   and you want content-width only, uncomment:

@media (min-width: 992px) {
  .included-cta {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
  }
}
*/
#included {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 80px 20px;
  text-align: center;
}
/* Prevent container from stretching weirdly */
/* Standard content width for premium sections */
#included .container,
#testimonials .container {
  width: 100%;
  max-width: 1100px; /* match your Included section */
  margin-left: auto;
  margin-right: auto;
}
.included-grid {
  justify-content: center;
}
.testimonials-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

/* Desktop */
@media (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
/* LUXE CTA */
.cta-luxe {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 90px) 0;
  margin-top: 40px;

  /* Use your existing background image here */
  background-image: url("../images/website-assets/Julie/Part 3/Julie0657_(2) 1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Soft cinematic overlay */
.cta-luxe__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 80% at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.2) 100%
    );
}

/* Optional subtle grain (luxury print feel) */
.cta-luxe::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cta-luxe__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.cta-luxe__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.cta-luxe__title {
  margin-top: 16px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-luxe__title span {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-luxe__copy {
  margin-top: 14px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.cta-luxe__copy strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.cta-luxe__actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Luxury button (not full-width) */
.cta-luxe__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: fit-content;
  padding: 14px 26px;

  border-radius: 999px;
  text-decoration: none;

  color: rgba(0, 0, 0, 0.92);
  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.cta-luxe__btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.cta-luxe__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

/* Icon micro-motion */
.cta-luxe__icon {
  transition: transform 0.25s ease;
}

.cta-luxe__btn:hover .cta-luxe__icon {
  transform: translateX(4px);
}

.cta-luxe__micro {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}
