*, ::after, ::before {
  box-sizing: border-box;
}

* {
  outline: none !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: #e8e0da;
  color: #222;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Helvatica Neue", sans-serif;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: #222;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.smooth-scroll {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  background: red;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }
  to {
    -o-transform: rotate(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}
.video-bg {
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
}
.video-bg video {
  width: 100%;
  opacity: 0.05;
  filter: grayscale(100%);
}

main {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.a-container {
  width: 100%;
  display: block;
  padding: 0 2vw;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 2vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.navbar .logo {
  display: inline-block;
}
.navbar .logo img {
  height: 36px;
}
.navbar .menu {
  display: inline-block;
  margin: 0 auto;
}
.navbar .menu ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.navbar .menu ul li {
  display: inline-block;
  margin: 0 25px;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
}
.navbar .menu ul li a {
  color: #222;
  font-size: 14px;
  font-weight: 600;
}
.navbar .nav-links {
  margin: 0 auto;
  padding: 0;
}
.navbar .nav-links li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
.navbar .nav-links li a {
  color: #222;
  font-weight: bold;
  font-size: 13px;
}
.navbar .current-time {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
}
.navbar .custom-button {
  margin-left: 60px;
}
.navbar .custom-button a {
  height: 62px;
  display: flex;
  align-items: center;
  background-color: #222;
  color: #e8e0da;
  padding: 0 40px;
  border-radius: 62px;
}

.hero {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-bottom: 30px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero .a-container {
  position: relative;
  z-index: 3;
}
.hero h1 {
  font-size: 10vw;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.3vw;
  line-height: 1.1;
}
.hero h1 span {
  width: 100%;
  display: block;
  text-indent: 5vw;
}
.hero h1 span:last-child {
  text-indent: 10vw;
}
.hero h1 span img {
  height: 7vw;
  margin: 0 2vw;
}
.hero p {
  max-width: 70%;
  padding-left: 15vw;
  font-size: 19px;
  opacity: 0.6;
  line-height: 1.4;
}
.hero .bottom {
  width: 100%;
  display: flex;
}
.hero .bottom .circle-text {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2vw;
  bottom: 0;
}
.hero .bottom .circle-text figure {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 0;
}
.hero .bottom .play {
  display: inline-block;
  position: absolute;
  right: 2vw;
  bottom: 0;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  -ms-animation-duration: 10s;
  -o-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
.hero .bottom .play text {
  font-size: 11px;
}
.hero .scroll-down {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #eee;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.hero .scroll-down span {
  margin: 0 5px;
}
.hero .scroll-down span svg {
  margin-left: 10px;
  transform: translateY(1px);
}

.hero-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
  padding: 0 2vw;
}
.hero-image figure {
  width: 100%;
  max-height: 80vh;
  margin: 0;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  object-fit: cover;
  border-radius: 2vw;
}
.hero-image figure img {
  width: 100%;
}
.hero-image h4 {
  width: 100%;
  font-size: 3vw;
  margin: 0;
}
.hero-image p {
  max-width: 70%;
  padding-left: 15vw;
  font-size: 19px;
  opacity: 0.6;
  line-height: 1.4;
}

.page-header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
  position: relative;
  padding: 0 2vw;
}
.page-header h1 {
  width: 100%;
  font-size: 10vw;
  font-weight: 200;
  margin: 0;
  letter-spacing: -0.3vw;
}
.page-header p {
  margin: 0;
  font-size: 19px;
}

.contact {
  width: 100%;
  display: block;
  margin-bottom: 100px;
  position: relative;
}

.atl-contact-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.atl-contact-form .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.atl-contact-form .form-row label {
  width: 100%;
  margin-bottom: 7px;
}
.atl-contact-form .form-row button[type=submit] {
  margin-top: 20px;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  max-width: 500px;
  height: 62px;
  border: 1px solid #222;
  background: #f6f1ed;
  border-radius: 0;
  padding: 0 25px;
  color: #222;
  font-size: 16px;
}

textarea {
  width: 100%;
  max-width: 500px;
  height: 150px;
  border: 1px solid #222;
  background: #f6f1ed;
  border-radius: 0;
  padding: 25px;
  color: #222;
  font-size: 16px;
}

input[type=submit], button[type=submit] {
  height: 62px;
  display: flex;
  align-items: center;
  background-color: #222;
  color: #e8e0da;
  padding: 0 40px;
  border: none;
  font-weight: 600;
  border-radius: 62px;
}

.wc-block-components-button {
  height: 62px;
  display: flex;
  align-items: center;
  background-color: #222;
  color: #e8e0da;
  padding: 0 40px;
  border: none;
  font-weight: 600;
  border-radius: 62px;
}

div.single-post {
  width: 100%;
  padding-bottom: 100px;
}
div.single-post .page-header {
  width: 100%;
}
div.single-post .page-header h1 {
  font-size: 5vw;
}
div.single-post .post-thumb {
  width: 100%;
}
div.single-post .post-thumb img {
  width: 100%;
  height: auto;
}

.contract-section {
  width: 100%;
}
.contract-section .contract-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 25% auto;
  gap: 40px;
}
.contract-section .contract-grid .contract-package {
  width: 100%;
  height: auto;
}
.contract-section .contract-grid .contract-package .package {
  width: 100%;
  display: block;
  padding: 2vw;
  background: #f6f1ed;
  border: 1px solid #222;
}
.contract-section .contract-grid .contract-form {
  width: 100%;
  background: #fff;
  padding: 2vw;
}
.contract-section .contract-grid .contract-form .agreement-form {
  width: 100%;
  display: block;
}
.contract-section .contract-grid .contract-form .agreement-form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contract-section .contract-grid .contract-form .agreement-form .checkbox input[type=checkbox] {
  margin: 0;
}
.contract-section .contract-grid .contract-form .agreement-form .checkbox label {
  margin: 0;
}
.contract-section .contract-grid .contract-form .agreement-form label {
  width: 100%;
  display: block;
  margin-bottom: 7px;
}
.contract-section .contract-grid .contract-form .agreement-form input {
  background: #fff;
  margin-bottom: 15px;
}
.contract-section .contract-grid .contract-form .agreement-form button[type=submit] {
  margin-top: 20px;
}

.packages {
  width: 100%;
  display: block;
  margin-bottom: 100px;
}
.packages h2 {
  width: 100%;
  font-size: 5vw;
  line-height: 1.1;
}
.packages a {
  color: #222;
  text-decoration: underline;
}
.packages p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  font-size: 1.7vw;
}
.packages small {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 20px;
}
.packages .pricing-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #222;
  padding: 1px 0;
}
.packages .pricing-columns .pricing-column {
  width: 100%;
  display: block;
  padding: 40px;
  position: relative;
  background-color: #e8e0da;
  background-color: #f6f1ed;
}
.packages .pricing-columns .pricing-column .popular-badge {
  background: #222;
  color: #fff;
  position: absolute;
  left: 40px;
  top: 30px;
  border-radius: 4px;
  font-size: 12px;
  padding: 3px 8px;
}
.packages .pricing-columns .pricing-column .package-header {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
  padding-top: 20px;
}
.packages .pricing-columns .pricing-column .package-header h3 {
  font-size: 2vw;
  margin: 0;
}
.packages .pricing-columns .pricing-column .package-header .price {
  width: 100%;
  font-size: 1.5vw;
  margin-bottom: 10px;
}
.packages .pricing-columns .pricing-column ul {
  width: 100%;
  margin-bottom: 30px;
  padding-left: 20px;
}
.packages .pricing-columns .pricing-column ul li {
  margin-bottom: 10px;
}
.packages .pricing-columns .pricing-column .cta-button {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background-color: #222;
  color: #e8e0da;
  padding: 0 40px;
  border-radius: 62px;
  text-decoration: none;
}

.wp-block-woocommerce-checkout {
  width: 100%;
  display: flex;
}
.wp-block-woocommerce-checkout .wc-block-components-notices {
  grid-column: 1/-1;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid;
  grid-template-columns: 660px 380px;
  gap: 40px;
  margin: 0 auto;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100%;
  background: #f6f1ed;
  padding: 2vw;
  border: 1px solid #222;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-validation-error {
  display: none !important;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-checkout__guest-checkout-notice {
  display: none !important;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-checkout-step__description {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-address-address-wrapper {
  width: 100%;
  display: block;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-address-address-wrapper .wc-block-components-address-card {
  padding: 0;
  border: none;
  margin-top: 10px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-address-address-wrapper .wc-block-components-address-form__country.wc-block-components-country-input {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-address-address-wrapper .wc-block-components-text-input.wc-block-components-address-form__address_2 {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-radio-control-accordion-option {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
  padding: 20px;
  background: #fff;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-radio-control--highlight-checked:after {
  display: none !important;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-checkout__order-notes {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-checkout__terms {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-stripe-blocks-payment-method-content {
  max-width: 580px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-checkout-return-to-cart-button {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  width: 100%;
  background: #f6f1ed;
  padding: 2vw;
  border: 1px solid #222;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-deposits-totals {
  border: none !important;
  padding: 0;
  border-radius: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-deposits-totals .wc-block-components-totals-item.partial-payments-details {
  padding: 0;
  margin-bottom: 10px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-deposits-totals .wc-block-components-totals-item.pay-later {
  padding: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
  margin: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  padding: 0;
  margin: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  padding: 5px 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-order-summary.is-large {
  padding: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content {
  width: 100%;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item__image {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item__description {
  width: 100%;
  padding: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item__individual-prices.price {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item__total-price {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper .wc-block-components-totals-item {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block {
  display: none;
}

main {
  margin: 0;
}
main .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=email],
main .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=number],
main .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=password],
main .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=tel],
main .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=text],
main .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=url] {
  border-radius: 0;
}
main .wc-blocks-components-select .wc-blocks-components-select__select {
  border-radius: 0;
}

.wc-block-components-address-form__address_2-toggle {
  display: none !important;
}

.services {
  display: grid;
  margin-bottom: 100px;
}
.services h2 {
  width: 100%;
  font-size: 2vw;
  margin-bottom: 40px;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  padding-left: 10vw;
}
.services .services-grid .service {
  width: 100%;
  padding-right: 15%;
}
.services .services-grid .service h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.services .services-grid .service p {
  line-height: 1.4;
}

.why-choose-us {
  display: grid;
  margin-bottom: 100px;
}
.why-choose-us h2 {
  width: 100%;
  font-size: 5vw;
  line-height: 1.1;
}
.why-choose-us p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  font-size: 1.7vw;
}
.why-choose-us ul {
  padding: 0;
  padding-left: 25%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-choose-us ul li {
  width: 100%;
  display: block;
  padding: 40px;
  position: relative;
  font-size: 1.4vw;
  background-color: #e8e0da;
  box-shadow: 1px 0 0 0 #222, 0 1px 0 0 #222, inset 1px 0 0 0 #222, inset 0 1px 0 0 #222;
}
.why-choose-us ul li figure {
  margin: 0;
  margin-bottom: 20px;
}
.why-choose-us ul li strong {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-size: 1.6vw;
}

.featured-projects {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
  padding: 0 2vw;
}
.featured-projects h2 {
  width: 100%;
  font-size: 5vw;
  line-height: 1.1;
}
.featured-projects p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  font-size: 1.7vw;
}
.featured-projects .project {
  width: 100%;
  margin-top: 100px;
}
.featured-projects .project img {
  width: 100%;
}
.featured-projects .works {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}
.featured-projects .column {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.featured-projects figure {
  width: 100%;
  margin: 0;
  margin-bottom: 30px;
  position: relative;
}
.featured-projects figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.featured-projects figure figcaption {
  width: 100%;
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
}
.featured-projects h4 {
  width: 100%;
  font-size: 2vw;
  margin: 0;
}

.detailed-services {
  display: grid;
  margin-bottom: 100px;
}
.detailed-services h2 {
  width: 100%;
  font-size: 5vw;
  line-height: 1.1;
}
.detailed-services p {
  width: 100%;
  display: block;
  margin-bottom: 40px;
  font-size: 1.7vw;
}
.detailed-services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 10%;
}
.detailed-services .services-grid .service {
  width: 100%;
  display: block;
  padding: 40px;
  position: relative;
  background-color: #e8e0da;
  box-shadow: 1px 0 0 0 #222, 0 1px 0 0 #222, inset 1px 0 0 0 #222, inset 0 1px 0 0 #222;
}
.detailed-services .services-grid .service h3 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-size: 1.5vw;
  text-transform: uppercase;
}
.detailed-services .services-grid .service p {
  line-height: 1.4;
}

.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #222;
  color: #e8e0da;
  padding: 100px 0;
  margin: 2vw 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.footer .video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.05;
  filter: grayscale(100%);
}
.footer .video-bg video {
  width: 100%;
}
.footer .a-container {
  position: relative;
  z-index: 1;
}
.footer h2 {
  font-size: 8vw;
  font-weight: 200;
  margin: 0;
  letter-spacing: -0.3vw;
}
.footer p {
  max-width: 60%;
  font-size: 25px;
  opacity: 0.6;
  line-height: 1.4;
}
.footer .actions {
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.footer .actions small {
  font-size: 19px;
  opacity: 0.5;
  margin: 0 30px;
  display: inline-block;
}
.footer .actions .email-link {
  font-size: 27px;
  display: inline-block;
}
.footer .actions .email-link a {
  color: #e8e0da;
}
.footer .custom-button {
  display: inline-block;
}
.footer .custom-button a {
  height: 62px;
  display: flex;
  align-items: center;
  background-color: #e8e0da;
  color: #222;
  padding: 0 40px;
  border-radius: 62px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  padding: 40px 0;
  position: relative;
  background-color: #222;
  color: #e8e0da;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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