/* Start Global Rules */

:root {
	--main-color: #2196F3;
	--main-color-alt: #1787E0;
	--main-transition: .3s;
	--main-padding-top: 100px;
	--main-padding-bottom: 100px;
	--section-background: #ececec;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Cairo', sans-serif;
}
a {
	text-decoration: none;
}
ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.container {
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
/* Small */
@media(min-width: 768px) {
	.container {
		width: 750px;
	}
}
/* Medium */
@media(min-width: 992px) {
	.container {
		width: 970px;
	}
}
/* Large */
@media(min-width: 1200px) {
	.container {
		width: 1170px;
	}
}
.main-title {
	position: relative;
	width: fit-content;
	padding: 10px 20px;
	margin: 0px auto 80px;
	font-size: 30px;
	border: 2px solid black;
	z-index: 1;
	text-transform: uppercase;
	transition: var(--main-transition);
}
.main-title::before,
.main-title::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--main-color);
}
.main-title::before {
	left: -30px;
}
.main-title::after {
	right: -30px;
}
.main-title:hover::before {
	z-index: -1;
	animation: left-move var(--main-transition) forwards;
}
.main-title:hover::after {
	z-index: -1;
	animation: right-move var(--main-transition) forwards;
}
.main-title:hover {
	border: 2px solid white;
	color: white;
	transition-delay: var(--main-transition);
}
.spikes {
	position: relative;
}
.spikes::after {
	content: "";
	position: absolute;
	right: 0px;
	width: 100%;
	height: 30px;
	background-image: linear-gradient(135deg, white 25%, transparent 25%),
					  linear-gradient(225deg, white 25%, transparent 25%);
	background-size: 30px 30px;
	z-index: 1;
}
.dots {
	position: absolute;
	width: 204px;
	height: 186px;
	background-image: url('../images/dots.png');
	background-repeat: no-repeat;
}
.dots-up {
	top: 200px;
	right: 0px;
}
.dots-down {
	bottom: 200px;
	left: 0px;
}

/* End Global Rules */

/* Start Animation */

@keyframes up-and-down {
	0%, 100% {
		top: 0px;
	}
	50% {
		top: -50px;
	}
}
@keyframes bouncing {
	0%, 10%, 20%, 50%, 80%, 100% {
		transform: translateY(0px);
	}
	40%, 60% {
		transform: translateY(-15px);
	}
}
@keyframes left-move {
	50% {
		left: 0px;
		width: 12px;
		height: 12px;
	}
	100% {
		left: 0px;
		border-radius: 0;
		width: 50%;
		height: 100%;
	}
}
@keyframes right-move {
	50% {
		right: 0px;
		width: 12px;
		height: 12px;
	}
	100% {
		right: 0px;
		border-radius: 0;
		width: 50%;
		height: 100%;
	}
}
@keyframes moving-arrow {
	100% {
		transform: translateX(10px);
	}
}
@keyframes flashing {
	0%, 40% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		width: 200%;
		height: 200%;
	}
}
@keyframes change-background {
	0%, 100% {
		background-image: url('../images/discount-background-01.jpg');
	}
	50% {
		background-image: url('../images/discount-background-02.jpg');
	}
}

/* End Animation */

/* Start Header */

header {
	position: relative;
	-webkit-box-shadow: 0px 0px 10px #ddd;
	-moz-box-shadow: 0px 0px 10px #ddd;
	box-shadow: 0px 0px 10px #ddd;
	background-color: white;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
header .logo {
	color: var(--main-color);
	font-size: 26px;
	font-weight: bold;
	height: 73px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	header .logo {
		width: 100%;
		height: 50px;
	}
}
header .main-nav {
	display: flex;
}
@media (max-width: 768px) {
	header .main-nav {
		margin: auto;
	}
}
header .main-nav > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 73px;
	color: black;
	padding: 0px 30px;
	transition: var(--main-transition);
	overflow: hidden;
}
@media (max-width: 768px) {
	header .main-nav > li > a {
		padding: 10px;
		font-size: 14px;
		height: 40px;
	}
}
header .main-nav > li > a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	top: 0px;
	left: -100%;
	background-color: var(--main-color);
	transition: var(--main-transition);
}
header .main-nav > li > a:hover {
	color: var(--main-color);
	background-color: #fafafa;
}
header .main-nav > li > a:hover::before {
	left: 0px;
}
header .main-nav li:hover .mega-menu {
	z-index: 100;
	opacity: 1;
	top: calc(100% + 1px);
}
header .mega-menu {
	position: absolute;
	display: flex;
	gap: 40px;
	left: 0px;
	top: calc(100% + 50px);
	width: 100%;
	padding: 30px;
	background-color: white;
	border-bottom: 3px solid var(--main-color);
	z-index: -1;
	opacity: 0;
	transition: top var(--main-transition), opacity var(--main-transition);
}
@media (max-width: 768px) {
	header .mega-menu {
		flex-direction: column;
		gap: 0px;
		padding: 5px;
	}
}
header .mega-menu .image img {
	max-width: 100%;
}
@media (max-width: 991px) {
	header .mega-menu .image {
		display: none;
	}
}
header .mega-menu .links {
	min-width: 250px;
	flex: 1;
}
header .mega-menu .links li {
	position: relative;
}
header .mega-menu .links li:not(:last-child) {
	border-bottom: 1px solid #e9e6e6;
}
@media (max-width: 768px) {
	header .mega-menu > .links:not(:last-child) li:last-child {
		border-bottom: 1px solid #e9e6e6;
	}
}
header .mega-menu .links li::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0px;
	height: 100%;
	background-color: #fafafa;
	z-index: -1;
	transition: var(--main-transition);
}
header .mega-menu .links li:hover::before {
	width: 100%;
}
header .mega-menu .links li a {
	display: block;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}
header .mega-menu .links li a i {
	margin-right: 10px;
}

/* End Header */

/* Start Landing */

.landing {
	position: relative;
}
.landing::before {
	content: "";
	position: absolute;
	left: 0px;
	top: -40px;
	background-color: #ececec;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: skewY(-6deg);
	transform-origin: top left;
}
.landing .container {
	min-height: calc(100vh - 73px);
	display: flex;
	align-items: center;
	padding-bottom: 120px;
}
.landing .text {
	flex: 1;
}
@media (max-width: 991px) {
	.landing .text {
		text-align: center;
	}
}
.landing .text h1 {
	font-size: 40px;
	margin: 0px;
	letter-spacing: -2px;
}
@media (max-width: 768px) {
	.landing .text h1 {
		font-size: 28px;
	}
}
.landing .text p {
	font-size: 23px;
	line-height: 1.7;
	margin: 5px 0px 0px;
	color: #666;
	max-width: 500px;
}
@media (max-width: 991px) {
	.landing .text p {
		margin: 10px auto;
	}
}
@media (max-width: 768px) {
	.landing .text p {
		font-size: 18px;
	}
}
.landing .image img {
	position: relative;
	width: 600px;
	animation: up-and-down 5s linear infinite;
}
@media (max-width: 991px) {
	.landing .image {
		display: none;
	}
}
.landing .go-down {
	position: absolute;
	left: 50%;
	bottom: 30px;
	color: var(--main-color);
	transform: translateX(-50%);
	transition: var(--main-transition);
}
.landing .go-down:hover {
	color: var(--main-color-alt);
}
.landing .go-down i {
	animation: bouncing 1.5s infinite;
}

/* End Landing */

/* Start Articles */

.articles {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	position: relative;
}
.articles .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 40px;
}
.articles .box {
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	background-color: white;
	border-radius: 6px;
	overflow: hidden;
	transition: transform var(--main-transition), box-shadow var(--main-transition);
}
.articles .box:hover {
	transform: translateY(-10px);
	-webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}
.articles .box img {
	width: 100%;
	max-width: 100%;
}
.articles .box .content {
	padding: 20px;
}
.articles .box .content h3 {
	margin: 0px;
}
.articles .box .content p {
	margin: 10px 0px 0px;
	line-height: 1.5;
	color: #777;
}
.articles .box .info {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #e6e6e7;
}
.articles .box .info a {
	color: var(--main-color);
	font-weight: bold;
}
.articles .box .info i {
	color: var(--main-color);
	font-weight: bold;
}
.articles .box:hover .info i {
	animation: moving-arrow var(--main-transition) linear infinite;
}

/* End Articles */

/* Start Gallery */

.gallery {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	position: relative;
	background-color: var(--section-background);
}
.gallery .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
}
.gallery .box {
	padding: 15px;
	background-color: white;
	-webkit-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}
.gallery .box .image {
	position: relative;
	overflow: hidden;
}
.gallery .box .image::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.2);
	width: 0px;
	height: 0px;
	opacity: 0;
	z-index: 2;
}
.gallery .box .image:hover::before {
	animation: flashing .7s;
}
.gallery .box img {
	max-width: 100%;
	transition: var(--main-transition);
}
.gallery .box .image:hover img {
	transform: rotate(5deg) scale(1.1);
}

/* End Gallery */

/* Start Features */

.features {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	position: relative;
	background-color: white;
}
.features .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
}
.features .box {
	text-align: center;
	border: 1px solid #ccc;
}
.features .box .image-holder {
	position: relative;
	overflow: hidden;
}
.features .box .image-holder::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.features .box .image-holder::after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: 0px;
	border-style: solid;
	border-width: 0px 0px 170px 500px;
	border-color: transparent transparent white transparent;
	transition: var(--main-transition);
}
.features .box .image-holder img {
	max-width: 100%;
}
.features .box:hover .image-holder::after {
	border-width: 170px 500px 170px 0px;
}
.features .box h2 {
	position: relative;
	font-size: 40px;
	width: fit-content;
	margin: auto;
}
.features .box h2::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 15px;
	width: calc(100% - 30px);
	height: 5px;
}
.features .box p {
	font-size: 20px;
	margin: 30px auto;
	padding: 25px;
	line-height: 2;
	color: #777;
}
.features .box a {
	display: block;
	font-weight: bold;
	font-size: 22px;
	width: fit-content;
	margin: 0px auto 30px;
	padding: 10px 30px;
	border: 3px solid transparent;
	border-radius: 6px;
	transition: var(--main-transition);
}
.features .box:hover a {
	background-position: left bottom;
	color: white;
}
.features .quality .image-holder::before {
	background-color: rgb(244 64 54 / 60%);
}
.features .quality h2::after {
	background-color: #f44036;
}
.features .quality a {
	border-color: #f44036;
	color: #f44036;
	background: linear-gradient(to right, #f44036 50%, white 50%);
	background-size: 200% 100%;
	background-position: right bottom;
}
.features .time .image-holder::before {
	background-color: rgb(0 150 136 / 60%);
}
.features .time h2::after {
	background-color: #009688;
}
.features .time a {
	border-color: #009688;
	color: #009688;
	background: linear-gradient(to right, #009688 50%, white 50%);
	background-size: 200% 100%;
	background-position: right bottom;
}
.features .passion .image-holder::before {
	background-color: rgb(3 169 244 / 60%);
}
.features .passion h2::after {
	background-color: #03a9f4;
}
.features .passion a {
	border-color: #03a9f4;
	color: #03a9f4;
	background: linear-gradient(to right, #03a9f4 50%, white 50%);
	background-size: 200% 100%;
	background-position: right bottom;
}

/* End Features */

/* Start Testimonials */

.testimonials {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	background-color: var(--section-background);
}
.testimonials .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	column-gap: 40px;
	row-gap: 60px;
}
.testimonials .box {
	position: relative;
	padding: 20px;
	background-color: white;
	border-radius: 6px;
	-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
}
.testimonials .box img {
	position: absolute;
	top: -50px;
	right: -10px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 10px solid var(--section-background);
}
.testimonials .box h3 {
	margin: 0px 0px 10px;
}
.testimonials .box .title {
	display: block;
	margin-bottom: 10px;
	color: var(--main-color-alt);
}
.testimonials .box .rate .filled {
	color: #ffc107;
}
.testimonials .box p {
	margin-top: 10px;
	line-height: 1.5;
	color: #777;
}

/* End Testimonials */

/* Start Team Members */

.team {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	position: relative;
}
.team .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
}
.team .box {
	position: relative;
}
.team .box::before,
.team .box::after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	background-color: #f3f3f3;
	border-radius: 10px;
	transition: var(--main-transition);
}
.team .box::before {
	width: calc(100% - 60px);
	z-index: -2;
}
.team .box::after {
	width: 0px;
	background-color: #e4e4e4;
	z-index: -1;
}
.team .box:hover::after {
	width: calc(100% - 60px);
}
.team .box .data {
	display: flex;
	align-items: center;
	padding-top: 60px;
}
.team .box .data img {
	max-width: calc(100% - 60px);
	border-radius: 10px;
	transition: var(--main-transition);
}
.team .box:hover .data img {
	filter: grayscale(100%);
}
.team .box .data .social {
	width: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.team .box .data .social a {
	width: 60px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.team .box .data .social i {
	color: #777;
	transition: var(--main-transition);
}
.team .box .data .social a:hover i {
	color: var(--main-color);
}
.team .box .info {
	padding-left: 80px;
}
.team .box .info h3 {
	margin-top: 20px;
	margin-bottom: 0px;
	font-size: 22px;
	color: var(--main-color);
	transition: var(--main-transition);
}
.team .box:hover .info h3 {
	color: #777;
}
.team .box .info p {
	margin-top: 10px;
	margin-bottom: 25px;
}
@media (max-width: 768px) {
	.team .box::before {
		width: 100%;
	}
	.team .box:hover::after {
		width: 100%;
	}
	.team .box .data {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding-top: 60px;
	}
	.team .box .data img {
		max-width: 80%;
		margin: auto;
	}
	.team .box .data .social {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin-top: 20px;
	}
	.team .box .data .social i {
		font-size: 20px;
	}
	.team .box .info {
		text-align: center;
		padding-left: 0px;
	}
	.team .box:hover .info h3 {
		font-size: 22px;
	}
	.team .box:hover .info p {
		font-size: 20px;
	}
}

/* End Team Members */

/* Start Services */

.services {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	background-color: var(--section-background);
}
.services .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
}
.services .box {
	position: relative;
	background-color: white;
	-webkit-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	counter-increment: services;
	transition: var(--main-transition);
}
.services .box::before {
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	width: 0px;
	height: 3px;
	transform: translateX(-50%);
	background-color: var(--main-color);
	transition: var(--main-transition);
}
.services .box:hover {
	transform: translateY(-10px);
}
.services .box:hover::before {
	width: 100%;
}
.services .box i {
	display: block;
	margin: 30px auto 20px;
	text-align: center;
	color: #D5D5D5;
}
.services .box h3 {
	font-size: 25px;
	margin: 20px 0px 40px;
	text-align: center;
	color: var(--main-color);
}
.services .box .info {
	position: relative;
	padding: 15px;
	background-color: #f9f9f9;
	text-align: right;
}
.services .box .info::before {
	content: "0" counter(services);
	position: absolute;
	top: 0px;
	left: 0px;
	width: 80px;
	height: 100%;
	background-color: var(--main-color);
	color: white;
	padding-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: bold;
}
.services .box .info::after {
	content: "";
	position: absolute;
	top: 0px;
	left: 80px;
	width: 50px;
	height: calc(100% + 0.4px);
	background-color: #d5d5d5;
	transform: skewX(-30deg);
}
.services .box .info a {
	color: var(--main-color);
}

/* End Services */

/* Start Skills */

.our-skills {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
}
.our-skills .container {
	display: flex;
	align-items: center;
}
@media (max-width: 991px) {
	.our-skills img {
		display: none;
	}
}
.our-skills .skills {
	flex: 1;
}
.our-skills .skill h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 20px;
}
.our-skills .skill h3 span {
	font-size: 12px;
	padding: 3px 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: var(--main-color);
}
.our-skills .skill .progress {
	position: relative;
	height: 30px;
	background-color: #eee;
}
.our-skills .skill .progress span {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	background-color: var(--main-color);
}

/* End Skills */

/* Start Work Steps */

.work-steps {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	background-color: var(--section-background);
}
.work-steps .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 991px) {
	.work-steps .container {
		flex-direction: column;
	}
}
.work-steps .image {
	max-width: 100%;
	margin-right: 100px;
}
@media (max-width: 991px) {
	.work-steps .image {
		margin-right: 0px;
		margin-bottom: 50px;
	}
}
.work-steps .info {
	flex: 1;
}
.work-steps .info .box {
	display: flex;
	align-items: center;
	position: relative;
	padding: 30px;
	margin-bottom: 20px;
	background-color: #f6f5f5;
	border: 2px solid white;
	border-radius: 6px;
	z-index: 1;
}
.work-steps .info .box::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0px;
	height: 0px;
	background-color: #ededed;
	z-index: -1;
	transition: var(--main-transition);
}
.work-steps .info .box:hover::before {
	width: 100%;
	height: 100%;
}
.work-steps .info .box img {
	width: 64px;
	margin-right: 30px;
}
.work-steps .info .box .text h3 {
	font-size: 22px;
}
.work-steps .info .box .text p {
	font-size: 18px;
	line-height: 1.7;
	margin: 10px 0px 0px;
	color: #777;
}

/* End Work Steps */

/* Start Events */

.events {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	position: relative;
}
.events .container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.events img {
	max-width: 450px;
}
@media (max-width: 991px){
 .events img {
 	display: none;
 }
}
.events .info {
	flex: 1;
	z-index: 1;
}
.events .info .time {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 20px auto;
}
.events .info .time .unit {
	width: 75px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	text-align: center;
	transition: var(--main-transition);
}
.events .info .time .unit span {
	display: block;
	transition: var(--main-transition);
}
.events .info .time .unit span:first-child {
	font-size: 35px;
	font-weight: bold;
	padding: 15px;
	color: var(--main-color);
}
.events .info .time .unit span:last-child {
	font-size: 13px;
	padding: 8px 10px;
	border-top: 1px solid #d5d5d5;
}
.events .info .time .unit:hover,
.events .info .time .unit:hover span:last-child {
	border-color: var(--main-color);
}
.events .title {
	font-size: 30px;
	text-align: center;
	margin: 40px 0px 0px;
}
.events .description {
	font-size: 19px;
	text-align: center;
	line-height: 1.7;
	margin-top: 40px;
	color: #777;
}
.events .subscribe {
	width: 100%;
	margin-top: 50px;
	z-index: 1;
}
.events .subscribe form {
	display: flex;
	gap: 20px;
	width: 600px;
	padding: 30px 40px;
	margin: 20px auto;
	border-radius: 50px;
	background-color: #f6f5f5;
}
@media (max-width: 768px) {
	.events .subscribe form {
		max-width: 100%;
		padding: 20px;
		flex-direction: column;
		border-radius: 0px;
	}
}
.events .subscribe form input[type="email"] {
	flex: 1;
	border: none;
	padding: 20px;
	border-radius: 50px;
	caret-color: var(--main-color);
}
@media (max-width: 768px) {
	.events .subscribe form input[type="email"] {
		border-radius: 0px;
	}
}
.events .subscribe form input[type="email"]:focus {
	outline: none;
}
.events .subscribe form input[type="email"]::placeholder {
	transition: opacity var(--main-transition);
}
.events .subscribe form input[type="email"]:focus::placeholder {
	opacity: 0;
}
.events .subscribe form input[type="submit"] {
	font-weight: bold;
	border: none;
	border-radius: 50px;
	padding: 20px;
	background-color: var(--main-color);
	color: white;
	cursor: pointer;
	transition: var(--main-transition);
}
@media (max-width: 768px) {
	.events .subscribe form input[type="submit"] {
		border-radius: 0px;
	}
}
.events .subscribe form input[type="submit"]:hover {
	background-color: var(--main-color-alt);
}

/* End Events */

/* Start Pricing Plans */

.pricing {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	background-color: var(--section-background);
	position: relative;
}
.pricing .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}
.pricing .box {
	position: relative;
	padding: 15px;
	background-color: white;
	-webkit-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
	transition: var(--main-transition);
	text-align: center;
	z-index: 1;
}
.pricing .box::before,
.pricing .box::after {
	content: "";
	position: absolute;
	width: 0px;
	height: 50%;
	background-color: #f6f6f6;
	z-index: -1;
	transition: var(--main-transition);
}
.pricing .box::before {
	top: 0px;
	left: 0px;
}
.pricing .box::after {
	bottom: 0px;
	right: 0px;
}
.pricing .box:hover::before,
.pricing .box:hover::after {
	width: 100%;
}
@media (min-width: 1200px) {
	.pricing .box.popular {
		top: -20px;
	}
}
.pricing .box.popular .label {
	position: absolute;
	top: 0px;
	right: 20px;
	padding: 10px 10px 35px 10px;
	width: 40px;
	font-size: 18px;
	font-weight: bold;
	background-color: var(--main-color);
	color: white;
	writing-mode: vertical-rl;
}
.pricing .box.popular .label::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	border-style: solid;
	border-color: transparent transparent white transparent;
	border-width: 20px;
}
.pricing .box .title {
	margin: 30px 0px;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: -1px;
}
.pricing .box img {
	width: 80px;
	margin-bottom: 30px;
}
.pricing .box .price {
	margin-bottom: 20px;
}
.pricing .box .amount {
	display: block;
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 5px;
	color: var(--main-color);
}
.pricing .box .time {
	color: #777;
}
.pricing .box ul {
	text-align: left;
}
.pricing .box ul li {
	padding: 20px 0px 20px 10px ;
	border-top: 1px solid #eee;
}
.pricing .box ul li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	margin-right: 10px;
	font-weight: bold;
	color: var(--main-color);
}
.pricing .box a {
	display: block;
	width: fit-content;
	font-weight: bold;
	padding: 15px 20px;
	margin: 30px auto 40px;
	border: 2px solid var(--main-color);
	border-radius: 6px;
	color: var(--main-color);
	transition: var(--main-transition);
}
.pricing .box a:hover {
	background-color: var(--main-color-alt);
	border-color: var(--main-color-alt);
	color: white;
}

/* End Pricing Plans */

/* Start Videos */

.videos {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
}
.videos .holder {
	display: flex;
	justify-content: center;
	background-color: var(--section-background);
	border: 1px solid #ddd;
}
@media (max-width: 991px) {
	.videos .holder {
		flex-direction: column;
	}
}
.videos .holder .list {
	min-width: 300px;
	background-color: white;
}
.videos .holder .list .name {
	display: flex;
	justify-content: space-between;
	background-color: #f4f4f4;
	font-weight: bold;
	padding: 20px;
}
.videos .holder .list ul li {
	padding: 20px;
	border-top: 1px solid var(--section-background);
	cursor: pointer;
	transition: var(--main-transition);
}
.videos .holder .list ul li:hover {
	background-color: #fafafa;
	color: var(--main-color);
}
.videos .holder .list ul li span {
	display: block;
	margin-top: 10px;
	color: #777;
}
.videos .holder .preview {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px;
	background-color: #e2e2e2;
}
.videos .holder .preview img {
	max-width: 100%;
}
.videos .holder .preview .info {
	padding: 20px;
	margin-top: 10px;
	background-color: white;
}

/* End Videos */

/* Start Stats */

.stats {
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	position: relative;
	background-image: url(../images/stats.jpg);
	background-size: cover;
}
.stats::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.95);
}
.stats h2 {
	position: relative;
	font-weight: bold;
	font-size: 40px;
	width: fit-content;
	margin: 0px auto 50px;
}
.stats .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}
.stats .box {
	position: relative;
	padding: 30px 15px;
	text-align: center;
	background-color: white;
	opacity: .8;
	transition: var(--main-transition);
}
.stats .box::before,
.stats .box::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 0px;
	background-color: var(--main-color);
	transition: 1s;
}
.stats .box::before {
	bottom: 0px;
	left: 0px;
}
.stats .box::after {
	top: 0px;
	right: 0px;
}
.stats .box:hover {
	opacity: 1;
}
.stats .box:hover::before,
.stats .box:hover::after {
	height: 100%;
}
.stats .box .number {
	display: block;
	font-size: 50px;
	font-weight: bold;
	margin: 10px 0px;
}
.stats .box .text {
	display: block;
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	color: var(--main-color);
}

/* End Stats */

/* Start Discount */

.discount {
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap
}
.discount .image {
	position: relative;
	background-image: url('../images/discount-background-01.jpg');
	background-size: cover;
	display: flex;
	flex-basis: 50%;
	align-items: center;
	justify-content: center;
	color: white;
	z-index: 1;
	animation: change-background 10s linear infinite;
}
.discount .image::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(23, 135, 224, 0.97);
	z-index: -1;
}
@media (max-width: 991px) {
	.discount .image {
		flex-basis: 100%;
	}
}
.discount .form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-basis: 50%;
}
.discount .form .input {
	display: block;
	width: 100%;
	margin-bottom: 25px;
	padding: 15px;
	border: none;
	border-bottom: 1px solid #ccc;
	background-color: #f9f9f9;
	caret-color: var(--main-color);
}
.discount .form textarea.input {
	resize: none;
	height: 200px;
}
.discount .form .input:focus {
	outline: none;
}
.discount .form input[type="submit"] {
	display: block;
	width: 100%;
	padding: 15px;
	margin-bottom: 50px;
	background-color: var(--main-color);
	color: white;
	border: none;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	transition: var(--main-transition);
}
.discount .form input[type="submit"]:hover {
	background-color: var(--main-color-alt);
}
@media (max-width: 991px) {
	.discount .form {
		flex-basis: 100%;
	}
}
.discount .content {
	text-align: center;
	padding: 0px 20px;
}
.discount .content h2 {
	font-size: 40px;
	letter-spacing: -2px;
	margin: 40px 0px;
}
.discount .content p {
	max-width: 500px;
	font-size: 18px;
	line-height: 1.6;
}
.discount .content img {
	width: 300px;
	max-width: 100%;
}

/* End Discount */

/* Start Footer */

.footer {
	background-color: #191919;
	padding: 70px 0px 0px;
}
@media (max-width: 768px) {
	.footer {
		text-align: center;
	}
}
.footer .container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 40px;
}
.footer .box h3 {
	font-size: 50px;
	margin: 0px 0px 20px;
	color: white;
}
.footer .box .social {
	display: flex;
}
@media (max-width: 768px) {
	.footer .box .social {
		justify-content: center;
	}
}
.footer .box .social li {
	margin-right: 10px;
}
.footer .box .social li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 20px;
	background-color: #313131;
	color: white;
	transition: var(--main-transition);
}
.footer .box .social .facebook:hover {
	background-color: #1877f2;
}
.footer .box .social .twitter:hover {
	background-color: #1da1f2;
}
.footer .box .social .youtube:hover {
	background-color: #ff0000;
}
.footer .box .text {
	line-height: 2;
	color: #b9b9b9;
	margin-top: 20px;
}
.footer .box .links li {
	padding: 15px 0px;
	transition: var(--main-transition);
}
.footer .box .links li:not(:last-child) {
	border-bottom: 1px solid #444;
}
.footer .box .links li:hover {
	padding-left: 10px;
}
.footer .box .links li a {
	color: #b9b9b9;
	transition: var(--main-transition);
}
.footer .box .links li a::before {
	font-family: "Font Awesome 5 Free";
	content: "\F101";
	font-weight: bold;
	color: var(--main-color);
	margin-right: 10px;
}
.footer .box .links li:hover a {
	color: white;
}
.footer .box .line {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	color: #b9b9b9;
}
@media (max-width: 768px) {
	.footer .box .line {
		flex-direction: column;
	}
}
.footer .box .line i {
	font-size: 25px;
	margin-right: 10px;
	color: var(--main-color);
}
@media (max-width: 768px) {
	.footer .box .line i {
		margin-bottom: 10px;
	}
}
.footer .box .line .info {
	line-height: 1.7;
	flex: 1;
}
.footer .box .line .info span {
	display: block;
}
.footer .footer-gallery img {
	width: 78px;
	border: 3px solid white;
	margin: 2px;
}
.footer .copyright {
	padding: 25px 0px;
	margin: 50px 0px 0px;
	text-align: center;
	color: white;
	border-top: 1px solid #444;
}

/* End Footer */
