:root {
	
	--primary-color: #001146;
	--background-color: #b6dee6;
	--accent-color: #003EFF;
	--accent-color2: #4dbade;
	--white-color: #fff;
	
	
	
	--title-font: "Quicksand", sans-serif;
	--dark: var(--primary-color);
	--text-font: "Quicksand", sans-serif;
	--theme-color: var(--accent-color);
	--light: white;
	--theme-color-two: #6289d9;
	--theme-color-three: #f6f6f6;
	
	--border-radius: 30px;
	
	
	
	--color1: #06fce1;
	--color2: #05afec;
	--color3: #045df8;

}



/*

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body, html {
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow: hidden;
    }
    */
#loader-cont {
	margin: 0;
	padding: 0;
}
    
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d8f1f4 0%, #4dd0e1 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 1s ease-in-out;
	will-change: opacity;
}

#loader.fade-out {
  opacity: 0;
}

#logo {
  width: clamp(120px, 80%, 200px);
  height: auto;
  transition: transform 0.6s ease;
  transform-origin: center;
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.fade-scale-out {
  animation: fadeScaleOut 1.5s forwards ease-in-out;
}

@keyframes fadeScaleOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

#content {
  padding: 60px 40px;
  text-align: center;
  min-height: 110vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
  opacity: 0.15;
}

#content.fade-in {
  opacity: 1;
}

#content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#content p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Loading text animation */
.loading-text {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  color: #666;
  opacity: 0.7;
  animation: fadeInOut 2s infinite ease-in-out;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Improved SVG styling */
#logo circle {
  transition: all 0.3s ease;
}

#logo:hover circle {
  fill: #667eea;
}

/* Responsive design */
@media (max-width: 768px) {
  #logo {
	  max-width: 180px;
    width: 75%;
    height: 100px;
  }
  
  #content h1 {
    font-size: 2.2rem;
  }
  
  #content p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}


.hidden {
	display: none !important
}


.big-bi-cont {
	font-size: 2em !important;
    width: 1em;
    margin-right: 12px;
}
.big-bi-cont > .bi {
	position: absolute;
    top: -0.5em;
    color: var(--theme-color);
}
.bi-share {
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23000' d='M20.75 6a1.25 1.25 0 0 1 0 2.5h-7.5a4.75 4.75 0 0 0-4.75 4.75v21.5a4.75 4.75 0 0 0 4.75 4.75h21.5a4.75 4.75 0 0 0 4.75-4.75v-6.5a1.25 1.25 0 0 1 2.5 0v6.5A7.25 7.25 0 0 1 34.75 42h-21.5A7.25 7.25 0 0 1 6 34.75v-21.5A7.25 7.25 0 0 1 13.25 6zm8.972-3.884a1.25 1.25 0 0 1 1.333.179l14.5 12.25a1.25 1.25 0 0 1 .036 1.878l-14.5 13.25a1.25 1.25 0 0 1-2.093-.923v-5.722c-2.055.098-4.022.47-6.038 1.467c-2.28 1.126-4.715 3.095-7.418 6.545l-.544.71a1.25 1.25 0 0 1-2.22-.476l-.027-.191c-.266-3.992.789-9.44 3.524-13.922c2.587-4.238 6.74-7.693 12.723-8.117V3.25c0-.487.282-.929.724-1.134'/%3E%3C/svg%3E");
  background-color: var(--accent-color);
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-background-img {
	position: absolute;
	inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
	width: 100%;
	height: 100%;
	pointer-events: none; /* allows clicks through the background */
	z-index: 0; /* ensure it stays behind other content */
}



.logos--whatsapp-icon {
  display: inline-block;
  width: 256px;
  height: 258px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 258'%3E%3Cdefs%3E%3ClinearGradient id='SVGBRLHCcSy' x1='50%25' x2='50%25' y1='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%231faf38'/%3E%3Cstop offset='100%25' stop-color='%2360d669'/%3E%3C/linearGradient%3E%3ClinearGradient id='SVGHW6lecxh' x1='50%25' x2='50%25' y1='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23f9f9f9'/%3E%3Cstop offset='100%25' stop-color='%23fff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23SVGBRLHCcSy)' d='M5.463 127.456c-.006 21.677 5.658 42.843 16.428 61.499L4.433 252.697l65.232-17.104a123 123 0 0 0 58.8 14.97h.054c67.815 0 123.018-55.183 123.047-123.01c.013-32.867-12.775-63.773-36.009-87.025c-23.23-23.25-54.125-36.061-87.043-36.076c-67.823 0-123.022 55.18-123.05 123.004'/%3E%3Cpath fill='url(%23SVGHW6lecxh)' d='M1.07 127.416c-.007 22.457 5.86 44.38 17.014 63.704L0 257.147l67.571-17.717c18.618 10.151 39.58 15.503 60.91 15.511h.055c70.248 0 127.434-57.168 127.464-127.423c.012-34.048-13.236-66.065-37.3-90.15C194.633 13.286 162.633.014 128.536 0C58.276 0 1.099 57.16 1.071 127.416m40.24 60.376l-2.523-4.005c-10.606-16.864-16.204-36.352-16.196-56.363C22.614 69.029 70.138 21.52 128.576 21.52c28.3.012 54.896 11.044 74.9 31.06c20.003 20.018 31.01 46.628 31.003 74.93c-.026 58.395-47.551 105.91-105.943 105.91h-.042c-19.013-.01-37.66-5.116-53.922-14.765l-3.87-2.295l-40.098 10.513z'/%3E%3Cpath fill='%23fff' d='M96.678 74.148c-2.386-5.303-4.897-5.41-7.166-5.503c-1.858-.08-3.982-.074-6.104-.074c-2.124 0-5.575.799-8.492 3.984c-2.92 3.188-11.148 10.892-11.148 26.561s11.413 30.813 13.004 32.94c1.593 2.123 22.033 35.307 54.405 48.073c26.904 10.609 32.379 8.499 38.218 7.967c5.84-.53 18.844-7.702 21.497-15.139c2.655-7.436 2.655-13.81 1.859-15.142c-.796-1.327-2.92-2.124-6.105-3.716s-18.844-9.298-21.763-10.361c-2.92-1.062-5.043-1.592-7.167 1.597c-2.124 3.184-8.223 10.356-10.082 12.48c-1.857 2.129-3.716 2.394-6.9.801c-3.187-1.598-13.444-4.957-25.613-15.806c-9.468-8.442-15.86-18.867-17.718-22.056c-1.858-3.184-.199-4.91 1.398-6.497c1.431-1.427 3.186-3.719 4.78-5.578c1.588-1.86 2.118-3.187 3.18-5.311c1.063-2.126.531-3.986-.264-5.579c-.798-1.593-6.987-17.343-9.819-23.64'/%3E%3C/svg%3E");
}
.material-icon-theme--email {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%2342a5f5' d='M28 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m0 6l-12 6l-12-6V8l12 6l12-6Z'/%3E%3C/svg%3E");
}
.flat-color-icons--sms {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23009688' d='M37 39H11l-6 6V11c0-3.3 2.7-6 6-6h26c3.3 0 6 2.7 6 6v22c0 3.3-2.7 6-6 6'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='24' cy='22' r='3'/%3E%3Ccircle cx='34' cy='22' r='3'/%3E%3Ccircle cx='14' cy='22' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.icomoon-free--link {
  display: inline-block;
  width: 16px;
  height: 16px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.879 9.934a.8.8 0 0 1-.575-.238a3.82 3.82 0 0 1 0-5.392l3-3C10.024.584 10.982.187 12 .187s1.976.397 2.696 1.117a3.82 3.82 0 0 1 0 5.392l-1.371 1.371a.813.813 0 0 1-1.149-1.149l1.371-1.371A2.19 2.19 0 0 0 12 1.812c-.584 0-1.134.228-1.547.641l-3 3a2.19 2.19 0 0 0 0 3.094a.813.813 0 0 1-.575 1.387z'/%3E%3Cpath fill='%23000' d='M4 15.813a3.8 3.8 0 0 1-2.696-1.117a3.82 3.82 0 0 1 0-5.392l1.371-1.371a.813.813 0 0 1 1.149 1.149l-1.371 1.371A2.19 2.19 0 0 0 4 14.188c.585 0 1.134-.228 1.547-.641l3-3a2.19 2.19 0 0 0 0-3.094a.813.813 0 0 1 1.149-1.149a3.82 3.82 0 0 1 0 5.392l-3 3A3.8 3.8 0 0 1 4 15.813'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.fa6-solid--copy {
  display: inline-block;
  width: 448px;
  height: 512px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23000' d='M208 0h124.1C344.8 0 357 5.1 366 14.1L433.9 82c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48M48 128h80v64H64v256h192v-32h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.btn-share-option {
	font-size: 24px !important;
}
.btn-trasparent {
	background: transparent;
	margin: 0;
	padding: 0;
}

@media(max-width: 767px) {
	body {
		font-size: 12px !important;
	}
	.btns-cont > a {
		scale: 0.8;
	}
	.scroller a {
		min-width: 120px;
	    width: 200px;
	    height: auto;
	    max-width: 140px;
	}
	#prenota-visita {
		padding-bottom: 40px !important;
        margin-top: -20px;
	}
	#sedi {
		height: 0 !important;
	}
	.nav-btn-cta {
		padding: 0.4em 1.0em !important;
	    margin-right: 0 !important;
	    font-size: 1.2em !important;
	}
	.detail-icon {
		font-size: 2.7em !important;
	}
	.footer-widget.links-widget {
	  padding-left: 30px;
	  font-size: 0.9em !important;
	  padding-bottom: 1.3em !important;
	}
}

.row {
	display: flex;
	align-items: center;
	--bs-gutter-x: 0 !important;
}


div.btns-cont {
	padding-bottom: 1em;
	padding-top: 1.4em;
	display: inline-flex;
	gap: 1em;
	justify-content: space-between;
}
div.btns-cont > a {
	background: #fff;
    padding: 0.4em 2em;
    border-radius: var(--border-radius);
    color: var(--accent-color);
    text-decoration: none !important;
    font-weight: 600;
    font-family:  "Quicksand";
    transition-duration: 0.4s;
    animation: 0.4s;
}
div.btns-cont > a:hover {
	transform: scale(1.04);
}


.news-preview-body {
	font-family: var(--text-font);	
}


a.inhert {
	color: inherit;
	text-decoration: none !important;
}
.notice-card {
	z-index: 5;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    margin-bottom: -117px;
    padding: 2em 2em 2em 2em;
    position: relative;
    margin-top: -4em;
    color: #fff !important;
    
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    
}

.locations-tags-cont > button {
	margin-right: 16px;
    margin-bottom: 16px;
}

@media(max-width: 767px) {
	.row {
		display: inline-block !important;
        width: 100%;
	}
	.row > * {
		min-height: 260px;
	}
	.locations-tags-cont {
		display: inline-block !important;
	}
	.locations-tags-cont > button {
		display: inline-flex !important;
		margin: 0.7em !important;
		font-size: 1.2em !important;
	}
	.dock img {
		max-width: 140px;
	}
	.detail-body {
		font-size: 1.4em !important; 
	}
	.detail-item {
		min-height: 0px !important;
	}
}
.notice-card > p, .notice-card > p > a, .contact-form-block > p {
	color: #fff !important;
	padding-bottom: 0;
	margin-bottom: 0;
}
a {
	color: var(--theme-color) !important;
}
a:hover {
	color: var(--accent-color) !important;
}
a:active {
	color: #0c3625 !important;
}

.swal2-html-container, .swal2-title {
	font-family: var(--text-font);
	color: var(--dark);
} 
.swal2-confirm {
	width: 400px;
    background: var(--accent-color);
    font-family: var(--text-font);
}

button.expand {
    background-color: var(--theme-color);
    color: var(--light);
    border-radius: var(--border-radius);
    margin-bottom: 0;
    padding: 0.4em 1.2em;
    font-weight: 500;
    display: inline-block;
    float: unset;
    margin-top: 1em;
    transition: 0.3s;
}
button.expand:hover {
	transform: scale(1.04);
	color: #c8fad2;
}


html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: #0000;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 0.575em !important;
}

.text-align-center {
	text-align: center !important;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

.scroller-container {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.scroller {
	display: flex;
	gap: 40px;
	width: max-content;
	animation: scroll-left 90s linear infinite;
}

.scroller a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	width: 240px;
    height: 80px;
}

.scroller img {
	max-height: 60px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s;
}

.scroller img:hover {
	filter: none;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "";
}

.w-icon-slider-left:before {
  content: "";
}

.w-icon-nav-menu:before {
  content: "";
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "";
}

.w-icon-file-upload-remove:before {
  content: "";
}

.w-icon-file-upload-icon:before {
  content: "";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important;
}

.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

.w-webflow-badge, .w-webflow-badge > img {
  box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  box-shadow: unset;
  transform: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
  transition: unset;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  overflow: unset !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  transform: none !important;
}

.w-webflow-badge > img {
  position: unset;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input, .w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input::placeholder, .w-select::placeholder {
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.w-lightbox-control {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all .3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
  height: 2.6em;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}

.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: .3;
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
	.notice-card { 
		margin-top: 0;
		margin-bottom: 120px;
	}
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view, .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left, .w-lightbox-right {
    opacity: .5;
    display: block;
  }

  .w-lightbox-close {
    opacity: .8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive, .w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before, .w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol, .w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6;
}

.w-richtext figure div {
  color: #0000;
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
	.notice-card {
		margin-bottom: 0;
	}
	#contact-us-body {
		padding-top: 20px !important;
	}
	#contact-us {
		padding-top: 100px !important;
	}
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-code-component > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #666;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1.3em;
  line-height: 30px;
}

h1 {
  font-family: var(--title-font);
  color: var(--dark);
  letter-spacing: -.05em;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3em;
  font-weight: 700;
  line-height: 1em;
}

h2 {
  font-family: var(--title-font);
  color: var(--dark);
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1.2em;
}

h3 {
  font-family: var(--title-font);
  color: var(--dark);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2em;
}

h4 {
  font-family: var(--title-font);
  color: var(--dark);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2em;
}

h5 {
  font-family: var(--title-font);
  color: var(--dark);
  letter-spacing: -.03em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  font-family: var(--title-font);
  color: var(--dark);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  font-family: var(--text-font);
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.8em;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0.8em;
  padding-left: 40px;
}

li {
  font-family: var(--text-font);
  color: var(--dark);
  font-size: 1em;
  line-height: 2em;
}

blockquote {
  background-color: var(--theme-color);
  font-family: var(--text-font);
  color: var(--light);
  border-left: 0 solid #000;
  border-radius: var(--border-radius);
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  box-shadow: 0 2px 8px #63636333;
}

.page-wrapper {
  position: relative;
  background: #00f3dd6b;
}

.home-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container.sticky {
  height: 100%;
}

.main-header {
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.header-logo {
    width: 235px;
    height: 80px;
}



.nav-btn-cta {
	padding: 0.4em 1em;
	font-family: var(--text-font);
	background: var(--accent-color);
	color: var(--white-color) !important;
	border-radius: var(--border-radius);
	padding: 0.8em 1.4em;
	text-decoration: none !important;
}
.nav-btn-cta:hover {
	color: var(--white-color) !important;
}
.nav-button-link.dark {
	color: var(--primary-color);
}
.nav-button-link {
	font-family: var(--text-font);
	padding: 0.4em 1em;
	color: var(--white-color);
	border-radius: var(--border-radius);
	font-size: 0.9em;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}
.nav-button-link:hover  {
	scale: 1.05;
	opacity: 0.8;
}
 .nav-button-link:active  {
	scale: 1.08;
	opacity: 0.6;
}
@media(min-width: 767px) {
	.footer-widget.links-widget {
		padding-bottom: 1em !important;
		font-size: 1.05em !important;
	}
}


.theme-button-content {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.menu-button-wrapper {
  display: flex;
}

/*
	// Original
.header-navbar {
  background-color: var(--theme-color);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 5px 15px;
  margin-top: 40px;
  box-shadow: 0 2px 8px #63636333;
  border-radius: 12px;
}
*/

/* Trasparent */
.header-navbar {
    margin-top: 40px;
    background: transparent;
}


.menu-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
  padding-right: 20px;
}

.menu-link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  font-family: var(--text-font);
  color: var(--dark) !important;
  text-transform: capitalize;
  border-bottom: 2px solid #0000;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  overflow: hidden;
}

.menu-link:hover, .menu-link.w--current {
  border-bottom-color: var(--theme-color);
}

.navbar-wrapper {
	justify-content: space-between;
	align-items: center;
	display: contents;
	width: 100%;
	padding: 0em 1em;
}

.service-image-placeholder {
	width: 100%;
    height: 260px;
    background: #f0f0f0;
	background-position: center center !important;
	background-size: cover !important;
	display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}
nav > div > a {
	text-decoration: none !important;
}

.hero-btn-box .theme-button-any {
	opacity: 1 !important;
}
.theme-button-any.active {
	opacity: 1 !important;
	scale: 1.06 !important;
}
.theme-button-any {
	color: var(--dark) !important;
	text-decoration: none !important;
	animation-duration: 0.8s;
	animation-delay: 0.3s;
	transition: 0.3s;
	opacity: 0.4;
}
.theme-button-any:hover, .theme-button:hover  {
	scale: 1.05;
	opacity: 0.8;
}
 .theme-button-any:active, .theme-button:active  {
	scale: 1.08;
	opacity: 0.6;
}
.theme-button-any, .theme-button {
    font-family: var(--text-font);
    color: var(--light);
    border-radius: var(--border-radius);
    justify-content: center;
    align-items: center;
    padding: 0.4em 1.2em;
    font-size: 0.95em;
    font-weight: 800;
    text-align: center;
    min-width: 120px;
    width: max-content;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s 
cubic-bezier(0.175, 0.885, 0.32, 2.2);
    
}

.theme-button {
  background-color: var(--accent-color);
  color: var(--light) !important;
  text-decoration: none !important;
  scale: 1.05;
  transition: all .3s;
  display: inline-flex;
   margin: 2em 0.6em;
  padding: 0.6em 2em;
}

.theme-button:hover {
  background-color: var(--theme-color-two);
  color: var(--dark);
}

.theme-button.header-btn {
  padding: 8px 25px;
    color: var(--light) !important;
}

.theme-button.pricing-btn {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  transition-property: none;
}

.theme-button.pricing-btn.active {
  background-color: var(--theme-color-two);
  color: var(--dark);
}

.theme-button.pricing-btn.active:hover {
  background-color: var(--light);
}

.theme-button.bg-yellow {
  background-color: var(--theme-color-two);
  color: var(--white-color) !important;
}

.theme-button.bg-yellow:hover {
  background-color: var(--light);
}

.theme-button.bg-yellow.hover-green:hover {
  background-color: var(--theme-color);
  color: var(--light);
}

.header-main-box {
  z-index: 99;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
}

.theme-button-text {
  white-space: nowrap;
}

.theme-button-hover-text {
  white-space: nowrap;
  margin-bottom: 0;
  position: absolute;
}

.expand-side-img {
	max-height: 400px;
    height: auto;
    width: auto;
    margin: auto;
    display: block;
}

.small-hero-content-column {
	text-align: center;
  padding-top: 90px;
  padding-bottom: 66px;
  position: relative;
}
.hero-content-column {
  padding-top: 160px;
  padding-bottom: 126px;
  position: relative;
  text-align: center;
}

.hero-subtitle-box {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.hero-subtitle {
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.6em;
}

.hero-subtitle-line {
  background-color: var(--theme-color-two);
  width: 43px;
  height: 1px;
}

.hero-text {
  color: var(--primary-color);
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.8em;
}

.theme-button-icon {
  margin-left: 8px;
  font-family: "Fa Solid 900", Arial, sans-serif;
}

.theme-button-two {
  border: 2px solid var(--theme-color);
  font-family: var(--text-font);
  color: var(--theme-color);
  background-color: #0000;
  border-radius: var(--border-radius);
  justify-content: center;
  align-items: center;
  padding: 8px 28px;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.theme-button-two:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: #fff;
}

.hero-btn-box {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: block;
  margin: auto;
  text-align: center;
}

.hero-title {
  font-family: var(--title-font);
  color: var(--primary-color);
  letter-spacing: -.04em;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.1em;
}

.hero-image-column {
  text-align: center;
  position: relative;
}

.hero-image {
  z-index: 1;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  position: relative;
}

.hero-grid {
	/*
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  */
  	grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
}

.hero-arrow-icon {
  display: none;
  position: absolute;
  top: 120px;
  right: 20px;
}

.dropdown-button-v3---brix {
  color: #6f6c90;
  width: 100%;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.dropdown-button-v3---brix:hover {
  color: #4a3aff;
}

.marquee {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marquee-box-inner {
  z-index: 3;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.marquee-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.marquee-section.pb-zero {
  padding-bottom: 0;
}

.marquee-box {
  z-index: 3;
  position: relative;
}

.marquee-image-box {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.marquee-image-box.one {
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.marquee-image-box.two {
  border-radius: 500px;
}

.marquee-image-box.three {
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.marquee-image-box.four {
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
}

.marquee-outer-box {
  z-index: 3;
  width: 100%;
}

.about-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.about-section.pb-zero {
  padding-bottom: 0;
}

.about-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
}

.about-content-column {
  z-index: 1;
  position: relative;
}

.section-title-box {
  margin-bottom: 50px;
}

.section-title-box.about-sectitle {
  margin-bottom: 30px;
}

.section-title-box.text-center {
  text-align: center;
}

.section-subtitle {
  color: var(--theme-color);
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: 600;
}

.section-title {
  margin-bottom: 0;
  font-weight: 600;
}

.section-title.about-section-title {
	display: contents !important;	
  z-index: 1;
  margin-right: -180px;
  line-height: 1.1em;
  position: relative;
}

.section-text {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.about-author-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-author-info {
  padding-top: 10px;
}

.about-author-name {
  color: #333;
  margin-bottom: 0;
  font-weight: 600;
}

.about-author-designation {
  color: var(--theme-color);
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 500;
}

.about-image-column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: -40px;
  display: flex;
  position: relative;
}

.animated-image {
  border-radius: 200px 200px 20px 20px;
}

.about-image-box {
  position: relative;
}

.about-exp-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #fffc;
  border-radius: var(--border-radius);
  padding: 31px 31px 25px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.about-exp-icon {
  margin-bottom: 16px;
}

.about-exp-text {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 26px;
}

.pricing-section {
  background-color: var(--theme-color-three);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.bg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.bg.pricing-block-bg {
  background-color: var(--theme-color-two);
  transform-origin: top;
  border-radius: var(--border-radius);
  transform: scaleY(0);
}

.bg.pricing-block-bg.active {
  background-color: var(--theme-color);
  transform: scaleY(1);
}

.bg.marquee-image-bg {
  background-color: #ffd86fcc;
}

.pricing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-block {
  border-top-style: solid;
  border-top-width: 3px;
  border-top-color: var(--light);
  border-right-style: solid;
  border-right-width: 3px;
  border-right-color: var(--light);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: var(--light);
  border-left-style: solid;
  border-left-width: 3px;
  border-left-color: var(--light);
  background-color: var(--light);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: var(--border-radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.pricing-top-box {
  z-index: 3;
  background-color: var(--light);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: var(--border-radius);
  padding: 40px 35px 30px;
  position: relative;
}

.pricing-icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

.pricing-plan {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6em;
}

.pricing-price-box {
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 8px;
  display: flex;
}

.pricing-price {
  font-family: var(--text-font);
  color: var(--theme-color);
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1em;
}

.pricing-price-span {
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
}

.superscript {
  margin-right: 5px;
  font-size: 26px;
  top: -30px;
}

.pricing-text {
  margin-bottom: 0;
  font-weight: 500;
}

.pricing-list-box {
  margin-bottom: 24px;
}

.pricing-list {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.pricing-list-text {
  color: var(--dark);
  margin-bottom: 0;
  font-weight: 500;
}

.pricing-list-text.active {
  color: var(--light);
}

.pricing-content-box {
  z-index: 3;
  padding: 26px 35px 24px;
  position: relative;
}

.section-title-icon {
  max-width: 32px;
  margin-bottom: 15px;
}

.process-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.process-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.process-block {
  z-index: 1;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.process-image-box {
  text-align: center;
  background-color: #f6f6f6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 250px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
}

.process-content-box {
  text-align: center;
  position: relative;
}

.process-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
}

.process-text {
  margin-bottom: 0;
}

.process-step {
  background-color: var(--theme-color);
  color: var(--light);
  border-radius: var(--border-radius);
  margin-bottom: 0;
  padding: 3px 20px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 50px;
}

.team-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.team-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
}

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

.team-image-box {
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.team-image {
  object-fit: cover;
  width: 100%;
  height: 420px;
}

.team-content-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  background-color: #fffc;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.team-name {
  margin-bottom: 0;
  font-weight: 600;
}

.team-designation {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.team-contact-box {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.team-contact-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 30px;
  transition: color .3s;
}

.team-contact-text:hover {
  color: var(--theme-color);
}

.team-contact-text-link {
  text-decoration: none;
}

.social-icon-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon {
  background-color: var(--theme-color);
  color: var(--light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "Fa Brands 400", Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.social-icon:hover {
  background-color: var(--theme-color-two);
  color: var(--dark);
}

.team-content-inner {
  overflow: hidden;
}

.team-rating-box {
  background-color: var(--light);
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 10px;
}

.team-rating-text {
  color: var(--dark);
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1em;
}

.team-rating {
  color: var(--dark);
  margin-bottom: 2px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1em;
}

.team-star-image {
  position: absolute;
  top: 0;
  left: 0;
}

.team-collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-name-link {
  text-decoration: none;
}

.team-image-link {
  width: 100%;
  height: 100%;
}

.team-text {
  margin-bottom: 30px;
}

.team-text-box {
  width: 508px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.client-section {
  border-top: 1px solid #ccc;
  position: relative;
  overflow: hidden;
}

.client-blocks-outer, .client-blocks-box {
  justify-content: space-between;
  display: flex;
}

.client-block {
  text-align: center;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 35px;
}

.client-image-link {
  opacity: .6;
  transition: all .3s;
}

.client-image-link:hover {
  opacity: 1;
}

.contact-us {
  position: relative;
}

.contact-outer-box {
  z-index: 33;
  background-color: #fff;
  border-radius: var(--border-radius);
  margin-top: -200px;
  padding: 17px 14px;
  position: relative;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.contact-image-column {
  position: relative;
}

.contact-form-column {
  padding: 30px 38px 30px 25px;
}

.contact-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.contact-image-column {
	position: relative;
	display: inline-block; /* o block, se vuoi riempire */
	overflow: hidden;      /* importante per tagliare overlay */
}


/* Overlay */
.contact-image-column::after {
	content: "";
	position: absolute;
	inset: 0; /* top:0; right:0; bottom:0; left:0 */
	background: linear-gradient(-120deg, rgb(180 232 242 / 37%), rgb(49 179 226 / 12%));
	pointer-events: none; /* così non blocca click sull'immagine */
	border-radius: 20px;
}

.contact-title {
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-text {
  color: var(--dark);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.contact-title-box {
  margin-bottom: 24px;
}

.contact-form-block {
  margin-bottom: 0;
}

.contact-input {
  font-family: var(--text-font);
  color: var(--dark);
  border: 1px solid #b7b7b7;
  border-radius: 50px;
  height: 55px;
  margin-bottom: 0;
  padding: 1em 1.2em;
  font-size: 1em;
  transition: all .3s;
}

.contact-input:focus {
  border-color: var(--dark);
}

.contact-input::placeholder {
  color: var(--dark);
}

.contact-input.textarea {
  resize: none;
  border-radius: 20px;
  height: auto;
  min-height: 125px;
}

.contact-input-outer {
  margin-bottom: 15px;
  position: relative;
}

.contact-input-icon-box {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  display: flex;
  position: absolute;
  top: 6px;
  right: 6px;
}

.contact-input-icon {
  width: 24px;
  height: 24px;
}

.counter-box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  padding: 20px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.count-number-title {
  color: var(--dark);
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2em;
}

.counter.one.two {
  text-align: center;
}

.count-number {
  color: var(--dark);
  margin-bottom: 0;
  font-family: Fraunces;
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  overflow: hidden;
}

.count-number-wrap {
  height: 40px;
  font-family: Droid Serif, serif;
  display: flex;
  overflow: hidden;
}

.counter-single {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 2px solid var(--light);
  background-color: #fffc;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 100px 15px 25px;
  position: relative;
}

.counter-single-icon {
  background-color: var(--light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  display: flex;
  position: absolute;
  top: 15px;
  right: 12px;
}

.counter-single-icon-img {
  height: 30px;
}

.main-footer {
  position: relative;
  overflow: hidden;
  margin: auto;
  font-size: 16px !important;
  padding-bottom: 40px;
}

.social-icon-two-link {
  color: #fff;
  text-decoration: none;
}

.footer-widget {
  position: relative;
}

.footer-widget.links-widget {
  padding-left: 30px;
  font-size: 1.3em;
  padding-bottom: 3em;
}

.contact-list-box-two {
  margin-bottom: 24px;
  position: relative;
}

.list-style-box {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.social-icon-two {
  background-color: var(--theme-color-two);
  color: var(--dark);
  border: 1px solid #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-family: "Fa Brands 400", Arial, sans-serif;
  font-size: 18px;
  transition: all .3s;
  display: flex;
}

.social-icon-two:hover {
  background-color: var(--theme-color);
  color: var(--light);
}

.footer-logo {
  width: 260px;
  margin-bottom: 29px;
}

.list-style-text-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}
.list-style-text-link:hover {
	scale: 1.01;
	opacity: 0.4;
}

.footer-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.footer-widgets-section {
  padding: 80px 26px 20px 26px;
  position: relative;
}

.list-style-text {
  margin-bottom: 0;
  line-height: 1.2em;
  transition: color .3s;
}

.list-style-text:hover {
  color: var(--theme-color);
}

.list-style-text.last-child {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.social-icon-box-two {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-about-text {
  margin-bottom: 45px;
  padding-right: 20px;
}

.footer-widget-title {
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-list-two {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  border-bottom: 1px solid #0000001a;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 30px;
  padding-top: 16px;
  padding-left: 137px;
  display: flex;
  position: relative;
}

.contact-list-two.last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid #fff3;
  position: relative;
}

.footer-bottom-inner-box {
  text-align: center;
  border-top: 1px solid #0000001a;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.footer-copyright-text {
	margin-bottom: 0;
    font-size: 12px;
    color: #224651;
    opacity: 0.7;
}

.footer-copyright-text-link {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

.footer-copyright-text-link:hover {
  color: #ffc13c;
}

.footer-list-box {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-list-two-icon {
  object-fit: contain;
}

.contact-list-two-text {
  margin-bottom: 0;
  transition: color .3s;
}

.contact-list-two-text:hover {
  color: var(--theme-color);
}

.contact-list-two-text.two {
  transition-property: none;
}

.contact-list-two-text.two:hover {
  color: var(--accent-color);
  opacity: 0.9;
}

.contact-list-two-text-link {
  text-decoration: none;
}

.contact-list-two-title-box {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  display: flex;
  position: absolute;
  left: 0;
}

.contact-list-two-title {
  margin-bottom: 0;
  font-weight: 500;
}


.subscribe-section {
  position: relative;
}

.subscribe-outer-box {
  z-index: 5;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: -117px;
  padding: 62px 30px 62px 30px;
  position: relative;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
}

.blogs-section {
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.blogs-section > div > iframe {
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
}

.subscribe-title {
  color: var(--light);
  margin-bottom: 16px;
  font-weight: 600;
}

.subscribe-text {
  color: var(--light);
  margin-bottom: 0;
}

.subscribe-title-box {
  margin-bottom: 24px;
  position: relative;
}

.subscribe-form-box {
  z-index: 1;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.subscribe-image-box {
  position: absolute;
  bottom: 0;
  right: 66px;
}

.subscribe-image {
  max-width: 570px;
}

.subscribe-form-block {
  margin-bottom: 0;
}

.subscribe-form {
  position: relative;
}

.subscribe-input {
  background-color: var(--light);
  font-family: var(--text-font);
  color: var(--dark);
  border: 1px solid #0000;
  border-radius: 50px;
  height: 70px;
  margin-bottom: 0;
  padding: 10px 25px;
  font-size: 1.3em;
  transition: border-color .3s;
}

.subscribe-input:focus {
  border-color: var(--theme-color);
}

.subscribe-input::placeholder {
  color: var(--dark);
}

.subscribe-button {
  background-color: var(--theme-color-two);
  font-family: var(--text-font);
  color: var(--dark);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 11px 30px;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.subscribe-button:hover {
  background-color: var(--theme-color);
  color: var(--light);
}

.subscribe-icon-box {
  background-color: #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 128px;
  display: flex;
  position: absolute;
  top: 0;
  left: -150px;
}

.client-inner-container {
  overflow: hidden;
}

.blog-block {
  background-color: var(--light);
  border-radius: 10px;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  box-shadow: 0 2px 8px #63636333;
}

.blog-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-image-box {
  border-radius: 10px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
}

.blog-content-box {
  padding-top: 42px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.blog-title {
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4em;
  transition: color .3s;
}

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

.blog-post-meta-box {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-top: 2px dashed #ccc;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.blog-post-meta-text {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.blog-post-meta {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-title-link {
  text-decoration: none;
}

.blog-post-meta-icon {
  color: var(--theme-color);
  font-family: "Fa 400", Arial, sans-serif;
  font-size: 17px;
  line-height: 1em;
}

.blog-date-box {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  background-color: var(--theme-color);
  border-radius: 0 50px 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 5px 5px 28px;
  display: flex;
  position: absolute;
  top: -19px;
  left: 0;
}

.blog-category {
  color: var(--light);
  margin-bottom: 0;
  padding-top: 4px;
  padding-bottom: 3px;
  font-weight: 600;
}

.blog-date {
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50px;
  margin-bottom: 0;
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 500;
}

.blog-text {
  margin-bottom: 16px;
}

.Articles-Section {
  background-color: #f6f6f6;
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
}

.section-title-br {
  display: block;
}

.service-block {
  z-index: 3;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 3px solid var(--theme-color-two);
  background-color: var(--light);
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 24px 24px 24px 42px;
  display: flex;
}

.service-content-box {
  width: 100%;
  max-width: 50%;
}

.service-image-box {
  border-radius: 20px;
  flex: none;
  width: 100%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.service-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}

.service-text {
  margin-bottom: 24px;
}

.service-title {
  margin-bottom: 24px;
  font-weight: 600;
  transition: color .3s;
}

.service-title:hover {
  color: var(--theme-color);
}

.service-readmore {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #444;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: color .3s;
  display: inline-flex;
}

.service-readmore:hover {
  color: var(--theme-color);
}

.service-readmore-text {
  font-family: var(--text-font);
  font-size: 1.3em;
  font-weight: 700;
  line-height: 30px;
}

.service-readmore-icon {
  font-family: "Fa Solid 900", Arial, sans-serif;
}

.service-title-link {
  text-decoration: none;
}

.service-category-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 36px;
  display: flex;
}

.service-category {
  font-family: var(--text-font);
  color: var(--dark);
  background-color: #f8f8f8;
  border: 1px solid #ddddddde;
  border-radius: 50px;
  padding: 2px 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.service-category:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--light);
}

.service-icon-box {
  background-color: var(--light);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 89px;
  height: 89px;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.service-icon {
  height: 48px;
}

.service-image-link {
  object-fit: cover;
  display: block;
}

.testimonial-section {
  background-color: var(--theme-color-three);
  padding-top: 120px;
  padding-bottom: 300px;
  position: relative;
}

.rating-star-box {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3px;
  display: flex;
}

.rating-star-box.two {
  margin-top: 8px;
  margin-bottom: 0;
  margin-left: auto;
  display: none;
}

.rating-star {
  color: #f9b300;
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-size: 14px;
  line-height: 1em;
}

.testimonial-block {
  z-index: 1;
  background-color: var(--light);
  border-radius: 20px;
  padding: 30px 40px;
  position: relative;
}

.testi-author-name {
  margin-bottom: 5px;
  font-weight: 600;
}

.testi-author-image-box {
  flex: none;
  margin-bottom: 10px;
}

.testi-author-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 15px;
}

.testi-author-image {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.testi-text {
  margin-bottom: 0;
}

.testi-quote-icon {
  position: absolute;
  top: 25px;
  right: 0;
}

.testimonial-block-inner {
  z-index: 1;
  position: relative;
}

.page-content-box {
  z-index: 3;
  text-align: center;
  padding-top: 165px;
  padding-bottom: 100px;
  position: relative;
}

.page-title {
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2em;
}

.page-section {
  background-color: var(--theme-color);
  position: relative;
}

.main-header-two {
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.service-single-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.service-single-wrapper {
  margin-bottom: 0;
}

.service-single-img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 600px;
  margin-bottom: 50px;
}

.expert-single-media {
  color: #353535;
  border: 1px solid #ddd;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa Brands 400", Arial, sans-serif;
  font-size: 1.3em;
  text-decoration: none;
  transition: all .5s;
  display: flex;
}

.expert-single-media-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.expert-single-single-left {
  flex: none;
  height: 100%;
}

.expert-single-wrapper {
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
}

.expert-single-title-divider {
  background-color: #0316341a;
  width: 100%;
  height: 1px;
  margin-bottom: 30px;
}

.expert-single-details {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.expert-single-name {
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 122.727%;
}

.expert-single-title-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.expert-single-title-border {
  background-color: #353535;
  width: 30px;
  height: 1px;
}

.expert-single-section {
  padding-top: 200px;
  padding-bottom: 120px;
  position: relative;
}

.expert-single-img {
  object-fit: cover;
  width: 400px;
  height: 600px;
}

.expert-single-righrt {
  align-self: center;
  padding: 50px;
}

.expert-single-designation {
  margin-bottom: 0;
}

.testi-designation {
  margin-bottom: 0;
  font-size: 14px;
}

.post-date-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}

.post-author-title {
  color: #000;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.post-date-text {
  margin-bottom: 0;
  font-weight: 500;
}

.blog-single-post-name {
  text-align: center;
  margin-bottom: 55px;
}

.blog-single-wrap {
  margin-bottom: 20px;
}

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

.blog-details-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.blog-single-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 600px;
  margin-bottom: 55px;
}

.post-author-name {
  margin-bottom: 4px;
  font-weight: 600;
}

.post-author-inner {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.post-author-img {
  width: 60px;
  height: 60px;
}

.about-section-title-bg {
  background-color: var(--light);
  border-radius: 30px;
  padding-bottom: 10px;
  padding-right: 27px;
  display: block;
}

.license-title {
  text-transform: capitalize;
  margin-bottom: 16px;
}

.license-link {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}

.license-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.download-typography-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.license-img-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.license-details {
  width: 100%;
  max-width: 630px;
  margin-bottom: 55px;
}

.license-details.license-pra {
  max-width: 600px;
  margin-bottom: 34px;
}

.license-single {
  margin-bottom: 60px;
}

.license-single.margin-bottom-none {
  margin-bottom: 0;
}

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

.error-content-box {
  text-align: center;
}

.error-text {
  margin-bottom: 30px;
}

.error-title-span {
  color: var(--theme-color);
}

.changelog-content-divider {
  z-index: 1;
  background-color: #0316341a;
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 244px;
  overflow: auto;
}

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

.changelog-list-icon {
  background-color: var(--theme-color);
  border-radius: 50%;
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 8px;
}

.changelog-content-center {
  z-index: 2;
  border: 7px solid var(--theme-color);
  background-color: #fff;
  border-radius: 100%;
  flex: none;
  width: 24px;
  height: 24px;
  position: relative;
}

.changelog-content-main {
  position: relative;
}

.changelog-container {
  width: 100%;
  max-width: 1088px;
  margin-left: auto;
  margin-right: auto;
}

.changelog-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
}

.changelog-list.mb-zero {
  margin-bottom: 0;
}

.changelog-content-date {
  text-align: right;
  font-weight: 400;
}

.changelog-content-left {
  width: 100%;
  max-width: 162px;
}

.changelog-list-text {
  margin-bottom: 0;
}

.changelog-content-right {
  background-color: var(--theme-color-three);
  border-radius: 5px;
  width: 100%;
  max-width: 760px;
  padding: 30px 40px;
  box-shadow: 0 2px 8px #63636333;
}

.changelog-content-version {
  text-transform: uppercase;
  border-bottom: 1px solid #0316341a;
  margin-bottom: 24px;
  padding-bottom: 24px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2em;
}

.changelog-content-single {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: center;
  display: flex;
}

.big-paragraph {
  margin-bottom: 0;
}

.paragraph-wrap {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.color-guide-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.color-guide-single-text {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 125%;
}

.color-guide-single-text.light {
  color: #fff;
}

.style-guide-single {
  border-bottom: 1px solid #0003;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.style-guide-single.border-none {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.style-guide-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.style-guide-single-button-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  display: flex;
}

.style-guide-top-title {
  background-color: var(--theme-color-two);
  font-family: var(--text-font);
  color: var(--dark);
  border-radius: 50px;
  margin-bottom: 30px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
}

.color-guide-single {
  background-color: var(--theme-color);
  border-radius: 5px;
  padding: 50px 70px;
  box-shadow: 0 2px 8px #63636333;
}

.color-guide-single.three {
  background-color: var(--theme-color-three);
}

.marquee-image-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.marquee-readmore {
  background-color: var(--light);
  color: var(--theme-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-size: 22px;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
  position: relative;
}

.marquee-readmore:hover {
  background-color: var(--theme-color);
  color: var(--light);
}

.marquee-readmore-icon {
  font-family: "Fa Solid 900", Arial, sans-serif;
}

.marquee-content-text {
  color: var(--dark);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.about-star-icon {
  position: absolute;
  top: 100px;
  right: -120px;
}

.service-shape {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.circle-image-box {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: -80px;
  left: 0;
}

.collection-list-wrapper {
  position: sticky;
  top: 120px;
}

.hero-exp-box {
  z-index: 3;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: var(--light);
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: var(--light);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--light);
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: var(--light);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: left;
  background-color: #ffffffbf;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: 21px 55px 20px 30px;
  display: none;
  position: absolute;
  bottom: 56px;
  left: 0;
}

.banner-exp-count {
  color: var(--dark);
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1em;
}

.banner-exp-text {
  color: var(--dark);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.banner-exp-text-br {
  display: block;
}

.banner-exp-icon-box {
  background-color: var(--theme-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

.circle-box {
  float: right;
  border-bottom: 1px solid #222;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  text-decoration: none;
  position: absolute;
  inset: 30px 30px auto auto;
}

.circle-inner {
  border: 1px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
}

.circle-box-icon {
  color: var(--dark);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  font-family: "Fa 400", Arial, sans-serif;
  font-size: 28px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(135deg);
}

.circle-text {
  background-color: var(--light);
  font-family: var(--text-font);
  color: var(--dark);
  text-align: right;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
  position: absolute;
  top: -10px;
  right: -10px;
}

.contact-button {
  border: none;
  background-color: var(--accent-color);
  font-family: var(--text-font);
  color: var(--white-color);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.6em 1.2em;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.5em;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.contact-button:hover {
  opacity: 0.4;
  font-size: smaller;
  scale: 1.03;
}

.list-style-icon {
  color: var(--theme-color);
  font-family: "Fa Solid 900", Arial, sans-serif;
  line-height: 1em;
}
.list-style-icon > .bi {
	font-size: 2.4em;
}

.hero-icon {
  position: absolute;
  top: 30px;
  left: 30px;
}

.item-gallery-about {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.column-gallery-about {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.master-gallery-about {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  height: 800px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.inside-gallery-about {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.testi-rating-box {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 25px;
  display: flex;
}

.testi-rating-text {
  margin-bottom: 0;
  line-height: 26px;
}

.testi-rating-text-span {
  font-size: 40px;
  font-weight: 500;
}

.domande-frequenti {
  padding-top: 110px;
  padding-bottom: 210px;
  position: relative;
}

.faq-accordion-box {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-dropdown {
  border: 1px solid var(--theme-color-two);
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 16px;
}

.faq-dropdown-toggle {
  font-family: var(--text-font);
  color: var(--dark);
  white-space: normal;
  width: 100%;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 500;
}

.faq-dropdown-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.faq-dropdown-list {
  background-color: #0000;
  padding-left: 24px;
  padding-right: 24px;
  display: block;
  position: relative;
  overflow: hidden;
}

.faq-dropdown-list.w--open {
  background-color: #0000;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.faq-content-text {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.faq-icon {
  color: var(--theme-color);
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .home-section {
    padding-top: 100px;
  }

  .main-header {
    position: fixed;
    overflow: visible;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .menu-button {
    padding: 0;
    line-height: 100%;
  }

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

  .menu-button-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .menu-button-icon {
    width: 30px;
    height: 30px;
  }

  .menu-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    background-color: #fff;
    border-radius: 5px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 20px 25px;
    overflow: auto;
  }

  .menu-link {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-link:hover, .menu-link.w--current {
    color: #000;
    background-color: #0000;
  }

  .more-temple-text {
    transition: opacity .2s;
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .menu-button-wrap {
    background-color: var(--theme-color);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
  }

  .hero-content-column {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .hero-subtitle-box {
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .hero-btn-box {
    justify-content: center;
    align-items: center;
  }

  .hero-image-column {
    text-align: center;
  }

  .hero-image {
    position: relative;
    right: 0;
  }

  .hero-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .hero-arrow-icon {
    display: none;
  }

  .dropdown-button-v3---brix {
    align-self: flex-start;
  }

  .marquee {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .marquee-outer-box {
    bottom: 150px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .section-title.about-section-title {
    margin-right: 0;
  }

  .about-author-box {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .about-image-column {
    margin-left: 0;
  }

  .animated-image {
    object-fit: cover;
    width: 100%;
    height: 500px;
  }

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

  .pricing-top-box, .pricing-content-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-section {
    padding-top: 120px;
  }

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

  .process-block {
    max-width: 300px;
  }

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

  .team-column {
    text-align: center;
  }

  .team-image {
    height: 450px;
  }

  .team-text-box {
    width: 100%;
  }

  .client-blocks-box {
    border-bottom-style: none;
  }

  .client-block {
    border-right-style: none;
  }

  .contact-outer-box {
    margin-bottom: 0;
    padding: 30px 20px;
    padding-top: 18px;
  }

  .contact-grid {
    grid-template-columns: 1.5fr;
  }

  .contact-form-column {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-title-box {
    text-align: center;
  }

  .count-number-title {
    margin-top: 19px;
  }

  .count-number {
    font-size: 60px;
  }

  .count-number-wrap {
    height: 60px;
  }

  .counter-single {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-widget.links-widget {
    padding-left: 0;
  }

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

  .footer-about-text {
    margin-bottom: 30px;
  }

  .footer-bottom-inner-box {
    padding-bottom: 30px;
  }

  .subscribe-outer-box {
    padding-bottom: 0;
    padding-left: 50px;
    padding-right: 50px;
  }

  .subscribe-title-box {
    text-align: center;
  }

  .subscribe-form-box {
    max-width: 100%;
    padding-bottom: 50px;
  }

  .subscribe-image-box {
    text-align: center;
    position: relative;
    right: 0;
  }

  .subscribe-icon-box {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 0;
  }

  .blog-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-post-meta-box {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .section-title-br {
    display: inline;
  }

  .service-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    padding: 24px;
  }

  .service-content-box {
    max-width: 100%;
  }

  .service-image-box {
    order: -1;
    width: 100%;
    max-width: 100%;
  }

  .service-text {
    max-width: 100%;
    margin-bottom: 20px;
  }

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

  .service-category-box {
    flex-flow: wrap;
    margin-top: 30px;
  }

  .service-single-img {
    height: 100%;
  }

  .expert-single-single-left {
    width: 100%;
  }

  .expert-single-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .expert-single-img {
    width: 100%;
    display: block;
  }

  .blog-single-post-name {
    margin-bottom: 40px;
    font-size: 48px;
  }

  .blog-single-image {
    height: 100%;
  }

  .post-author-inner {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
  }

  .about-section-title-bg {
    padding-right: 0;
    display: inline;
  }

  .license-title {
    margin-bottom: 10px;
    font-size: 36px;
  }

  .license-img-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .license-details {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 155%;
  }

  .license-single {
    margin-bottom: 40px;
  }

  .changelog-content-divider {
    display: none;
    left: 218px;
  }

  .changelog-content-center {
    border-width: 5px;
    width: 20px;
    height: 20px;
    display: none;
  }

  .changelog-container {
    max-width: 100%;
  }

  .changelog-content-date {
    text-align: left;
    font-size: 18px;
    line-height: 155%;
  }

  .changelog-content-left, .changelog-content-right {
    max-width: 100%;
  }

  .changelog-content-version {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }

  .changelog-content-single {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .big-paragraph {
    font-size: 18px;
  }

  .paragraph-wrap {
    grid-row-gap: 24px;
  }

  .color-guide-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .color-guide-single-text {
    font-size: 36px;
  }

  .style-guide-single {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .style-guide-single-button-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .style-guide-top-title {
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 400;
  }

  .color-guide-single {
    padding: 40px 24px;
  }

  .about-star-icon {
    display: none;
    top: 0;
    right: 0;
  }

  .collection-list-wrapper {
    position: relative;
    top: 0;
  }

  .hero-exp-box {
    bottom: 40px;
    left: 50px;
  }

  .circle-box {
    display: none;
  }

  .master-gallery-about {
    flex-flow: wrap;
  }

  .faq-accordion-box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  blockquote {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .menu-button {
    line-height: 100%;
  }

  .menu-link {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
  }

  .menu-button-wrap {
    width: 50px;
    height: 50px;
    margin-left: 0;
  }

  .hero-text {
    margin-bottom: 30px;
  }

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

  .section-title {
    font-size: 2.0em;
  }

  .about-image-column {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .about-image-box {
    width: 100%;
  }

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

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

  .process-block {
    max-width: 350px;
  }

  .team-image {
    height: 400px;
  }

  .client-block {
    padding: 26px;
  }

  .footer-grid {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .footer-widgets-section {
    padding-bottom: 50px;
  }

  .footer-about-text {
    padding-right: 0;
  }

  .subscribe-title {
    font-size: 28px;
  }

  .subscribe-image {
    width: 100%;
    max-width: 80%;
    display: inline-block;
  }

  .subscribe-button {
    width: 100%;
    margin-top: 10px;
    position: relative;
    top: 0;
    right: 0;
  }

  .subscribe-button:hover {
    background-color: var(--light);
  }

  .blog-collection-list {
    grid-template-columns: 1fr;
  }

  .service-block {
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .service-category {
    padding: 5px 15px;
    font-size: 12px;
  }

  .testimonial-block {
    padding: 25px 20px;
  }

  .testi-author-box {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    padding-bottom: 20px;
  }

  .testi-text {
    font-size: 1.3em;
  }

  .page-title {
    font-size: 42px;
  }

  .service-single-wrapper {
    margin-bottom: 0;
  }

  .expert-single-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .expert-single-name {
    margin-bottom: 10px;
    font-size: 36px;
  }

  .expert-single-title-wrap {
    margin-bottom: 20px;
  }

  .post-date-wrap {
    flex-wrap: wrap;
  }

  .blog-single-post-name {
    margin-bottom: 30px;
  }

  .blog-single-wrap {
    margin-bottom: 40px;
  }

  .post-author-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-bottom: 30px;
  }

  .post-author-img {
    flex: none;
    width: 73px;
    height: auto;
  }

  .license-title {
    margin-bottom: 10px;
    font-size: 36px;
  }

  .download-typography-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .license-img-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .license-details {
    margin-bottom: 30px;
    font-size: 1.3em;
  }

  .changelog-content-divider {
    display: none;
  }

  .changelog-content-center {
    border-width: 3px;
    display: none;
  }

  .changelog-container {
    padding: 0;
  }

  .changelog-content-date {
    text-align: left;
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 500;
    line-height: 155%;
  }

  .changelog-content-right {
    padding: 20px;
  }

  .changelog-content-version {
    font-size: 22px;
  }

  .changelog-content-single {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .big-paragraph {
    font-size: 18px;
  }

  .color-guide-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .color-guide-single-text {
    font-size: 24px;
  }

  .style-guide-single {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .style-guide-top-title {
    margin-bottom: 30px;
    font-size: 1.3em;
    line-height: 155%;
  }

  .color-guide-single {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .animated-image-wrapper.two {
    display: none;
  }

  .hero-exp-box {
    bottom: 30px;
    left: 40px;
  }
}

@media screen and (max-width: 479px) {
  ul {
    padding-left: 20px;
  }

  blockquote {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-section {
    padding-top: 50px;
  }

  .main-header {
  }

  .header-logo {
    max-width: 85vw;
    margin: auto;
    display: block;
  }
  .navbar-brand {
	  width: 100%;
	  display: block !important;
	  margin: auto;
  }

  .menu-button-icon {
    width: 25px;
    height: 25px;
  }

  .menu-wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-link {
    font-size: 15px;
  }

  .menu-link.w--current {
    background-color: #0000;
  }

  .more-temple-text {
    font-size: 1.3em;
  }

  .theme-button.header-btn {
    display: none;
  }

  .nav-menu {
    flex-direction: column;
  }

  .menu-button-wrap {
    width: 45px;
    height: 45px;
  }

  .hero-content-column {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-subtitle-line {
    display: none;
  }

  .hero-text {
    font-size: 1.3em;
  }

  .theme-button-two {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
  }

  .hero-btn-box {
    grid-column-gap: 10px;
    grid-row-gap: 1em !important;
    flex-flow: column;
    font-size: 1.6em;
    display: inline-flex;
  }

  .hero-title {
    font-size: 51px;
    padding-top: 2em;
  }

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

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

  .marquee-image-box {
    padding: 0;
  }

  .marquee-image-box.one {
    padding-bottom: 0;
  }

  .marquee-image {
    width: 200px;
  }

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

  .section-title {
    font-size: 1.7em;
  }

  .section-text {
    font-size: 0.9em;
    line-height: 28px;
  }

  .about-author-name {
    font-size: 1em;
  }

  .about-author-designation {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .about-image-column {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .animated-image {
    height: 100%;
  }

  .animated-image.hide-sm {
    display: none;
  }

  .about-exp-box {
    padding: 20px 20px 15px;
    bottom: 10px;
    right: 10px;
  }

  .about-exp-icon {
    width: 55px;
    margin-bottom: 10px;
  }

  .about-exp-text {
    font-size: 15px;
  }

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

  .pricing-top-box {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-icon {
    width: 60px;
    height: 60px;
  }

  .pricing-plan {
    font-size: 17px;
  }

  .pricing-price {
    font-size: 60px;
  }

  .pricing-price-span {
    font-size: 1.3em;
  }

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

  .pricing-list {
    margin-bottom: 15px;
  }

  .pricing-content-box {
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

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

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

  .process-block {
    margin-left: auto;
    margin-right: auto;
  }

  .process-content-box {
    padding-left: 0;
    padding-right: 0;
  }

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

  .process-step {
    padding-left: 20px;
    padding-right: 20px;
    top: 15px;
    left: 30px;
  }

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

  .team-column {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-image {
    height: 400px;
  }

  .team-name {
    font-size: 20px;
  }

  .team-designation {
    font-size: 14px;
  }

  .team-contact-box {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .team-rating-box {
    width: 75px;
    height: 75px;
  }

  .team-rating {
    font-size: 26px;
  }

  .team-collection-list {
    grid-template-columns: 1fr;
  }

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

  .team-text-box {
    margin-top: 40px;
  }

  .client-block {
    justify-content: center;
    align-items: center;
    width: 160px;
    padding: 20px;
    display: flex;
  }

  .contact-outer-box {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .contact-input {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 1em;
  }

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

  .footer-logo {
    margin-bottom: 20px;
    max-width: 160px;
  }

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

  .footer-widgets-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .footer-logo {
	  max-width: 200px !important;
  }

  .footer-about-text {
    margin-bottom: 20px;
  }

  .footer-widget-title {
    margin-bottom: 25px;
  }

  .contact-list-two {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
	margin-bottom: 16px;
        padding-bottom: 14px;
        padding-top: 4px;
        margin-top: -11px;
  }

  .footer-bottom-inner-box {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .footer-copyright-text {
    line-height: 30px;
  }

  .footer-list-box {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .contact-list-two-text.two {
    font-size: 14px;
  }

  .contact-list-two-title-box {
    flex: none;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }

  .contact-list-two-title {
    font-size: 14px;
  }

  .subscribe-outer-box {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .subscribe-title {
    font-size: 20px;
  }

  .subscribe-text {
    font-size: 15px;
  }

  .subscribe-form-box {
    padding-bottom: 30px;
  }

  .subscribe-input {
    height: 60px;
    padding: 20px 24px;
    font-size: 15px;
  }

  .subscribe-button {
    width: 100%;
    margin-top: 10px;
    position: relative;
    top: 0;
    right: 0;
  }

  .subscribe-button:hover {
    background-color: var(--light);
  }

  .subscribe-icon-box {
    width: 80px;
    height: 80px;
  }

  .subscribe-icon {
    width: 40px;
  }

  .blog-block {
    padding: 10px;
  }

  .blog-post-meta-box {
    grid-row-gap: 18px;
    flex-flow: wrap;
  }

  .blog-post-meta-text {
    font-size: 14px;
  }

  .blog-post-meta-icon {
    font-size: 1.3em;
  }

  .blog-date-box {
    padding-left: 15px;
  }

  .blog-category {
    font-size: 14px;
  }

  .blog-date {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

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

  .Articles-Section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-block {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-image {
    min-height: 250px;
    max-height: 250px;
  }

  .service-text, .service-title {
    margin-bottom: 15px;
  }

  .service-category-box {
    margin-top: 25px;
  }

  .service-category {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 13px;
  }

  .service-icon-box {
    width: 60px;
    height: 60px;
  }

  .service-icon {
    height: 35px;
  }

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

  .rating-star-box.two {
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
  }

  .testimonial-block {
    text-align: center;
    padding: 25px 15px;
  }

  .testi-author-name {
    font-size: 20px;
  }

  .testi-author-box {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 20px;
  }

  .testi-info-box {
    margin-left: 0;
  }

  .testi-text {
    font-size: 14px;
    line-height: 26px;
  }

  .page-content-box {
    padding-top: 195px;
    padding-bottom: 100px;
  }

  .page-title {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .service-single-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-single-wrapper {
    margin-bottom: 0;
  }

  .expert-single-media-flex {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .expert-single-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .expert-single-title-divider {
    margin-bottom: 20px;
  }

  .expert-single-details {
    margin-bottom: 20px;
    font-size: 1.3em;
    line-height: 30px;
  }

  .expert-single-name {
    font-size: 28px;
  }

  .expert-single-title-wrap {
    margin-bottom: 15px;
  }

  .expert-single-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .expert-single-img {
    height: auto;
  }

  .expert-single-righrt {
    padding: 0 20px 20px;
  }

  .testi-designation {
    font-size: 15px;
  }

  .post-date-wrap {
    text-align: center;
    width: 100%;
  }

  .post-author-title {
    font-size: 15px;
    line-height: 155%;
  }

  .post-date-text {
    margin-top: 3px;
    font-size: 15px;
  }

  .blog-single-post-name {
    text-align: center;
    margin-bottom: 25px;
    font-size: 38px;
  }

  .blog-single-wrap {
    margin-bottom: 20px;
  }

  .post-author-wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .blog-details-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .post-author-name {
    margin-bottom: 0;
    font-size: 19px;
  }

  .post-author-inner {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .post-author-img {
    width: 73px;
    height: auto;
  }

  .license-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .download-typography-wrap {
    justify-content: center;
  }

  .license-img-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .license-details {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 155%;
  }

  .license-details.license-pra {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
  }

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

  .error-title {
    font-size: 120px;
  }

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

  .changelog-list-icon {
    width: 10px;
    height: 10px;
    margin-top: 7px;
  }

  .changelog-list {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .changelog-content-date {
    font-size: 1.3em;
    line-height: 155%;
  }

  .changelog-list-text {
    font-size: 15px;
    line-height: 24px;
  }

  .changelog-content-right {
    border-radius: 12px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .changelog-content-version {
    font-size: 17px;
  }

  .big-paragraph {
    font-size: 1.3em;
    line-height: 155%;
  }

  .color-guide-wrap {
    grid-column-gap: 20px;
    grid-template-columns: 1fr;
  }

  .style-guide-single {
    font-size: 17px;
  }

  .style-guide-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .style-guide-top-title {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
  }

  .marquee-image-content {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .marquee-readmore {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .marquee-content-text {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 14px;
    line-height: 1.2em;
    display: inline-flex;
  }

  .hero-exp-box {
    border-radius: 10px;
    padding: 14px 60px 14px 20px;
    display: none;
    bottom: 20px;
    left: 10px;
  }

  .banner-exp-count {
    font-size: 45px;
  }

  .banner-exp-text {
    text-align: left;
    font-size: 1.3em;
    line-height: 24px;
  }

  .contact-button {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
  }

  .column-gallery-about {
    width: 100%;
  }

  .master-gallery-about {
    height: 600px;
  }

  .inside-gallery-about {
    width: 100%;
  }

  .testi-rating-text {
    font-size: 14px;
  }

  .testi-rating-text-span {
    font-size: 34px;
  }

  .faq-dropdown-toggle {
    padding-left: 15px;
    padding-right: 40px;
  }

  .faq-dropdown-text {
    white-space: normal;
    line-height: 1.4em;
  }

  .faq-dropdown-list {
    padding-left: 15px;
    padding-right: 15px;
  }

  .faq-content-text, .service-text {
    padding-bottom: 20px;
    font-size: 0.9em;
  }

  .faq-icon {
    margin-right: 15px;
  }
}

#w-node-d3e28155-9420-ed7c-5408-6224e5ef9e56-f82c76e5 {
  align-self: end;
}

#w-node-_97f36ca8-dc9c-bd77-7d74-47183c9d2193-f82c76e5 {
  align-self: center;
}

#w-node-d021ee02-94e8-5626-db7a-faf2f2d6308b-f82c76ea, #w-node-d021ee02-94e8-5626-db7a-faf2f2d6308d-f82c76ea, #w-node-d021ee02-94e8-5626-db7a-faf2f2d6308f-f82c76ea, #w-node-_8c45dae1-c0ec-7229-f246-d6898eb54823-f82c76ea, #w-node-d3649158-f4d0-6715-9ea6-a7a5263bcbf2-f82c76ea, #w-node-_36094e4c-a850-761d-9dbc-7205ab725a40-f82c76ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@font-face {
  font-family: 'Fa Brands 400';
  src: url('https://cdn.prod.website-files.com/67ea592792ca703cf82c76ac/67ea592792ca703cf82c771a_fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('https://cdn.prod.website-files.com/67ea592792ca703cf82c76ac/67ea592792ca703cf82c770f_fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('https://cdn.prod.website-files.com/67ea592792ca703cf82c76ac/67ea592792ca703cf82c770e_fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

#locations-tags-cont {
	display: inline-flex;
	grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
	gap: 1rem;
	justify-items: center;
	padding: 1rem;
	max-width: 600px;
	margin: auto;
}


.locations-cont, .locations-cont>h3, .locations-cont>h4, .locations-cont>p  {
	text-align: center;
	color: var(--primary-color) !important;
	font-family: var(--text-font);
}
.location {
    font-family: var(--text-font);
    color: var(--light) !important;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    font-size: 1.3em;
    font-weight: 500;
    line-height: 23px;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
    opacity: 0.7;
    background-color: #3b6ac6;
}
.location.selected {
	opacity: 1.0;
	scale: 1.05;
	background-color: var(--accent-color) !important;
}


/* LIQUID GLASS STYLES */

.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  overflow: hidden;

  color: var(--primary-color);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;

  backdrop-filter: blur(2px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}
.liquidGlass-effect:hover {
	backdrop-filter: blur(5px);
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}
.liquidGlass-tint:hover {
  background: rgba(255, 255, 255, 0.65);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;

  overflow: hidden;

  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}
.liquidGlass-shine:hover {
  position: absolute;
  inset: 0;
  z-index: 2;

  overflow: hidden;

  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.7),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.7);
}

.liquidGlass-text {
  z-index: 3;
  color: black;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}
.liquidGlass-text:hover {
	background: #ffffff57;
}

/* OTHER STYLES */

.main-background {
	top: 0;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 500px;
  font-family: sans-serif;
  font-weight: 300;
}

a {
  text-decoration: none;
}

.wrapper {
  display: flex;
  gap: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2rem;
  padding: 0.1rem;
}

.dock,
.dock > div {
  border-radius: 2rem;
}

.dock:hover {
  opacity: 1;
  border-radius: 2.5rem;
}

.dock:hover > div {
  border-radius: 2.5rem;
}

@media(max-width: 767px) {
	.dock:hover {
	  padding: 0.0rem;
	}
	.subscribe-section {
		padding-top: 0 !important;
	}
	.blogs-section {
		padding-bottom: 0 !important;
		margin-bottom: 10px !important;
	}
}

.dock img {
width: 162px;
    margin-right: 30px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  margin: auto;
}

.dock img:hover {
  transform: scale(0.95);
  transform-origin: center center;
}



.full-width-cont {
	width: 100vw;
}
.fixed-max-width-cont {
	max-width: 1200px;
}

.adaptive-major-width {
	max-width: clamp(80px, 90%, 1400px) !important;
}


.gradient-wave-background {
    background: #4dd0e1; /* Tiffany puro */
    animation: tiffanyPulse 6s ease-in-out infinite;
}

@keyframes tiffanyPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.45; }
}


.location-details {
	display: inline-flex;
    text-align: center;
}

.detail-icon {
	color: var(--accent-color);
	font-size: 2em;
}
.detail-item {
	font-family: var(--text-font) !important;
}
.detail-body {
	font-size: 1em;
}
.detail-body > span {
	font-size: 0.8em;
}
main.article {
	padding-top: 50px;
}
.article h1 {
	text-align: center;
}
.article .tag-section {
	text-align: center:
}



/* Carosello recensioni (Blogs-Section) */

.reviews-grid {
	column-count: 3;
	column-gap: 20px;
	margin-top: 40px;
	padding-bottom: 30px;
}

@media (max-width: 991px) {
	.reviews-grid {
		column-count: 2;
	}
}

@media (max-width: 640px) {
	.reviews-grid {
		column-count: 1;
	}
}

.review-card {
	background: #fff;
	border-radius: var(--border-radius, 14px);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	break-inside: avoid;
	margin-bottom: 20px;
}

.review-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--accent-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1em;
	flex-shrink: 0;
}

.review-header-text {
	display: flex;
	flex-direction: column;
}

.review-name {
	font-size: 1em;
	margin: 0;
	font-weight: 600;
}

.review-verified-badge {
	font-size: 0.75em;
	color: #1a9d5c;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.review-stars {
	color: #f5a623;
	letter-spacing: 2px;
	font-size: 0.95em;
}

.review-text {
	font-size: 0.92em;
	line-height: 1.5;
	color: #444;
}

.review-date {
	font-size: 0.8em;
	color: #999;
}

/* END - Carosello recensioni (Blogs-Section) */