
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "cairo", sans-serif;
}
html {
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img{
	max-width: 100%;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
input:focus{
	outline: none;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
/* Start Variable */
:root {
	--main-color: #2196F3;
	--background-section: #ececec;
	--transition: all .3s ease-in-out;
 }
/* End Variable */
/* Start Animation */
@keyframes fill-width{
	0%{
		width: 0;
	}
	100%{
		width: 100%;
	}
}
@keyframes up-down{
	0%{
		bottom: -10px;
	}
	100%{
		bottom: 50px;
	}
}
@keyframes fast-up-down{
	50%, 80%, 100%{
		bottom: 0;
	}
	40%, 60%{
		bottom: 15px;
	}
}
@keyframes fill-heading-right{
	30%{
		right: 0;
	}
	100%{
		right: 0;
		width: 50.5%;
		height: 100%;
		border-radius: 0;
	}
}
@keyframes fill-heading-left{
	50%{
		left: 0;
	}
	100%{
		left: 0;
		width: 50.5%;
		height: 100%;
		border-radius: 0;
	}
}
@keyframes arrow-right{
	100%{
		transform: translateX(10px);
	}
}
@keyframes scale-box{
	99%{
		transform: scale(1);
	}
	100%{
		transform: scale(0);
	}
}
@keyframes skill{
	100%{
		transform: scaleX(1);
	}
}
@keyframes change-background{
	0%{
		background-image: url(../images/discount-background1.jpg);
	}
	100%{
		background-image: url(../images/discount-background2.jpg);
	}
}
/* End Animation */
/* Start Components */
.main-heading{
	position: relative;
	z-index: 1;
}
.main-heading h2 {
	font-size: 36px;
	font-weight: bold;
	position: relative;
	text-transform: uppercase;
	width: fit-content;
	height: 100%;
	margin: 0 auto 70px;
	padding: 10px 15px;
	border: 2px solid #000;
}
.main-heading h2:hover {
	color: #fff;
	border-color: transparent;
	transition-delay: .5s;
}
.main-heading h2:before,
.main-heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--main-color);
  height: 15px;
  width: 15px;
  border-radius: 50%;
  z-index: -1;
}
.main-heading h2:before {
	left: -30px;
}
.main-heading h2::after {
	right: -30px
}
.main-heading h2:hover::after {
	animation: fill-heading-right .5s alternate linear forwards;
}
.main-heading h2:hover::before {
	animation: fill-heading-left .5s alternate linear forwards;
}
.second-heading h2 {
	font-size: 36px;
	font-weight: bold;
	text-transform: capitalize;
	width: fit-content;
	height: 100%;
	margin: 0 auto 70px;
}
.grid-3x {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.grid-4x {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 40px;
}
.grid-3x-footer{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
	gap: 10px;
}
.flex-center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.section {
  padding: 100px 0;
}
.dots{
	position: absolute;
	width: 200px;
	height: 150px;
	object-fit: cover;
}
.dots-right{
	right: 0;
   top: 80px;
}
.dots-left{
	left: 0;
	bottom: 150px;
}
/* End Components */
/* Start Header */
.header{
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	position: fixed;
	width: 100%;
	z-index: 2;
}
.header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
	position: relative;
}
.header .container .logo{
	font-size: 24px;
	color: #2196F3;
	font-weight: bold;
}
.header .container .links{
	display: flex;
	column-gap: 5px;
}
.header .container .links > li > a{
	display: block;
	color: #000;
	font-size: 18px;
	position: relative;
	padding: 20px 30px;
}
.header .container .links > li > a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 4px;
	background-color: var(--main-color);
}
.header .container .links > li > a:hover{
	background-color: #fcfcfc;
	color: var(--main-color);
	padding-bottom: 14px;
	transition: all .3s;
}
.header .container .links > li > a:hover::before{
	animation: fill-width .3s alternate forwards;
	animation-timing-function: linear;
}
.header .container .links .mega-menu{
	padding: 30px;
	display: flex;
	background-color: #fff;
	border-bottom: 2px solid var(--main-color);
	column-gap: 40px;
	position: absolute;
	left: 0;
	width: 100%;
	top: calc(100% + 60px);
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}
.header .container .links .mega-menu .links-2{
	flex-basis: 25%;
}
.header .container .links .mega-menu .links-2 li a{
	display: block;
	color: var(--main-color);
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #eee;
	position: relative;
	z-index: 1;
}
.header .container .links .mega-menu .links-2 li a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: #fafafa;
	z-index: -1;
}
.header .container .links .mega-menu .links-2 li a:hover::before{
	animation: fill-width .3s alternate forwards;
	animation-timing-function: linear;
}
.header .container .links .mega-menu .links-2 li a i{
	margin-right: 10px;
}
.header .container .links > li:hover .mega-menu{
	top: calc(100% + 1px);
	opacity: 1;
	visibility: visible;
}
/* End Header */
/* Start Landing */
.landing{
	position: relative;
}
.landing::before{
	content: "";
	height: 100%;
	width: 100%;
	background-color: var(--background-section);
	position: absolute;
	left: 0;
	top: -40px;
	z-index: -1;
	transform: skewY(-6deg);
	transform-origin: top left;
}
.landing .container{
	height: calc(100vh - 62px);
}
.landing .container .col-2:first-child{
	flex: 1;
	text-transform: capitalize;
}
.landing .container img{
	position: relative;
	width: 600px;
	animation: up-down 2.5s infinite alternate linear;
}
.landing .container .col-2 h1{
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -2px;
	margin: 10px 0;
}
.landing .container .col-2 h1 span{
	color: var(--main-color);
	letter-spacing: 0;
}
.landing .container .col-2 p{
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	color: #666;
	max-width: 500px;
}
.landing .down{
	color: var(--main-color);
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	animation: fast-up-down 1.5s infinite;

}
/* End Landing */
/* Start Articles */
.articles .content .article{
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 15px 5px rgb(0 0 0 / 10%);
	overflow: hidden;
	transition: var(--transition);
}
.articles .content .article:hover{
	transform: translateY(-10px);
}
.articles .content .article img{
	max-width: 100%;
	width: 100%;
}
.articles .content .article .text{
	padding: 20px;
	border-bottom: 1px solid #eee;
}
.articles .content .article .text h3{
	font-size: 20px;
	margin-bottom: 10px;
}
.articles .content .article .text p{
	color: #666;
}
.articles .content .article .read-more{
	padding: 20px;
	color: var(--main-color);
	display: flex;
	justify-content: space-between;
}
.articles .content .article .read-more a{
	color: var(--main-color);
	font-size: 18px;
	font-weight: bold;
}
.articles .content .article:hover i{
	animation: arrow-right .5s infinite;
}
.spike{
	position: relative;
}
.spike::before{
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
	height: 30px;
	z-index: 1;
	background-image: linear-gradient(136deg, #fff 25%, transparent 25%), linear-gradient(225deg, #fff 25%, transparent 25%);
	background-size: 30px 30px;
}
/* End Articles */
/* Start Gallery */
.gallery{
	background-color: var(--background-section);
}
.gallery .box{
	border: 15px solid #fff;
	box-shadow: 0 2px 15px 5px rgb(0 0 0 / 15%);
	overflow: hidden;
}
.gallery .box .image{
	position: relative;
	transition: var(--transition);
}
.gallery .box .image:hover{
	transform: rotate(6deg) scale(1.1);
}
.gallery .box .image::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(250 250 250 / 15%);
	transform: scale(0);
}
.gallery .box .image:hover::before{
	animation: scale-box .3s alternate forwards;
}
/* End Gallery */
/* Start Features */
.features .box{
	border: 1px solid #ddd;
	text-align: center;
}
.features .box .image{
	position: relative;
	overflow: hidden;
}
.features .box .image::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.features .box.quality .image::before{
	background-color: rgb(3 169 244 / 60%);
}
.features .box.passion .image::before{
	background-color: rgba(250, 0, 0, 0.4);
}
.features .box.time .image::before{
	background-color: rgba(0, 116, 0, 0.459);
}
.features .box .image::after{
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	left: 50%;
	bottom: -111%;
	background-color: #fff;
	transition: var(--transition);
	transform: translateX(-38%) rotatez(340deg);
}
.features .box .image:hover::after{
	transform: translateX(-78%) rotatez(290deg);
}
.features .box .text{
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 50px;
}
.features .box .text h3{
	width: fit-content;
	font-size: 40px;
	padding: 10px;
	position: relative;
	text-transform: capitalize;
}
.features .box .text h3::after{
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 50px);
	height: 5px;
}
.features .box.quality .text h3::after{
	background-color: rgb(3 169 244);
}
.features .box.passion .text h3::after{
	background-color: rgba(250, 0, 0);
}
.features .box.time .text h3::after{
	background-color: rgba(0, 116, 0);
}
.features .box .text p{
	width: fit-content;
	font-size: 20px;
	color: #666;
	line-height: 2;
}
.features .box .text a{
	font-size: 20px;
	font-weight: bold;
	padding: 10px 30px;
	border: 3px solid transparent;
	border-radius: 5px;
	position: relative;
}
.features .box.quality .text a{
	border-color: rgb(3 169 244);
	color: rgb(3 169 244);
}
.features .box.passion .text a{
	border-color: rgba(250, 0, 0);
	color: rgba(250, 0, 0);
}
.features .box.time .text a{
	border-color: rgba(0, 116, 0);
	color: rgba(0, 116, 0);
}
.features .box:hover .text a{
	color: #fff;
	transition: var(--transition);
	transition-delay: .05s;
}
.features .box .text a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 98%;
	background-color: var(--main-color);
	z-index: -1;
}
.features .box:hover .text a::before{
	animation: fill-width .3s alternate linear forwards;
}
.features .box.quality .text a::before{
	background-color: rgb(3 169 244);
}
.features .box.passion .text a::before{
	background-color: rgba(250, 0, 0);
}
.features .box.time .text a::before{
	background-color: rgba(0, 116, 0);
}
/* End Features */
/* Start Testimonials */
.testimonials{
	background-color: var(--background-section);
}
.testimonials .container{
	row-gap: 60px;
}
.testimonials .box{
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	position: relative;
}
.testimonials .box .image{
	border: 10px solid var(--background-section);
	border-radius: 50%;
	width: 100px;
	height: auto;
	overflow: hidden;
	position: absolute;
	top: -50px;
	right: -10px;
}
.testimonials .box .text h3{
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.testimonials .box .text p{
	text-transform: capitalize;
	color: #777;
	margin-bottom: 10px;
}
.testimonials .box .text i{
	color: #ffc107;
	margin-bottom: 10px;
}
.testimonials .box .text i.far{
	color: #000;
}
.testimonials .box .text p:last-of-type{
	line-height: 1.6;
}
/* End Testimonials */
/* Start Team Members */
.team-members .box{
	position: relative;
}
.team-members .box::before,
.team-members .box::after{
	content: "";
	background-color: #f3f3f3;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 50px);
	height: 100%;
	z-index: -2;
	border-radius: 10px
}
.team-members .box::after{
	background-color: #ececec;
	width: 0;
	z-index: -1;
	transition: var(--transition);
}
.team-members .box:hover::after{
	width: calc(100% - 50px);
}
.team-members .box .image{
	padding-top: 60px;
	width: calc(100% - 60px);
}
.team-members .box .image img{
	border-radius: 10px;
	transition: var(--transition);
}
.team-members .box:hover .image img{
	filter: grayscale(1);
}
.team-members .box .social-icons{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	row-gap: 25px;
	text-align: center;
}
.team-members .box .social-icons i{
	color: #777;
}
.team-members .box .social-icons i:hover{
	color: var(--main-color);
}
.team-members .box .text{
	margin: 20px 0 20px 70px;
}
.team-members .box .text h3{
	font-size: 20px;
	color: var(--main-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}
.team-members .box .text p{
	text-transform: capitalize;
	margin-bottom: 10px;
}
/* End Team Members */
/* Start Services */
.services{
	background-color: var(--background-section);
}
.services .box{
	background-color: #fff;
	box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
	overflow: hidden;
	counter-increment: number-services;
	position: relative;
	transition: var(--transition);
}
.services .box:hover{
	transform: translateY(-15px);
}
.services .box::before{
	content: "";
	display: block;
	background-color: #2196F3;
	transform: scaleX(0);
	transition: var(--transition);
	height: 3px;
}
.services .box:hover::before{
	transform: scaleX(1);
}
.services .box .content {
	padding: 20px;
	text-align: center;
}
.services .box .content i{
	font-size: 60px;
	color: #ddd;
}
.services .box .content h3{
	font-size: 26px;
	color: var(--main-color);
	margin: 20px auto;
}
.services .box .data{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f3f3f3;
	position: relative;
	height: 50px;
}
.services .box .number{
	background-color: #ddd;
	height: 100%;
	width: 150px;
	position: relative;
	left: -15px;
	transform: skew(-30deg);
}
.services .box .number::before{
	content: "0"counter(number-services);
	position: absolute;
	left: 40px;
	width: 100%;
	line-height: 50px;
	transform: skew(30deg);
	font-size: 28px;
	font-weight: bold;
	color: #fff;
}
.services .box .number::after{
	content: "";
	background-color: var(--main-color);
	height: 100%;
	width: 100%;
	position: absolute;
	left: -50px;
	z-index: -2;
}
.services .box a{
	color: var(--main-color);
	margin-right: 15px;
}
/* End Services */
/* Start Our Skills */
.our-skills .container img{
	position: relative;
	width: 500px;
}
.our-skills .container .col-2:last-child{
	flex: 1;
}
.our-skills .container .col-2:last-child h3{
	font-size: 18px;
	text-transform: uppercase;
	margin: 20px 0;
}
.our-skills .container .col-2:last-child h3:not(:first-of-type, :nth-of-type(2)){
	text-transform: capitalize;
}
.our-skills .container .col-2:last-child .range{
	background-color: #eee;
	width: 100%;
	height: 30px;
	position: relative;
}
.our-skills .container .col-2:last-child .range::before{
	content: "";
	display: block;
	background-color: var(--main-color);
	height: 100%;
	transform-origin: left;
	animation: skill .5s linear forwards;
	transform: scaleX(0);	
}
.our-skills .container .col-2:last-child .range.html::before,
.our-skills .container .col-2:last-child .range.python::before{
	width: 80%;
}
.our-skills .container .col-2:last-child .range.css::before{
	width: 85%;
}
.our-skills .container .col-2:last-child .range.javascript::before{
	width: 70%;
}
.our-skills .container .col-2:last-child .range::after{
	content: attr(data-range);
	position: absolute;
	right: 0;
	top: -40px;
	color: var(--main-color);
	font-size: 12px;
	font-weight: bold;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 2px 5px;
}
/* End Our Skills */
/* Start Works */
.works{
	background-color: var(--background-section);
}
.works .container .col-2{
	flex: 1;
}
.works .container .col-2 > img{
	width: 450px;
	margin: 0 auto;
}
.works .container .col-2 .content{
	display: flex;
	align-items: center;
	column-gap: 30px;
	padding: 30px;
	border: 1px solid #fff;
	border-radius: 5px;
	margin-bottom: 20px;
	background-color: #f3f3f3;
	position: relative;
}
.works .container .col-2 .content::before{
	content: "";
	position: absolute;
	background-color: var(--background-section);
	width: 100%;
	height: 100%;
	left: 0;
	transition: var(--transition);
	z-index: -1;
	transform: scale(0);
}
.works .container .col-2 .content:hover::before{
	z-index: 1;
	transform: scale(1);
}
.works .container .col-2 .content > div{
	position: relative;
	z-index: 2;
}
.works .container .col-2 .content img{
	width: 150px;
}
.works .container .col-2 .content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 15px;
}
.works .container .col-2 .content p{
	color: #777;
	line-height: 1.6;
	font-size: 18px;
}
/* End Works */
/* Start Events */
.events{
	position: relative;
}
.events .container{
	flex-wrap: wrap;
}
.events .container .col-2:first-child{
	max-width: 450px;
}
.events .container .col-2:nth-child(2){
	text-align: center;
	flex: 1;
}
.events .container .col-2 > img{
	width: 450px;
}
.events .countdown{
	display: flex;
	justify-content: center;
	align-items: center;
}
.events .countdown .unit{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-right: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	width: 80px;
	transition: var(--transition);
}
.events .countdown .unit:hover,
.events .countdown .unit:hover span:last-child{
	border-color: var(--main-color);
}
.events .countdown .unit span:first-child{
	color: var(--main-color);
	font-weight: bold;
	font-size: 36px;
	padding: 15px;
}
.events .countdown .unit span:last-child{
	font-size: 14px;
	padding: 8px 10px;
	border-top: 1px solid #ddd;
	transition: var(--transition);
}
.events .text h3{
	font-size: 28px;
	font-weight: 800;
	margin: 40px 0 20px;
}
.events .text p{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: #666;
}
.events .subscribe{
	text-align: center;
	width: 100%;
	margin-top: 100px;
}
.events .subscribe form{
	margin: 0 auto;
	background-color: #f6f5f5;
	width: fit-content;
	padding: 30px;
	border-radius: 60px;
}
.events .subscribe form input[type="email"]{
	padding: 20px;
	min-width: 400px;
	border-radius: 50px;
	border: none;
	margin-right: 20px;
}
.events .subscribe form input[type="email"]::placeholder{
	transition: var(--transition);
}
.events .subscribe form input[type="email"]:focus::placeholder{
	opacity: 0;
}
.events .subscribe form input[type="button"]{
	padding: 20px;;
	border-radius: 50px;
	border: none;
	background-color: var(--main-color);
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
/* End Events */
/* Start Pricing */
.pricing{
	position: relative;
	background-color: var(--background-section);
}
.pricing .box{
	background-color: #fff;
	padding: 30px 0;
	text-align: center;
	box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
	z-index: 1;
	position: relative;
}
.pricing .box::after,
.pricing .box::before{
	content: "";
	position: absolute;
	height: 50%;
	width: 0;
	z-index: -1;
	background-color: #f6f6f6;
	transition: var(--transition);
}
.pricing .box::before{
	left: 0;
	top: 0;
}
.pricing .box::after{
	right: 0;
	bottom: 0;
}
.pricing .box:hover::after,
.pricing .box:hover::before{
	width: 100%;
}
.pricing .box:nth-child(2){
	top: -20px;
	position: relative;
}
.pricing .box .popular{
	position: absolute;
	writing-mode: vertical-rl;
	background-color: var(--main-color);
	color: white;
	font-weight: bold;
	padding: 10px 10px 35px 10px;
	font-size: 18px;
	right: 20px;
	top: 0;
	width: 40px;
}
.pricing .box .popular::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border-style: solid;
	border-color: transparent transparent white;
	border-width: 20px;
}
.pricing .box h3{
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -1px;
}
.pricing .box img{
	width: 80px;
	display: block;
	margin: 40px auto;
}
.pricing .box .tax{
	font-size: 50px;
	font-weight: 600;
	color: var(--main-color);
}
.pricing .box .price{
	font-size: 50px;
	font-weight: 600;
	color: var(--main-color);
}
.pricing .box p{
	font-size: 16px;
	color: #777;
	margin: 5px 0 20px;
}
.pricing .box ul{
	text-align: left;
}
.pricing .box li{
	padding: 20px 0 20px 30px;
	border-top: 1px solid #eee;
}
.pricing .box li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	color: var(--main-color);
	font-weight: 900;
	margin-right: 10px;
}
.pricing .box a{
	display: block;
	width: fit-content;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 6px;
	padding: 15px 20px;
	font-weight: 600;
	margin: 30px auto 0;
	transition: var(--transition);
}
.pricing .box a:hover{
	background-color: var(--main-color);
	color: #fff;
}
/* End Pricing */
/* Start Top Videos */
.top-videos .container{
	display: flex;
	justify-content: center;
	height: 600px;
}
.top-videos .col-2:first-child{
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.top-videos .col-2:first-child .title{
	display: flex;
	justify-content: space-between;
	padding: 20px;
	background-color: #eee;
}
.top-videos .col-2:first-child .title h3{
	font-size: 16px;
}
.top-videos .col-2:first-child ul{
	height: calc(100% - 60px);
	overflow-y: scroll;
}
.top-videos .col-2:first-child ul li{
	padding: 20px;
	background-color: #fff;
	border-top: 1px solid #ddd;
	transition: var(--transition);
}
.top-videos .col-2:first-child ul li:hover{
	background-color: #fafafa;
	cursor: pointer;
}
.top-videos .col-2:first-child ul li:last-child{
	border-bottom: 1px solid #ddd;
}
.top-videos .col-2:first-child ul li a{
	display: block;
	color: #000;
	margin-bottom: 10px;
	transition: var(--transition);
}
.top-videos .col-2:first-child ul li:hover a{
	color: var(--main-color);
}
.top-videos .col-2:first-child ul li span{
	display: block;
	color: #777;
}
.top-videos .col-2:last-child{
	height: 100%;
	flex: 1;
	padding: 10px;
	background-color: #ddd;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.top-videos .col-2 p{
	padding: 20px;
	background-color: #fff;
}
/* End Top Videos */
/* Start Stats */
.stats{
	background-image: url(../images/stats.jpg);
	position: relative;
	z-index: 0;
}
.stats::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(255 255 255 / 90%);
	z-index: -1;
}
.stats .container .box{
	background-color: #fff;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 10px;
	opacity: .8;
	transition: var(--transition);
	position: relative;
}
.stats .container .box:hover{
	opacity: 1;
}
.stats .container .box::after,
.stats .container .box::before{
	content: "";
	position: absolute;
	width: 2px;
	height: 0;
	background-color: var(--main-color);
	transition: all 1s ease;
}
.stats .container .box:hover::after,
.stats .container .box:hover::before{
	height: 100%;
}
.stats .container .box::before{
	right: 0;
	top: 0;
}
.stats .container .box::after{
	left: 0;
	bottom: 0;
}
.stats .container .box .number{
	position: relative;
}
.stats .container .box .number::before{
	content: attr(data-goal);
	display: block;
	color: #000;
	font-size: 50px;
	font-weight: bold;
}
.stats .container .box p{
	font-size: 20px;
	font-weight: bold;
	color: var(--main-color);
	font-style: italic;
}
/* End Stats */
/* Start Discount */
.discount{
	display: flex;
	min-height: 100vh;
	flex-wrap: wrap;
}
.discount .col-2{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-basis: 50%;
}
.discount .col-2 .content{
	padding: 0 20px;
}
.discount .col-2:first-child{
	animation: change-background 8s alternate linear infinite; 
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 0;
}
.discount .col-2:first-child::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(23 135 224 / 97%);
	z-index: -1;
}
.discount .col-2 .second-heading h2{
	margin-bottom: 30px;
	font-size: 40px;
	letter-spacing: -2px;
}
.discount .col-2:first-child p{
	line-height: 1.8;
	font-size: 18px;
	max-width: 500px;
	margin: 20px auto;
}
.discount .col-2:first-child img{
	width: 300px;
}
.discount form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 25px;
}
.discount form input:not(:last-child),
textarea{
	padding: 15px;
	background-color: #F9F9F9;
	border: none;
	border-bottom: 1px solid #ddd;
	min-width: 300px;
	text-transform: capitalize;
}
.discount form input:not(:last-child)::placeholder{
	color: #777;
}
.discount form textarea{
	min-height: 200px;
	resize: none;
}
.discount form input[type="submit"]{
	padding: 15px;
	background-color: var(--main-color);
	border: none;
	color: #fff;
	min-width: 300px;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 18px;
}
/* End Discount */
/* Start Footer */
.footer{
	background-color: #191919;
}
.footer .main-footer{
	padding: 70px 0;
	align-items: start;
}
.footer .main-footer h2{
	font-size: 50px;
	color: #fff;
	font-weight: bold;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.footer .content .social{
	display: flex;
	column-gap: 10px;
	margin-bottom: 20px;
}
.footer .content .social li{
	background-color: #313131;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
}
.footer .content .social li a{
	color: #b9b9b9;
	font-size: 20px;
}
.footer .content .social li.facebook:hover{
	background-color: #1778F2;
}
.footer .content .social li.twitter:hover{
	background-color: #1DA1F2;
}
.footer .content .social li.youtube:hover{
	background-color: #CD201F;
}
.footer .content p{
	color: #b9b9b9;
	line-height: 2;
}
.footer .content .links li{
	padding: 15px 0;
	border-bottom: 1px solid #444;
}
.footer .content .links li:last-child{
	border-bottom: none;
}
.footer .content .links li a{
	color: #b9b9b9;
	transition: var(--transition);
}
.footer .content .links li a::before{
	font-family: "Font Awesome 5 Free";
	content: "\F101";
	color: var(--main-color);
	font-weight: 900;
	margin-right: 10px;
}
.footer .content .links li:hover a{
	margin-left: 10px;
	color: #fff;
}
.footer .content .contact-box{
	display: flex;
	column-gap: 10px;
	margin-bottom: 30px;
	align-items: center;
}
.footer .content .contact-box i{
	color: var(--main-color);
	font-size: 25px;
}
.footer .content .contact-box div{
	flex: 1;
	color: #b9b9b9;
	line-height: 1.6;
}
.footer .content img{
	border: 3px solid #fff;
	margin: 2px;
}






.footer .below-footer{
	padding: 25px 0;
	border-top: 1px solid #444;
	text-align: center;
}
.footer .below-footer p{
	color: #fff;
	text-transform: capitalize;
}
.footer .below-footer p span{
	color: var(--main-color);
	font-weight: bold;
	margin-left: 5px;
	font-size: 20px;
}
/* End Footer */








@media (max-width: 991px) {
	.flex-center{
		flex-direction: column;
		row-gap: 50px;
	}
	.container .col-2 {
		width: 100%;
	}	
	.container .col-2:first-child {
		text-align: center;
	}
	.landing .container .col-2:first-child {
		flex: 0;
	}
	.landing .container .col-2:last-child {
		text-align: center;
	}
	.landing .container .col-2 p {
		max-width: 100%;
	}
	.dots{
		width: 200px;
		height: 100px;
		object-fit: cover;
	}
	.dots-left{
		left: 0;
		bottom: 250px;
	}
	.top-videos .container{
		flex-direction: column;
		justify-content: unset;
		text-align: left;
		height: unset;
	}
	.top-videos .container .col-2:first-child {
		text-align: left;
		height: 600px;
		border-right: 1px solid #ddd;
	}
	.top-videos .container .col-2:last-child img{
		margin-bottom: 10px;
	}
	.discount .col-2{
		flex-basis: 100%;
	}
}
@media (max-width: 767px) {
	.main-heading h2 {
		font-size: 28px;
	}
	.dots{
		display: none;
	}
	.events .subscribe form{
		border-radius: 10px;
		width: 100%;
	}
	.events .subscribe form input[type="email"]{
		border-radius: 5px;
		display: block;
		margin-bottom: 20px;
		min-width: unset;
		width: 100%;
	}
	.events .subscribe form input[type="button"]{
		border-radius: 10px;
		background-color: var(--main-color);
		color: #fff;
		font-weight: bold;
		cursor: pointer;
		width: 100%;
	}
	.header .container {
		flex-direction: column;
		padding: 20px 10px;
	}
}