/*
Theme Name: MATI
Theme URI: https://mati.agency
Author: @matiagency
Author URI: https://mati.agency
Version: 1.0
*/


html.lenis {
	height: auto;
	overflow-x: hidden;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

:root{

	--header-min-height: 70px;
	--bs-primary: #fc3f50;
	--bs-primary-rgb: 252,63,80;

	--bs-dark: #171717;
	--bs-dark-rgb: 23,23,23;

    /* Links */
    --bs-link-color: #fc3f50;
    --bs-link-color-rgb: 13, 110, 253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10, 88, 202;

    --bs-highlight-color: #212529;
    --bs-highlight-bg: #fff3cd;

    /* Borders */
    --bs-border-width: 1px;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;


	/* Form */
    --bs-box-shadow: none;

    --bs-form-valid-color: #198754;
    --bs-form-valid-border-color: #198754;
    --bs-form-invalid-color: #dc3545;
    --bs-form-invalid-border-color: #dc3545;
}

@media screen and (min-width:992px){
	:root{
		--header-min-height: 120px;
	}
}

@keyframes bounce {
	0% {
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, -100%);
		-webkit-transform: translate(-50%, -100%);
		-moz-transform: translateY(-50%, -100%);
	}
	100% {
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
	}          
}


html{
	scroll-behavior: smooth;
}

body{
	color: #171717;
	font-size: 16px;
	line-height: 1.6em;
	font-family: 'Poppins', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	transition: 0.3s all;
}

@media screen and (min-width:1440px){
	body {
		font-size: 18px;
	}
}

hr{
	border-color: rgba(0,0,0,0.5);
}

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes shine{
	to{
		background-position-x: -200%;
	}
}

@keyframes marquee {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-100vw,0,0)
    }
}



body[data-color="black"],
body[data-color="black"] .main{
	background-color: #171717;
	color: #fff;
}
body[data-color="black"]:not(.header-fixed) .header:not(.active) .logo img{
	filter: brightness(0) invert(1);
}
body[data-color="black"]:not(.header-fixed) .header:not(.active) .navigation ul li a{
	color: #fff;
}

/*.wow{
	visibility: hidden;
}*/

.overh{
	overflow: hidden;
}

.overh:before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 100;
	transition: 0.3s all ease-in-out;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}

*:focus {
	outline: none !important;
}

b, strong{
	font-weight: 600;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all ease;
}

a:hover,
a:active{
	color: var(--bs-primary);
}

a.text-primary:hover{
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6{
	letter-spacing: -0.75px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 1.4em;
	margin: 0 0 0.5em;
	transition: 0.3s all;
}


h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {

	h1, h2, h3, h4, h5, h6{
		line-height: 1.4em;
	}

	h1 { font-size: 34px; }
	h2 { font-size: 28px; }
	h3 { font-size: 26px; }
	h4 { font-size: 24px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

/* Framework */

.main{
	position: relative;
	width: 100%;
	min-height: 100dvh;
	background: #fff;
	z-index: 1;
	transition: 0.3s all;
	overflow: hidden;
}

@media screen and (min-width: 992px){
	.row{
		--bs-gutter-x: 30px;
	}
}


.container,
.container-fluid{
	max-width: 100%;
	padding-left: 25px;
	padding-right: 25px;
}

.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}

@media screen and (min-width: 992px) {
	.row{
		--bs-gutter-x: 80px;
	}

	.container,
	.container-fluid{
		padding-left: 70px;
		padding-right: 70px;
	}
}


/* BG */

.bg-gray{
	background-color: #f5f5f5;
}
.bg-primary{
	color: #fff;
}
.bg-white{
	color: #171717;
}
.bg-dark,
.bg-black{
	color: #fff;
}

/* Framework */

.section{
	padding: 60px 0;
}
@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}
@media screen and (min-width: 1600px){
	.section{
		padding: 150px 0;
	}
}

/**/

.title{
	position: relative;
	margin-bottom: 50px;
	z-index: 2;
}
.title h1,
.title h2,
.title h3,
.title h4{
	position: relative;
	margin: 0;
	z-index: 3;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: -1px;
}

.title h1{
	font-size: 24px;
}
.title h2{
	font-size: 26px;
}
.title h3{
	font-size: 26px;
}
.title h4{
	font-size: 30px;
}
.title p{
	margin: 15px 0 0;
	font-size: 18px;
}

.title .subtitle{
	position: relative;
	display: inline-block;
	font-weight: 400;
	font-size: 18px;
	margin: 0 0 8px;
	color: #fd4766;
}

.title.max-width{
	max-width: 1000px;
}
.title.text-center.max-width{
	margin-left: auto;
	margin-right: auto;
}

.title .btn{
	margin-top: 50px;
}

@media screen and (max-width: 580px){
	.title br,
	.title h3 br{
/*		display: none;*/
	}
}

@media screen and (min-width: 768px){
	.title{
		margin-bottom: 80px;
	}
	.title p{
		font-size: 21px;
	}
	.title h1,
	.title h2,
	.title h3,
	.title h4{
		line-height: 1.3em;
		letter-spacing: -1.5px;
	}
	.title h1{
		font-size: 36px;
	}
	.title h2{
		font-size: 40px;
	}
	.title h3{
		font-size: 40px;
	}
	.title h4{
		font-size: 35px;
	}
}

@media screen and (min-width: 1440px){
	.title{
		margin-bottom: 100px;
	}
	.title h1{
		font-size: 45px;
	}
	.title h2{
		font-size: 46px;
	}
	.title h3{
		font-size: 46px;
	}
	.title h4{
		font-size: 40px;
	}
	.title .subtitle{
		font-size: 21px;
	}
}

/* Buttons */

.btn{
	padding: 10px 30px;
	font-weight: 500;
	font-size: 18px;
	border-width: 1px;
	border-radius: 50px;
	transition: 0.3s all;
}

/*
.btn-arrow:after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 20px;
	margin-left: 5px;
	background: url('assets/img/icons/icon-arrow-btn.svg') no-repeat center;
	background-size: auto 100%;
	transition: 0.3s all;
}
.btn-arrow:hover:after{
	filter: invert(1);
}

*/

.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-arrow::before,
.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z'/%3E%3C/svg%3E");
}

.btn-arrow::before {
  left: -25%;
}

.btn-arrow::after {
  right: 16px;
}

.btn-arrow .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-arrow:hover::before {
  left: 16px;
}
.btn-arrow.btn-primary:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fc3f50' d='M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z'/%3E%3C/svg%3E");
}

.btn-arrow:hover::after {
  right: -25%;
}

.btn-arrow:hover .text {
  transform: translateX(12px);
}


/***/

.btn-lined:not(.btn){
	position: relative;
	color: var(--bs-primary);
}
.btn-lined:not(.btn):after{
	content: '';
	position: absolute;
	right: 0;
	bottom: -5px;
	width: 100%;
	height: 1px;
	background: var(--bs-primary);
	transition: 0.3s all;
}
.btn-lined:not(.btn):hover:after{
	width: 0;
}

.btn:hover{
	padding-left: 40px;
	padding-right: 40px;
}

@media screen and (min-width: 992px){
	.btn-lg{
		padding: 12px 40px;
		font-size: 21px;
	}
	.btn-lg:hover{
		padding-left: 50px;
		padding-right: 50px;
	}
}
@media screen and (max-width: 560px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: #fc3f50;
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fc3f50;

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: #171717;
    --bs-btn-hover-border-color: #fc3f50;

    --bs-btn-active-bg: #fc3f50;
    --bs-btn-active-color: #171717;
    --bs-btn-active-border-color: #fc3f50;
}

.animated-button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fc3f50;
  box-shadow: 0 0 0 1px #fc3f50;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #fc3f50;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button:hover{
  color: #fff;
}
.animated-button .text{
  position: relative;
  z-index: 2;
}

.animated-button:hover:before {
  width: 100%;
  height: 150px;
  opacity: 1;
}

.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: #fc3f50;
    --bs-btn-border-color: #fc3f50;

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-border-color: transparent;

    --bs-btn-active-bg: #fc3f50;
    --bs-btn-active-color: #fff;
    --bs-btn-active-border-color: #fc3f50;
}


.btn-secondary{
    --bs-btn-bg: #171717;
    --bs-btn-color: #fff;
    --bs-btn-border-color: #171717;

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: #171717;
    --bs-btn-hover-border-color: #171717;

    --bs-btn-active-bg: transparent;
    --bs-btn-active-color: #171717;
    --bs-btn-active-border-color: #171717;
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}


.bg-dark .btn-primary{
    --bs-btn-hover-color: #fc3f50;
    --bs-btn-active-color: #fc3f50;
}


/* Form */

label{
	font-weight: 500;
	font-size: 16px;
	color: #222;
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
}

@media screen and (min-width:992px){
	label{
		font-size: 18px;
	}
}

.form-select,
.form-control{
	padding: 3px 15px;
	color: #171717;
	font-size: 18px;
	line-height: 40px;
	height: auto;
	background-color: #f5f5f5;
	font-weight: 500;
	border: 0;
	border-radius: 0;
	transition: border 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	border-radius: 25px;
}

.form-select:hover,
.form-select:focus,
.form-control:hover,
.form-control:focus{
	background-color: #f5f5f5;
}
.form-select::placeholder,
.form-control::placeholder{
    font-weight: 400;
    color: #777
}

@media screen and (min-width: 992px){
	.form-select,
	.form-control{
		line-height: 50px;
	}
}

input[type="checkbox"],
input[type="radio"]{
	display: inline-block;
	vertical-align: middle;
	width: 17px;
	height: 17px;
	margin-right: 6px;
	border: 1px solid #171717;
	box-shadow: 0 0 0px 4px #fff inset;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked{
	background: #171717;
}
input[type="checkbox"] ~ span,
input[type="radio"] ~ span{
	display: inline-block;
	vertical-align: middle;
}
input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 30px);
	margin: 0;
}

.input-file-group{
	position: relative;
	display: block;
	padding: 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: #f5f5f5;
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}
.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}

/* Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	padding-top: 15px;
	width: 100%;
	min-height: var(--header-min-height);
	z-index: 999;
}
.header > .container,
.header > .container-fluid{
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.header .logo{
	max-width: 108px;
	padding: 0;
	transition: none;
	z-index: 3;
}
.header.active .logo{
	position: fixed;
	filter: brightness(0) invert(1);
}

.header .nav-menu{
	position: fixed;
    top: 17px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 14px 10px;
    cursor: pointer;
    z-index: 999;
	transition: 0.3s all;
	border-radius: 50%;
}
.header .nav-menu .menu-line{
	float: right;
	display: block;
	width: 100%;
	height: 3px;
	margin: 4px 0;
	background: #171717;
	border-radius: 6px;
	transition: 0.3s;
}
.header .nav-menu .menu-line:nth-child(2){ width:80% }

.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 35px; margin-top: 10px; }
.header .nav-menu.active .menu-line:nth-child(2) { transform: rotate(-45deg); width: 35px; margin-top: -7px; }

/*.header .navigation{
	position: fixed;
	top: -100dvh;
	left: 0;
	padding: 80px 20px;
	width: 100dvw;
	height: 100dvh;
	background: #171717;
	z-index: 2;
	overflow: hidden;
	transition: 0.3s right;
}*/

.header .navigation{
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	display: flex;
	position:fixed;
	top: 0;
	height: 100dvh;
	left: 0;
	width: 100%;
	margin: 0;
	background: var(--bs-dark);
	color: var(--bs-white);
	padding: 80px 20px;
	transform: translateY(-100vh);
  	overflow: hidden;
}


.header.active .nav-menu .menu-line{
	background: #fff;
}

.header .navigation ul{
	margin: 30px 0 0;	
}
.header .navigation ul li{
	margin: 0 0 10px;
}
.header .navigation ul li a{
	display: inline-block;
	align-content: center;
	padding: 0;
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.5px;
	font-size: 32px;
	line-height: 40px;
}
.header .navigation ul li a:hover,
.header .navigation ul li.current-menu-item > a{
	color: var(--bs-primary);

}

.header .navigation.active ul li a:before{
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	left: -20px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--bs-primary);
	opacity: 0;
}

.header .navigation.active ul li a:hover,
.header .navigation.active ul li.current-menu-item > a{
	transform: translateX(20px);
}

.header .navigation.active ul li a:hover:before,
.header .navigation.active ul li.current-menu-item > a:before{
	opacity: 1;
}

.header .navigation .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .data{
	width: 100%;
	margin-top: 35px;
	padding-top: 35px;
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.header .navigation .data h4{
	color: #c5c5c5;
	font-size: 18px;
	margin: 0 0 15px;
	letter-spacing: 0;
	text-transform: uppercase;
}
.header .navigation .data ul{
	margin: 0;
}
.header .navigation .data ul li{
	margin: 0 0 15px;
	font-size: 18px;
	line-height: 24px;
}
.header .navigation .data ul li a{
	padding: 5px 0;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: -1px;
}

body.header-fixed{
	overflow: hidden;
}
body.header-fixed .header:not(.active) .nav-menu{
	background: #111;
	box-shadow: 3px 3px 20px 0px rgba(0,0,0,0.05);
}
body.header-fixed .header:not(.active) .nav-menu .menu-line{
	background: #fff;
}

@media screen and (min-width: 992px){
	.header{
		padding-top: 50px;
	}
	.header .logo{
		max-width: 162px;
	}

	.header.active .nav-menu{
		top: 40px;
		left: calc(100% - 100px) !important;
		margin: 0;
	}

	.header.active .logo{
		top: 60px;
		left: 70px;
	}

	.header .nav-menu{
		position: fixed;
		top: 40px;
		right: 20px;
		opacity: 1;
		width: 80px;
		height: 80px;
		padding: 30px 20px;
	}
	.header:not(.active) .nav-menu:hover .menu-line:nth-child(2){
		width: 100%
	}
	.header .navigation.active{
		flex-direction: row;
		align-items: flex-end;
		padding: 100px 60px 60px;
	}

	.header .navigation ul{
		margin: 100px 0 0;
	}
	.header .navigation ul li{
		margin-bottom: 15px;
	}
	.header .navigation ul li a{
		font-size: 50px;
		line-height: 55px;
	}


	.header .navigation .data{
		margin-left: auto;
		padding: 30px 0 0;
		max-width: 50%;
		border-top: none;
	}
	.header .navigation .data ul{
		display: flex;
	}
	.header .navigation .data ul li{
		width: 50%;
		margin: 0;
		font-size: 15px;
	}
	.header .navigation .data ul li a{
		font-size: 18px;
		font-weight: 500;
	}

	
	body.header-fixed .header .nav-menu{
	    animation: slideInDown 0.3s ease-out;
	}
	body.header-fixed .header:not(.active) .nav-menu:hover{
		background-color: #171717;
	}
	body.header-fixed .header:not(.active) .nav-menu:hover .menu-line{
		background-color: #fff;
	}

	body:not(.header-fixed) .header:not(.active) .nav-menu{
		opacity: 0;
		margin-top: -120px;
	}
	body:not(.header-fixed) .header:not(.active) .navigation{
		position: relative;
		display: block;
		top: auto;
		left: auto;
		right: auto;
		width: auto;
		height: auto;
		max-width: 100%;
		padding: 0;
		background: transparent;
		transition: none;
		overflow: visible;
	}
	body:not(.header-fixed) .header:not(.active) .navigation .menu{
		display: flex;
		align-items: center;
		margin: 0;
	}
	body:not(.header-fixed) .header:not(.active) .navigation .menu li{
		position: relative;
		/*display: inline-block;
		vertical-align: middle;*/
		margin: 0;
		margin-left: 15px;
	}
	body:not(.header-fixed) .header:not(.active) .navigation ul li a{
		padding: 15px 20px;
		font-size: 18px;
		line-height: 40px;
		color: #171717;
		font-weight: 400;
		
		transition: color 0.3s;
	}
	body:not(.header-fixed) .header:not(.active) .navigation ul li a:hover{
		color: var(--bs-primary);
	}
	body:not(.header-fixed) .header:not(.active) .navigation ul li:not(.menu-contact).current-menu-item > a{
		color: var(--bs-primary);
	}
	body:not(.header-fixed) .header:not(.active) .navigation ul li.menu-contact{
		margin-left: 20px;
	}
	body:not(.header-fixed) .header:not(.active) .navigation ul li.menu-contact a{
		padding: 3px 20px;
		color: #fff;
		border-radius: 50px;
		background: var(--bs-primary);
	}

	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		width: 250px;
		background: var(--bs-white);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
	}
	.header .navigation:not(.active) ul li:hover > .sub-menu{
		display: block;
		border-radius: 25px;
	}
	
	.header .navigation .menu li .sub-menu li{
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: block;
		padding: 10px 15px;
		font-size: 15px;
		color: var(--bs-dark);
		border-bottom: 1px solid #eee;
	}
	.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		color: var(--bs-primary);
		border-bottom-color: var(--bs-primary); 
	}

	

	/*body:not(.header-fixed) .header:not(.active) .navigation ul li .sub-menu li a:hover,
	body:not(.header-fixed) .header:not(.active) .navigation ul li .sub-menu li.current-menu-item a{
		background-color: var(--bs-primary);
		color: #fff;
	}*/

	.header:not(.active):not(.fixed) .navigation .data{
		display: none;
	}
}

@media screen and (min-width: 992px){
	.header .navigation ul li a{
		font-size: 80px;
		line-height: 85px;
	}

	.header:not(.active):not(.fixed) .navigation.start,
	.header:not(.active):not(.fixed) .navigation.start .menu li{
		visibility: visible !important;
		opacity: 1 !important;
		transform: translate(0px) !important;
	}
}




/* Home */

.home .presentation .gradient{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 650px;
    height: 650px;
    border-radius: 100%;
    background-image: linear-gradient(#fbe9e7 10%, #e4301c);
    filter: blur(250px);
    transition: all 450ms ease-out;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1;
}

.home .header{
	position: absolute;
}

.page.home .presentation{
	position: relative;
    display: flex;
    align-items: center;
    height: calc(100dvh - 20px);
    /* max-height: 750px; */
    overflow: hidden;
    border-radius: 20px;
    margin: 10px;
    background: radial-gradient(circle at center, #f3e5dc 0%, #fbe9e7 30%, #fff5f5 60%, #ffffff 100%);
}
.page.home .presentation .title{
	margin: 50px 0;
	max-width: 300px;
	text-align: center;
}
.page.home .presentation .title h1{
	font-size: 32px;
	font-weight: 600;
	line-height: 1.3em;
	color: #171717;
	letter-spacing: -1px;
	transition: 0.3s all;
}
.page.home .presentation .title h1 span{
	display: block;
	color: var(--bs-primary);
	font-weight: 600;
	letter-spacing: -1px;
}
.page.home .presentation .title h1 br{
	display: none;
}

.page.home .presentation .arrow-down{
	position: absolute;
	left: calc(50% - 25px);
	bottom: 0;
	width: 50px;
	height: 60px;
	background: url('assets/img/icons/icon-scroll-down.png') no-repeat center;
	background-size: contain;
	z-index: 3;
	animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
}


@media screen and (min-width: 580px){
	.page.home .presentation .title{
		margin: 150px 0;
		max-width: 100%;
	}
    .page.home .presentation .title h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }
}
@media screen and (min-width: 768px){
    .page.home .presentation .title h1 {
        font-size: 50px
    }
}
@media screen and (min-width: 992px){
	.page.home .presentation {
		 height: calc(100dvh - 40px);
		margin: 20px;
	}
    .page.home .presentation .title h1 {
        font-size: 60px
    }
	.page.home .presentation .title h1 span{
		display: inline-block;
		letter-spacing: -2px;
	}
	.page.home .presentation .title h1 br{
		display: block;
	}
}

.page.home .services .items article .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 0 30px;
}
.page.home .services .items article h2{
	font-size: 25px;
	margin: 0 0 16px;
}
.page.home .services .items article p{
	font-size: 18px;
	line-height: 28px;
	letter-spacing: -0.5px;
}

@media screen and (min-width: 1440px){
	.page.home .services .items article p{
		font-size: 21px;
		line-height: 35px;
	}
	.page.home .services .items article h2{
		font-size: 30px;
	}
}

.page.home .portfolio .buttons{
	margin-top: 50px;
}
.page.home .portfolio .buttons .btn-lined{
	font-size: 24px;
}


@media screen and (min-width: 992px){
	.page.home .portfolio .feed-portfolio .item:nth-child(even){
		margin-top: 80px;
	}

	.page.home .portfolio .buttons{
		margin-top: 80px;
	}
	.page.home .portfolio .buttons .btn-lined{
		font-size: 32px;
	}
}

.page.home .resources{

}

/* Modules > Clients */

.clients{
	
}
.clients .items .item{
	margin-bottom: 30px;
}
.clients .items .item .logo{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 100px;
}

@media screen and (min-width:992px){
	.clients{
		padding-bottom: 80px;
	}
	.clients .items .item{
		margin-bottom: 60px;
	}
	.clients .items .item .logo{
		transform: scale(1);
	}
}

/* Module > Marquee */
/*
.marquee{
  display: flex;
  align-items: center;
}
.marquee .track{
  font-size: 10vw;
  line-height: 10vw;
  letter-spacing: -0.03em;
  font-weight: 400;
  white-space: nowrap;
  color: #E3E3E3;
}
@media screen and (min-width: 992px) {
	.marquee .track{ 
	  	font-size: 8vw;
	}
}

*/

/* Module  > Marquee */
.module-marquee{
	display: flex;
	align-items: center;
}
.module-marquee .track{ 
	font-size: 10vw;
	line-height: 10vw;
	letter-spacing: -0.03em;
	font-weight: 400;
	white-space: nowrap;
	color: #E3E3E3;
	animation: marquee 15s infinite linear;
}	


/* Pages */

.page .title h1{
	font-size: 30px;
	line-height: 1.3em;
}

@media screen and (min-width:992px){
	.page .title h1{
		font-size: 40px;
		line-height: 55px;
	}
}

@media screen and (min-width:1440px){
	.page .title h1{
		font-size: 50px;
		line-height: 67px;
	}
}

/* Pages > About */

.page.about .content .title{
	max-width: 875px;
}
.page.about .content .title h1{
	margin-bottom: 25px;
}
.page.about .content .title p{
	max-width: 800px;
	font-size: 18px;
	line-height: 30px;
}

@media screen and (min-width:992px){
	.page.about .content .title h1{
		margin-bottom: 50px;
	}

	.page.about .content .title p{
		max-width: 800px;
		font-size: 21px;
		line-height: 35px;
	}
}

.page.about .gallery{
	position: relative;
	padding: 0 0 30px;
}
.page.about .gallery .slider .slides .slide{
	padding: 0;
	text-align: center;
	overflow: hidden;
	border-radius: 30px;
}
.page.about .gallery .slider .slides .slide .img-scrollUp{
	border-radius: 30px;
	overflow: hidden;
}
.page.about .gallery .slider .slides .slide .img{
	display: block;
	object-fit: cover;
	aspect-ratio: 1.5 / 1;
	background: no-repeat center;
	background-size: cover;
	border-radius: 30px;
}

.page.about .gallery .slider .arrows button{
	filter: invert(1);
}

@media screen and (min-width: 992px){
	.page.about .gallery{
		padding: 60px 0 120px;
	}
	.page.about .gallery .slider,
	.page.about .gallery .slider .slides{
		overflow: visible;
	}
	.page.about .gallery .slider .slides .slide{
/*		padding-left: 30px;
		margin-right: 30px;*/
		aspect-ratio: 1 / 1;
	}
	.page.about .gallery .slider .slides .slide .img{
		aspect-ratio: 1 / 1;
		background-size: auto 110%;
	}
	.page.about .gallery .slider .slides .slide:nth-child(1) .img{
		aspect-ratio: 1 / 1.5;
	}
	.page.about .gallery .slider .slides .slide:nth-child(2){
		margin-top: -80px;
	}
	.page.about .gallery .slider .slides .slide:nth-child(3){
		margin-top: 100px;
	}
}
@media screen and (min-width: 1400px){
	.page.about .gallery .slider .slides .slide:nth-child(2){
		padding-left: 60px;
		padding-right: 60px;
	}
}


.page.about .culture{
	padding-bottom: 25px;
}
.page.about .culture .item{
	margin-bottom: 25px;
}
@media screen and (min-width:992px){
	.page.about .culture{
		padding-bottom: 100px;
	}
	.page.about .culture .item{
		margin-bottom: 50px;
	}
}

.page.about .team{
	padding-bottom: 30px;
}
.page.about .team .items .item article{
	text-align: center;
}
.page.about .team .items .item article .avatar{
	display: inline-block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 15px;
	background: #FF5756 no-repeat center;
	background-color: rgba(0,0,0,0.1);
	background-size: cover;
}
.page.about .team .items .item article h4{
	margin-bottom: 0;
}

@media screen and (min-width: 992px){
	.page.about .team .items .item article{
		text-align: left;
	}
	.page.about .team .items .item article .avatar{
		width: 150px;
		height: 150px;
		margin-bottom: 30px;
	}
}
@media screen and (min-width: 992px){
	.page.about .team{
		padding-bottom: 100px;
	}
}


.page.about .stats{
	padding: 40px 0 70px;
	color: #fff;
}
.page.about .stats .wrap{
	padding: 60px 15px 80px;
	background: #171717;
	border-radius: 15px;
}
.page.about .stats .items{
	align-items: center;
	justify-content: center;
}
.page.about .stats .items .item:not(:last-child){
	margin-bottom: 50px;
}
.page.about .stats .items .item:last-child article h2{
	font-size: 45px;
}
.page.about .stats article{
	text-align: center;
}
.page.about .stats article .icon{
	display: none;
	width: 82px;
	height: 82px;
	margin: 0 auto 25px;
	filter: brightness(0) invert(1);
}
.page.about .stats article h2{
	display: inline-block;
	margin: 0 0 0;
	font-size: 50px;
	font-weight: 600;
}
.page.about .stats article p{
	margin: 0;
	font-size: 24px;
	line-height: 30px;
}
@media screen and (min-width: 768px){
	.page.about .stats .items .item:not(:last-child){
		margin: 0;
	}
}
@media screen and (min-width: 992px){
	.page.about .stats{
		padding: 70px 0 130px;
	}
	.page.about .stats .wrap{
		padding: 100px 50px;
	}
	.page.about .stats article .icon{
		display: block;
		margin-bottom: 20px;
	}
	.page.about .stats article h2{
		font-size: 60px;
	}
	.page.about .stats article p{
		font-size: 24px;
	}

	.page.about .stats .items .item:last-child article h2{
		font-size: 60px;
	}
}
@media screen and (min-width: 1600px){
	.page.about .stats article h2{
		font-size: 80px;
	}
	.page.about .stats .items .item:last-child article h2{
		font-size: 70px;
	}
}

/* Pages > Services  */

.page.services .content .title{
	max-width: 800px;
}

.page.services .content .items article{
	padding: 50px 0;
	border-bottom: 1px solid #eee;
}
.page.services .content .items article .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: no-repeat center;
	background-size: contain;
	margin: 0 0 50px;
}
.page.services .content .items article h2{
	font-size: 25px;
	margin: 0 0 16px;
}
.page.services .content .items article p{
	font-size: 18px;
	line-height: 28px;
	letter-spacing: -0.5px;
}

.page.services .content .items article ul li{
	display: inline-block;
	vertical-align: middle;
	padding: 3px 10px;
	background: #eee;
	font-size: 14px;
	border-radius: 25px;

}
.page.services .content .items article .tag{
	font-family: monospace;
	text-transform: uppercase;
	font-size: 12px;
}

@media screen and (min-width: 1440px){
	.page.services .content .items{
		margin-top: 100px;
	}
	.page.services .content .items article{
		display: flex;
	}
	.page.services .content .items article .subtitle{
		width: 40%;
	}
	.page.services .content .items article .data{
		width: 60%;
	}
	.page.services .content .items article h2{
		font-size: 30px;
	}
	.page.services .content .items article p{
		font-size: 21px;
		line-height: 35px;
	}
}

.page.services .expertise{
	position: relative;
	padding-bottom: 80px;
}

.page.services .expertise .gallery{
	position: relative;
}
.page.services .expertise .gallery .img{
	border-radius: 15px;
	overflow: hidden;
}
.page.services .expertise .gallery .img:not(:first-child){
	position: absolute;
	top: 0;
	left: 0;
}

.page.services .expertise .items .item article{
	padding: 30px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.page.services .expertise .items .item article p{
	margin: 0;
}
.page.services .expertise .items .item:first-child article{
	padding-top: 0;
}
.page.services .expertise .items .item:last-child article{
	border-bottom: 0;
}

@media screen and (min-width: 992px){
	.page.services .expertise{
		padding-bottom: 250px;
	}
	.page.services .expertise .img{
		width: 100%;
		height: 675px;
		background: #eee;
	}
	.page.services .expertise .items .item article{
		padding: 60px 0;	
	}
}



.page.services .wordpress{
	position: relative;
	margin: -50px -15px 0;
	z-index: 2;
}
.page.services .wordpress .wrap{
	padding: 30px 15px;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 25px;
}

.page.services .wordpress .title{
	margin-bottom: 30px;
}
.page.services .wordpress .title h3{
	color: #fff;
	font-size: 34px;
	text-align: center;
}
.page.services .wordpress .title h3 span{
	display: inline-block;
	vertical-align: 0;
	margin: 0 3px 0 8px;
}
.page.services .wordpress .title h3 span:before{
	content: '';
	position: relative;
	display: inline-block;
	vertical-align: -7px;
	width: 35px;
	height: 35px;
	margin-right: 10px;
	background: url('assets/img/icons/icon-wordpress.svg') no-repeat center;
	background-size: contain;
	filter: invert(1);
	transition: 0.3s all;
}

.page.services .wordpress .items .item{
	margin-bottom: 50px;
}
.page.services .wordpress .items .item article .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	margin: 0 0 30px;
	filter: brightness(0) invert(1);
}
.page.services .wordpress .items .item article h2{
	color: #fff;
	font-size: 21px;
	line-height: 30px;
}
.page.services .wordpress .items .item article p:last-child{
	margin: 0;
}

@media screen and (min-width: 768px){
	.page.services .wordpress{
		margin: -150px 0 0;
	}
	.page.services .wordpress .wrap{
		padding: 50px 50px;
	}

	.page.services .wordpress .title{
		margin-bottom: 70px;
	}
	.page.services .wordpress .title h3{
		font-size: 45px;
	}
	.page.services .wordpress .title h1 span:before,
	.page.services .wordpress .title h3 span:before{
		width: 50px;
		height: 50px;
		vertical-align: -10px;
		margin-right: 10px;
	}

	.page.services .wordpress .items .item article h2{
		font-size: 28px;
		line-height: 40px;
	}
	
	.page.services .wordpress .buttons{
		margin-top: 50px;
	}
}
@media screen and (min-width: 1440px){
	.page.services .wordpress .wrap{
		padding: 80px 70px;
	}
	.page.services .wordpress .title h3{
		font-size: 55px;
	}
}


.page.services .framework .process{
	margin-bottom: 25px;
	align-items: flex-start;
}
@media screen and (min-width: 992px){
	.page.services .framework .process{
		margin-bottom: 50px;
	}
}

.page.services .framework .stack{
	align-items: center;
	justify-content: center;
}
.page.services .framework .stack .item{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.page.services .framework .stack .item .logo{
	padding: 15px 0;
	opacity: 0.9;
	transform: scale(0.8);
}

@media screen and (min-width: 992px){
	.page.services .framework .stack{
		padding: 30px 15px 15px;
	}
	.page.services .framework .stack .item .logo{
		padding: 20px 0;
		transform: scale(1);
	}
}


/* Pages > Outsourcing */

.page.outsourcing .content .items .item article .icon{
	font-size: 42px;
	margin-bottom: 30px;
}

.page.outsourcing .benefits{
	padding: 50px 0 20px;
}
.page.outsourcing .benefits .title{
	margin-bottom: 50px;
}
.page.outsourcing .benefits .items .item article .icon{
	font-size: 42px;
	margin-bottom: 30px;
}

@media screen and (min-width:992px){
	.page.outsourcing .benefits{
		padding: 100px 0 50px;
	}
	.page.outsourcing .benefits .title{
		margin-bottom: 80px;
	}
}

/* Pages > Support */


.page.support .maintenance .items .item{
	margin-bottom: 50px;
}
.page.support .maintenance .items .item article{
	background: #f5f5f5;
	padding: 50px 30px;
	height: 100%;
	border-radius: 25px;
}
.page.support .maintenance .items .item article .icon{
	font-size: 42px;
	margin-bottom: 30px;
}


@media screen and (min-width:992px){
	.page.support .maintenance .items .item{
		margin-bottom: 70px;
	}
	.page.support .maintenance .items .item article{
		padding: 50px;
	}
}



.page.support .plans .items .item article{
	position: relative;
	height: 100%;
	padding: 30px 20px;
	background: #fff;
	border-radius: 15px;
}
.page.support .plans .items .item article.featured{
	background-color: var(--bs-primary);
	color: #fff;
}
.page.support .plans .items .item article h4{
	margin: 0;
	font-size: 24px;
	line-height: 32px;
}
.page.support .plans .items .item article p{
	margin: 0;
	font-size: 16px;
}
.page.support .plans .items .item article .price{
	font-size: 36px;
	margin: 50px 0 0;
	font-weight: 600;
	letter-spacing: -1px;
}
.page.support .plans .items .item article .price span{
	font-size: 21px;
}

.page.support .plans .items .item article .btn{
	width: 100%;
	margin-top: 50px;
	margin-bottom: 30px;
}

.page.support .plans .items .item article ul{
	margin: 30px 0 0;
}
.page.support .plans .items .item article ul li{
	font-size: 16px;
}
.page.support .plans .items .item article ul li i{
	margin-right: 5px;
}

@media screen and (min-width:768px){
	.page.support .plans .items{
		--bs-gutter-x: 30px;
	}
	.page.support .plans .items .item article{
		padding: 50px 50px;
	}
	.page.support .plans .items .item article h4{
		font-size: 32px;
		line-height: 48px;
	}
	.page.support .plans .items .item article p{
		font-size: 18px;
	}
	.page.support .plans .items .item article .price{
		font-size: 45px;
	}
	.page.support .plans .items .item article ul li{
		font-size: 18px;
		margin-bottom: 3px;
	}
}


/* Pages > Work */

.page.portfolio .content{
	padding-bottom: 50px;
}
.page.portfolio .content .title{
	max-width: 800px;
	margin-bottom: 50px;
}

@media screen and (min-width: 992px){
	.page.portfolio .content{
		padding-bottom: 100px;
	}
}


.page.portfolio .feed .more{
	margin-top: 50px;
	text-align: center;
	font-size: 18px;
	line-height: 24px;
}

@media screen and (min-width: 992px){
	.page.portfolio .feed .more{
		margin-top: 100px;
		font-size: 24px;
		line-height: 40px;
	}
}

/* Pages > Blog */

.page.blog .content{
	padding-bottom: 50px;
}
.page.blog .content .title{
	max-width: 800px;
	margin-bottom: 50px;
}

@media screen and (min-width: 992px){
	.page.blog .content{
		padding-bottom: 100px;
	}
}

/* Pages > Contact */

.page.contact .content .title{
	margin-bottom: 50px;
}

.page.contact .content .form .captcha{
	color: #888;
	font-size: 14px;
	line-height: 20px;
}

.page.contact .vias{
	padding: 0;
}
.page.contact .vias li{

}
.page.contact .vias li h5{
	margin: 0 0 3px;
}
.page.contact .vias .hours strong{
	display: inline-block;
	min-width: 50px;
}


.page.contact .careers{
	padding: 15px 0 100px;
}
.page.contact .careers .wrap{
	position: relative;
	background: var(--bs-primary);
	color: #fff;
	padding: 30px;
	border-radius: 50px;
}

@media screen and (min-width:1440px){
	.page.contact .careers .wrap{
		padding: 50px;
	}
}

/* Page > RRHH */


.page.careers .content{
	padding-bottom: 50px;
}
.page.careers .content .title{
	max-width: 768px;
}
.page.careers .content .items .item{
	margin-bottom: 50px;
}
.page.careers .content .items .item article{
	padding: 15px;
	width: 100%;
	height: 100%;
	background: #fff;
	border-bottom: 5px solid var(--bs-primary);
}
.page.careers .content .items .item article p{
	margin: 0;
	font-size: 18px;
	line-height: 28px;
}

@media screen and (min-width:992px){
	.page.careers .content{
		padding-bottom: 100px;
	}
	.page.careers .content .items .item article{
		padding: 30px;
	}
}

/**/

.single.careers .content article{
	max-width: 850px;
	line-height: 1.5em;
	margin: 0 auto;
	font-size: 16px;
}
.single.careers .content .share{
	display: block;
	max-width: fit-content;
	padding: 20px;
	margin: 0 auto;
	background: #f5f5f5;
	border-radius: 25px;
}
.single.careers .content .share ul{
	margin: 15px 0 0
}

.single.careers .contact .form{
	max-width: 750px;
	margin: 0 auto;
}

.single.careers .contact .form .captcha{
	color: #888;
	font-size: 12px;
	line-height: 20px;
}

@media screen and (min-width:992px){
	.single.careers{
		position: relative;
		margin-top: -40px;
	}
	.single.careers .content article{
		font-size: 18px;
	}
	.single.careers .content .share{
		padding: 30px 50px;
	}

	.single.careers .contact .title h4{
		font-size: 26px;
	}
}

/* Pages > Internal */

.page.internal .content article{
	max-width: 1024px;
	line-height: 1.5em;
	margin: 0 auto;
}
.page.internal .content article a{
	color: #B89044;
}
.page.internal .content article a:hover{
	text-decoration: underline;
}

/* Pages > Page 404 */

.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80dvh;
}
.page.page-thanks .content .title{
	margin-bottom: 0;
}

/* Pages > Page 404 */

.page.page-404 .content{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80dvh;
}
.page.page-404 .content .title{
	margin-bottom: 0;
}



/* Modules > Filter */


.filter,
.filter ul{
	margin: 0;
}
.filter ul li{
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}
.filter ul li a{
	display: block;
	font-size: 18px;
	padding: 5px 20px;
	color: #555;
	border: 1px solid #555;
	border-radius: 25px;
}
.filter ul li a.active,
.filter ul li a:hover{
	color: #fff;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}



/* Modules > FAQS */

.faqs .title{
	margin-bottom: 50px;
}

.faqs .items .item {
	border-bottom: 1px solid #eee;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
}
.faqs .items .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	padding: 15px 0;
}
.faqs .items .item:last-child .question{
	border-bottom: 0;
}

.faqs .items .item .question:after{
	content: '';
    position: absolute;
    top: calc(50% - 7px);
    right: 0;
    width: 24px;
    height: 14px;
   	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
   	background-size: contain;
   	transition: 0.3s all;
}

.faqs .items .item .question[aria-expanded="true"]{
	color: var(--bs-primary);
}
.faqs .items .item .question[aria-expanded="true"]:after{
	transform: rotate(-90deg);
}

.faqs .items .item .answer{
	padding: 15px 0;
}
@media screen and (min-width: 992px) {
	.faqs .items .item .question{
		padding: 30px 0;
		font-size: 24px;
	}
}

/* Modules > Contact */

.module-contact{

}

.module-contact .title{
	margin-bottom: 30px;
}

.module-contact .vias li{
	margin-bottom: 15px;
}

.module-contact .socialmedia{
	margin-top: 30px;
}
.module-contact .socialmedia li{
	display: inline-block;
	margin-right: 5px;
} 
.module-contact .socialmedia li a{
	font-size: 32px;
	padding: 3px;
}

@media screen and (min-width:992px){
	.module-contact .socialmedia{
		margin-top: 50px;
	}
}

/* Archive > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}

/* Feed > Blog */

.feed-blog article{
	position: relative;
}
.feed-blog article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.feed-blog article .thumbnail{
	display: block;
	aspect-ratio: 1.6 / 1;
	width: 100%;
	height: 100%;
	background: #eee no-repeat center;
	overflow: hidden;
}
.feed-blog article .thumbnail .img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #eee no-repeat center;
	background-size: cover;
	transition: 0.3s all;
}
.feed-blog article:hover .thumbnail .img{
    transform: scale(1.1);
}
.feed-blog article .data {
	padding: 30px 15px;
}
.feed-blog article .data h2{
	margin: 0 0 15px;
}
.feed-blog article .data p{
	font-size: 16px;
	line-height: 28px;
}
.feed-blog article .meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
}

.feed-blog article .meta .category {
	text-transform: uppercase;
	background: #eee;	
	padding: 5px 15px;
}

/* Feed > Careers */

.feed-careers{
	max-width: 850px;
	margin: 0 auto;
}
.feed-careers article{
	position: relative;
}
.feed-careers article a{
	position: relative;
	display: block;
	padding: 20px 15px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	transition: 0.3s all;
}
.feed-careers article a h2{
	margin: 0;
	font-weight: 500;
	font-size: 21px;
	line-height: 28px;
}

@media screen and (min-width: 768px){
	.feed-careers article a:hover{
		color: #fff;
		background: #171717;
	}
	.feed-careers article a h2{
		margin: 0;
		font-size: 24px;
		line-height: 32px;
	}
}

/* Feed > Portfolio  */

.feed-portfolio .item{
	margin-bottom: 30px;
}
.feed-portfolio article{
	position: relative;
}
.feed-portfolio article .thumbnail{
	position: relative;
	display: block;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
	margin-bottom: 16px;
	background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
	background-size: 200% 100%;
	animation: 1.5s shine linear infinite;
	border-radius: 30px;
	transition: 0.5s ease-in-out;
}
.feed-portfolio article .thumbnail .img{
	max-width: 100%;
	width: 100%;
	height: 100%;
	background: no-repeat center;
	background-size: cover;
	object-fit: cover;
	transition: 0.5s all;
	border-radius: 30px;
}
.feed-portfolio article h2{
	margin: 0 0 10px;
	font-weight: 500;
	font-size: 22px;
}
.feed-portfolio article ul{
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}
.feed-portfolio article ul li{
	font-size: 15px;
	color: #666;
	background: #f5f5f5;
	padding: 3px 15px;
	border-radius: 25px;
}

.feed-portfolio article .external-link{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	margin: 25px;
	width: 35px;
	height: 35px;
	background: #fff url('assets/img/icons/icon-arrow-right.svg') no-repeat center;
	background-size: 20px;
	border-radius: 50px;
	cursor: pointer;
	opacity: 0;
	transition: 0.3s all;
}
.feed-portfolio article .external-link:hover{
	background-color: #fff;
}
.feed-portfolio article:hover .external-link{
	opacity: 1;
	transform: scale(1.1) rotate(-45deg);
}

@media screen and (min-width: 992px){
	.feed:not(.is-filtering) .feed-portfolio .item:nth-child(even){
		margin-top: 80px;
		margin-bottom: 0;
	}

	.feed-portfolio article .external-link{
		width: 50px;
		height: 50px;
	}
	.feed-portfolio article .thumbnail{
		margin-bottom: 30px;
	}
	.feed-portfolio article h2{
		font-size: 24px;
	}
}
@media screen and (min-width: 1600px){
	.feed-portfolio article h2{
		font-size: 30px;
	}
}

/* Feed > Portfolio list */

.feed-portfolio-list article{
	height: 100%;
}
.feed-portfolio-list article a{
	position: relative;
	display: block;
	height: 100%;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.feed-portfolio-list article a:hover{
	color: inherit;
}
.feed-portfolio-list article h2{
	width: 100%;
	margin: 0 0 6px;
	font-size: 18px;
}

.feed-portfolio-list article .year{
	font-size: 16px;
}
.feed-portfolio-list article .services{
	margin: 0;
	color: #555;
}
.feed-portfolio-list article .link{
	margin: 0;
	font-size: 16px;
}


@media screen and (min-width: 992px){
	.feed-portfolio-list article a{
		padding: 20px 15px;
	}
	.feed-portfolio-list article a:before{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		width: 0;
		height: 1px;
		background: #171717;
		transition: 0.3s all;
	}
	.feed-portfolio-list article a:hover:before{
		width: 100%;
	}
	.feed-portfolio-list article a:hover h2{
		color: var(--bs-primary);
	}
	.feed-portfolio-list article h2{
		margin: 0;
		font-size: 21px;
	}
	.feed-portfolio-list article .link{
		font-size: 18px;
	}
}

/* Singles */


.single .categories h5{
	margin: 0;
	font-size: 18px;
}
.single .categories ul{
	margin: 10px 0 0;
}
.single .categories ul li{
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}
.single .categories ul li a{
	display: block;
	font-size: 16px;
	padding: 5px 20px;
	color: #555;
	border: 1px solid #555;
	border-radius: 25px;
}
.single .categories ul li a.active,
.single .categories ul li a:hover{
	color: #fff;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}


.single .content .title{
	margin-bottom: 50px;
}
.single .content .meta{
	margin: 30px 0;
}

.single .content .share{
	display: flex;
}
.single .content .share h5{
	margin: 0;
	font-size: 18px;
}
.single .content .share ul{
	margin: 0;
}
.single .content .share ul li{
	display: inline-block;
	vertical-align: middle;
}
.single .content .share ul li{
	margin: 0;
}
.single .content .share ul li a{
	display: block;
	padding: 5px;
	font-size: 21px;
	transition: 0.3s all;
	cursor: pointer;
}

.single .content .description{
	font-size: 18px;
}

@media screen and (min-width:992px){
	.single .share ul li a:hover{
		transform: scale(1.1);
	}
}

/* Singles > Work */

@media screen and (min-width:992px){
	.single.work{
		position: relative;
		margin-top: -40px;
	}
}

.single.work .content{
	padding-bottom: 0;
}
.single.work .content .title{
	margin-bottom: 30px;
}
.single.work .content .btn{
	margin-top: 5px;
}

@media screen and (min-width:992px){
	.single.work .content article{
		font-size: 24px;
	}
}

.single.work .modules .module{
	padding: 50px 0;
}

@media screen and (min-width:992px){
	.single.work .modules .module{
		padding: 100px 0;
	}	
}

.single.work .modules .introduction{
	position: relative;
	margin: 0 -20px;
}
.single.work .modules .introduction .browser{
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: #171717;
}
.single.work .modules .introduction .browser:after{
	content: '';
	position: absolute;
	bottom: 10px;
	right: 5px;
	width: 30px;
	height: 30px;
	background: url('assets/img/icons/icon-scroll-down.png') no-repeat center;
	filter: invert(1);
	background-size: contain;
	z-index: 3;
	animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	mix-blend-mode: difference;
}

.single.work .modules .introduction .browser.video{
	height: auto;
}
.single.work .modules .introduction .browser.video video{
	width: 100%;
	height: 100%;
}
.single.work .modules .introduction .browser .screen{
	width: 100%;
	height: 500px;
	overflow: auto;
}
.single.work .modules .module-gallery .slider .slides .slide{
	padding: 0 15px;
}

@media screen and (min-width: 992px){
	.single.work .modules .introduction .browser{
		box-shadow: 0 0.1em 1em 0 rgba(0, 0, 0, 0.4);
		border-radius: 12px;
	}
	.single.work .modules .introduction .browser,
	.single.work .modules .introduction .browser .screen{
		height: 700px;
		overflow: hidden;
	}
	.single.work .modules .introduction .browser:after{
		width: 50px;
		height: 60px;
		bottom: 15px;
		right: 15px;
	}
	.single.work .modules .introduction .browser .screen img{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
}


/* Estimate */

.estimate{
	position: relative;
	padding: 15px 0 100px;
	background: #fff;
}
.estimate .wrap{
	position: relative;
	background: #000;
	color: #fff;
	border-radius: 50px;
	padding: 15px 30px;
}

.estimate .title{
	margin: 0;
}
.estimate .title h4{
	font-size: 50px;
}
.estimate .title p{
	font-size: 21px;
}
.estimate .buttons{

}
.estimate .buttons li{
	display: block;
	margin-bottom: 15px;
}

.estimate .arrow{
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: url(assets/img/icons/icon-arrow-right-up.svg) no-repeat center;
    background-size: contain;
    filter: brightness(0) invert(1);
    transition: 0.3s all;
}
.estimate:hover .arrow{
	filter: initial;
	margin-left: 30px;
	margin-top: -10px;
}

@media screen and (min-width:992px){
	.estimate .wrap{
		display: flex;
		padding: 50px;
	}
	.estimate .title{
		width: 60%;
	}
	.estimate .title h4{
		font-size: 60px;
	}
	.estimate .title p{
		font-size: 24px;
	}
	.estimate .buttons{
		width: 40%;
		text-align: right;
	}
}

/* Footer */

.footer{
	background: #171717;
	color: #fff;
}

@media screen and (max-width:767px){
	.footer .menu{
		display: none;
	}
}

.footer .widgets{
	padding: 50px 0 30px;
}
.footer .widgets .logo{
	display: block;
	max-width: 172px;
	margin: 0 0 20px;
	filter: invert(1);
}

.footer .widgets h4{
	color: #c5c5c5;
	font-size: 18px;
	margin: 0 0 25px;
	text-transform: uppercase;
}

.footer .widgets ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer .widgets ul li{
	margin-bottom: 3px;
	font-size: 18px;
	line-height: 34px;
	letter-spacing: -0.25px;
}
.footer .widgets ul li a{
	display: block;
}

.footer .widgets .contact li{
	margin-bottom: 30px;
}
.footer .widgets .contact li a{
	display: block;
	font-size: 21px;
	line-height: 32px;
	font-weight: 600;
}
.footer .widgets .socialmedia li a{
	text-transform: capitalize;
}

.footer .copyright{
	position: relative;
	padding: 20px 0;
}
.footer .copyright:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,0.1);
}
.footer .copyright p{
	font-size: 16px;
	margin: 0;
	color: #c5c5c5;
}

@media screen and (min-width: 992px){
	.footer .widgets .logo{
		max-width: 150px;
	}
	.footer .estimate a{
		padding: 100px 0 50px 0;
	}
	.footer .widgets{
		padding: 100px 0 70px;
	}
	.footer .widgets .logo{
		margin: 0 0 30px;
		max-width: 216px;
	}
	.footer .widgets .contact li a{
		display: block;
		font-size: 24px;
		line-height: 36px;
		font-weight: 600;
	}
}

/**/

.slider{
	position: relative;
}
.slider:not(.swiper-initialized) .slides,
.slider:not(.slick-initialized) .slides{
	display: flex;
	overflow: hidden;
}
.slider:not(.swiper-initialized) .slides .slide,
.slider:not(.slick-initialized) .slides .slide{
	flex-shrink: initial;
	width: 100%;
	height: auto;
}

.slider .slick-dots { width: 100%; padding: 0; margin: 0; text-align: center; }
.slider .slick-dots { position: absolute; bottom: -35px; left: 0; width: 100%; z-index: 10; }
.slider .slick-dots li { display: inline-block; vertical-align: top; margin: 10px 6px; }
.slider .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	text-indent: -9999px;
	background: rgba(0,0,0,0.25);
	border: 0;
	border-radius: 50%;
	overflow: hidden;
	-webkit-appearance: none;
	cursor: pointer;
}
.slider .slick-dots li.slick-active button { background: #171717; }

.slider .arrows button,
.slider .arrows .arrow{
	position: absolute;
	top: calc(50% - 15px);
	left: 30px;
	width: 16px;
	height: 30px;
	padding: 0;
	padding: 0;
	line-height: 300px;
	text-align: center;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
}
.slider .arrows button:focus{
	outline: 0;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/icon-arrow-left.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next{
	left: auto;
	right: 30px;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-right.svg');
}


.mf-cursor{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    contain: layout style size;
    pointer-events: none;
    transition: opacity .3s,color .4s;
}

.mf-cursor:before{
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    transform: scale(.3);
    background: #171717;
    border-radius: 50%;
    transition: transform .3s,opacity .1s;
}

.mf-cursor.-inverse{
    color: #fff;

}
.mf-cursor.-inverse:before{
	background: #fff;
	opacity: 0.2;
}

.overh .mf-cursor.-navigation{
    color: #fff;
}
.overh .mf-cursor.-navigation:before{
	background-color: #fff;
	transform: scale(1.5);
}


/*.mf-cursor.-navigation-pointer:before{
	background-color: rgba(252,63,80,1);
	transform: scale(1.5);
}*/

.mf-cursor.-navigation:before{
	background-color: #fff;
	opacity: 0.5;
	transform: scale(1.25);
}

.mf-cursor.-active:before,
.cb-menu.-open .cb-menu-toggle button.mf-cursor:before {
    transform: scale(.25)
}

.mf-cursor.-pointer{
	/*mix-blend-mode: exclusion;*/
}
.mf-cursor.-pointer:before {
    transform: scale(1.5);   
    opacity: 0.2;
}

.mf-cursor.-pointer.-text{
	mix-blend-mode: normal;
}
.mf-cursor.-pointer.-text:before{
	background-color: rgba(252,63,80,1);
}

.mf-cursor.-pointer.-active:before,
.cb-menu.-open .cb-menu-toggle button.mf-cursor.-pointer:before {
    transform: scale(.1)
}


.mf-cursor.-opaque.-active:before,
.cb-menu.-open .cb-menu-toggle button.mf-cursor.-opaque:before {
    transform: scale(1.2)
}


.mf-cursor.-text{
    color: #171717;
}

.mf-cursor.-text:before {
    opacity: 1;
    transform: scale(1.9)
}

.mf-cursor.-text.-active:before,
.cb-menu.-open .cb-menu-toggle button.mf-cursor.-text:before {
    transform: scale(1.7);
    transition-duration: .2s
}

.mf-cursor.-text.-inverse{
    color: #fff
}


.mf-cursor.-menu {
    mix-blend-mode: exclusion;
}

.mf-cursor.-menu:before {
    transform: scale(1.32)
}

.mf-cursor.-menu.-active:before,
.cb-menu.-open .cb-menu-toggle button.mf-cursor.-menu:before {
    transform: scale(1.2)
}

.mf-cursor.-hidden:before {
    transform: scale(0)
}


.mf-cursor-text{
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    transition: opacity .4s,transform .3s
}

.mf-cursor.-icon .mf-cursor-text,
.mf-cursor.-text .mf-cursor-text{
    opacity: 1;
    transform: scale(1)
}

.mf-cursor.-inverse .mf-cursor-text{
    color: #171717
}


.mf-cursor-media img,
.mf-cursor-media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    border-radius: 0;
}

.mf-cursor-media{
    position: absolute;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px
}

.mf-cursor-media-box{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(0) translateZ(0);
    opacity: 0;
    border-radius: 0;
    transition: transform .35s,opacity .2s .2s
}

.mf-cursor.-media .mf-cursor-media-box{
    opacity: 1;
    transform: scale(.696);
    transition-duration: .4s,.4s;
    transition-delay: 0s,0s
}

.mf-cursor.-media {
    z-index: 0;
    mix-blend-mode: normal;
}

.mf-cursor.-media .mf-cursor-media-box {
    opacity: 1;
    transform: scale(.696);
    transition-duration: .4s,.4s;
    transition-delay: 0s,0s
}

.mf-cursor.-media.-media-lg .mf-cursor-media-box {
    transform: scale(1)!important
}