/* Start Global Rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --mainColor:#01C480;
    --mainColor-alt:#008371;
    --tabs-background-color:#f4fff9;
    --section-bgColor:#ececec;
    --text-color:#777;
    --mainTransition:0.3s ease-in-out;
    --Main-padding: 100px;
}
html{
    scroll-behavior: smooth;

}
body{
font-family: "Cairo", sans-serif;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
.container {
padding-left: 15px;
padding-right: 15px;
margin-left: auto;
margin-right: auto;
}
.main-heading{
margin: 0 0 80px;
position: relative;
left: 50%;
top: 0;
transform: translateX(-50%);
padding: 10px 30px;
text-transform: uppercase;
font-size: 30px;
border: 2px solid black;
width: fit-content;
z-index: 1;
transition: var(--mainTransition);
}
.main-heading::before,
.main-heading::after{
    content: "";
    position: absolute;
    border: 2px solid var(--mainColor);
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--mainColor);
    transition: var(--mainTransition);
}
.main-heading::before{
left: -30px;
}
.main-heading::after{
right:-30px;
}
.main-heading:hover::before{
    animation: move-bullet-left 0.5s linear 0s forwards;
    z-index: -1;
}
.main-heading:hover::after{
    animation: move-bullet-right 0.5s linear 0s forwards;
    z-index: -1;
}
.main-heading:hover{
    color: white;
    border: 2px solid white;
    transition-delay: 0.5s;
}
.spikes{
    position: relative;
}
.spikes::after{
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 30px;
    z-index: 1;
    background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%);
    background-size: 30px 30px;
}
.dots {
background-image: url(/IMAGES/dots\(colored\).png);
height: 186px;
width: 204px;
background-repeat: no-repeat;
position: absolute;
}
.dots-left {
right:0;
top: 150px;
}
.dots-right {
left:0;
bottom: 150px;
}
@media (max-width:1199px){
.dots{
display: 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 Header */
.header{
    background-color: white;
    position: relative;
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.header .container .logo{
    font-size: 27px;
    font-weight: bold;
    color: var(--mainColor);
    letter-spacing: 5px;
    height: 73,5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(max-width:767px){
    .header .container .logo{
        width: 100%;
        margin-top: 20px;
    }
}
.header .container .main-nav{
    display: flex;
}
@media(max-width:767px){
    .header .container .main-nav{
        margin: auto;
    }
}
.header .main-nav > li:hover .mega-menu{
    opacity: 1;
    z-index: 170;
    top:calc(100% + 2px);
}
.header .main-nav > li > a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 20px;
    padding: 0 20px;
    font-weight: normal;
    height: 73.5px;
    color: black;
    padding: 0 20px;
    overflow: hidden;
}
@media(max-width:767px){
    .header .main-nav > li > a{
        font-size: 14px;
        padding: 17px;
        height: 50px;
    }
}
.header .main-nav > li > a::before{
    content: '';
    position: absolute;
    top: 0;
    background-color: var(--mainColor);
    height: 3px;
    width: 100%;
    left: -100%;
    transition: var(--mainTransition);
}
.header .main-nav > li > a:hover{
    color: var(--mainColor);
    background-color:var(--tabs-background-color);
}
.header .main-nav > li > a:hover::before{
    left: 0;
}
.header .mega-menu{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: white;
    border-bottom: 3px solid var(--mainColor);
    z-index: -1;
    display: flex;
    gap: 50px;
    top:calc(100% + 50px);
    opacity: 0;
    transition: top var(--mainTransition), opacity var(--mainTransition);
    
}
@media (max-width: 767px){
    .header .mega-menu{
       flex-direction: column;
       padding: 5px;
       gap: 0;
    }
}
.header .mega-menu .img-mega img{
   width: 400px;
   max-width: 100%;
}
@media (max-width: 991px){
    .header .mega-menu .img-mega{
        display: none;
    }
}
.header .mega-menu .links{
    min-width: 250px;
    flex: 1;
}
.header .mega-menu .links li{

    position: relative;
}
@media (max-width: 767px){
.header .mega-menu .links:first-of-type li:last-child{
    border-bottom: 2px solid #e9e6e6;
    
}
}
.header .mega-menu .links li:not(:last-child){
    border-bottom: 1px solid #e9e6e6;
}
.header .mega-menu .links li::before{ /* Fill bg li */
content: "";
position: absolute;
left: 0;
top: 0;
width: 0;
height: 100%;
background-color: var(--tabs-background-color);
z-index: -1;
transition: var(--mainTransition);
}
.header .mega-menu .links li:hover::before{
 width: 100%;
}

.header .mega-menu .links li a{
    display: block;
    padding: 15px;
    color: var(--mainColor);
    font-size: 18px;
    font-weight: bold;
}
.header .mega-menu .links li a i{
 margin-right: 10px;
}
/* End Header */ 

/* Start Landing */
.landing{
position: relative;
}
.landing::before{
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    z-index: -1;
    transform: skewY(-7deg);
    transform-origin: top left;
}
.landing .container{
    display: flex;
    align-items: center;
    min-height: calc(100vh - 73.5px);
    padding-bottom: 120px;
}

@media (max-width:991px){
.landing .container{
    flex-direction: column;
}
}
.landing .landing-text{
    flex: 1;
}
@media (max-width:991px){
.landing .landing-text{

    text-align: center;
}
}
.landing .landing-text h1{
    font-weight: bold;
    font-size: 40px;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: -1px;
}
@media (max-width:767px){
.landing .landing-text h1{
    font-size: 28px;
    margin-top: 100px;
    margin-bottom: 40px;
}
}
.landing .landing-text p{
    line-height: 2;
    font-size: 20px;
    color: var(--text-color);
    max-width: 500px;
}
@media (max-width:767px){
.landing .landing-text p{
    font-size: 18px;
}
}
.landing .landing-text  span{
    color: var(--mainColor);
    text-transform: uppercase;
}
@media (max-width:991px){
.landing .landing-text p{
    margin: 10px auto;
}
}
.landing .landing-image img{
    width: 500px;
    max-width: 100%;
    animation: up-down 4s linear  infinite;
    position: relative;
}
@media (max-width:991px){
.landing .landing-image {
    order: -1;
    margin-bottom: 20px;
    
}
.landing .landing-image img{
    margin-top: 30px;
    padding: 10px 0 0 0;
}
}

.landing .go-down {
    position: absolute;
    left: 50%;
    bottom: 10%;
    color: var(--mainColor);
    transition: var(--mainTransition);
}
.landing .go-down:hover {
    color: var(--mainColor-alt);
}
.landing .go-down i {
animation: bouncing 1.5s infinite;
}
/* End Landing */
/* Start Articles */
.articles{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    position: relative;
    background-color: white;
}
.articles .container{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 40px;
}
.articles .box{
box-shadow: 0 2px 15px rgb(0 0 0 /15%);
background-color: white;
border-radius: 8px;
transition: transform 0.4s , box-shadow 0.4s;
overflow: hidden;
}
.articles .box:hover{
box-shadow: 0 2px 15px rgb(0 0 0 /25%);
transform: translateY(-10px);
}
.articles .box img{
    max-width: 100%;
    max-height: 100%;
    background-color: #31656bd4;
}
.articles .content{
padding: 20px;
}
.articles .content h3{
margin: 0;
}
.articles .content p{
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}
.articles .info {
padding: 20px;
position: relative;
border-top: 1px solid #e6e6e7;
display: flex;
justify-content: space-between;
align-items: center;
}
.articles .info a{
    color: var(--mainColor);
    font-weight: bold;
}
.articles .info i {
    color: var(--mainColor);
}
.articles .box:hover .info i{
    animation: move-arrow 0.4s linear  infinite ;
}
/* End Articles */
/* Start Gallery Section */

.gallery{
padding-top: var(--Main-padding);
padding-bottom: var(--Main-padding);
position: relative;
background-color: var(--section-bgColor);
}
.gallery .container{
display: grid;
grid-template-columns: repeat( auto-fill, minmax(300px, 1fr));
gap: 40px;
}
.gallery .box{
padding: 20px;
background-color: white;
box-shadow:0px 12px 20px 0px rgb(0 0 0 / 13%), 0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.gallery .box .image{
position: relative;
overflow: hidden;
}
.gallery .image::before{
content: "";
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 12px;
height: 12px;
background-color: rgba(255, 255, 255, 0.3);
opacity: 0;
z-index: 5;
}
.gallery .image:hover::before{
animation: flashing 0.7s ;
}
.gallery .image img{
    max-width: 100%;
    transition: var(--mainTransition);
}
.gallery .image:hover img{
    transform: rotate(5deg)  scale(1.1) ;
}
/* End Gallery Section */
/* Start Features Section */
.features{
padding-top: var(--Main-padding);
padding-bottom: var(--Main-padding);
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 #fafafa;
border-radius: 5px;
}
.features .box .image-holder {
position: relative;
overflow: hidden;
}
.features .box .image-holder img{
max-width: 100%;
}

.features .box .image-holder::before{
    content:"";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 100%;
}

.features .box .image-holder::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 0px 0px 170px 500px;
    border-color: transparent transparent white transparent;
    transition: var(--mainTransition);
       
}
.features .box:hover .image-holder::after{
border-width: 170px 500px 170px 0px;
}
.features .box h2{
position: relative;
font-size: 40px;
margin: 0 auto;
width: fit-content;
}

.features .box h2::after{
    content: "";
    position: absolute;
    left: 15px;
    bottom: -20px;
    width: calc(100% - 30px);
    height: 5px;
}
.features .box p{
    line-height: 2;
    font-size: 20px;
    padding: 20px;
    margin: 30px 0;
    font-weight: 400;
    color: var(--text-color);
}
.features .box a{
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 22px;
    border-radius: 6px;
    transition: var(--mainTransition);
}
.features .quality .image-holder::before{
background-color: #f43f36a2;

}
.features .quality h2::after{
    background-color: #f44036;
    color: #f44036;
    
}

.features .quality a{
color: #f44036;
border: 3px solid #f44036;
background:linear-gradient(to right, #f44036 50% ,white 50%);
background-position: right bottom;
background-size: 200% 100%;
}
.features .time .image-holder::before{
background-color: #009687a8;
}
.features .time h2::after{
    background-color: #009688;;
    color: #009688;;
    
}

.features .time a{
color: #009688;;
border: 3px solid #009688;;
background:linear-gradient(to right, #009688 50% ,white 50%);
background-position: right bottom;
background-size: 200% 100%;
}
.features .passion .image-holder::before{
background-color: #683ab79f;
}
.features .passion h2::after{
    background-color: #673ab7;
    color: #673ab7;
    
}

.features .passion a{
color: #673ab7;
border: 3px solid #673ab7;
background:linear-gradient(to right, #673ab7 50% ,white 50%);
background-position: right bottom;
background-size: 200% 100%;
}
.features .box:hover a{
    background-position: left bottom;
    color: white;
}
/* End Features Section */
/* Start Testimonials */
.testimonials{
padding-top: var(--Main-padding);
padding-bottom: var(--Main-padding);
background-color: var(--section-bgColor);
}
.testimonials .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 70px 40px;
}
.testimonials .box{
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
}
.testimonials .box img{
    position: absolute;
    right: -5px;
    top: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid var(--section-bgColor);
}
.testimonials .box h3{
    margin: 0 0 10px;
    color: var(--mainColor-alt);
}
.testimonials .box span{
color: var(--text-color);
margin-bottom: 10px;
display: block;
}
.testimonials .box .rate .filled{
    color: #ffc107;
}
.testimonials .box p{
    line-height: 1.5;
    color: var(--text-color);
}
/* End Testimonials */
/* Start Team Members */
.team{
padding-top: var(--Main-padding);
padding-bottom: var(--Main-padding);
background-color: white;
position: relative;
}
.team .container{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
gap: 30px;
}
.team .box{
    position: relative;
    z-index: 0;
}
.team .box::before,.team .box::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius:10px;
    transition: var(--mainTransition);
}
.team .box::before{
    z-index: -2;
    background-color:#f3f3f3;
    width: calc(100% - 60px);
}
.team .box::after{
    z-index: -1;
    background-color: #7777777a;
    width: 0;
}
.team .box:hover::after{
    width: calc(100% - 60px);

}
.team .box .data{
    display: flex;
    align-items: center;
    padding-top: 60px;
}
.team .box .data img{
    width: calc(100% - 60px);
    border-radius: 10px;
    transition: var(--mainTransition);
}
.team .box:hover img{
    filter: grayscale(100%);
}
.team .box .social-icons{
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}
/* .team .box .social-icons a{
} */
.team .box .social-icons a i{
    color: var(--text-color);
    transition: var(--mainTransition);
}
.team .box .social-icons a:hover i{
    color: var(--mainColor);
}
.team .box .info{
padding-left: 80px;
}
.team .box .info h3{
    transition: var(--mainTransition);
    color: var(--mainColor);
    font-size: 22px;
}
.team .box:hover h3{
    
    color: var(--text-color);
}
.team .box .info p{
    margin: 10px 0 25px;
}
/* End Team Members */
/* Start Services */
.services{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    position: relative;
    background-color: var(--section-bgColor);
}
.services .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 40px;
}
.services .box{
background-color: white;
box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
counter-increment: services;
transition: var(--mainTransition);
position: relative;
}
.services .box::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--mainColor);
    transition: var(--mainTransition);
    height: 4px;
    width: 0;
    top: -3px;
}
.services .box:hover{
    transform: translateY(-10px);
}
.services .box:hover::before{
    width: 100%;
}
.services .box i{
margin: 40px auto;
display: block;
text-align: center;
color:var(--text-color);
}
.services .box h3{
    text-align: center;
    color: var(--mainColor);
    margin: 20px 0 40px;
    font-size: 22px;
}
.services .box .info{
padding: 15px;
position: relative;
text-align: right;
background-color: #f9f9f9;
}
.services .box .info::before{
    content: "0" counter(services);
    background-color: var(--mainColor);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 80px;
    padding-right: 15px;
}
.services .box .info::after{
    content: "";
    position: absolute;
    background-color: #D5D5D5;
    left: 80px;
    top: 0;
    height: 100%;
    width: 60px;
    transform: skewX(-30deg);
}
.services .box .info a{
    color: var(--mainColor);
}
/* End Services */
/* Start Our Skills */
.our-skills{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    background-color: white;
}
.our-skills .container{
    display: flex;
    align-items: center;
}
@media (max-width:991px){
    .our-skills .container img{
        display: none;
    }
}

.our-skills .container img{
    width: 500px;
    height: 400px;
    padding-right: 60px;
}
.our-skills .skills{
    flex:1;
}
.our-skills .skill h3{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.our-skills .skill h3 span{
    font-size: 12px;
    padding: 3px 6px;
    border: 1px solid #ccc;
    color: var(--mainColor);
    border-radius: 4px;
}
.our-skills .skill .the-progress{
    height: 30px;
    background-color: #eee;
    position: relative;
}
.our-skills .skill .the-progress span{
    position: absolute;
    left: 0;    
    top: 0;
    background-color: var(--mainColor);
    height: 100%;
}
/* End Our Skills */
/* Start Work Steps */
.work-steps{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    background-color: var(--section-bgColor);
    position: relative;
}
.work-steps .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width:1199px){
    .work-steps .container{
        flex-direction: column;
    }
}
.work-steps .container .image{
    position: relative;
    width: 500px;
    max-width: 100%;
    margin-right: 200px;
    animation: up-down 4s linear infinite;
}
@media (max-width:1199px){
    .work-steps .container .image{
        margin: 0 0 30px ;
    }
}
.work-steps .container .info .box{
    background-color: #f6f5f5;
    display: flex;
    align-items: center;
    padding: 30px;
    margin-bottom: 18px;
    border: 3px solid var(--mainColor-alt);
    border-radius: 8px;
    position: relative;
    z-index: 0;
}
.work-steps .container .info .box::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #ededed;
    transition: 1.5s;
    z-index: -1;
}
@media (max-width: 767px){
    .work-steps .container .info .box{
        flex-direction: column;
    }
}
.work-steps .container .info .box:hover::before{
    width: 100%;
  
}
.work-steps .info .box img{
 width: 62px;
 margin-right: 30px;   
}
@media (max-width: 767px){
    .work-steps .info .box img{
        margin: 0 0 35px;
    }
}
.work-steps .box .text h3{
  margin: 0;
  font-size: 22px;  
}
.work-steps .box .text p{
margin: 10px 0 0;
line-height: 1.7;
color: var(--text-color);
font-size: 17px;
}
@media (max-width: 767px){
    .work-steps .box .text{
        text-align: center;
    }
}
/* End Work Steps */
/* Start Latest Event */
.events{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    position: relative;
}
.events .container{
display: flex;
align-items: center;
flex-wrap: wrap;
}
@media (max-width:991px){
    .events .container {
        flex-direction: column;
    }
}
.events .container img{
max-width: 400px;
}
@media (max-width:991px){
    .events .container img{
        max-width: 300px;
        margin: 0 auto;
    }
}
.events .info{
flex: 1;
}
.events .info .time{
display: flex;
align-items: center;
justify-content: center;
margin: 20px auto;
gap: 20px;
}
@media (max-width:767px){
    .events .info .time{
        margin: 20px 0;
        gap: 5px;
    }
}
.events .time .unit{
border: 1px solid #d4d4d4;
border-radius: 8px;
text-align: center;
width: 80px;
transition: var(--mainTransition);

}
.events .time .unit span{
    display: block;

}
.events .time .unit span:first-child{
font-size: 28px;
font-weight: bold;
color: var(--mainColor);
padding: 15px;
}
.events .time .unit span:last-child{
    border-top: 1px solid #d4d4d4;
    font-size: 11px;
    font-weight: normal;
    padding: 10px;
    transition: var(--mainTransition);

}
.events .time .unit:hover , .events .time .unit:hover span:last-child {
    border-color: var(--mainColor);
}
.events .info .title{
    font-size: 30px;
    text-align: center;
    margin: 40px 0 0;
}
.events .info .description{
    text-align: center;
    line-height: 1.7;
    font-size: 18px;
    color: var(--text-color);
}
@media (max-width:767px){
    .events .info .description{
        font-size: 15px;

    }
}
.events .subscribe{
    width: 100%;
    margin-top: 70px;
}
.events .subscribe form{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    background-color: #ececec;
    width: 600px;
    padding: 30px;
    border-radius: 50px;    
}
@media (max-width:767px){
    .events .subscribe form{
        max-width: 100%;
        padding: 20px;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
}
.events .subscribe form input[type="email"]{
background-color: white;
border-radius: 50px;
padding: 20px;
border: none;
flex:1;
caret-color: var(--mainColor);
}
@media (max-width:767px){
    .events .subscribe form input[type="email"]{
        width: 100%;
        border-radius: 0;
    }
}
.events .subscribe form input[type="email"]:focus{
    outline: none;
}
.events .subscribe form input[type="email"]::placeholder{
    transition: opacity var(--mainTransition);
}
.events .subscribe form input[type="email"]:focus::placeholder{
    opacity: 0;
}
.events .subscribe form input[type="submit"]{
    border-radius: 50px;
    background-color: var(--mainColor);
    color: white;
    font-weight: bold;
    padding: 20px;
    border: none;
    cursor: pointer;
    transition: var(--mainTransition);
}
@media (max-width:767px){
    .events .subscribe form input[type="submit"]{
        border-radius: 0;
    }
}
.events .subscribe form input[type="submit"]:hover{
    background-color: var(--mainColor-alt);
}
/* End Latest Event */
/* Start Pricing Section*/
.pricing{
padding-top: var(--Main-padding);
padding-bottom: var(--Main-padding);
background-color: var(--section-bgColor);
position: relative;
}
.pricing .container{
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
    gap: 30px;
}
.pricing .container .box{
position: relative;
box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.14) , 0 2px 4px rgba(0, 0, 0, 0.12);
transition: var(--mainTransition);
text-align: center;
background-color: white;
padding: 20px 0 20px;
z-index: 0;
}
@media (min-width:1200px){
    .pricing  .box.popular{
        top: -20px;
    }
}
.pricing  .box .label{
    position: absolute;
    background-color: var(--mainColor);
    color: white;
    writing-mode: vertical-lr;
    right: 15px;
    top: 0;
    padding: 10px 10px 30px;
    width: 40px;
    font-size: 18px;
    font-weight: bold;
}
.pricing  .box .label::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-color: transparent transparent white transparent;
    border-width: 23px;
}
.pricing .box::before{
content: "";
position: absolute;
left: 0;
top: 0;
height: 50%;
width: 0;
background-color: #f6f6f6;
transition: var(--mainTransition);
z-index: -1;
}
.pricing  .box::after{
content: "";
position: absolute;
right: 0;
bottom: 0;
height: 50%;
width: 0;
background-color: #f6f6f6;
transition: var(--mainTransition);
z-index: -1;
}
.pricing .box:hover::before ,
.pricing .box:hover::after{
width: 100%;
}
.pricing  .box .title{
font-weight: bold;
font-size: 19px;
margin: 20px 0;
letter-spacing: -1px;
}   
.pricing  .box img{
width: 70px;
margin-bottom: 35px;
}
.pricing  .box .price{
margin-bottom: 30px;
}
.pricing  .box .price span:first-child{
    display: block;
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 7px;
    color: var(--mainColor);
}
.pricing  .box .price span:last-child{
color: var(--text-color);
}
.pricing  .box ul {
text-align: left;
}
.pricing  .box ul li{
padding: 20px;
border-top: 1px solid #eee;
}
.pricing  .box ul li::before{
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
color: var(--mainColor-alt);
}
.pricing  .box a{
    display: block;
    width: fit-content;
    color: var(--mainColor);
    background-color: transparent;
    padding: 15px 20px;
    margin: 30px auto 40px;
    border: 2px solid var(--mainColor);
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: var(--mainTransition);
}
.pricing  .box a:hover{
    color: white;
    background-color: var(--mainColor-alt);
    border-color: var(--mainColor-alt);
}
/* End Pricing Section*/
/* Start Videos */
.videos{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    background-color: white;
}

.videos .holder{
display: flex;
justify-content: center;
background-color: var(--section-bgColor);
border: 1px solid #ddd;
width: fit-content;
margin: auto;
}
@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;
    padding: 15px;
    background-color: #f4f4f4;
    font-size: 18px;
    font-weight: bold;
    color: var(--mainColor);
}
.videos .holder .list .name i{
    cursor: pointer;
}
.videos .holder .list ul li{
    padding: 25px 10px 30px 20px;
    border-top: 1px solid var(--section-bgColor);
    cursor: pointer;
    transition: var(--mainTransition);
}
.videos .holder .list ul li:hover{
    color: var(--mainColor);
    background-color: var(--tabs-background-color);
}
.videos .holder .list ul li span{
    display: block;
    margin-top: 15px;
    color: var(--text-color);
}
.videos .holder .preview{
    background-color: #e2e2e2;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.videos .holder .preview img{
    max-width: 100%;
}
.videos .holder .preview .info{
    background-color: white;
    padding: 20px;
    margin-top: 10px;
}
/* End Videos */
/* Start Stats */
.stats{
    padding-top: var(--Main-padding);
    padding-bottom: var(--Main-padding);
    background-image: url(/IMAGES/stats.jpg);
    background-size: cover;
    min-height: 300px;
    position: relative;
    z-index: 0;
}
.stats::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;  
    width: 100%; 
    height: 100%; 
    background-color: rgba(255, 255, 255, 0.95);
    z-index: -1;
}
.stats h2{
    font-weight: bold;
    font-size: 35px;
    text-align: center;
    padding-bottom: 30px;
}
.stats .container{
display: grid;
grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
gap: 25px;
}
.stats .box{
    background-color: white;
    text-align: center;
    padding: 30px 15px;
    box-shadow: 0 12px 20px rgb(0 0 0 / 13%) , 0 2px 4px rgb(0 0 0 / 12%);
    position: relative;
    opacity: 0.7;
    transition: var(--mainTransition);
}
.stats .box:hover{
    opacity: 1;
}
.stats .box::before
,.stats .box::after{
content: "";
position: absolute;
width: 5px;
height: 0;
background-color: var(--mainColor);
transition: 1s;
}
.stats .box::before{
    left: 0;
    bottom: 0;
}
.stats .box::after{
right: 0;
top: 0;
}
.stats .box:hover::before,
.stats .box:hover::after{
    height: 100%;
}
.stats .box i{
    color: var(--mainColor);
}
.stats .box .number{
display: block;
margin: 20px 10px 20px;
font-size: 40px;
font-weight: bold;
}
.stats .box .text{
color: var(--mainColor-alt);
font-size: 20px;
font-weight: bold;
font-style: italic;
}
/* End Stats */
/* Start Discount */
.discount{
min-height: 100vh;
display: flex;
flex-wrap: wrap;
}
.discount .content{
    text-align: center;
    padding: 20px;
}
.discount .content h2{
    font-size: 40px;
    padding: 20px;
    letter-spacing: -1px;
}
.discount .content p{
    line-height: 1.6;
    font-size: 18px;
    max-width: 500px;
}
.discount .image .content img {
    position: relative;
    width: 200px;
    max-width: 100%;
    margin-top: 28px;
    animation: up-down 4s linear infinite;
}

.discount .image{
    background-image: url(/IMAGES/discount-background1.jpg);
    background-size: cover;
    display: flex;
    flex-basis: 50%;
    color: white;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    animation: change-background 10s linear infinite;
}
.discount .image::before{
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #008371fa;
z-index: -1;
}
@media (max-width:991px){
    .discount .image{
        flex-basis: 100%;
    }
}
.discount .form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 50%;
}
.discount .form .input{
    display: block;
    padding: 25px;
    border: none;
    width: 100%;
    border-bottom: 1px solid #10be72bd;
    margin-bottom: 30px;
    background-color: var(--section-bgColor)
}
.discount .form textarea {
resize: none;
height: 140px;
border: none !important; 
}
.discount .form .input:focus{
outline: none;
caret-color: var(--mainColor);
}
.discount .form [type="submit"]{
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: var(--mainColor);
    color: white;
    border: none;
    font-size: 22px;
    font-weight: bold;
    text-transform: capitalize;
    transition: var(--mainTransition);
    cursor: pointer;
}
.discount .form [type="submit"]:hover{
background-color: var(--mainColor-alt);
}
@media (max-width:991px){
    .discount .form{
        flex-basis: 100%;
    }
}
/* End Discount */
/* Start Footer */
.footer{
background-color: #191917;
padding-top: 70px;
}
.footer .container{
display: grid;
grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
gap: 40px;
}
.footer .box h3{
font-size: 60px;
color: var(--mainColor);
margin: 0 0 25px;
text-transform: uppercase;
letter-spacing: 5px;
}
@media (max-width:767px){
.footer .box h3{
    text-align: center;
}
}
.footer .box .social{
    display: flex;
}
@media (max-width:767px){
.footer .box .social{
    justify-content: center;
}
}
.footer .box .social li{
margin-right: 15px;
}
.footer .box .social li a{
background-color: #313131;
color: var(--section-bgColor);
display: inline-flex;
padding: 20px;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
font-size: 20px ;
transition: var(--mainTransition);
}
.footer .box .social .facebook:hover{
background-color: #1877F2;
}
.footer .box .social .youtube:hover{
background-color: #ff0000;

}
.footer .box .social .twitter:hover{
background-color: #1da1f2;

}
.footer .box .text{
line-height: 2;
color: #b9b9b9;
}
@media (max-width:767px){
.footer .box .text{
    text-align: center;
}
}
.footer .box .links  li{
padding: 15px 0;
transition: var(--mainTransition);
}
@media (max-width:767px){
.footer .box .links  li{
    text-align: center;
}
}
.footer .box .links  li a{
    color: #b9b9b9;
    transition: var(--mainTransition);
}
.footer .box .links  li:not(:last-child){
border-bottom: 1px solid #444;
}
.footer .box .links  li:hover{
    padding-left: 15px;
}
.footer .box .links  li:hover a{
color: white;
}
.footer .box .links  li a::before{
font-family: "Font Awesome 5 Free";
content: "\F101";
font-weight: 900;
font-size: 12px;
margin-right: 10px;
color: var(--mainColor);
}
.footer .box .line{
display: flex;
align-items: center;
color: #b9b9b9;
margin-bottom: 35px;
}
@media (max-width:767px){
.footer .box .line{
    flex-direction: column;
}
}
.footer .box .line i{
    font-size: 20px;
    color: var(--mainColor);
    margin-right: 10px;
}
@media (max-width:767px){
.footer .box .line i{
    margin-bottom: 10px;
}
}
.footer .box .line .info{
    flex: 1;
    line-height: 1.8;
}
.footer .box .line .info span{
    display: block;
}
.footer .footer-gallery img {
    margin: 2px;
    width: 75px;
    border: 3px solid white;
}
/*End Footer*/
/* Start Animation */
@keyframes up-down{
    0%, 100%{
        top: 0;
    }
    50%{
        top: -50px;
    }
}

@keyframes bouncing {
    0%,10%,20%,50%,70%,80%,90%,100%{
        transform: translateY(0);
    }
    40%,60%{
    transform: translateY(-10px);

    }
}
@keyframes move-bullet-left {
    50%{
        left: 0;
        width: 12px;
        height: 12px;
    }
    100%{
        left: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}
@keyframes move-bullet-right {
    50%{
        right:0;
        width: 12px;
        height: 12px;
    }
    100%{
        right: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}
@keyframes move-arrow {

    100%{
    transform: translateX(10px); 
    }
}
@keyframes flashing{
    0%,40% {
        opacity: 1;
    }
    100%{
        width: 150%;
        height: 150%;
    }
}
@keyframes change-background {
    0%,100%{
        background-image: url(/IMAGES/discount-background1.jpg);
    }
    50%{
        background-image: url(/IMAGES/discount-background2.jpg);
    }
}

/* End Animation */
