/* Generali */
html {
	scroll-behavior: smooth;
}

:root {
	--white: #FFFFFF;
	--grey: #F6F7FB;
	--darkgrey: #222222;
	--orange: #ef8634;
	--green: #89db9a;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-display: swap;
}

@media screen and (max-width: 960px) {

	.no-mobile {
		display: none !important;
	}
}

/* Stili Tipografia */

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

.dark-grey {
	color: var(--darkgrey);
}

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

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

/* Colori Sfondo */

.back-white {
	background-color: var(--white);
}

.back-black {
	background-color: var(--darkgrey);
}

.back-grey {
	background-color: var(--grey);
}

.back-img {
	background-image: url('../img/hero.png');
	background-size: cover;
}

/* Tipografia */

h1 {
	font-size: 54px;
	line-height: 1.5;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

h2 {
	font-size: 40px;
	line-height: 1.5;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

h3 {
	font-size: 32px;
	line-height: 1.5;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

h4 {
	font-size: 24px;
	line-height: 1.5;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

h5 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

h6 {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
}

.span1 {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}

.span2 {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
}

.btk-c-link {
	color: var(--white);
	text-decoration: none;
}

.btk-c-link.btk-c-link:hover {
	color: var(--white);
	text-decoration: none;
}

.btk-c-link--underline {
	color: var(--white);
	text-decoration: underline;
}

.btk-c-link--underline:hover {
	color: var(--white);
	text-decoration: underline;
}

@media screen and (max-width: 640px) {

	h1 {
		font-size: 32px;
		line-height: 48px;
	}

	h2 {
		font-size: 24px;
		line-height: 36px;
	}

	h3 {
		font-size: 20px;
		line-height: 27px;
	}

	h4 {
		font-size: 18px;
		line-height: 27px;
		font-weight: 700;
	}

}

@media (min-width: 640px) and (max-width: 960px) {

	h1 {
		font-size: 32px;
		line-height: 48px;
	}

	h2 {
		font-size: 24px;
		line-height: 36px;
	}

	h3 {
		font-size: 20px;
		line-height: 27px;
	}

	h4 {
		font-size: 18px;
		line-height: 27px;
		font-weight: 700;
	}

}

@media (min-width: 960px) {

	h1 {
		font-size: 40px;
		line-height: 60px;
	}

	h2 {
		font-size: 32px;
		line-height: 48px;
	}

	h3 {
		font-size: 24px;
		line-height: 36px;
	}

	h4 {
		font-size: 20px;
		line-height: 34px;
		font-weight: 700;
	}
}

/* General Element */

.btk-l-sec--hero {
	height: 100vh;
	background-size: cover;
}

.btk-l-sec {
	padding: 5rem 0;
}

.btk-l-sec--top {
	padding: 5rem 0 0 0;
}

.btk-l-sec--bottom {
	padding: 0 0 5rem 0;
}

.btk-l-sec__main {
	background: linear-gradient(180deg, rgba(34, 34, 34, 0.7), rgba(51, 51, 51, 0.7)), url('../img/hero.png');
	padding-bottom: 5rem;
	background-blend-mode: multiply;
}

.btk-c-button {
	max-width: 255px;
	background-color: var(--orange);
	border-radius: 0.25rem;
	line-height: 48px;
	color: var(--white);
	text-transform: none !important;
	margin-top: 1rem;
}

.btk-c-image svg {
	height: 100%;
}


@media screen and (max-width: 960px) {

	.btk-l-sec--hero {
		height: 100vh;
	}

	.btk-l-row {
		flex-direction: column;
	}
}


/* Menu Section */

.btk-c-logo {
	height: 3.5rem;
	margin-right: 3rem;
}

.btk-c-logo img {
	width: 100%;
}

.uk-navbar-nav>li>a {
	color: var(--white);
	text-transform: none !important;
	font-family: 'Open Sans' !important;
}

.uk-navbar-nav>li>a:hover {
	color: var(--orange);
	text-transform: none !important;
	font-family: 'Open Sans' !important;
}

.uk-navbar-nav>li.uk-active>a {
	color: var(--orange);
	text-transform: none !important;
	font-family: 'Open Sans' !important;
}

.btk-c-menu__cta {
	color: var(--orange) !important;
	font-weight: 800;
}

.btk-c-menu__mob-link {
	margin: 2rem 0;
	list-style: none;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
	background-color: var(--darkgrey);
	box-shadow: 0px 2px 12px var(--darkgrey);
}

@media screen and (max-width: 960px) {

	.btk-c-logo {
		width: 120px;
		margin-left: 1.5rem;
	}
}

/* Hero Section */

.btk-c-claim {
	width: 100%;
	margin: 2rem auto 0 auto;
}

.btk-c-claim h1 {
	width: 80%;
	margin: 0 0 0.5rem 0;
}

.btk-c-claim p {
	width: 80%;
	margin: 0 0 2rem 0;
}

@media screen and (max-width: 960px) {

	.btk-c-claim {
		width: 90%;
	}

	.btk-c-claim h1 {
		font-size: 25px;
		line-height: 1.5;
	}

	.btk-c-claim p {
		width: 100%;
	}

	#hero .btk-c-image {
		display: none;
	}
}

/* Card Section */

#card .btk-c-title {
	color: var(--white);
}

#card .btk-c-title h2 {
	color: var(--white);
}

.btk-c-cardlist {
	margin-top: 2rem;
}

.btk-c-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	margin: 1rem;
	padding: 1rem 1rem;
}

.btk-c-card img {
	width: 50px;
	height: 50px;
	margin-bottom: 1.5rem;
}

.btk-c-card h6 {
	margin: 0;
}

@media screen and (max-width: 960px) {

	.btk-c-cardlist {
		flex-direction: column;
	}

	.btk-c-card {
		width: 90%;
		margin: 1rem auto;
	}
}

/* Info Section */

.btk-c-title {
	width: 80%;
	margin: 0 auto;
}

.btk-c-title p {
	font-size: 20px;
}

#info .btk-c-title p,
#info .btk-c-title h2 {
	color: var(--white);
}

.btk-c-info__content img {
	margin-top: 3rem;
}

.btk-marker {
	background-color: var(--orange);
	width: 1rem;
	height: 1rem;
	box-shadow: 0px 1px 12px var(--darkgrey);
	border: 2px solidvar(--white);
}

@media screen and (max-width: 960px) {

	.btk-c-title {
		width: 90%;
		margin: 0 auto;
	}
}

/* Flow Section */

#flow img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* Analysis Section */

#analysis .btk-c-image img {
	width: 90%;
}

#analysis .btk-c-image__mobile svg {
	width: 100%;
	margin-top: 1rem;
}

.btk-c-image__mobile {
	display: none;
}

@media screen and (max-width: 960px) {

	#analysis .btk-c-image__mobile {
		display: block;
	}

	#analysis .btk-c-image {
		display: none;
	}
}

/* Form Section */

::placeholder {
	font-size: 14px;
}


#form .btk-c-sec__title {
	width: 50%;
	margin-bottom: 1rem;
}

.uk-form-danger {
	display: none;
}

.btk-c-form__alert {
	display: none;
	border-radius: 4px;
	background-color: var(--green);
	color: var(--white);
	text-align: center;
	padding: 1rem;
	margin-top: 1rem;
}

.btk-c-field {
	height: 40px;
	background-color: var(--white);
	border-radius: 0.5rem;
	border: none;
}

.was-validated .btk-c-field:invalid {
	border-color: #dc3545;
}

.was-validated .btk-c-field--checkbox:invalid {
	border-color: #dc3545;
}

.was-validated .btk-c-field--select:invalid {
	border-color: #dc3545;
}

.was-validated .btk-c-field--textarea:invalid {
	border-color: #dc3545;
}

.was-validated .btk-c-field:invalid~.uk-form-danger {
	display: block;
}

.was-validated .btk-c-field--checkbox:invalid~.uk-form-danger {
	display: block;
}

.was-validated .btk-c-field--select:invalid~.uk-form-danger {
	display: block;
}

.was-validated .btk-c-field--textarea:invalid~.uk-form-danger {
	display: block;
}

.was-validated .btk-c-form__alert.btk-success {
	display: block;
}

.btk-c-field__group {
	margin-bottom: 1.5rem;
	max-width: 420px;
}

.btk-c-field__group label {
	font-size: 14px;
}

.uk-form-danger {
	font-size: 14px;
}

@media screen and (max-width: 640px) {

	.btk-c-field__group {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	#form .btk-c-sec__title {
		width: 90%;
		margin-bottom: 1rem;
	}
}

/* Infobar */

.btk-c-infobar p {
	padding: 0.5rem 0;
}