@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
    color: #2a2a2a;
	background-color: #fff;
	line-height: 20px;
	font-family: 'Poppins', sans-serif;
}

a { color: #fefefe; }
a:hover { color: #fff; }

a:active, a:focus {
	outline: 0 !important;
	border: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

p, ul {
	margin: 0;
}

ul { list-style: none; }

/* HEADER */

header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 10005;
	transition: .5s;
	background-color: hsla(0, 0%, 100%, .93);
	padding-top: 60px;
	padding-bottom: 60px;
	transition: .5s;
}

header.fixed {
	padding-top: 20px;
	padding-bottom: 20px;
}

header .header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

header .logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 150px;
}

header .logo img {
	width: 100%;
}

header .menu ul {
	display: flex;
	align-items: center;
}

header .menu ul li {
	margin-left: 28px;
}

header .menu ul li:first-child {
	margin-left: 0px;
}

header .menu ul li a {
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 12px;
	line-height: 12px;
	transition: .2s;
}

header .menu ul li a:hover {
	color: #666;
}

header .menu ul li a i {
	position: relative;
	top: 5px;
	font-size: 18px;
	line-height: 18px;
}

/* FRONTPAGE */

.frontpage {
	position: relative;
	padding: 180px 50px 0;
	max-width: 1920px;
	margin: 0 auto;
}

.frontpage:before {
	position: absolute;
	content: '';
	left: 20px;
	right: 20px;
	top: 0;
	bottom: 200px;
	background-color: #e8f1f1;
}

.frontpage .frontpage-movies {
	position: relative;
}

.frontpage .frontpage-movies .item {
	position: relative;
	text-align: center;
}

.frontpage .frontpage-movies .item .year {
	position: absolute;
	left: 30px;
	top: 30px;
	background-color: #fc427b;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
	padding: 2px 15px;
	z-index: 3;
}

.frontpage .frontpage-movies .item .movie-item {
	background-color: #fff;
	padding: 20px;
	position: relative;
}

.frontpage .frontpage-movies .movie-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
	box-shadow: 0 15px 18px -14px #212121;
}

.frontpage .frontpage-movies .movie-item:hover .movie-image img {
	box-shadow: 0 19px 22px -14px #212121;
}

.frontpage .frontpage-movies .movie-details {
	padding: 20px 5px 0 5px;
}

.frontpage .frontpage-movies .movie-details h3 {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin-bottom: 4px;
}

.frontpage .frontpage-movies .movie-details a {
	font-size: 14px;
	font-weight: 600;
	color: #b20f0f;
}

.frontpage .frontpage-movies .movie-item > a {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 2;
}

.frontpage .frontpage-movies .owl-nav {
	position: absolute;
	display: flex;
	justify-content: space-between;
	left: 18.5%;
	right: 18.5%;
	top: 35%;
}

.frontpage .frontpage-movies .owl-nav button {
	font-weight: 700;
	font-size: 50px;
}


.movie-single-header {
	position: relative;
	padding: 180px 0 50px 0;
}

.movie-single-header:before {
	position: absolute;
	content: '';
	left: 20px;
	right: 20px;
	top: 0;
	bottom: 0px;
	background-color: #e8f1f1;
}

.movie-single-header .container {
	position: relative;
	z-index: 2;
}

.movie-single-header h1 {
	font-size: 32px;
    font-weight: 600;
	color: #000;
	display: flex;
	align-items: center;
}

.movie-single-header .year {
	display: block;
	margin-left: 10px;
	background-color: #fc427b;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
	padding: 2px 8px;
}

section {
	max-width: 1920px;
	margin: 0 auto;	
}

.section-padding {
	padding: 70px 0;
}

.search {
	position: relative;
	z-index: 2;
	padding: 10px 0;
}

.search .search-input {
	display: flex;
	align-items: center;
	position: relative;
}

.search h3 {
	font-size: 18px;
    font-weight: 600;
    color: #000;
	margin-bottom: 15px;
}

.search input {
	border: 0;
	background-color: #fff;
	display: block;
	width: 100%;
	height: 55px;
	padding: 15px;
}

.search .search-input button {
	height: 55px;
	border: 0;
	background-color: #fc427b;
	font-weight: 600;
	color: #fff;
	padding: 0 20px;
}

.bg-1 {
	position: relative;
	z-index: 1;
}

.bg-1:before {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 0;
	bottom: 0;
	content: '';
	background-color: #f5f5f5;
}

.section-title {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
}

.section-title h2 {
	font-size: 38px;
	line-height: 38px;
	font-weight: 400;
	border-left: 4px solid #b20f0f;
	padding-left: 20px;
}

.section-title h2 span {
	display: block;
	font-weight: 600;
}

.section-title .nav-pills {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.section-title .nav-pills li {
	margin-left: 30px;
}

.section-title .nav-pills li:first-child {
	margin-left: 0px;
}

.section-title .nav-pills button {
	font-size: 16px;
    font-weight: 500;
	background-color: transparent;
	border: 0;
	color: #8f8f8f;
	position: relative;
}

.section-title .nav-pills button.active {
	color: #000;
}

.section-title .nav-pills button.active:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	content: '';
	border-bottom: 2px solid #b20f0f;
}

.movie-single {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.movie-single .player {
	display: flex;
	flex-wrap: wrap;
}

.movie-single .movie-left {
	flex: 1;
}

.movie-single .movie-details {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	background-color: #e8f1f1;
	padding: 30px;
}

.movie-single .movie-details .item-image {
	height: 260px;
}

.movie-single .movie-details .item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.movie-single .movie-details .item-content {
	flex: 1;
	margin-left: 30px;
}

.movie-single .movie-details .movie-cats {
	margin: 10px 0;
}

.movie-single .movie-details .movie-cats a {
	font-size: 14px;
    font-weight: 600;
    color: #b20f0f;
}

.movie-single .movie-details .details li {
	padding: 5px 0;
	font-size: 14px;
    font-weight: 600;
    color: #000;
}

.movie-single .movie-right {
	width: 35%;
	background-color: #f8f8f8;
	padding: 30px;
	margin-left: 30px;
}

.movie-single .player {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 450px;
	background-color: #000;
	border-radius: 4px;
}

.movie-single .player .play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	background-color: rgba(255,255,255,.2);
	color: #fff;
	font-weight: 600;
	border-radius: 100%;
	transition: .2s;
}

.movie-single .player .play:hover {
	background-color: #b20f0f;
}

.movie-single .movie-right img {
	width: 100%;
}

.movies-list .item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.05);
	transition: .2s ease-in;
}

.movies-list .item .ranking {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
	width: 30px;
	background-color: #e8f1f1;
	margin: 0 5px;
	color: #999;
	border-radius: 4px;
	font-weight: 600;
}

.movies-list .item .rate {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
	margin: 0 15px 0 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fc427b;
}

.movies-list .item:first-child {
	padding-top: 0;
}

.movies-list .item:last-child {
	padding-bottom: 0px;
	border-bottom: 0;
}

.movies-list .item figure {
	width: 50px;
	height: 50px;
	border-radius: 4px;
	margin: 0;
}

.movies-list .item figure img {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	object-fit: cover;
}

.movies-list .item a.title {
	flex: 1;
	display: block;
	transition: .2s;
	color: #000;
	font-weight: 500;
}

.movies-list .item:hover {
	transform: scale(1.05);
}

.movies-list .item a:hover {
	color: #b20f0f;
}

.panel .panel-header {
	margin-bottom: 30px;
}

.panel .panel-header h3 {
	font-size: 26px;
	line-height: 26px;
	font-weight: 400;
	border-left: 4px solid #b20f0f;
	padding-left: 20px;
}

.panel .panel-header h3 span {
	display: block;
	font-weight: 600;
	color: #000;
}

/* MOVIES */

.movies {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 30px;
}

.movies .item {
	position: relative;
	text-align: center;
	background-color: #f8f8f8;
	padding: 30px;
	transition: .2s;
}

.movies .item .year {
	position: absolute;
	left: 30px;
	top: 30px;
	background-color: #fc427b;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
	padding: 2px 15px;
}

.movies .item:hover {
	background-color: #eaeae8;
}

.movies .item h3 {
	font-size: 18px;
    font-weight: 600;
	color: #000;
	transition: .2s;
}

.movies .item .item-image {
	height: 300px;
	margin-bottom: 15px;
}

.movies .item .item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.movies .item .item-content > a {
	font-size: 14px;
	font-weight: 600;
	color: #b20f0f;
}

.movies .item .item-content p {
	font-size: 13px;
	line-height: 16px;
	font-weight: 400;
	color: #8f8f8f;
}

.movies .item .item-content .cats {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 5px;
}

.movies .item .item-content .cats li {
	margin: 0 3px;
}

.movies .item .item-content .cats a {
	font-size: 14px;
	font-weight: 600;
	color: #b20f0f;
}

.form-space {
	margin-bottom: 10px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space input {
	background-color: #fff;
	border: 1px solid #999;
	padding: 5px 10px;
}

.btn-1 {
	color: #fff;
	font-size: 13px;
	line-height: 13px;
	border-radius: 1px;
	font-weight: 700;
	padding: 6px 15px;
	background-color: #637bad;
    border: 1px solid #1a356e;
}

.btn-1:hover {
	background-color: #637bad;
	color: #fff;
}

/* FOOTER */

footer {
	margin: 0 auto;
	max-width: 1920px;
	position: relative;
	font-size: 14px;
}

footer .footer-wrapper {
	position: relative;
	z-index: 2;
	padding: 60px 0;
}

footer .copyrights {
	color: #8f8f8f;
}

footer ul.footer-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

footer ul.footer-menu li {
	padding: 3px;
}

footer a {
	color: #8f8f8f;
	transition: .2s;
}

footer a:hover {
	color: #b20f0f;
}

footer .logo {
	width: 150px;
	margin: 0 auto;
	margin-bottom: 30px;
}

footer .logo img {
	width: 100%;
}

.footer-bottom {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 12px;
	color: #8f8f8f;
}

.footer-bottom a {
	color: #b20f0f;
}

.text-justify { text-align: justify; }

.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.mb0 { margin-bottom: 0px !important; }
.pr5 { padding-right: 5px !important; }
.pt0 { padding-top: 0px !important; }

@media (min-width: 0px) and (max-width: 450px) {
	.movies {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}
@media (min-width: 451px) and (max-width: 960px) {
	
	header {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	header .logo {
		width: 100px;
	}
	
	header .left-menu {
		display: none;
	}
	
	header .menu ul li {
		margin-left: 10px;
	}
	
	header .menu ul li:first-child {
		display: none;
	}
	
	.frontpage {
		padding: 100px 20px 0;
	}
	
	.frontpage:before {
		left: 10px;
		right: 10px;
	}
	
	.frontpage .frontpage-movies .item .movie-item {
		padding: 10px;
	}
	
	.frontpage .frontpage-movies .movie-details h3 {
		font-size: 16px;
		line-height: 18px;
	}
	
	.section-title h2 {
		font-size: 28px;
		line-height: 28px;
	}
	
	.section-title .nav-pills {
		display: none;
	}
	
	.section-padding {
		padding: 50px 0;
	}
	
	.bg-1:before {
		left: 10px;
		right: 10px;
	}
	
	.search {
		padding: 0 20px;
	}
	
	.movies {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	
	.movies .item {
		padding: 10px;
	}
	
	.movies .item .item-image {
		height: 210px;
	}
	
	.movies .item h3 {
		font-size: 16px;
		line-height: 18px;
	}
	
	.movies .item .year {
		left: 20px;
		top: 20px;
	}
	
	.movies .item .item-content .cats a {
		font-size: 13px;
		line-height: 15px;
	}
	
	.movie-single-header {
		padding: 80px 20px 20px;
	}
	
	.movie-single-header:before {
		left: 10px;
		right: 10px;
	}
	
	.movie-single .movie-details {
		padding: 20px;
	}
	
	.movie-single .movie-details .item-image {
		width: 100%;
		height: 440px;
	}
	
	.movie-single .movie-details .item-content {
		margin-left: 0;
		margin-top: 20px;
	}
	
	.movie-single .movie-right {
		width: 100%;
		margin-left: 0;
		padding: 20px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.m-mb20 { margin-bottom: 30px !important; }
	
	.order-xs-1 { order: 1; }
	.order-xs-2 { order: 2; }
	.order-xs-3 { order: 3; }
	
}

@media (min-width: 760px) and (max-width: 991px) {
	
	
	
}

@media (min-width: 991px) and (max-width: 1280px) {
	
	
	
}

@media (min-width: 1280px) and (max-width: 1440px) {
	
	
	
}

@media (min-width: 1280px) {
	
	.container {
		max-width: 1180px;
	}
	
}