*{
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
}



.fa-play {
	padding: 15px 22px;
	color: white;
	font-weight: 500;
	font-size: 20px;
}

/*BANNER SECTION START*/
.banner {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	height: 100vh;
	background-color: #ffffff00;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 3vh;
	position:relative;
}

.banner__logo img {
	height: calc(70vh - 46px);
	opacity: 0;
	transition: opacity 3s ease-in-out;
}

.banner__bg {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: -1;
	object-fit:cover;
	opacity:0
}
.banner__bg--show {
	opacity:1;
	transition:.4s;
}
.banner__bg--animate {
	transform:scale(1.4);
	transition:transform 30s linear;
}

@media all and (max-width:460px) {
	.banner__logo img {
		height: calc(50vh - 46px);
		margin: 10vh 0;
	}
}

.banner__logo--show {
	opacity: 1!important;
}


.banner__date img {
	height: 14vh;
	display: block;
	margin-bottom: 1vh;
}


.banner__btns {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media all and (max-width:500px) {
	.morta .banner__btns {
		flex-direction: column;
	}
}


.banner__btn {
	min-width: 45px;
	text-align: center;
	padding: 0 5px;
}

.banner__socials__btn {
	background-color: #0000009c;
	border-radius: 5px;
	min-width: 45px;
	text-align: center;
	height: 46px;
	color: white;
	padding: 12px;
	margin:	0 0.3vw;
	border-radius: 5px;
	transition: .4s;
}


.banner__socials__btn:hover {
	transform: translateY(-5px);
}

.banner__socials__btn i{
	color: white;
}

.banner__socials__btn .fa-play{
	padding: 0;
	margin-right: 10px;
}

.banner__socials__btn a{
	display: block;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: -.05em;
}

.banner__btn--light{
	background-color: transparent;
}

.banner__btn a:hover {
	/* filter: brightness(1.2); */
	/* filter: contrast(0.7); */
	/* background-color: transparent; */
}

.popup:hover{
	transform: none!important;
}

.banner__btn a {
	text-transform: uppercase;
	text-decoration: none;
	/* color: white; */
	/* font-weight: 600; */
	letter-spacing: 1.2px;
	display: block;
	transition: .4s;
}

.banner__btn>a>img {
	height: 14vh;
	max-height: 45px;
	display: block;
	object-fit: contain;
	max-width: 100%;
}

.morta .banner__btn>a>img {
	max-height: 65px;
}


.popup {
	/* position: relative; */
}

.popup-box {
	visibility: hidden;
	background-color: #000;
	color: #000;
	text-align: center;
	border-radius: 20px;
	position: absolute;
	z-index: 1;
	bottom: 14%;
	display: flex;
	padding: 0 60px;
	left: 50%;
	transform: translateX(-50%);
	transition: .4s;
	opacity: 0;
	max-width:100vw;
	flex-wrap:wrap;
	justify-content: center;
}
.popup-box.show {
	display:flex;
	visibility: visible;
	opacity:1;
}

.popup-box a:hover {
	transform: translateY(-5px);
	transition: 5s;
}
.popup-box img {
	display:block
}

.close {
	color: #d9d9d9;
	float: right;
	font-size: 28px;
	font-weight: normal;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	top: 5px;
	position: absolute;
	right: 15px;
	padding: 0;
	margin: 0;
}
.fpg .second_img {
	display: none;
}
/*BANNER SECTION STOP*/

/*SIGNATURE SECTION START*/
.signature {
	/* height: 100vh; */
	/* display: flex; */
	align-items: flex-end;
	justify-content: center;
	margin: 0 auto;
	background-color: black;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 0;
	position: relative;
}
@media all and (max-width:768px) {
	.signature {
		background-image: none!important;
		display: block;
		background-color: black;
		height: auto;
	}
}

.signature__img {
	display: block;
	width: 100%;
}
.signature__img--rwd {
	display: none;
}

@media all and (max-width:768px) {
	.signature__img {
		display: none;
	}
	.signature__img--rwd {
		display: block;
	}
}

.signature__btns {
	display: flex;
	justify-content: center;
	padding-bottom: 3vw;
	width: 100%;
	bottom: 0;
	position: absolute;
}

.signature__btn {
	padding: 0 15px;
}

.signature__btn {
	/* transform: perspective(1000px) scale(1.03); */
	/* transition: transform .35s,-webkit-transform .35s; */
}

.signature__btn__img {
	width: auto;
	max-height: 70px;
	max-width: 100%;
	transition: transform .35s
}

.signature__btn__img:hover {
	transform: perspective(1000px) scale(1.03);
}


/*SIGNATURE SECTION STOP*/

/*CAROUSEL SECTION START*/
.carousel__item {
	height: 100vh;
	background-color: #ffffff00;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.carousel__item img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	transform-origin: right bottom;
}
.active .carousel__item img {
	transform:scale(1.2);
	transition: transform 7s linear;
}
.carousel__item__progressbar {
	position:absolute;
	z-index: 7;
	background: #ffffff;
	top:0;
	left:0;
	width: 0;
	height: 5px;
}
.active .carousel__item .carousel__item__progressbar {
	transition: 7s linear;
	width: 100%;
}

@media all and (max-width:1000px) {
	.carousel__item {
		height: 56.25vw;
		max-height: 100vh;
		align-items: center;
	}
}

.carousel__item__inner {
	position: absolute;top: 50%;
	left: 50%;text-align: center;
}

.item__inner--left {
	text-align: left;
	left: 10%;
	transform: translateY(-50%);
}

.item__inner--right {
	right: 10%;
	left: auto;
	text-align: right;
	transform: translateY(-50%);
}

@media all and (max-width:1000px) {
	.carousel__item__inner {
		margin: 0!important;
		padding: 0 15px;
	}
}

@media all and (max-width:800px) {
	.carousel__item__inner {
		margin: 0!important;
		text-align: center!important;
		top: 50%!important;
		right: auto;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.carousel__item__inner h2 {
	white-space: nowrap;
	font-size: 2.7vw;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0px;
	font-family: "Josefin Sans";
	visibility: inherit;
	transition: none 0s ease 0s;
	text-align: inherit;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
	min-height: 0px;
	min-width: 0px;
	max-height: none;
	max-width: none;
	opacity: 1;
	transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	transform-origin: 50% 50% 0px;
	text-shadow: 0px 0px 10px #000000;
}

@media all and (max-width:1000px) {
	.carousel__item__inner h2 {
		font-size: 4vw;
	}
}

@media all and (max-width:650px) {
	.carousel__item__inner h2 {
		font-size: 4.5vw;
	}
}

.carousel__item__inner p {
	color: white;
	text-shadow: 0px 0px 10px #000000;
	font-size: 1.3vw;
	font-family: "Playfair Display";
}

@media all and (max-width:1000px) {
	.carousel__item__inner p {
		font-size: 2.2vw;
	}
}

@media all and (max-width:650px) {
	.carousel__item__inner p {
		font-size: 3vw;
	}
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
	font-size: 100px!important;
	cursor: pointer;
	color: white!important;
	position: absolute;
	margin-top: 0;
	top: 50%;
	margin-top: -50px;
	padding: 0!important;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 100;
}

@media all and (max-width:650px) {
	.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
		font-size: 50px!important;
		margin-top: -25px;
	}
}

.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}

.owl-carousel .owl-nav button.owl-next {
	right: 0;
}
/*CAROUSEL SECTION STOP*/

/*GALLERY SECTION START*/
.gallery {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	margin-top: -10px;
	background-color: black;

}

.gallery__item {
	width: calc(100% / 3);
	max-height: 355px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	transition: opacity 1s,transform 1s,-webkit-transform 1s;
}


@media all and (max-width:650px) {
	.gallery__item {
		width: 100%;
	}
}

.gallery__item img {
	max-width: 100%;
	transition: opacity 2.5s,transform 2.5s,-webkit-transform 2.5s;
	height: auto;
}

.gallery__item img:hover {
	transform: scale(1.2);
}

.gallery__item  a {
	display: block;
	margin-bottom: -10px;
}

.gallery__item__yt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
	-webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
	transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
	border: none;
	background-color: #0000009c;
	border-radius: 7px;
	z-index: 10;
}

.gallery__item__yt:hover {
	background-color: red;
}

/*GALLERY SECTION STOP*/

/*FOOTER SECTION START*/

footer {
	background-color: #161616;
}

.footer {
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	padding: 20px;
	max-width: 1100px;
}

@media all and (max-width:800px) {
	.footer {
		flex-direction: column;
	}
}

.footer__content {
	text-align: center;
	margin: 0 auto
}


.footer__content h4 {
	color: white;
	text-transform: uppercase;
	font-family: "Josefin Sans", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0px;
	font-style: normal;
}


.footer__content__box a{
	display: block;
	color: #bfbfbf;
	font-size: 14px;
	line-height: 2;
	font-family: "Playfair Display";
	font-weight: 400;
	letter-spacing: 0px;
	font-style: normal;
	text-decoration: none;

}
.footer__content__box .footer__content__description {
	max-width: 250px;
	color: #bfbfbf;
	font-size: 14px;
	line-height: 2;
	font-family: "Playfair Display";
	font-weight: 400;
	letter-spacing: 0px;
	font-style: normal;
	text-decoration: none;
	text-align: center;

}
.footer__content__box {
	padding:15px;
}

.footer__content__box a:nth-of-type(3) {
	color: #d67515;
}

.footer__content__box a:hover {
	color: white;
	transition-property: color,background-color,border-color;
	transition-duration: .2s;
	transition-timing-function: linear;
}

.footer__content__box a:nth-of-type(3):hover {
	color: #d67515;
}

.footer-copyright {
	background-color: #202020;
	border-color: #4b4c4d;
	border-top-width: 0px;
	padding-top: 18px;
	padding-bottom: 16px;
	color: #cccccc;
	font-size: 12px;
	text-decoration: none;
	font-family: "Playfair Display";
	font-weight: 400;
}
.footer-copyright__item {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.footer-copyright__item a {
	color: #ffffff;
	text-decoration: none;
}

.morta .footer .footer__content:nth-child(2) .footer__content__box a {
	display: inline;
	padding: 0 0.5vw;
}
.morta .footer .footer__content__box a i {
	font-size: 24px;
	color: #fff;
}

.morta .footer .footer__content__box a:hover {
	color: #24a493;
}
.morta .footer .footer__content__box a i:hover {
	color: #24a493;
}

.morta .footer .footer__content:nth-child(4) .footer__content__box a {
	color: #999999;
}
.morta .footer .footer__content:nth-child(4) .footer__content__box a:hover {
	color: #24a493;
}
.morta .footer .footer__content:nth-child(4) .footer__content__box a i {
	font-size: 16px;
	color: #999999;
	margin-right: 0.7vw;
}
.morta .footer .footer__content:nth-child(4) .footer__content__box a i:hover {
	color: #999999;
}
.morta .footer__content__box a:nth-of-type(3) {
	color: #bfbfbf;
}
/*FOOTER SECTION STOP*/


/*SUBPAGE START*/
.header {
	width: 100%;
	background-image: url(/wp-content/uploads/2019/10/post_header_background.jpg);
	height: 15vh;
	background-repeat: no-repeat;
}
.subpage {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 25px;
	margin-bottom: 5vh;
}

.subpage__title {
	font-family: "Antic Slab";
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0px;
	font-size: 34px;
	font-style: normal;
	margin-top: 0.67em;
	margin-bottom: 0.67em;
	color: #333333;

}

.subpage__content p {
	color: #222222;
	font-family: "Arial";
	font-weight: 400;
	letter-spacing: 0px;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 2;
}

.subpage__content .wp-block-image {
	margin: 20px 0;
}

.subpage__content li {
	letter-spacing: 0px;
	font-size: 14px;
	line-height: 2;
}

.subpage__content li a {
	color: #222222;
	font-weight: 700;
	font-style: italic;
	text-decoration: none;
	transition-property: color,background-color,border-color;
	transition-duration: .2s;
	transition-timing-function: linear;
}

.subpage__content li a:hover {
	color: #686868;
}

.subpage__content .wp-block-embed-youtube {
	margin-left: 0;
	width: 100%;
}
/*SUBPAGE STOP*/


/*NEWS START*/
.news {
	margin: 0 auto;
	max-width: 500px;
	margin: 50px auto;
}
.news article {
	display: flex;
	flex-direction: row;
	margin-bottom: 50px;

}

.article__box {
	margin-right: 15px;
	width: 80px;
	text-align: center;
}

.article__box .article__date {
	background-color: #686868;
	color: white;
	padding: 8px 0 5px;
}

@media all and (max-width:600px) {
	.article__box {
		min-width: 60px;
	}

	.article__box .article__date {
		background-color: #686868;
		color: white;
		padding: 5px 0 2px;
	}
}
.article__box .article__date-day {
	display: block;
	line-height: 29px;
	font-size: 29px;
	font-weight: 700;
}

.article__box .article__date-month {
	font-size: 14px;
}
.article__box .article__date-icon {
	background-color: #eef0f2;
}
.article__box .article__date-icon i {
	font-size: 22px;
	color: #686868;
	padding: 20px 0;
}
.article__content {width: calc(100% - 95px);}

.article__content h2 {
	margin-top: -5px;
	line-height: 1;
	margin-bottom: 5px;
}

.article__content h2 a {
	color: #333333;
	font-size: 22px!important;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition-property: color,background-color,border-color;
	transition-duration: .2s;
	transition-timing-function: linear;

}

.article__content h2 a:hover {
	color: #686868;
}

.article__content p {
	color: #222222;
	font-family: "Arial";
	font-weight: 400;
	letter-spacing: 0px;
	font-size: 14px;
}
/*NEWS STOP*/


/*DOWN SECTION START*/
.down-section {
	background-color: #000;
}

.down-section__content {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 2vw;
}

.down-section__content h2 {
	color: white;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 500;
	padding: 35px 0;
	margin: 0;
	font-family: "Ubuntu";
}

.down-section__text	{
	display: flex;
	flex-direction: row;
	padding-bottom: 35px;
}

@media all and (max-width:750px) {
	.down-section__text	{
		flex-direction: column;
	}

}

.down-section__text img {
	margin-right: 30px;
}

.down-section__text p {
	color: #fff;
	font-size: 17px;
	line-height: 1.45em;
	font-family: "Ubuntu";
	max-width: 570px;
	margin: 0;

}


/*DOWN SECTION STOP*/
.morta .banner {
	justify-content: flex-end;
	padding-bottom: 10vh;
	border-bottom: 15px solid #24a493;
}

.morta .banner__socials__btn {
	display: none;
}

.morta .banner__date img {
	height: 9.5vh;
	width: auto;
}

.morta .banner__date img:last-of-type {
	height: auto;
	max-width: 100%;
	margin-top: 3vh;
}

.morta .signature {
	border-bottom: 15px solid #24a493;
}

@media all and (max-width:760px) {
	.morta .signature {
		height: auto;
	}
}

.morta .signature__btn a:hover {
	filter: brightness(1.2);
	background-color: transparent;
}


/*ABOUT SECTION START*/

.about {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: 15px solid #24a493;
}

.about__content {
	width: 50%;
}

.about__content h2 {
	letter-spacing: 10px;
	text-transform: uppercase;
	font-size: 44px;
	color: #fff;
	text-align: center;
	font-style: inherit;
	font-weight: 700;
	padding-top: 0px;
	padding-bottom: 20px;
	text-shadow: 0px 0px 10px #15ffc5, 0px 0px 40px rgba(0,0,0,1), 0px 0px 80px rgba(0,0,0,1);
}

.about__content__text {
	display: flex;
}

@media all and (max-width:850px) {
	.about__content {
		width: 100%;
	}
	.about__content__text {
		display: block;
	}
}
@media all and (max-width:1000px) {
	.about__content {
		width: 95%;
	}
}

.about__content__text p {
	font-size: 17px;
	color: #ffffff;
	line-height: 1.45em;
	text-align: justify;
	padding: 0 10px;
}

.about__content__text a {
	text-decoration: none;
	color: #cecece;
}

.about__content__text a:hover {
	color: #fff;
}

/*ABOUT SECTION STOP*/


/*FEATURES SECTION START*/

.features {
	min-height: 100vh;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	margin:0 auto;
	text-align: center;
	padding: 0 4vw 7vh;
}
.features__wrapper {
	max-width: 1260px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	margin:0 auto;
}

.feature {
	width: 33.33%;
	padding: 0 1vw;
}

@media all and (max-width:1140px) {
	.feature {
		width: 50%;
	}
}
@media all and (max-width:700px) {
	.feature {
		width: 100%;
	}
}



.feature h3 {
	letter-spacing: 10px;
	text-transform: uppercase;
	font-size: 25px;
	color: #fff;
	text-align: center;
	font-style: inherit;
	font-weight: 700;
	text-shadow: 0px 0px 10px #15ffc5, 0px 0px 40px rgba(0,0,0,1), 0px 0px 80px rgba(0,0,0,1);
}

.feature p {
	font-size: 17px;
	color: #ffffff;
	line-height: 1.45em;
	text-align: center;
	margin: 0;
}


.feature .movie {
	display: none;
}

.feature .image {
	display: block;
	margin: 0 auto;
}
.feature:hover .image {
	display: none;
}

.feature:hover .movie {
	display: block;
	margin: 0 auto;
}
/*FEATURES SECTION STOP*/

/*BUTTONS SECTION START*/
.buttons {
	padding: 6vh 0;
	margin: 0 auto;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.buttons__wrapper img {
	filter: brightness(0.8);
	margin: 0 1vw;
	max-width: 90vw;
}

.buttons__wrapper img:hover {
	filter: brightness(1.3);
}

/*BUTTONS SECTION STOP*/

/*NAV START*/
nav {
	text-align: center;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: height .25s ease-in-out;
}



nav ul {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav ul li {
	display: inline;
	margin: 0 0.6vw;
}

@media all and (max-width:780px) {
	nav ul li {
		display: none;
	}

	nav ul li:nth-of-type(3) {
		display: block;
	}
}


nav ul li a {
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	min-width: 120px;

}

nav ul li a:active {
	color: #24a493;
}

nav ul li a:hoverc {
	color: #24a493;
}

.dark-nav {
	background-color: #00000091;
}

.big-logo {
	display: block;
}
.dark-nav .big-logo {
	display: none;
}

.small-logo {
	display: none;
}

.dark-nav .small-logo {
	display: block;
}
/*NAV STOP*/


/*FAQ SECTION START*/

.faq {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 10vh 10vw;
	background-color: #161616;
}

.faq h2 {
	letter-spacing: 10px;
	text-transform: initial;
	font-size: 26px;
	color: #fff;
	text-align: left;
	font-style: inherit;
	font-weight: 600;
	text-shadow: 0px 0px 10px #15ffc5, 0px 0px 40px rgba(0,0,0,1), 0px 0px 80px rgba(0,0,0,1);
	line-height: 75px;
	text-align: center;
}

.faq__tabs {
	background-color: #fff;
	max-width: 1200px;
	margin: 0 auto;
}

.faq__tab {
	border: 1px solid #ececec;
	border-bottom: 0;
}
.faq__tab__title {
	padding: 1.1vh 1.1vw;
	display: flex;
	justify-content: space-between;

}
.faq__tab__title:hover {
	background-color: #f8f8f8;
}

.faq__tab__title h3 {
	margin: 0;
	color: #222;
	font-size: 13px;
	font-weight: 600;
	line-height: 22px;
	cursor: pointer;
}

.faq__tab__description {
	padding: 1.1vh 1.1vw;
	font-size: 17px;
	line-height: 1.45em;
	border-top: 1px solid #ececec;
}

.hide {
	display: none;
}

.show {
	display: block;
}

/*FAQ SECTION STOP*/

.gallery__item-ovarlay {
	display: none;
}

.morta .gallery__item {
	transition: opacity .25s ease-in-out;
}
.morta .gallery__item-ovarlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: inline;
}
.morta .gallery__item-ovarlay:hover {
	background-color: #005454d1;

}

.morta .fa-plus-circle::before {
	content: '\f055';
	color: white;
	font-size: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: 50%;
	transform: translate(-50%, 0%);
	opacity: 0.4;

}

.btn {
	text-decoration: none;
	color: #fff;
	border: 2px solid #fff;
	padding: 10px 50px;
	background: rgba(0,0,0,.3);
	display: block;
	transition:.4s;
	white-space: nowrap;
}

.btn--txt {
}

.btn:hover {
	background: rgba(255, 255, 255, .3);
}

.btn--faux-opal {
	border-color:#9ec1c7;
	color:#9ec1c7;
	background: rgb(0, 0, 0,.3);
}

.btn--faux-opal:hover {
	background: rgb(158, 193, 199, .3);
}
.btn--tangerine {
	border-color:#EE8C04;
	color:#EE8C04;
	background: rgb(0, 0, 0,.3);
}

.btn--tangerine:hover {
	background: #EE8C04;
	background: rgba(238, 140, 4, .3);
}

@media (max-width:800px){
	.btn {
		padding:10px 20px;
		font-size:16px;
	}
}

@media (max-width:600px){
	.btn {
		padding:5px 10px;
		font-size:12px;
	}
	.signature__btn {
		padding:0 2px
	}
}
#cookie-law-info-bar a{
    color: #888;
}


