/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 06 2025 | 13:53:40 */
/* TOC:
-----------------------------------
1. colors
2. typographics
3. margins & paddings
4. buttons
5. modificators
6. navbar
7. offcanvas
----------------------------------- */

/* 1. colors
----------------------------------- */
.bg-primary {
  background-color: var(--global-palette1);
}
.bg-secondary {
  background-color: var(--global-palette2);
}
.bg-dark {
  background-color: var(--global-palette3);
}
.bg-subtle {
  background-color: var(--global-palette7);
}
.bg-light {
  background-color: var(--global-palette8);
}
.bg-white {
  background-color: var(--global-palette9);
}
.bg-gradient {
  background: linear-gradient(right, var(--global-palette1), var(--global-palette2));
}
.bg-primary, .bg-primary a, .bg-primary .elementor-heading-title,
.bg-secondary, .bg-secondary a, .bg-secondary .elementor-heading-title,
.bg-dark, .bg-dark a, .bg-dark .elementor-heading-title {
  color: var(--global-palette9);
}
.bg-light, .bg-light a, .bg-light .elementor-heading-title,
.bg-white, .bg-white a, .bg-white .elementor-heading-title {
  color: var(--global-palette3);
}
.text-primary {
  color: var(--global-palette1) !important;
}
.text-light, .text-light .elementor-heading-title {
  color: var(--global-palette8) !important;
}
.text-white, .text-white .elementor-heading-title {
  color: var(--global-palette9) !important;
}

/* 2. typographics
----------------------------------- */
body, html {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  body, html {
    font-size: 16px;
  }
}
h1, h2, h3, h4, h5, h6, .elementor-heading-title {
  margin: inherit !important;
  line-height: 1.1;
}
.text-display .elementor-heading-title,
.section-hero-headline .elementor-heading-title {
  letter-spacing: -0.02em;
  font-size: 12vw;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .text-display .elementor-heading-title,
  .section-hero-headline .elementor-heading-title {font-size: 8rem;}
}

.elementor-widget-container p, .single-content p:last-child {
  margin: 0 !important;
}
.elementor-widget-container p {
  margin-bottom: 20px;
}
/*
.kicker {
  color: var(--global-palette9);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 0;
}
*/
.lead {
  font-size: 1.25rem;
}
.text-small {
  font-size: 0.875rem;
}
.text-medium {
  font-size: 1.25rem;
}
.text-uppercase {
  text-transform: uppercase !important;
}

/* 3. margins & paddings
------------------------------ */
section, .section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
section section, footer section {
  padding: 0;
}
.elementor-column-gap-wide > .elementor-column > .elementor-element-populated, .column-gap-wide {
  padding: 1.5rem;
}
.elementor-column-gap-wider > .elementor-column > .elementor-element-populated, .column-gap-wider {
  padding: 2rem;
}
@media (min-width: 768px) {
  section, .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  section section, footer section {
    padding: 0;
  }
  .elementor-column-gap-wide > .elementor-column > .elementor-element-populated, .column-gap-wide {
    padding: 2rem;
  }
  .elementor-column-gap-wider > .elementor-column > .elementor-element-populated, .column-gap-wider {
    padding: 3rem;
  }
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* 4. buttons
------------------------------------- */
button, input[type="button"], input[type="reset"], input[type="submit"],
.button, .wp-block-button__link, .elementor-button-wrapper .elementor-button, .elementor-form .elementor-button {
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease-out;
}
.btn-small .elementor-button {
  border: 1px solid;
  font-size: 14px;
  padding: .5em 1em;
}

.btn-large .elementor-button {
  font-family: var(--global-body-font-family);
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

/* btn-primary */
.btn-primary .elementor-button {
  background-color: var(--global-palette1);
  border-color: var(--global-palette1);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
.btn-primary .elementor-button:hover, .btn-primary .elementor-button:focus {
  background-color: var(--global-palette1);
  border-color: var(--global-palette1);
  box-shadow: inset 0 0 100px 0 rgba(255,255,255,.15);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
/* btn-dark */
.btn-dark .elementor-button,
.btn-dark.elementor-button-info .elementor-button:hover,
.btn-dark.elementor-button-info .elementor-button:focus  {
  background-color: var(--global-palette3);
  border-color: var(--global-palette3);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
.btn-dark.elementor-button-info .elementor-button,
.btn-dark .elementor-button:hover, .bg-dark .elementor-button:focus {
  background-color: transparent;
  border-color: var(--global-palette3);
  color: var(--global-palette3);
  fill: var(--global-palette3);
}
/* btn-white */
.btn-white .elementor-button,
.btn-white.elementor-button-info .elementor-button:hover,
.btn-white.elementor-button-info .elementor-button:focus  {
  background-color: var(--global-palette9);
  border-color: var(--global-palette9);
  color: var(--global-palette3);
  fill: var(--global-palette3);
}
.btn-white .elementor-button:hover,
.bg-white .elementor-button:focus,
.btn-white.elementor-button-info .elementor-button {
  background-color: transparent;
  border-color: var(--global-palette9);
  color: var(--global-palette9);
  fill: var(--global-palette9);
}
/*
.elementor-button-wrapper .elementor-button:before,
.elementor-button-wrapper .elementor-button:after {
  background-color: var(--global-palette1);
  content: "";
  display: block;
  height: 1px;
  transition-duration: .5s;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}
.elementor-button-wrapper .elementor-button:before {
  transition-delay: .3s;
}
.elementor-button-wrapper .elementor-button:after {
  width: 100%;
  left: auto;
  right: 0;
}
.elementor-button-wrapper:hover .elementor-button:before {
  width: 100%;
}
.elementor-button-wrapper:hover .elementor-button:after {
  width: 0;
}
#kt-scroll-up.scroll-visible {
  box-shadow: 0 0 1rem rgba(0,0,0,.1);
}
*/


/* 5. modificators
------------------------------------- */
.bordered {
  border: 1px solid var(--global-palette7);
}
.border-top {
  border-top: 1px solid var(--global-palette7);
}
.border-bottom {
  border-bottom: 1px solid var(--global-palette7);
}
.border-left {
  border-left: 1px solid var(--global-palette7);
}
.border-right {
  border-right: 1px solid var(--global-palette7);
}
.container-25 {
  max-width: 360px;
}
.container-40 {
  max-width: 512px;
}
.container-50 {
  max-width: 640px;
}
.container-75 {
  max-width: 960px;
}
.img-spacer {
  overflow: hidden;
}
.gap-1 > div {
  gap: 1rem;
}
.gap-2 > div {
  gap: 2rem;
}
.gap-3 > div {
  gap: 3rem;
}
.op-25 {
  opacity: 0.25 !important;
}
.op-50 {
  opacity: 0.5 !important;
}
.op-75 {
  opacity: 0.75 !important;
}
.overflow-h {
  overflow: hidden !important;
}
.rounded {
  border-radius: 1rem;
}
.shadow {
  box-shadow: 0 0 1rem 0 rgba(0,0,0,.1);
}
.list-unlisted {
  list-style: none;
}
.single-content ul, .single-content ol {
  margin: 0 0 10px;
}
.widget-area ul {
  padding: 0;
  margin: 0;
}
.gsap-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}


/* 6. navbar
------------------------------------- */
/*
.mobile-toggle-open-container .menu-toggle-open,
.mobile-toggle-open-container .menu-toggle-open:focus {
  background: var(--global-palette9);
  border-radius: 4rem;
  color: var(--global-palette3);
  padding: 1em;
  font-size: 14px;
}
.site-branding a.brand {
  gap: 0.25em;
}
.mobile-toggle-open-container .menu-toggle-open,
.mobile-toggle-open-container .menu-toggle-open:focus {
  background: var(--global-palette9);
  border-radius: 4rem;
  color: var(--global-palette3);
  padding: 1em;
  font-size: 14px;
}
#masthead .primary-menu-container {
  background: var(--global-palette3);
  border-radius: 4rem;
  padding: 0.5rem;
}
.header-navigation .menu {
  gap: 0.2em;
}
.main-navigation .primary-menu-container > ul > li.menu-item > a {
  border-radius: 2rem;
  line-height: 1;
  padding: .75em 1em;
}
*/
/*
#masthead .header-button {
	padding: 15px 30px;
	font-weight: 400;
	border-radius: 2rem;
	font-size: 16px;
	text-transform: uppercase;
}
#masthead .header-button:hover, 
#masthead .header-button:active {
	background-color: var(--global-palette5) !important;
	border-color: var(--global-palette5) !important;
}
*/
#main-header .header-button.button-size-custom {
  padding: .75em 1.5em .75em 1.5em;
}
#secondary-menu >li:last-child a {
	font-style: normal;
    font-size: 1rem;
    line-height: 1;
    border-radius: 12rem 12rem 12rem 12rem;
	padding: .75em 1.5em .75em 1.5em;
    color: var(--global-palette9);
    background: var(--global-palette1);
    border: 1px solid currentColor;
    border-color: var(--global-palette1);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	margin-left: 0.5rem;
	text-align: center;
}
#secondary-menu >li:last-child a:hover {
    color: var(--global-palette9);
    background: var(--global-palette2);
    border-color: var(--global-palette2);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
}
#secondary-menu .lang-item a {
	padding: 0 0.5rem;
	color: var(--global-palette3);
	font-weight: 700;
}
#secondary-menu .lang-item:first-child a {
	border-right: 2px solid var(--global-palette3);
}
#secondary-menu .current-lang a {
	color: var(--global-palette1);
}

/* 7. offcanvas
------------------------------------- */
#mobile-drawer .drawer-header .drawer-toggle {
  background-color: rgba(255,255,255,.2);
  border: 1px solid transparent;
  border-radius: 3rem;
  font-size: 2rem;
  padding: .5rem;
  z-index: 9;
}
#mobile-drawer .polylang_langswitcher {
	list-style: none;
	display: flex;
    gap: 1rem;
}
#mobile-drawer .polylang_langswitcher {
	font-style: normal;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: none;
	margin: 0 0 1rem 0;
}
#mobile-drawer .polylang_langswitcher >li:first-child {
	border-right: 3px solid var(--global-palette6);
	padding-right: 1rem;
}
#mobile-drawer .polylang_langswitcher a{
	text-decoration: none;
	color: var(--global-palette6);
}
#mobile-drawer .polylang_langswitcher .current-lang a{
	color: var(--global-palette9);
}
.popup-drawer .drawer-header {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 80px;
  padding: 0;
  padding-right: 1rem;
}
.mobile-navigation {
  overflow: hidden;
  margin-bottom: 1rem;
}
.mobile-navigation ul li a {
  padding: 0;
}
.popup-drawer .drawer-content .mobile-header-button-wrap,
.mobile-header-button-wrap .mobile-header-button-inner-wrap .mobile-header-button {
  width: 100%;
}
.mobile-header-button-wrap .mobile-header-button-inner-wrap .mobile-header-button {
  background-color: var(--global-palette9);
  border: 2px solid var(--global-palette9);
  color: var(--global-palette3);
  padding: 1em 1.5em;
  border-radius: 3rem;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}
/*
.popup-drawer .drawer-content.content-valign-bottom {
  padding: 0 !important;
  z-index: 1;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.drawer-content .site-header-item:first-child {
  background-color: rgba(255,255,255,.1);
  background-color: transparent;
  margin-bottom: 0 !important;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--global-palette3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LAYOUT
#inner-wrap {
  background-color: var(--global-palette9);
  position: relative;
  margin-bottom: 24rem;
  z-index: 2;
}
#colophon {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 24rem;
}
===================================== */

/* PAGE: HOME
===================================== */
/* section: hero
------------------------------------- */
#hero-circle {
  border-radius: 16rem;
  height: 16rem;
  width: 16rem;
  overflow: hidden !important;
}
@media (min-width: 768px) {
  #hero-circle {
    height: 30rem;
    width: 30rem;
  }
}
#hero-cta-button {
  border: 0;
  border-radius: 4rem;
  font-size: 1rem;
  height: 8rem;
  width: 8rem;
  padding: 0;
  text-transform: uppercase;
  transition: background .75s;
}
#hero-cta-button .elementor-button-content-wrapper {
  align-items: center;
  height: 100%;
  padding: 0;
}

/* section: numbers
------------------------------------- */
#numbers .elementor-widget-counter {}
#numbers .elementor-counter {
  gap: 10px;
  padding-top: 1rem;
}
#numbers .elementor-counter .elementor-counter-number-wrapper {
  color: var(--global-palette3);
  font-family: var(--global-heading-font-family);
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 768px) {
#numbers .elementor-counter .elementor-counter-number-wrapper {
  font-size: 5rem;
}
}
#numbers .elementor-counter .elementor-counter-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}


/* section: about us
#about .text-display h2 {
  font-size: 10vw;
  white-space: nowrap;
  margin-bottom: 0;
}
------------------------------------- */

/* section: best-services
------------------------------------- */
#best-services .services-section:not(:last-child) {
  margin-bottom: 3rem;
}
#best-services .col-2 {
  order: 1;
}
#best-services .col-1 {
  order: 2;
}
#best-services .col-3 {
  order: 3;
}
@media (min-width: 768px) {
#best-services .col-2 {
  order: 2;
}
#best-services .col-1 {
  order: 1;
}
}
#best-services .elementor-widget-icon-list {
  margin-bottom: 1rem;
}
/*
#best-services .col-3 {
  padding-top: 1rem;
}
*/
@media (min-width: 1025px) {
#best-services .col-3 {
  padding-left: 3rem;
}
}
/*
#services-new .e-n-accordion-item-title {
border: 0;
border-bottom: 1px solid rgba(0,0,0,.5);
padding: .5rem 0;
}
#services-new .e-n-accordion-item .e-n-accordion-item-title::before {
content: "01";
font-size: 1.5rem;
font-weight: 500;
opacity: 0.5;
}
#services-new .e-n-accordion-item:nth-child(2) .e-n-accordion-item-title::before {content:"02";}
#services-new .e-n-accordion-item:nth-child(3) .e-n-accordion-item-title::before {content:"03";}
#services-new .e-n-accordion-item:nth-child(4) .e-n-accordion-item-title::before {content:"04";}
#services-new .e-n-accordion-item:nth-child(5) .e-n-accordion-item-title::before {content:"05";}
#services-new .e-n-accordion-item-title-text {
font-size: 1.5rem;
}
#services-new .e-n-accordion-item .e-con-full {
border: 0;
}
*/

/* section: featured-projects
------------------------------------- */
#selected-projects h2 {
  font-size: 4rem;
  margin-bottom: 0;
}
#selected-projects .island {
  border-radius: 2rem;
  display: block;
  overflow: hidden;
  height: 4rem;
  width: 10rem;
}
.island .elementor-widget-container {
  height: 100%;
}
@media (min-width: 768px) {
#selected-projects h2 {
  font-size: 5vw;
}
#selected-projects .island {
  border-radius: 5vw;
  display: block;
  overflow: hidden;
  height: 10vw;
  width: 20vw;
}
}

/* section: projects
------------------------------------- */
.project-card {
  margin-bottom: 60px;
}
/*
.project .elementor-widget-image a {
  display: inline-block;
}
.project .elementor-icon-wrapper {
  display: flex;
}
.project .elementor-icon {
  background-color: transparent;
  border: 1px solid var(--global-palette3);
  border-radius: 3rem;
  font-size: 2rem;
  padding: .5rem;
  transform: rotate(-45deg);
}
.project .elementor-icon:hover {
  transition: all 0.5s ease-out;
  transform: rotate(0deg);
}
.project .elementor-icon i,
.project .elementor-icon svg {
  fill: var(--global-palette3);
}
.project .elementor-button {
  border: 2px solid #fff;
  padding: .5em;
  border-radius: 3rem;
}
.project .elementor-button span {
  text-decoration: inherit;
  line-height: 1;
  height: 2rem;
}
.project .elementor-button span svg {
  width: 2rem;
  height: 2rem;
}
*/


/* section: cta-btn
------------------------------------- */
.cta-btn .elementor-button {
  font-family: var(--global-heading-font-family);
  font-size: 3rem;
}
.cta-btn .elementor-button:before, .cta-btn .elementor-button:after {
  height: 4px;
}

/* Section: Features
------------------------------------- */
#features .col-1 {order:2;}
#features .col-2 {order:1;}
#features .col-3 {order:3;}
@media (min-width: 1024px) {
  #features .col-1 {order:1;}
  #features .col-2 {
    order: 2;
    padding-left: 60px;
    padding-right: 60px;
  }
}
#features .features-section {
  border-bottom: 1px solid var(--global-palette7);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#features .kicker {
  margin-bottom: 1rem;
}
#features h3 {
  font-size: 1.5rem !important;
  margin-bottom: .75rem !important;
}
#features p {
  font-size: 0.875rem;
}


/* section: testimonials
------------------------------------- */
#testimonials .elementor-main-swiper {
  width: 100%;
}
#testimonials .elementor-testimonial {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}
#testimonials .elementor-testimonial__header,
#testimonials .elementor-testimonial__content {
  width: 100%;
}
#testimonials .elementor-widget-reviews .elementor-testimonial__content, 
#testimonials .elementor-widget-reviews .elementor-testimonial__header {
  padding: 2rem;
}
#testimonials .elementor-widget-reviews .elementor-testimonial__text {
  color: var(--global-palette3);
  font-family: var(--global-heading-font-family);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
}
#testimonials .elementor-widget-reviews .elementor-testimonial__image + cite {
  margin-inline-start: 1rem;
}
#testimonials .elementor-testimonial__name {
  color: var(--global-palette3);
  line-height: 1.25;
}
#testimonials .elementor-widget-reviews .elementor-testimonial__title {
  color: var(--global-palette6);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}
#testimonials .elementor-testimonial__footer cite, 
#testimonials .elementor-testimonial__header cite {
  font-family: var(--global-heading-font-family);
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  justify-content: center;
}
#testimonials .elementor-testimonial__header cite {
  font-size: 20px;
}
#testimonials .elementor-swiper-button {
  background-color: var(--global-palette8);
  top: -70px !important;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: none;
}
#testimonials .elementor-swiper-button:hover {
  background-color: var(--global-palette3);
}
#testimonials .elementor-swiper-button-prev {
  left: auto;
  right: 70px;
}
#testimonials .elementor-swiper-button-next {
  right: 0;
}
@media (min-width: 768px) {
#testimonials .elementor-swiper-button {
  display: block;
}
}

#testimonials .eicon-chevron-left::before,
#testimonials .eicon-chevron-right::before {
  display: none;
}
#testimonials .eicon-chevron-left,
#testimonials .eicon-chevron-right {
  background-image: url(/wp-content/uploads/arrow-left-solid.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  height: 60px;
  width: 60px;
}
#testimonials .eicon-chevron-right {
  background-image: url(/wp-content/uploads/arrow-right-solid.svg);
}
#testimonials .elementor-swiper-button:hover .eicon-chevron-left,
#testimonials .elementor-swiper-button:hover .eicon-chevron-right {
  filter: invert(1);
}


/* section: recent-project
------------------------------------- */
#recent-projects .elementor-post__thumbnail:hover {
  border-radius: 1.5rem;
  opacity: 0.75;
  overflow: hidden;
  transition: all .5s ease-in-out;
}
#recent-projects .elementor-posts .elementor-post__title {
  font-size: 2rem;
  margin-bottom: 0.5rem !important;
}
#recent-projects .elementor-posts .elementor-post__read-more {
  font-size: 1rem;
  position: relative;
}
#recent-projects .elementor-posts .elementor-post__read-more:after {
  background-color: var(--global-palette1);
  content: "";
  position: absolute;
  right: auto;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  -webkit-transition: width .5s cubic-bezier(.25,.8,.25,1) 0s;
  transition: width .5s cubic-bezier(.25,.8,.25,1) 0s;
}
#recent-projects .elementor-posts .elementor-post__read-more:hover:after {
  width: 100%;
}
/*
#recent-projects .elementor-post__thumbnail:hover img {
opacity: 0.8;
transition: all .5s ease-out;
border-radius: 1rem;
overflow: hidden;
}
#recent-projects .elementor-swiper-button {
  background-color: var(--global-palette8);
  width: 60px;
  height: 60px;
  font-size: 40px;
  padding: 10px;
}
#recent-projects .elementor-swiper-button:hover {
  background-color: var(--global-palette3);
}
#recent-projects .elementor-swiper-button-prev {
  left: auto;
  right: 10px;
}
*/


/* section: partners
------------------------------------- */
#partner-logos .swiper-slide-inner {
  border-right: 1px solid var(--global-palette7);
  padding: 0 1.5rem;
}
#partner-logos .swiper-pointer-events {
  position: relative;
}
#partner-logos .swiper-pointer-events::before,
#partner-logos .swiper-pointer-events::after {
  background: linear-gradient(90deg, var(--global-palette9), transparent);
  content: "";
  position: absolute;
  height: 100%;
  width: 10rem;
  z-index: 3;
  top: 0;
  left: 0;
}
#partner-logos .swiper-pointer-events::after {
  background: linear-gradient(-90deg, var(--global-palette9), transparent);
  width: 160px;
  left: auto;
  right: 0;
}


/* section: blog
------------------------------------- */
#blog .elementor-post__title {
  margin-bottom: 1rem !important;
}
#blog .elementor-post__thumbnail:hover {
  border-radius: 1.5rem;
  opacity: 0.75;
  overflow: hidden;
  transition: all .25s ease-in-out;
}

/* PAGES
------------------------------------- */
/* section: page-header
------------------------------------- */
/*
#page-header h1, #page-header h2 {
  font-size: 8vw;
  line-height: 1;
  margin-bottom: 0;
}
#page-header .island {
  border-radius: 4vw;
  display: block;
  overflow: hidden;
  height: 8vw;
  min-width: 16vw;
}
.island {
  border-radius: 4vw;
  display: block;
  overflow: hidden;
  height: 8vw;
  min-width: 16vw;
}
*/


/* section: how-it-works
------------------------------------- */
#how-it-works .elementor-widget-icon-box {
  background-color: transparent;
  border: 2px solid var(--global-palette3);
  border-radius: 1rem;
}
#how-it-works .elementor-widget-icon-box .elementor-icon-box-wrapper {
  padding: 2rem;
  min-height: 30vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#how-it-works .elementor-widget-icon-box .elementor-icon-box-icon {
  flex-grow: 1;
  margin: 0;
}
#how-it-works .elementor-widget-icon-box .elementor-icon-box-content {
  flex-grow: 0;
}
#how-it-works .elementor-icon {
  font-size: 2rem;
  color: var(--global-palette3);
  fill: var(--global-palette3);
}
#how-it-works .elementor-icon-box-title {
  color: var(--global-palette3);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: .5rem !important;
}
#how-it-works .elementor-icon-box-description {
  color: var(--global-palette3);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0 !important;
}

/* section: counters
------------------------------------- */
#counters .elementor-widget-counter {
  border-bottom: 2px solid #fff;
  flex-grow: 1;
  flex: 0 0 100%;
  margin-bottom: 0;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
#counters .elementor-widget-counter {
  flex: 0 0 calc(50% - 1.5rem);
}
}
#counters .elementor-counter .elementor-counter-number-wrapper {
  font-family: var(--global-heading-font-family);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: .5rem;
}
#counters .elementor-counter .elementor-counter-number-prefix {
  flex-grow: unset;
  text-align: left;
}
#counters .elementor-counter .elementor-counter-title {
  justify-content: start;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}


/* section: footer (#colophon) 
------------------------------------- */
#colophon .site-container {
  padding: 0;
}
#colophon .site-footer-section {
  padding: 2rem;
  border-left: 1px solid rgba(255,255,255,.3);
}
#colophon .site-bottom-footer-wrap .site-footer-section {
  padding: 1rem 2rem;
  border-left: 0;
}

#colophon .site-footer-middle-section-1 {
  flex-direction: column;
}
#colophon .site-footer-middle-section-1 .footer-widget-area {
  margin: 0;
  margin-bottom: 2rem;
}
.site-info-inner {
  margin-bottom: 0;
}
#colophon .footer-logo {
  max-width: 8rem;
}
#colophon .footer-social {
  display: none;
}
#colophon .widget-area .widget-title {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem !important;
  opacity: 0.5;
}
#colophon .widget_pages a, #colophon .widget_nav_menu a {
  line-height: 1;
  margin-bottom: .5rem;
  padding: 0;
}
#colophon .footer-html {
  margin: 0;
}

/* PAGE: ABOUT US
------------------------------------- */
#faq .elementor-toggle .elementor-tab-title {
  color: var(--global-palette3);
  font-family: var(--global-heading-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 1.5em 0;
}
#faq .elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed {
  display: flex;
}
#faq .elementor-toggle .elementor-tab-title .elementor-toggle-icon {
  height: 40px;
  width: 40px;
  margin-top: -10px;
  transition: .4s;
}
#faq .elementor-toggle .elementor-tab-title .elementor-toggle-icon svg {
  margin-inline-start: inherit;
  height: 40px;
  width: 40px;
}
#faq .elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon {
  rotate: 315deg;
}
#faq .elementor-toggle .elementor-tab-content {
  padding: 0;
  padding-bottom: 2em;
  border-bottom: 1px solid #d5d8dc;
}
#faq .elementor-toggle .elementor-tab-content p {
  font-size: 0.875rem;
  max-width: 720px;
}

/* PAGE: HIRE US
------------------------------------- */
#hire-us-form .forminator-field-checkbox {
  padding-top: 1rem;
}
#hire-us-form .forminator-field-checkbox .forminator-label {
  font-family: var(--global-heading-font-family) !important;
  font-size: 1rem !important;
  text-transform: uppercase;
}


/* PAGES: Legal Pages
------------------------------------- */
#page-content .elementor a {
  color: #000;
  text-decoration: underline;
}
#page-content .elementor-widget-sitemap .elementor-sitemap-title {
  margin-bottom: 1rem !important;
}

/* PAGES: PROJECTS
------------------------------------- */
#project h1 {
  font-size: 3rem;
}
#project-details h2 {
  margin-bottom: 0.875rem !important;
}
.elementor-lightbox .dialog-lightbox-close-button,
.elementor-lightbox .elementor-swiper-button {
  text-decoration: none;
}
#project-content h2 {
  font-size: 2.5rem;
}
#project-content h3 {
  font-size: 2rem;
}
#project-content .elementor-widget-call-to-action {
  overflow: hidden;
}
#project-content .elementor-cta__content {
  background-color: var(--global-palette8);
  border-radius: 1rem;
  padding: 1.5rem;
}
#project-content .elementor-cta__content-item {
  color: var(--global-palette3);
}
#project-content .elementor-cta__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem !important;
}
#project-content .elementor-cta__button.elementor-button {
  background-color: var(--global-palette3);
  border-color: var(--global-palette3);
  color: var(--global-palette9);
  border-radius: 2rem;
  font-weight: 600;
  width: 100%;
}
#project-content .elementor-cta__button.elementor-button:hover {
  background-color: var(--global-palette5);
  border-color: var(--global-palette5);
}



/* PAGES: BLOG
------------------------------------- */
.elementor-widget-theme-post-content .elementor-widget-container {
  gap: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.elementor-widget-theme-post-content .elementor-widget-container blockquote {
  background-color: var(--global-palette8);
  border-left: 4px solid var(--global-palette1);
  padding: 1.5rem;
  margin: 0;
}
.elementor-widget-theme-post-content .elementor-widget-container blockquote p {
  font-family: var(--global-heading-font-family);
}


/* Section: Features
#features .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#features .elementor-widget-icon-box {
  background-color: transparent;
  border: 2px solid var(--global-palette3);
  border-radius: 1rem;
  margin: 0;
}
#features .elementor-widget-icon-box .elementor-icon-box-wrapper {
  padding: 1.5rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
#features .elementor-widget-icon-box {
  border-radius: 1rem;
  flex: 0 0 calc(33.33% - .67rem);
}
#features .elementor-widget-icon-box .elementor-icon-box-wrapper {
  padding: 1.5rem;
  min-height: 25vw;
}
}
#features .elementor-widget-icon-box .elementor-icon-box-icon {
  flex-grow: 1;
  margin: 0;
}
#features .elementor-widget-icon-box .elementor-icon-box-content {
  flex-grow: 0;
}
#features .elementor-icon {
  font-size: 2.5rem;
  color: var(--global-palette3);
  fill: var(--global-palette3);
}
#features .elementor-icon-box-title {
  color: var(--global-palette3);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: .5rem !important;
}
#features .elementor-icon-box-description {
  color: var(--global-palette3);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0 !important;
}
------------------------------------- */

/* Section: Features (dark)
#features.bg-dark .elementor-widget-icon-box {
  border-color: #fff;
}
#features.bg-dark .elementor-view-stacked .elementor-icon {
  padding: .25em;
  background-color: #3881FA;
  background: linear-gradient(135deg, #3881FA 0%, #a21fad 100%);
  background: linear-gradient(135deg, #6AFFF3 0%, #6A6AFF 50%, #BF71FF 100%);
  background: linear-gradient(135deg, #1DF2DD 0%, #4B1DF2 50%, #C935F2 100%);
}
#features.bg-dark .elementor-icon {
  font-size: 2.5rem;
  color: #fff;
  fill: #fff;
}
#features.bg-dark  .elementor-icon-box-title {
  color: #fff;
}
#features.bg-dark  .elementor-icon-box-description {
  color: #fff;
}
------------------------------------- */
/*
#hero h1 {
  font-size: 2.5rem;
}
#hero .qr-code {
  background-color: #fff;
  font-size: 4rem;
  padding: .5rem;
  border-radius: 1rem;
  width: 5rem;
  height: 5rem;
}
#hero .elementor-icon-wrapper {
  line-height: 1;
}
*/
/*
.jump-link {
    position: relative;
    display: inline-block;
    color: #ff6b6b;
    text-decoration: none;
    overflow: hidden;
}

.jump-link::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
    color: #f7b733;
    transition: top 0.3s ease;
}
.jump-link:hover {
    color: transparent;
}
.jump-link:hover::before {
    top: 0;
}
*/
/*
.elementor-widget-theme-post-content h3 {
  margin-bottom: 1.5rem !important;
}
#post-content .elementor-widget-container p {
  margin-bottom: 1.5rem !important;
}
#post-content blockquote {
  background-color: var(--global-palette8);
  border-left: 4px solid var(--global-palette1);
  padding: 1.5rem;
  margin: 0;
  margin-bottom: 1.5rem !important;
}
#post-content .elementor-widget-container blockquote p {
  color: var(--global-palette3);
  margin-bottom: 0 !important;
  font-size: 1.25rem;
  font-family: var(--global-heading-font-family);
}
*/
/* section: footer (#colophon)
-------------------------------------
#colophon .site-container {
  padding: 0;
}
#colophon .site-footer-section {
  padding: 2rem;
  border-left: 2px solid var(--global-palette9);
}
.site-footer-middle-section-2,
.site-footer-middle-section-3,
.site-footer-middle-section-4 {
}
.site-info-inner {
  margin-bottom: 0;
}
#colophon .footer-logo {
  max-width: 8rem;
}
#colophon .widget-area .widget-title {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1.5rem !important;
}
#colophon .widget_pages a, #colophon .widget_nav_menu a {
  line-height: 1;
  margin-bottom: .5rem;
  padding: 0;
}
#colophon .footer-html {
  margin: 0;
}
------------------------------------- */

/* PAGE: Targeting
------------------------------------- */

#targeting_hero h1{
	font-size: 2.1rem;
}

#targeting_hero .subtitle span{
	color: var(--global-palette5);
	font-size: 16px;
}
#why-work-with-us{
	background-color: #F5F5F5;
}

#why-work-with-us .cards .card:nth-child(1),
#why-work-with-us .cards .card:nth-child(3){
	margin-right: 0;
}
#why-work-with-us .cards .card{
	margin-bottom: 1.25rem;
	max-width: 290px;
}
#why-work-with-us .cards{
	font-size: 1.125rem;
}

#why-work-with-us .cards>div{
	flex-direction: column;
	justify-content: center;
	align-content: center;
}

#why-work-with-us .card-1,
#why-work-with-us .card-4>div{
	padding: 1.5rem 1.25rem !important;
}
#why-work-with-us .card-2 p,
#why-work-with-us .card-3 p,
#why-work-with-us .card-5 p,
#why-work-with-us .card-6 p{
	padding: 0 1.5rem;
	padding-bottom: 1.25rem;
	color: #070621;
}
#why-work-with-us .card-2 p{
	color: var(--global-palette9);
}
#why-work-with-us .card-6{
	padding-top: 2.75rem;
}
#why-work-with-us .card-4{
	min-height: 21rem;
}
#why-work-with-us .card-4 p{
	padding: 1rem;
	color: #070621;
}
#why-work-with-us .card-2{
	background-color: #070621;
	color: var(--global-palette9);
}
#why-work-with-us .card-3{
	background-color: #DFC9FF;
}
#why-work-with-us .card-5{
	background-color: #D9D9D9;
}
#why-work-with-us .card-2 .img{
	margin-bottom: -1rem;
}
#why-work-with-us .card-3 .img{
	margin-bottom: -1.5rem;
}
#why-work-with-us .card-5 .img{
	margin-bottom: -1.75rem;
}
#why-work-with-us .card>div,
#why-work-with-us .card>div{
	align-content: stretch;
}
#why-work-with-us .card-1>div{
	align-content: flex-start;
}
#why-work-with-us .card .card-2,
#why-work-with-us .card .card-5{
	margin-bottom: 1.375rem;
}
#why-work-with-us .card-4 .absolute-img,
#why-work-with-us .card-4 .absolute-img>div{
	height: 100%;
}
#why-you-need-targeting .text-medium{
	color: #070621;
}

#why-you-need-targeting .light-text p{
	font-size: 1.125rem;
}

#leave-a-request{
	max-width: 63rem;
	border-radius: 1.875rem;
}
#leave-a-request h4{
	font-size: 1.25rem;
}

#about-digizen{ 
	background-color: #070621;
}

#about-digizen h3,
#about-digizen p{
	color: var(--global-palette9);
}

#about-digizen .elementor-icon-box-description{
	font-size: 1.25rem;
}

#what-you-choose .cards{
	max-width: 59.75rem;
}
#what-you-choose .cards>div{
	justify-content: center;
}
#what-you-choose .card{
	border-radius: 30px;
	min-height: 23.75rem;
}
#what-you-choose .card:first-child{
	background-color: var(--global-palette1);
	margin-right: 0;
	margin-bottom: 1.25rem;
}
#what-you-choose .card:last-child{
	background-color: #D9D9D9;
}
#what-you-choose .card:last-child p{
	color: #070621;
}
#what-you-choose .card:first-child p{
	color: var(--global-palette9);
}
#what-you-choose p{
	line-height: 1.2;
	font-size: 1.75rem;
}
#we-will-work-with-you .card{
	min-height: 22rem; 
    max-width: 400px;
}

#we-will-work-with-you .cards>div{
	justify-content: center;
}
#we-will-work-with-you .card p{
	font-size: 1.125rem;
}
@media (max-width: 1024px){
	#why-you-need-targeting{
		background-image: unset !important;
	}
	#targeting-approach .cards{
		width: 50%;
	}
	#targeting-approach .cards>div{
		flex-direction: column;
	}
	#targeting-approach .cards>div .elementor-column{
		width: 100%;
		min-height: 12.5rem;
	}
	#we-will-work-with-you .card:not(:first-child){
		margin-top: -2rem;
	}
	#we-will-work-with-you .cards:last-child{
		margin-top: -2rem;
	}
}
@media(max-width:768px){
	#targeting-approach .cards>div .elementor-column{
		width: 18rem !important;
		margin-left: -1rem;
	}
	#targeting-approach .cards:last-child{
		margin-left: -6rem;
	}
	#targeting-approach .cards>div .elementor-column{
		min-height: 15rem;
	}
}
@media (min-width: 768px) {
	#why-work-with-us .cards>div{
		flex-direction: row;
	}
	.btn-large .elementor-button {
	  padding: 1.2em 2em;
	}
	#targeting_hero h1{
		font-size: 3.125rem;
		line-height: 1.2;
	}
	#targeting_hero .subtitle span{
		font-size: 1.25rem ;
	}
	#what-you-choose .card:first-child{
		margin-right: 1.25rem;
		margin-bottom: 0;
	}
	#why-work-with-us .cards .card:nth-child(1),
	#why-work-with-us .cards .card:nth-child(3){
		margin-right: 1.375rem;
	}
	#leave-a-request h4{
		font-size: 1.875rem;
	}
	#we-will-work-with-you .card{
		max-width: unset;
	}
}
@media (min-width: 1024px) {
	#why-work-with-us .cards .card:not(:last-child){
		margin-right: 1.375rem;
	}
	#we-will-work-with-you .card{
		min-height: unset;
	}
	#what-you-choose .card:first-child{
		margin-right: 5.625rem;
	}
	#why-you-need-targeting p {
		padding-right: 4rem;
	}
	#targeting-approach .cards.first-row{
		margin-left: -2.5rem;
	}
}
