:root {
	--primary: rgba(0, 103, 164, 1);
	--secondary: rgba(80, 80, 80, 1);
	--ligth-blue: rgba(47, 165, 253, 1);
	--grey: rgba(178, 178, 178, 1);
	--code: #66A4C8;
}


@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

html {
	font-size: 62.5%;
}

.git-link {
	width: 100%;
	height: 100%;
}

.git-link:hover {
	cursor: pointer;

}

body {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: #777;
	padding: 6rem 8rem 4rem 8rem;
}

html, body {
	min-height: 100%!important;
	width: 100%!important;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color:  var(--primary);
}

h1 {
font-size: 4rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
  font-style: italic;
}

h4 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
  margin-top: 2rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

img{
	vertical-align: middle;
    border-style: none;
}

header {
	max-width: 1300px;
	margin: auto;
	height: auto;
}

code {
	color: var(--code)!important;
}

.header {
	background-color: #ffffff;
	position: relative;
	padding: 30px 40px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 2px 5px 0 rgba(66, 68, 90, 1);
	border-radius: 5px;
}

.header-logo-box {
	position: absolute;
	top: 30px;
	right: 40px;
}

img.header-logo {
	width:17rem;
	height: auto;
}

.header-text-box {
	height: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: 1200px;
	margin-bottom: 30px;
}

.heading-title {
	color: var(--primary);
	display: block;
	padding-bottom: 3rem;
}

.heading-primary {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
}

.heading-secondary {
	font-size: 5.5rem;
	font-weight: 700;
	letter-spacing: 0.5rem;
}

.heading-secondary.privacy-notice {
	font-size: 3.5rem;
	letter-spacing: 0.3rem;
}

.header-text {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--secondary);
	text-align: justify;
}

.header-text a:link, .header-text a:visited {
	color: var(--ligth-blue);
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
}

.header-text a:hover, .header-text a:active {
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
}

.header-privacy-link {
	padding-top: 1rem;
	padding-bottom: 3rem;
	margin-bottom: 0;
}

.header-list {
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--secondary);
	margin-bottom: 1rem;
}

ul.dash-list {
	list-style-type: none;
}
ul.dash-list > li {
	margin-left: 0;
}
ul.dash-list > li:before {
	content: "-";
	margin-left: 3px;
	margin-right: 12px;
	font-weight: bold;
}

.header-list li {
	margin-left: 2rem;
}

.header-list p {
	margin-left: 2rem;
}

.break {
	word-break: break-all;
}

.btn {
	margin-top: 2rem;
	margin-left: 10rem;
	margin-bottom: 5rem;
	box-shadow: 0 1px 2px 0 rgba(66, 68, 90, 1);
}

.btn, .btn:link, .btn:visited {
	text-decoration: none;
	padding: 15px 30px;
	display: inline-block;
	border-radius: 10rem;
	transition: .4s ease;
	position: relative;
	font-size: 1.6rem;
	border: none;
	cursor: pointer;
}

.btn-color {
	background: var(--primary);
	color: #ffffff;
}

.btn-animated {
    animation: moveInBottom .5s ease-out .75s;
    animation-fill-mode: backwards;
}

.processed-wrapper {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
}

a.btn.btn-color.btn--processed {
	font-weight: 600;
	font-size: 2rem;
	margin: 0;
	width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

a.btn.btn-color.btn--processed:hover {
	width: 290px;
}

a.btn.btn-color.btn--processed span.btn-entry-char {
	margin-left: 8px;
	font-weight: bold;
	display: none;
}

a.btn.btn-color.btn--processed:hover span.btn-entry-char {
	display: block;
}

a.btn.btn-color.btn--processed i {
	margin-left: -10px;
	opacity: 0;
	transition: .4s ease;
	font-weight: bold;
	font-size: 15px;
}

a.btn.btn-color.btn--processed:hover i {
	margin-left: 10px;
	opacity: 1;
}

.footer-text-box {
	color:#ffffff;
	float:right;
	text-align: right;
	font-size: 1rem;
	padding-bottom: 4rem;
	padding-top: 0.5rem;
	margin-top: -70px;
}

.footer-text-box p {
	margin-bottom: 0;
}

img.footer-logo {
	width: 200px;
}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
 }

/*Privacy Notice*/

.custom-breadcrumb {
	font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}

@keyframes animate_info{
	0% {
		transform: rotateY(0deg);
	}
	18% {
		transform: rotateY(45deg);
	}
	32% {
		transform: rotateY(135deg);
	}
	50% {
		transform: rotateY(180deg);
	}
	68% {
		transform: rotateY(225deg);
	}
	82% {
		transform: rotateY(315deg);
	}
	100% {
		transform: rotateY(359deg);
	}
}

.custom-breadcrumb a:link, .custom-breadcrumb a:visited {
	color: var(--primary);
	text-decoration: none;
	cursor: pointer;
}

.custom-breadcrumb a:hover, .custom-breadcrumb a:active {
	text-decoration: underline;
	cursor: pointer;
}

/*maintenance*/

.maintenance {
	margin-bottom: 20rem;
}

.find-us-span {
	justify-content: space-evenly;
	/*color: var(--primary);*/
}

.find-us-span span i {
	background: var(--grey);
	padding: 10px;
	border-radius: 25px;
	color: #fff;
	margin-left: 5px;
	font-size: 18px;
	transition: .4s ease;
}

.find-us-span span i:hover {
	cursor: pointer;
	background: #555;
}

.contact-us {
	max-width: 1000px;
	height: 70px;
	position: absolute;
	bottom: -1px;
	left: 65px;
	display: inline-flex;
	flex-direction: row;
}
.contact-us-entry {
	width: 60px;
	height: 50px;
	margin-top: 20px;
	border-radius: 8px 8px 0 0;
	float: left;
	margin-left: -4px;
	box-shadow: 0 2px 6px 1px rgba(52, 52, 71, 0.2);
	z-index: 1;
	transition-property: height, margin-top;
	transition-duration: .4s;
	transition-timing-function: ease;
	display: block;
	text-decoration: none;
}
.contact-us-entry:hover {
	height: 70px;
	cursor: pointer;
	margin-top: 0;
}
.contact-us-entry i {
	position: relative;
	top: 16px;
	left: 20px;
	font-size: 20px;
	color: #fff;
}
.contact-us-entry img {
	position: relative;
	top: 17px;
	left: 10px;
	width: 40px;
	color: #fff;
}
.contact-us-entry p {
	position: relative;
	top: 12px;
	left: 14px;
	font-size: 16px;
	color: #fff;
}

.find-us-span.find-us-span--header-text {
	font-size: 1.7rem;
	color: var(--secondary);
	font-weight: bold;
}

.find-us-img {
	width: 47px;
	height: 47px;
	transition: all 0.3s linear;
}

.find-us-img:hover {
	transform: scale(1.15);
}

div.chatbot > div.chatbot__container {
	right: 10px;
	bottom: 10px;
	margin-bottom: 0;
	height: 600px;
	width: 365px;
	box-shadow: 0 5px 10px 0 rgba(68, 68, 68, 0.50);
	border: none;
	border-radius: 20px;
}

div.chatbot > div.chatbot__container > iframe {
	height: calc(100% - 75px);
}

div.chatbot > div.chatbot__container > div.chatbot__container__header {
	height: 75px;
	color: #fff;
	background: linear-gradient(to right bottom, rgb(0,63,95,0.8), rgb(161,45,89,0.8)), url(/img/cover.jpg), top;
	background-size: cover;
}

div.chatbot > div.chatbot__launcher {
	display: none;
	right: 30px;
	bottom: 30px;
	box-shadow: 0 1px 5px 0 rgba(68, 68, 68, 0.50);
	padding: 0;
	border: none;
	background: rgba(0, 103, 164, 1);
	background-size: cover;
}

.chatbot_container_anim_in {
	animation: chatbot_container_anim_in 1.3s;
}

.chatbot_container_anim_in_toast {
	animation: chatbot_container_anim_in 1.7s;
}

.chatbot_container_anim_out {
	animation: chatbot_container_anim_out 0.6s;
}

.chatbot_launcher_anim_in {
	animation: chatbot_launcher_anim_in 0.7s;
}

div.chatbot__container__header > p {
	width: 100%;
}

.chatbot_title_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div.chatbot_close_button {
	align-self: flex-start;
}

div.chatbot_close_button > img {
	width: 15px;
}

div.chatbot_close_button > img:hover {
	cursor: pointer;
}

img.chatbot_title_image {
	margin-right: 15px;
}

.chatbot_title {
	display: block;
}

.chatbot_title_primary {
	font-size: 18px;
}

.chatbot_title_secondary {
	font-size: 11px;
	padding-top: 2px;
}

.toast.show {
	display: block;
}

.toast {
	position: fixed;
	bottom: 105px;
	right: 30px;
	max-width: 350px;
	overflow: hidden;
	background-color: rgba(255,255,255,.85);
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.1);
	box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 15px 15px 1px 15px;
	font-size: 14px;
}

.toast-fade-in {
	transform-origin: bottom right;
	animation: toast-fade-in-anim 0.4s;
}

.toast-fade-out {
	transform-origin: bottom right;
	animation: toast-fade-out-anim 0.4s;
}

@keyframes toast-fade-out-anim {
	from {
		transform: scale(1.0);
	} to {
		  transform: scale(0.0);
	  }
}

@keyframes toast-fade-in-anim {
	from {
		transform: scale(0.0);
	} to {
		transform: scale(1.0);
	}
}

.toast-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 4px 12px;
	color: #6c757d;
	background-color: rgba(255,255,255,.85);
	background-clip: padding-box;
	border-bottom: 1px solid rgba(0,0,0,.05);
}

.toast-body {
	padding: 8px 36px 8px 12px;
	color: #212529;
}

.toast.hide {
	display: none;
}

.toast-header-auto {
	margin-right: auto!important;
}

.toast-close:hover {
	cursor: pointer;
}

button.toast-close {
	padding: 0;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-left: 0.5rem!important;
}

.toast-close {
	float: right;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
}

@keyframes chatbot_container_anim_out {
	0% {
		bottom: 10px;
	} 100% {
		bottom: -650px;
	}
}

@keyframes chatbot_container_anim_in {
	0% {
		bottom: -650px;
	} 54% {
		bottom: -650px;
	} 100% {
		bottom: 10px;
	}
}

@keyframes chatbot_launcher_anim_in {
	0% {
		bottom: -350px;
	} 15% {
		bottom: -350px;
	} 100% {
		bottom: 30px;
	}
}

.chatbot_launcher_anim_out {
	animation: chatbot_launcher_anim_out 0.6s
}

@keyframes chatbot_launcher_anim_out {
	0% {
		bottom: 30px;
	} 95% {
		bottom: -100px;
	} 100% {
		bottom: -350px;
	}
}

a.custom-hyperlink {
	color: var(--ligth-blue);
	text-decoration: none;
	font-weight: bold;
}
a.custom-hyperlink:hover {
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
}

/*MEDIA*/

@media (min-width: 1800px) {

  .btn {
    margin-top: 5rem;
    margin-bottom: 15rem;
  }

	a.btn.btn-color.btn--processed {
		margin: 0;
	}

  body {
   padding: 9rem;
  }

  .heading-secondary {
    font-size: 6rem;
  }

  .header-text a {
    color: var(--primary);
	text-decoration: none;
	font-weight: bold;
  }

}

@media (max-width: 1200px) {

  html {
    font-size: 60%;
  }

  .btn {
    margin-left: 5rem;
    margin-bottom: 7rem;
  }

	a.btn.btn-color.btn--processed {
		margin: 0;
	}

  .heading-primary {
    margin-bottom: 2rem;
  }

  .heading-secondary {
    font-size: 5rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.7rem;
  }

 }

@media (max-width: 1015px) {
	body {
		padding: 4rem 6rem 3rem 6rem;
	}
}

@media (max-width: 900px) {

  html {
    font-size: 55%;
  }

  body {
    padding: 3rem;
  }

  .btn {
      margin-left: 5rem;
      margin-bottom: 7rem;
  }

	a.btn.btn-color.btn--processed {
		margin: 0;
	}

	.find-us-span {
		width: 100%;
		max-width: 420px;
	}

}

@media (max-width: 767px) {
	div.chatbot > div.chatbot__container {
		width: 100%;
		height: 100%;
		top: unset;
		left: unset;
		right: 0;
		bottom: 0;
		border-radius: 0;
		position: fixed;
	}

	img.chatbot__container__close {
		display: none;
	}

	div.chatbot_close_button {
		align-self: center;
		margin-right: 10px;
	}

	div.chatbot_close_button > img {
		width: 18px;
	}

	.toast-close {
		font-size: 18px;
	}

	@keyframes chatbot_container_anim_in {
		0% {
			bottom: -100%;
		} 54% {
			bottom: -100%;
		} 100% {
			bottom: 0;

		}
	}

	@keyframes chatbot_container_anim_out {
		0% {
			bottom: 0;
		} 100% {
			bottom: -100%;
		}
	}
}

@media (max-width: 600px) {
	.contact-us {
		left: 50%;
		transform: translateX(-50%);
	}

  html {
    font-size: 50%;
  }

  body {
    padding: 3rem;
  }

  .btn {
      margin-left: 5rem;
      margin-bottom: 8rem;
  }

	a.btn.btn-color.btn--processed {
		margin: 0;
	}

  .heading-primary {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
  }

  .heading-secondary {
    font-size: 4rem;
    letter-spacing: 0.5rem;
  }

  .custom-breadcrumb {
      letter-spacing: 0.3rem;
	  max-width: 20rem;
  }
}

@media (max-width: 480px) {
	.btn {
		width: 100%!important;
		border-radius: 15px!important;
	}
}

@media (max-width: 400px) {
  img.header-logo {
    width:10rem;
  }

	.find-us-span {
		position: relative;
		width: 100vw;
		max-width: 272px;

	}

	.find-us-img {
		width: 40px;
		height: 40px;
	}
}
