*::-webkit-input-placeholder {
	color: #F5F7FD;
	opacity: 1;
}

*:-moz-placeholder {
	color: #F5F7FD;
	opacity: 1;
}

*::-moz-placeholder {
	color: #F5F7FD;
	opacity: 1;
}

*:-ms-input-placeholder {
	color: #F5F7FD;
	opacity: 1;
}


body input:focus:required:invalid,
body textarea:focus:required:invalid {}

body input:required:valid,
body textarea:required:valid {}

body {
	font-family: "Judson", serif;
	font-style: normal;
	font-size: 16px;
	line-height: 160%;
	color: #3E4550;
	overflow-x: hidden;
	margin: 0;
	background-color: #fff;
}

button {
	cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button,
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}

a,
button,
input,
img {
	transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

.wrapper {
	overflow: hidden;
}

a {
	text-decoration: none;
	outline: none;
	color: unset;
}

* {
	outline: none !important;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style-type: none;
	outline: none;
}

img {
	outline: none;
	display: block;
}

p {
	padding: 0;
	margin: 0;
}

form {
	margin: 0;
}

/*--------------------------------------------------------------
  0. General
----------------------------------------------------------------*/
.line-decor {
	width: 230px;
	height: 1px;
	background-color: #000000;
	margin: 15px auto;
}

.section-title {
	margin-bottom: 55px;
}

.section-title h3 {
	font-size: 25px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.2;
}

.section-title p {
	font-size: 21px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.2;
}

.button {
	display: flex;
	align-items: center;
	border: none;
	outline: none;
	background: #fff;
	color: #000000;
	padding: 10px 60px;
	font-size: 16px;
}

.button:hover {
	opacity: 0.9;
}

.button:active {
	transform: scale(.97)
}

.button span {
	position: relative;
	width: 12px;
	height: 12px;
	background-image: url('../images/svg/arrow-right-top.svg');
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-position: center;
	left: 10px;
	pointer-events: none;
	transition: 0.3s ease
}

.button:hover span {
	left: 15px;
}

/*--------------------------------------------------------------
  1. Header
----------------------------------------------------------------*/

header {}

header .main__header {
	position: absolute !important;
	width: 100%;
	top: 0;
	z-index: 99;
	background-color: transparent;
	transition: background-color 0.3s ease, top 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
	transform: translateY(0);
}

header .main__header.scrolled {
	position: fixed !important;
	top: 0;
	/* background-color: #ffffff; */
	    background: rgb(97 168 220 / 50%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
	transform: translateY(0);
}

/* header .main__header.scrolled.menu__active {
	           background-color: #fff;
} */

header .main__header.scrolled .main__header-wrap .header__logo .logo:first-child {
	display: none;
}

header .main__header.scrolled .main__header-wrap .header__logo .logo:last-child {
	display: block;
}

header .main__header.scrolled .main__header-wrap .header__menu .nav .menu li a {
	color: #ffffff;
}

.main__header.scrolled .main__header-wrap .header__menu .nav .menu li a:focus,
.main__header.scrolled .main__header-wrap .header__menu .nav .menu li a:hover {
	color: #ffffff;
}

.main__header.scrolled .main__header-wrap .header__menu .nav .menu li a:after {
	background-color: #ffffff;
}

header .main__header .main__header-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: distribute;
	justify-content: space-between;
	padding: 20px 0;
}

header .main__header.scrolled .main__header-wrap {
    padding: 8px 0;
	align-items: center
}

header .main__header .main__header-wrap .header__logo {
	margin-left: 16px;
}

header .main__header .main__header-wrap .header__logo a {}

header .main__header .main__header-wrap .header__logo .logo {
	display: block;
	height: 80px;
}

header .main__header .main__header-wrap .header__logo .logo:last-child {
	display: none;
	height: 80px;
}

header .main__header .main__header-wrap .header__burger {
	background: rgb(255 255 255 / 55%);
	mix-blend-mode: luminosity;
	backdrop-filter: blur(15px);
	width: 55px;
	height: 55px;
	    margin-right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	order: 1;
	z-index: 99;
}

header .main__header .main__header-wrap .header__burger .menu__icon {
	width: 32px;
	height: 32px;
	padding: 4px;
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	border: none;
	font-family: inherit;
}


header .main__header .main__header-wrap .header__burger .menu__icon span {
	display: block;
	width: 100%;
	height: 0.125rem;
	border-radius: 2px;
	background-color: rgb(255 255 255);
	box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
	transition: background-color .4s;
	position: relative;
}

header .main__header.scrolled .main__header-wrap .header__burger .menu__icon span {
	background-color: rgb(60, 60, 60);
}

header .main__header .main__header-wrap .header__burger .menu__icon span+span {
	margin-top: .375rem;
}

header .main__header .main__header-wrap .header__burger .menu__icon span:nth-child(1) {
	animation: ease .8s menu-icon-top-2 forwards;
}

header .main__header .main__header-wrap .header__burger .menu__icon span:nth-child(2) {
	animation: ease .8s menu-icon-scaled-2 forwards;
}

header .main__header .main__header-wrap .header__burger .menu__icon span:nth-child(3) {
	animation: ease .8s menu-icon-bottom-2 forwards;
}

header .main__header .main__header-wrap .header__burger .menu__icon.active span:nth-child(1) {
	animation: ease .8s menu-icon-top forwards;
}

header .main__header .main__header-wrap .header__burger .menu__icon.active span:nth-child(2) {
	animation: ease .8s menu-icon-scaled forwards;
}

header .main__header .main__header-wrap .header__burger .menu__icon.active span:nth-child(3) {
	animation: ease .8s menu-icon-bottom forwards;
}

@keyframes menu-icon-top {
	0% {
		top: 0;
		transform: rotate(0);
	}

	50% {
		top: .5rem;
		transform: rotate(0);
	}

	100% {
		top: .5rem;
		transform: rotate(45deg);
	}
}

@keyframes menu-icon-top-2 {
	0% {
		top: .5rem;
		transform: rotate(45deg);
	}

	50% {
		top: .5rem;
		transform: rotate(0);
	}

	100% {
		top: 0;
		transform: rotate(0);
	}
}

@keyframes menu-icon-bottom {
	0% {
		bottom: 0;
		transform: rotate(0);
	}

	50% {
		bottom: .5rem;
		transform: rotate(0);
	}

	100% {
		bottom: .5rem;
		transform: rotate(135deg);
	}
}

@keyframes menu-icon-bottom-2 {
	0% {
		bottom: .5rem;
		transform: rotate(135deg);
	}

	50% {
		bottom: .5rem;
		transform: rotate(0);
	}

	100% {
		bottom: 0;
		transform: rotate(0);
	}
}

@keyframes menu-icon-scaled {
	50% {
		transform: scale(0);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes menu-icon-scaled-2 {
	0% {
		transform: scale(0);
	}

	50% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

header .main__header .main__header-wrap .header__menu {
	margin-right: 65px;
}

header .main__header .main__header-wrap .header__menu .nav {}

header .main__header .main__header-wrap .header__menu .nav .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 26px;
}

header .main__header .main__header-wrap .header__menu .nav .menu li {
	padding: 10px 15px;
	    padding-top: 0px;
}

header .main__header .main__header-wrap .header__menu .nav .menu li a {
	position: relative;
	font-size: 16px;
	letter-spacing: 1px;
	color: #fff;
	font-weight: 600;
	border: none;
	background: none;
	text-transform: uppercase;
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-duration: 400ms;
	transition-property: color;
}

.main__header .main__header-wrap .header__menu .nav .menu li a:focus,
.main__header .main__header-wrap .header__menu .nav .menu li a:hover {
	color: #fff;
}

.main__header .main__header-wrap .header__menu .nav .menu li a:focus:after,
.main__header .main__header-wrap .header__menu .nav .menu li a:hover:after {
	width: 100%;
	left: 0%;
}

.main__header .main__header-wrap .header__menu .nav .menu li a:after {
	content: "";
	pointer-events: none;
	bottom: -2px;
	left: 50%;
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: #fff;
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-duration: 400ms;
	transition-property: width, left;
}


/*--------------------------------------------------------------
  2. Start Hero
----------------------------------------------------------------*/

.hero {}

.hero .hero__wrap {
	position: relative;
}

.hero .hero__wrap .hero__item {}

.hero .hero__wrap .hero__item .hero-bg {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.hero .hero__wrap .hero__item .hero-bg img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	z-index: -1;
}

.hero .hero__wrap .hero__item .hero-bg .container {}

.hero .hero__wrap .hero__item .hero-bg .container .hero__info {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	margin-top: 105px;
	max-width: 695px;
	margin-right: 85px;
}

.hero .hero__wrap .hero__item .hero-bg .container .hero__info .hero__text {
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 28px;
	color: #fff;
}

.hero .hero__wrap .hero__item .hero-bg .container .hero__info .hero__subtext {
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 20px;
	color: #fff;
}

.hero .hero__wrap .hero__item .hero-bg .container .hero__info .line-decor {
    background-color: #ffffff;
margin: 15px auto 5px 0px;
    width: 345px;
}

/*--------------------------------------------------------------
  3. Greetings Text
----------------------------------------------------------------*/

.creetings {
	margin-top: 50px;
	margin-bottom: 100px;
}

.creetings h2 {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.2;
}


/*--------------------------------------------------------------
  3. About
----------------------------------------------------------------*/
.about {}

.about .container-fluid {}

.about .about-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about .about-wrap .about-picture {
	width: 55%;
}

.about .about-wrap .about-picture img {
	width: 100%;
	max-height: 550px;
	object-fit: cover;
}

.about .about-wrap .about-text {
	width: 42%;
}

.about .about-wrap .about-text h3 {
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	text-align: center;
	margin-bottom: 15px;
}

.about .about-wrap .about-text>p {
	margin-bottom: 15px;
}

.about .about-wrap .about-text p {
	font-size: 20px;
	line-height: 1.2;
	text-align: justify;
	color: #535353;
}

/*--------------------------------------------------------------
  5. services
----------------------------------------------------------------*/

.services {
	position: relative;
	margin-top: 100px;
	margin-bottom: 100px;
}

.services>.container {}

.services .services-wrap {
	position: relative;
   display: flex;
    gap: 65px;
	    row-gap: 45px;
    justify-content: center;
    flex-wrap: wrap;
}

.services .services-wrap .column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.services .services-wrap::before {
	content: "";
	position: absolute;
	top: 60%;
	left: 50%;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 845px;
	background-image: url('../images/svg/decor-cloud.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
	z-index: -1;
	pointer-events: none;
}

.services .services-wrap .services-item {
	background: #fff;
	padding: 30px;
	padding-left: 35px;
	    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.services .services-wrap .services-item:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.services .services-wrap .services-item .services-content {
	position: relative;
	padding-left: 20px;
}

.services .services-wrap .services-item .services-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: calc(100% + 20px);
	background-color: #000;
}



.services .services-wrap .services-item .services-content h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	margin-bottom: 10px;
}

.services .services-wrap .services-item .services-content p {
	font-size: 21px;
	line-height: 1.2;
	text-align: left;
}

/*--------------------------------------------------------------
  6. Presentation
----------------------------------------------------------------*/

.presentation {}

.presentation .container {}

.presentation .container .presentation-video {}

.presentation .container .presentation-video video {}

.presentation .container .presentation-video .plyr__control--overlaid {
	padding: 30px;
	background: #ffffff7a;
}

.presentation .container .presentation-video .plyr--full-ui input[type=range] {
	color: #ffffff7a;
}

.presentation .container .presentation-video .plyr__control:hover,
.presentation .container .presentation-video .plyr__control[aria-expanded=true] {
	background: #ffffff7a;
}

.presentation .container .presentation-video .plyr__control>span {
	color: #0000007a;
}

.presentation .container .presentation-video .plyr__control:after {
	border-left-color: #0000007a;
}

.presentation .container .presentation-video .plyr__control--back:hover:after {
	border-right-color: #0000007a;
}

.presentation .container .presentation-video .plyr__control[role=menuitemradio][aria-checked=true]:before {
	background: #0000007a;
}

/*--------------------------------------------------------------
  7. Love Miami
----------------------------------------------------------------*/

.lovemiami {
	position: relative;
	margin-top: 100px;
	margin-bottom: 100px;
}

.lovemiami>.container {}

.lovemiami .lovemiami-wrap {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	column-gap: 75px;
}

.lovemiami .lovemiami-wrap::before {
	content: "";
	position: absolute;
	top: 60%;
	left: 50%;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 845px;
	background-image: url('../images/svg/decor-cloud.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
	z-index: -1;
	pointer-events: none;
}

.lovemiami .lovemiami-wrap .lovemiami-item {
	background: #fff;
	padding: 15px;
	padding-left: 35px;
		    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.lovemiami .lovemiami-wrap .lovemiami-item:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.lovemiami .lovemiami-wrap .lovemiami-item .lovemiami-content {
	position: relative;
	padding-left: 20px;
}

.lovemiami .lovemiami-wrap .lovemiami-item .lovemiami-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 14px;
	height: 14px;
	background-image: url('../images/svg/arrow-right-round.svg');
	background-size: contain;
	background-repeat: no-repeat;
}



.lovemiami .lovemiami-wrap .lovemiami-item .lovemiami-content h4 {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	margin-bottom: 10px;
}

.lovemiami .lovemiami-wrap .lovemiami-item .lovemiami-content p {
	font-size: 18px;
	line-height: 1.2;
	text-align: left;
}

/*--------------------------------------------------------------
  8. Contact Form
----------------------------------------------------------------*/

.contact {
	margin-top: 100px;
	margin-bottom: 100px;
}

.contact .container {}

.contact .contact-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact .contact-text {
	width: 40%;
}

.contact .contact-text h5 {
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	text-transform: uppercase;
}

.contact .contact-text p {
	font-size: 20px;
	line-height: 1.2;
	text-align: justify;
}

.contact .contact-text .line-decor {
	margin: 15px auto 15px 0px;
}

.contact .contact-form {
	width: 40%;
}

.contact .contact-form form {
	padding: 40px;
	background-image: url('../images/svg/form-bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


.contact .contact-form .form-wrap {}

.contact .contact-form .form-wrap .form-item {
	position: relative;
	margin-bottom: 45px;
}

.contact .contact-form .form-wrap .form-item:last-child {
	margin-bottom: 0px;
}

.contact .contact-form .form-wrap .form-item input,
.contact .contact-form .form-wrap .form-item textarea {
	width: 100%;
	color: #fff;
background: rgb(97 168 220 / 50%);
	padding: 15px;
	font-size: 16px;
	border-radius: 0px;
	border: none;
	outline: none;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.contact .contact-form .form-wrap .form-item input:focus::placeholder,
.contact .contact-form .form-wrap .form-item textarea:focus::placeholder {
	opacity: 0;
	transition: opacity .3s;
}

.contact .contact-form .form-wrap .form-item textarea {
	height: 115px;
}

.contact .contact-form .form-wrap .form-item .button {
    margin: auto 0 auto auto;
}


/*--------------------------------------------------------------
  9. Footer
----------------------------------------------------------------*/

.footer {
	    background: rgb(97 168 220 / 50%);
}


@media (min-width: 1600px) {
	.footer .container {
		max-width: 1215px;
	}
}

.footer .footer-wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer .footer-wrap .footer-logo__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 65px;
	margin-right: 45px;
	    align-items: center;
}

.footer .footer-wrap .footer-logo__wrap .footer-logo__item {
	display: flex;
	flex-direction: column;
}

.footer .footer-wrap .footer-logo__wrap .footer-logo__item a {}

.footer .footer-wrap .footer-logo__wrap .footer-logo__item a img {
	max-width: 95px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.footer .footer-wrap .footer-logo__wrap .footer-logo__item:first-child a img {
max-width: 95px;
}

.footer .footer-wrap .footer-logo__wrap .footer-logo__item a img:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.footer .footer-wrap .footer-logo__wrap .footer-logo__item p {
	margin-top: 5px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.footer .footer-wrap .footer-info__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 95px;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item {}

.footer .footer-wrap .footer-info__wrap .footer-info__item .footer-info__title {
	margin-bottom: 10px;
	font-size: 18px;
	    color: #fff;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	text-transform: uppercase;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item ul {}

.footer .footer-wrap .footer-info__wrap .footer-info__item ul li {
	padding: 5px 0;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item ul li a {
	position: relative;
	font-size: 16px;
	color: #ffffff;
	line-height: 1.2;
	text-align: left;
	border: none;
	background: none;
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-duration: 400ms;
	transition-property: color;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item ul li a:focus,
.footer .footer-wrap .footer-info__wrap .footer-info__item ul li a:hover {
	color: #ffffff;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item ul li a:focus:after,
.footer .footer-wrap .footer-info__wrap .footer-info__item ul li a:hover:after {
	width: 100%;
	left: 0%;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item ul li a:after {
	content: "";
	pointer-events: none;
	bottom: -2px;
	left: 50%;
	position: absolute;
	width: 0%;
	height: 1px;
	background-color: #ffffff;
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-duration: 400ms;
	transition-property: width, left;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item .footer-info__socials {
	display: flex;
	justify-content: center;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item .footer-info__socials .footer-info__social {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item .footer-info__socials .footer-info__social a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	border: 1px solid #ffffff;
	filter: brightness(10);
	transition: 0.3s ease-in;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item .footer-info__socials .footer-info__social a:hover {
	background-color: #ffffff;
	border: 1px solid #ffffff;
}

.footer .footer-wrap .footer-info__wrap .footer-info__item .footer-info__socials .footer-info__social a:hover img {
	filter: brightness(0);
}

.footer .copyright {
	margin: 0 55px;
	border-top: 1px solid #ffffff;
}

.footer .copyright .container {}

.footer .copyright .container .copyright-text {
	font-size: 14px;
	line-height: 1.2;
	padding: 15px 0;
	color: #ffffff;
}

/*--------------------------------------------------------------
  10. Thanks
----------------------------------------------------------------*/
.page-template-thanks header .main__header .main__header-wrap {
padding: 8px 0;
    align-items: center;
}

.page-template-thanks header .main__header {
    position: fixed !important;
    top: 0;
    background: rgb(97 168 220 / 50%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateY(0);
}

.thanks {
	    padding-top: 250px;
    padding-bottom: 250px;
}


/*--------------------------------------------------------------
  11. Page 404
----------------------------------------------------------------*/
.error404 header .main__header .main__header-wrap {
padding: 8px 0;
    align-items: center;
}

.error404 header .main__header {
    position: fixed !important;
    top: 0;
    background: rgb(97 168 220 / 50%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateY(0);
}

.c-404 {
	    padding-top: 250px;
    padding-bottom: 250px;
}

.c-404__header {
	text-align: center;
}


