*{
	margin: 0;
	padding: 0;
}

body{
	font-family: 'Ubuntu', sans-serif;
	background: #6395ed;
	padding-top: 40px;
}

.header{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.header-text{
	font-style: inherit;
	color: white;
	font-family: "Gill Sans", sans-serif;
	font-size: 50px;
	margin-bottom: 30px;
}
/*TABS*/
#horizontal-tabs{
	max-width: 600px;
	display: block;
	margin: 0 auto;
}

.tabs{
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	background-color: #bfd3f8;
	color: #fff;
	font-weight: 400;
	border-radius: 7px;
	width: content-box;
	position: relative;

}
.tab{
	display: block;
	padding: 11px 20px;
	position: relative;
	z-index: 99999;

}
.tab:hover{
	cursor: pointer;
}

.selector{
	display:inline-block;
	position: absolute;
	left:0;
	top:0;
	height: 40px;
	z-index:99999;
	border-radius:7px;
	transition: all 500ms cubic-bezier(0.080, -0.195, 0.140, 0.970);
	background: #92b4f2;
}

.selector:after{
	content:'';
	position: absolute;
	z-index: -1;
	left: calc(50% - 10px);
	bottom: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #92b4f2 transparent transparent transparent;
}
.tab-content .tab-item-content{
	background: #ffffff;
	border-radius: 10px;
	box-sizing: border-box;
	display: none;
}

.tab-content .tab-item-content.active{
	padding: 20px;
	height: auto;
	display: block;
}

li.tab .hidden-tab-name{
	font-size: 0;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}
li.tab.active-item .hidden-tab-name{
	display: inline;
	visibility: visible;
	opacity: 1;
	font-size: inherit;
}

/*ACCORDION*/
.accordion__item {
	margin-bottom: 0.5rem;
	border-radius: 0.25rem;
	box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 15%);
}

.accordion__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1rem;
	color: #fff;
	font-weight: 500;
	background-color: #0d6efd;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	cursor: pointer;
	transition: background-color 0.2s ease-out;
}

.accordion__header::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	content: "";
}

.accordion__item_show .accordion__header::after {
	transform: rotate(-180deg);
}

.accordion__header:hover {
	background-color: #0b5ed7;
}

.accordion__item_hidden .accordion__header {
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.accordion__body {
	padding: 0.75rem 1rem;
	overflow: hidden;
	background: #fff;
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.accordion__item:not(.accordion__item_show) .accordion__body {
	display: none;
}

/*Slider*/
* {box-sizing:border-box}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}