/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* this is to prevent the page from scrolling while the loader is visible */
.on-scroll {
overflow: hidden;
height: 100vh;
}

.section{
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.section.visible {
    opacity: 1; 
    transform: translateY(0); 
}

:root {
    --main-color: #2196f3;
    --main-color-alt: #1478ca;
    --main-transition: 0.3s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --section-background: #ececec;
}

::selection {
    background-color: var(--main-color);
    color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: white;

}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color-alt);
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Start loader */
.loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.808);
    z-index: 9999;
  }
.loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .jimu-primary-loading:before,
  .jimu-primary-loading:after {
    position: absolute;
    top: 0;
    content: '';
  }
  
  .jimu-primary-loading:before {
    left: -19.992px;
  }
  
  .jimu-primary-loading:after {
    left: 19.992px;
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
  }
  
  .jimu-primary-loading:before,
  .jimu-primary-loading:after,
  .jimu-primary-loading {
    background: #076fe5;
    -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    width: 13.6px;
    height: 32px;
  }
  
  .jimu-primary-loading {
    text-indent: -9999em;
    margin: auto;
    position: absolute;
    right: calc(50% - 6.8px);
    top: calc(50% - 16px);
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
  }
  
  @-webkit-keyframes loading-keys-app-loading {
    0%,
    80%,
    100% {
      opacity: .75;
      box-shadow: 0 0 #076fe5;
      height: 32px;
    }
    40% {
      opacity: 1;
      box-shadow: 0 -8px #076fe5;
      height: 40px;
    }
  }
  
  @keyframes loading-keys-app-loading {
    0%,
    80%,
    100% {
      opacity: .75;
      box-shadow: 0 0 #076fe5;
      height: 32px;
    }
    40% {
      opacity: 1;
      box-shadow: 0 -8px #076fe5;
      height: 40px;
    }
  }
/* End loader */
/* Start main title */

.main-title {
    margin: 0 auto 80px;
    width: fit-content;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    cursor: default;
    transition-duration: var(--main-transition);
}

.main-title:hover {
    color: white;
    border-color: transparent;
    transition-delay: 0.7s;
}

.main-title::after,
.main-title::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--main-color);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 2;
}

.main-title::before {
    right: -40px;
}

.main-title::after {
    left: -40px;
}

.main-title:hover:before {
    z-index: -1;
    animation: right-a 0.7s linear forwards;

}

.main-title:hover:after {
    z-index: -1;
    animation: left-a 0.7s linear forwards;
}

@keyframes right-a {
    50% {
        right: 0;
        width: 15px;
        height: 15px;

    }

    100% {
        border-radius: 0;
        right: 0;
        width: 50%;
        height: 100%;
    }
}

@keyframes left-a {
    50% {
        left: 0;
        width: 15px;
        height: 15px;

    }

    100% {
        border-radius: 0;
        left: 0;
        width: 60%;
        height: 100%;
    }
}



/* End main title */

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}


/* Start Global Rules */

/* Start Header */

header {
    background-color: white;
    position: relative;
    box-shadow: 0 0 10px #ddd;
    transition: top 0.3s ease;

}

header.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

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

header .logo {
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
    height: 73px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    header .logo {
        width: 100%;
    }
}



header .main-nav {
    display: flex;

}


@media (max-width: 768px) {
    header .main-nav {
        margin: auto;
    }
}



header .main-nav>li>a {
    display: flex;
    height: 73px;
    justify-content: center;
    align-items: center;
    position: relative;
    color: black;
    padding: 0 30px;
    font-size: 17px;
    overflow: hidden;
    transition: var(--main-transition);
}

@media (max-width: 768px) {
    header .main-nav>li>a {
        padding: 0 15px;
        height: 50px;
        font-size: 17px;
    }
}

header .main-nav>li>a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--main-color);
    top: 0;
    right: 100%;
    transition: var(--main-transition);
}

@media (min-width: 767px) {
    header .main-nav>li>a:hover {
        color: var(--main-color);
        background-color: #f3f2f2;
    }

    header .main-nav>li>a:hover::before {
        right: 0;
    }
}



header .main-nav>li>a.active {
    color: var(--main-color);
    background-color: #f3f2f2;
    right: 0;
}

header .main-nav>li>a.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--main-color);
    top: 0;
    right: 0%;
    transition: var(--main-transition);
}

#menu {
    cursor: pointer;
}


/* End Header */

/* Start Mega Menu */

header .mega-menu {
    position: absolute;
    z-index: -5;
    width: 100%;
    left: 0;
    padding: 30px;
    display: none;
    background-color: white;
    gap: 50px;
    border-bottom: 3px solid var(--main-color);
    top: calc(100% + 100px);
    justify-content: space-between;
    transition: var(--main-transition);
    opacity: 0;

}


@media (max-width: 768px) {
    header .mega-menu {
        flex-direction: column;
        gap: 0;
    }
}

header .mega-menu.idmega-menu {
    opacity: 1;
    z-index: 100;
    top: calc(100% + 1px);
    display: flex;

}

header .mega-menu .imags img {
    width: 300px;
    max-width: 100%;
}

@media (max-width: 992px) {
    header .mega-menu .imags {
        display: none;
    }
}



header .mega-menu .links {
    min-width: 200px;
    flex: 1;

}

header .mega-menu .links li a {
    color: var(--main-color);
    padding: 17px;
    display: block;
    font-size: 18px;
    font-weight: bold;
}

header .mega-menu .links li i {
    margin-right: 10px;
}

header .mega-menu .links li {
    position: relative;
}

@media (max-width: 992px) {
    header .mega-menu .links:first-of-type li:last-child {
        border-bottom: 1px solid #cecdcd;
    }
}




header .mega-menu .links li:not(:last-child) {
    border-bottom: 1px solid #cecdcd;
}

header .mega-menu .links li::before {
    content: "";
    position: absolute;
    width: 0%;
    background-color: #f3f2f2;
    height: 100%;
    z-index: -1;
    transition: var(--main-transition);
}

header .mega-menu .links li:hover::before {
    width: 100%;
}

/* End Mega Menu */

/* Start Landing */

.landing {
    position: relative;
}

.landing::before {
    content: "";
    background-color: #eeeeee;
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
    top: -50px;
    transform: skewY(-5deg);
    transform-origin: top left;
}

.landing .container {
    display: flex;
    min-height: calc(100vh - 73px);
    justify-content: space-between;
    align-items: center;
    padding-bottom: 120px;
}

.landing .container .text {
    flex: 1;
}

@media (max-width: 991px) {
    .landing .container .text {
        text-align: center;
    }
}

.landing .container .text h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .landing .container .text h1 {
        font-size: 30px;
    }
}

.landing .container .text h1 span {
    color: var(--main-color);
    font-size: 50px;
    font-weight: 800;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .landing .container .text h1 span {
        font-size: 40px;
    }
}

.landing .container .text p {
    font-size: 23px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
}

@media (max-width: 768px) {
    .landing .container .text p {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .landing .container .text p {
        margin: 10px auto;
    }
}

#typewriter::after {
    content: "_";
    animation: blink 0.7s infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}

.landing .container .imgs img {
    width: 600px;
    position: relative;
    animation: tu-down 5s linear infinite;
}

@media (max-width: 991px) {
    .landing .container .imgs img {
        display: none;
    }
}

@keyframes tu-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }

}

.landing .goDown {
    color: var(--main-color);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--main-transition);
}

.landing .goDown:hover {
    color: var(--main-color-alt);
}

.landing .goDown i {
    font-size: 33px;
    font-weight: bold;
    animation: bounc 2s infinite;
}

@keyframes bounc {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }

}

/* End Landing */

/* Start Articles */

.articels {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
}

.articels .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.articels .box {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    transition: transform var(--main-transition), box-shadow var(--main-transition);
}

.articels .box:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.35);

}

.articels .box:hover .read-more i {
    animation: move-i 0.8s linear infinite reverse;
}


.articels .box img {
    max-width: 100%;
}

.articels .box .content {
    padding: 20px;
}

.articels .box .content h3 {
    margin: 0;
    font-weight: 800;
    font-size: 22px;
}

.articels .box .content p {
    color: #777;
    line-height: 1.7;
    margin: 15px 0 0 0;
}

.articels .box .read-more {
    padding: 20px;
    border-top: 1px solid #e2e2e2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.articels .box .read-more a {
    color: var(--main-color);
    font-weight: bold;
}

.articels .box .read-more i {
    color: var(--main-color);

}

@keyframes move-i {
    100% {
        transform: translatex(-15px);
    }
}

/* End Articles */

.spikes {
    position: relative;
}

.spikes::before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 30px;
    z-index: 2;
    background-image: linear-gradient(135deg, white 25%, transparent 25%), linear-gradient(225deg, white 25%, transparent 25%);
    background-size: 30px 30px;
}

/* Start Gallery */

.gallery {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: #ececec;
    position: relative;
    z-index: 1;
}

.gallery .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.gallery .box {
    padding: 15px;
    background-color: white;
}

.gallery .box .imge {
    position: relative;
    overflow: hidden;
}

.gallery .box .imge::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.233);
    opacity: 0;
    z-index: 5;
}

.gallery .box .imge:hover::before {
    animation: over-img 0.5s;
}

@keyframes over-img {

    0%,
    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        width: 250%;
        height: 250%;
    }
}

.gallery .box .imge img {
    max-width: 100%;
    transition: var(--main-transition);

}

.gallery .box .imge:hover img {
    transform: rotate(7deg) scale(1.2);
}

/* End Gallery */

/* Start Features */

.features {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: white;
    position: relative;
    z-index: 1;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.features .box {
    border: 1px solid #dbdbdb;
    text-align: center;
}

.features .box .imge {
    position: relative;
    overflow: hidden;
}

.features .box .imge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.features .box .imge::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    border-width: 0px 0px 230px 550px;
    border-color: transparent transparent white transparent;
    border-style: solid;
    transition: var(--main-transition);
}

.features .box .imge img {
    max-width: 100%;
}

.features .box h2 {
    margin: 0 auto;
    font-size: 40px;
    font-weight: bold;
    position: relative;
    width: fit-content;
}

.features .box h2::after {
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    height: 6px;
    background-color: red;
    border-radius: 10px;
    left: 15px;
    bottom: -20px;
}

.features .box p {
    line-height: 2;
    font-size: 20px;
    padding: 20px;
    margin: 20px 0;
    color: #777;
}

.features .box a {
    padding: 10px 30px;
    border: 3px solid red;
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
    border-radius: 5px;
    transition: var(--main-transition);
    font-size: 20px;
    font-weight: bold;
    background-position: right bottom;
    background-size: 200% 100%;
}

.features .box:hover .imge::after {
    border-width: 0px 550px 230px 450px;
    right: -110px;

}

.features .box:hover a {
    background-position: left bottom;
    color: white;

}

.features .quality a {
    border-color: #f44036;
    color: #f44036;
    background: linear-gradient(to right, #f44036 50%, white 50%);
    background-position: right bottom;
    background-size: 200% 100%;
}

.features .quality h2::after {
    background-color: #f44036;
}

.features .quality .imge::before {
    background-color: rgb(244 63 54 / 50%);
}

.features .time a {
    border-color: #009688;
    color: #009688;
    background: linear-gradient(to right, #009688 50%, white 50%);
    background-position: right bottom;
    background-size: 200% 100%;
}

.features .time h2::after {
    background-color: #009688;
}

.features .time .imge::before {
    background-color: rgb(0 150 136 / 50%);
}

.features .passion a {
    border-color: #1787e0;
    color: #1787e0;
    background: linear-gradient(to right, #1787e0 50%, white 50%);
    background-position: right bottom;
    background-size: 200% 100%;
}

.features .passion h2::after {
    background-color: #1787e0;
}

.features .passion .imge::before {
    background-color: rgb(23 132 222 / 50%);
}

/* End Features */
.spikes {
    position: relative;
}

.spikes::before {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 30px;
    z-index: 2;
    background-image: linear-gradient(135deg, white 25%, transparent 25%), linear-gradient(225deg, white 25%, transparent 25%);
    background-size: 30px 30px;
}

/* Start Testimonials */

.testimonials {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: var(--section-background);
    position: relative;
    z-index: 1;
}

.testimonials .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.testimonials .box {
    background-color: white;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.testimonials .box img {
    position: absolute;
    width: 100px;
    right: -10px;
    top: -50px;
    border-radius: 50%;
    border: 10px solid var(--section-background);
}

.testimonials .box h3 {
    margin: 15px 0 10px;

    color: var(--main-color);
}

.testimonials .box span.span-title {
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    display: block;
}

.testimonials .box .star .filled {
    color: rgb(255, 193, 7);
}

.testimonials .box p {
    color: #777;
    line-height: 1.5;
    margin: 10px 0;
}

/* End Testimonials */

/* Start Team */

.team {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: white;
    position: relative;
    z-index: 1;
}

.team .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.team .box {
    position: relative;
    overflow: hidden;
}


.team .box::before,
.team .box::after {
    content: "";
    position: absolute;
    background-color: #f3f3f3;
    top: 0;
    right: 0;
    height: 100%;
    width: calc(100% - 70px);
    z-index: -2;
    border-radius: 10px;
    transition: var(--main-transition);
}

.team .box::after {
    background-color: #bbbbbb93;
    z-index: -1;
    width: 0;
}

.team .box:hover::after {
    width: calc(100% - 70px);
}


.team .box .data {
    display: flex;
    padding-top: 70px;
    align-items: center;
}

.team .box img {
    max-width: 100%;
    transition: var(--main-transition);
    width: calc(100% - 70px);
    border-radius: 10px;

}

.team .box:hover img {
    filter: grayscale(80%);
}

.team .box .social {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.team .box .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;

}

.team .box .social i {
    color: #777;
    transition: var(--main-transition);
}

.team .box .social a:hover i {
    color: var(--main-color-alt);
    transform: scale(1.2);
}

.team .box .social a:hover i.fa-youtube {
    color: rgb(212, 10, 10);
}

.team .box .info {
    margin: 20px 0 20px 90px;
}

.team .box h3 {
    margin: 0;
    font-weight: bold;
    color: var(--main-color);
    transition: var(--main-transition);
}

.team .box:hover h3 {
    color: #444;
}

.team .box p {
    color: #777;
    line-height: 1.5;
    margin: 10px 0 20px;
}

/* End Team */

/* Start Services */

.services {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: var(--section-background);
    position: relative;
    z-index: 1;
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.services .box {
    background-color: white;
    position: relative;
    counter-increment: services;
    transition: var(--main-transition);
    box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);

}

.services .box:hover {
    transform: translateY(-13px);
}

.services .box::before {
    content: "";
    position: absolute;
    background-color: var(--main-color-alt);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    transition: var(--main-transition);
}

.services .box:hover::before {
    width: 100%;
}


.services .box i {
    margin: 30px auto;
    display: block;
    text-align: center;
    color: #7777;
}

.services .box h3 {
    text-align: center;
    color: var(--main-color);
    font-size: 25px;
    font-weight: 800;
}

.services .box .info {
    text-align: right;
    padding: 15px;
    position: relative;
    background-color: #f3f3f3d5;
}

.services .box .info::before {
    content: "0" counter(services);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--main-color);
    width: 80px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 23px;
}

.services .box .info::after {
    content: "";
    position: absolute;
    background-color: #d7d7d7;
    top: 0;
    left: 83px;
    width: 50px;
    height: calc(100% + 0.4px);
    transform: skewX(-30deg);
}


.services .box .info a {
    color: var(--main-color);
}



/* End Services */

/* Start Our Skills */

.our-skills {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: white;
    position: relative;
    z-index: 1;
}

.our-skills .container {
    display: flex;
    align-items: center;
}

.our-skills img {
    max-width: 100%;
}

@media (max-width: 991px) {
    .our-skills img {
        display: none;
    }
}

.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;
    font-weight: normal;
    border: 1px #b9b9b9 solid;
    padding: 2px;
    border-radius: 4px;
    background-color: #ebebeb;
    color: var(--main-color);
}

.our-skills .skill .the-progress {
    position: relative;
    background-color: #eee;
    height: 30px;
}

.our-skills .skill .the-progress span {
    position: absolute;
    background-color: var(--main-color);
    top: 0;
    left: 0;
    height: 100%;
    transition: 0.5s;
}

/* Start Work Steps */
.work-steps {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: var(--section-background);
    position: relative;
    z-index: 1;
}

.work-steps .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

@media (max-width: 991px) {
    .work-steps .container {
        flex-direction: column;
    }

}

.work-steps .image {
    max-width: 100%;
}

.work-steps .info .box {
    background-color: #f7f7f7;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 3px solid white;
    position: relative;
    z-index: 1;
    cursor: default;
}

@media (max-width: 768px) {
    .work-steps .info .box {
        flex-direction: column;
        text-align: center;
    }

}

.work-steps .info .box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--section-background);
    width: 0;
    height: 0;
    transition: 0.5s;
    border-radius: 5px;
    z-index: -1;

}

.work-steps .info .box:hover::before {
    width: 100%;
    height: 100%;
}

.work-steps .info .box img {
    width: 70px;
}

.work-steps .info .box h3 {
    margin: 0;
    font-size: 23px;
}

.work-steps .info .box p {
    color: #777;
    line-height: 1.7;
    font-size: 17px;
    margin: 10px 0 0;
}

/* End Work Steps */


/* Start Events */

.events {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: white;
    position: relative;
    z-index: 1;
}

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

.events .container .image {
    width: 500px;
}

@media (max-width: 991px) {
    .events .container .image {
        display: none;
    }
}

.events .container .info {
    flex: 1;
}

.events .container .info .time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.events .container .info .time .uint {
    border: 1px solid #D4D4D4;
    width: 75px;
    text-align: center;
    border-radius: 10px;
    transition: var(--main-transition);
    cursor: default;
}

.events .container .info .time .uint:hover {
    border: 1px solid var(--main-color);
}

.events .container .info .time .uint span {
    display: block;
}

.events .container .info .time .uint span:first-child {
    color: var(--main-color);
    font-size: 40px;
    font-weight: 700;
    padding: 20px 0;
}

.events .container .info .time .uint span:last-child {
    color: #777;
    border-top: 1px solid #D4D4D4;
    padding: 10px;
    transition: var(--main-transition);
}

.events .container .info .time .uint:hover span:last-child {


    border-top: 1px solid var(--main-color);

}

.events .container .info .title {
    margin: 44px 0 0px;
    font-size: 30px;
    text-align: center;
}

.events .container .info .description {
    text-align: center;
    color: #777;
    line-height: 1.7;
    font-size: 16px;
    margin: 20px 0 0;
}

.events .subscribe {
    width: 100%;
    margin-top: 40px;
}

.events .subscribe form {
    background-color: #efefef;
    width: 600px;
    padding: 30px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .events .subscribe form {
        max-width: 100%;
        border-radius: 0;
        flex-direction: column;

    }
}

.events .subscribe form input[type="email"] {
    flex: 1;
    border: none;
    padding: 15px;
    border-radius: 50px;
    caret-color: var(--main-color);

}

@media (max-width: 768px) {
    .events .subscribe form input[type="email"] {
        border-radius: 0;
    }
}

.events .subscribe form input[type="email"]:focus {
    outline: none;
}

.events .subscribe form input[type="email"]::placeholder {
    transition: var(--main-transition);
}

.events .subscribe form input[type="email"]:focus::placeholder {
    opacity: 0;
}



.events .subscribe form input[type="submit"] {
    border: none;
    background: var(--main-color);
    border-radius: 50px;
    padding: 20px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: var(--main-transition);
}

@media (max-width: 768px) {
    .events .subscribe form input[type="submit"] {
        border-radius: 0;
    }
}

.events .subscribe form input[type="submit"]:hover {
    background-color: var(--main-color-alt);
}

.dots {
    background-image: url(../Imgs/dots.png);
    height: 186px;
    width: 204px;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
}

@media (max-width: 768px) {
    .dots {
        display: none;
    }
}

.dots-up {
    top: 100px;
    right: 0px;
}

.dots-down {
    bottom: 87px;
    left: 0px;
}

/* 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;
    z-index: 1;
}

.pricing .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.pricing .box {
    position: relative;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    background-color: white;
    text-align: center;
    transition: var(--main-transition);
    z-index: 1;
    cursor: default;

}


.pricing .box::before,
.pricing .box::after {
    content: "";
    position: absolute;
    width: 0;
    background-color: #f6f6f6;
    z-index: -1;
    transition: var(--main-transition);

}

.pricing .box:hover::before,
.pricing .box:hover::after {
    width: 100%;
}

.pricing .box::before {
    top: 0;
    left: 0;
    height: 43.5%;
}

.pricing .box::after {
    bottom: 0;
    right: 0;
    height: calc(100% - 43.5%);
}

.pricing .box .label {
    position: absolute;
    writing-mode: vertical-rl;
    background: var(--main-color);
    color: white;
    padding: 10px 10px 35px;
    right: 20px;
    font-weight: bold;
    font-size: 18px;
    width: 40px;
}

.pricing .box .label::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-color: transparent transparent white;
    border-width: 20px;

}

@media (min-width: 1200px) {
    .pricing .box.popular {
        transform: translateY(-20px);
    }
}

.pricing .box h3 {
    font-size: 25px;
    margin: 30px 0;
    font-weight: bold;
    letter-spacing: -1px;
}

.pricing .box img {
    width: 75px;
    margin-bottom: 35px;
}

.pricing .box .price {
    margin-bottom: 35px;

}

.pricing .box .price span:first-child {
    margin-bottom: 5px;
    display: block;
    font-size: 60px;
    font-weight: 700;
    color: var(--main-color);
}

.pricing .box .price span:last-child {
    display: block;
    color: #777;
    font-size: 15px;
    font-weight: 600;
}

.pricing .box ul {
    text-align: left;
    margin-bottom: 35px;
}

.pricing .box ul li {
    border-top: 1px solid #eee;
    padding: 20px 25px;

}

.pricing .box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--main-color);
    margin-right: 15px;
}

.pricing .box a {
    display: block;
    margin: 30px auto 40px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    width: fit-content;
    padding: 15px 25px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--main-transition);
}

.pricing .box a:hover {
    background-color: var(--main-color);
    color: white;
}

/* End Pricing Plans */

/* Start Video */

.video {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    background-color: white;
    position: relative;
    z-index: 1;
}


.video .holder {
    display: flex;
    justify-content: center;
    border: 1px solid #eee;
    background-color: var(--section-background);
}

@media (max-width: 1000px) {
    .video .holder {
        flex-direction: column;
    }

}

.video .holder .list {
    min-width: 300px;
    background-color: white;

}

.video .holder .list .name {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-weight: bold;
    color: var(--main-color);
    background-color: #f7f7f7;
}

.video .holder .list ul li {
    padding: 20px;
    border-top: 1px solid #eee;
    cursor: pointer;
    transition: var(--main-transition);
}

.video .holder .list ul li.active {
    background-color: #f7f7f7;
    color: var(--main-color);
}

.video .holder .list ul li:hover {
    background-color: #f7f7f7;
    color: var(--main-color);
}

.video .holder .list ul li span {
    display: block;
    color: #777;
    padding: 5px 0 0;
    font-size: 14px;
}

.video .holder .preview {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.video .holder .preview video {
    max-width: 100%;
}

.video .holder .preview .info {
    background: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

/* End Video */

/* Start Stats */

.stats {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    background-image: url(../Imgs/stats.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.stats::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffffdb;
    top: 0;
    left: 0;
}

.stats h2 {
    font-weight: bold;
    font-size: 40px;
    margin: 0 auto 60px;
    position: relative;
    width: fit-content;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}


.stats .container .box {
    position: relative;
    background: white;
    opacity: 0.77;
    transition: var(--main-transition);
    padding: 30px;
    cursor: default;

}

.stats .container .box::before,
.stats .container .box::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 0;
    background: var(--main-color);
    transition: var(--main-transition);
}

.stats .container .box::before {
    top: 0;
    left: 0;
}

.stats .container .box::after {
    bottom: 0;
    right: 0;
}

.stats .container .box:hover::before,
.stats .container .box:hover::after {
    height: 100%;
}

.stats .container .box:hover {
    opacity: 1;
}

.stats .container .box i {
    display: block;
    margin: 0 auto 15px;
    font-size: 35px;
    font-weight: bold;
}

.stats .container .box .number {
    display: block;
    font-size: 50px;
    margin: 0 auto;
    width: fit-content;
    font-weight: 550;
    color: var(--main-color);
    letter-spacing: -1px;
}

.stats .container .box .text {
    margin: 10px auto 0;
    display: block;
    width: fit-content;
    font-weight: bold;
    font-size: 15px;
}

/* End Stats */

/* Start Discount */


.discount {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.discount .imge {
    flex-basis: 50%;
    background-image: url(../Imgs/discount-background1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    z-index: 1;
}

@media (max-width: 768px) {
    .discount .imge {
        flex-basis: 100%;
        padding-bottom: 60px;
    }

}

.discount .imge::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 150, 243, 0.98);
    top: 0;
    left: 0;
    z-index: -1;
}

.discount .imge img {
    width: 400px;
    max-width: 100%;
}

.discount .form {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .discount .form {
        flex-basis: 100%;
        padding-bottom: 60px;

    }
}

.discount .form .input {
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    width: 100%;
    caret-color: var(--main-color);
    background-color: #f9f9f9;
}

.discount .form .input:focus {
    outline: none;

}

.discount .form textarea.input {
    resize: none;
    height: 170px;
}

.discount .form input[type="submit"] {
    border: none;
    background: var(--main-color);
    border-radius: 5px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: var(--main-transition);
    width: 100%;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .discount .form input[type="submit"] {
        border-radius: 0;
    }
}

.discount .form input[type="submit"]:hover {
    background-color: var(--main-color-alt);
}

.discount .content {
    text-align: center;
    padding: 10px;
}

.discount .content h2 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -2px;
}

.discount .content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 500px;
}

/* End Discount */

/* Start Footer */

footer {
    background-color: rgb(25, 25, 25);
    padding-top: 70px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

footer .container .box h2 {
    color: white;
    font-size: 55px;
    font-weight: bold;
    letter-spacing: -2px;
    margin: 0 0 30px 0;

}

footer .container .box ul.social-icons {
    display: flex;
    gap: 10px;
}

footer .container .box ul.social-icons li a {
    background: rgb(43 43 43);
    width: 55px;
    display: flex;
    height: 55px;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: rgb(185, 185, 185);
    transition: var(--main-transition);

}

footer .container .box ul.social-icons li a.facebook:hover {
    color: white;
    background-color: #1877f2;
}

footer .container .box ul.social-icons li a.twitter:hover {
    color: white;
    background-color: #1da1f2;
}

footer .container .box ul.social-icons li a.linkedin:hover {
    color: white;
    background-color: #0a66c2;
}

footer .container .box p {
    color: #adadad;
    font-size: 17px;
    line-height: 2;
}

footer .container .box ul:first-child li {
    padding: 15px 0;
}

footer .container .box ul:first-child li a:hover {
    padding-left: 15px;
    color: white;
}

footer .container .box ul:first-child li a::before {
    font-family: "Font Awesome 6 Free";
    content: "\F101";
    font-weight: 900;
    color: var(--main-color);
    margin-right: 15px;
}

footer .container .box ul:first-child li:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}

footer .container .box ul:first-child li a {
    transition: var(--main-transition);
    color: #d9d9d9;
    font-size: 17px;
}


footer .container .box .line {
    margin: 0 0 30px 0;
    display: flex;
    color: #d9d9d9;
}

footer .container .box .line i {
    color: var(--main-color);
    font-size: 25px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .container .box .line .info {
    text-align: left;
    line-height: 1.7;
    flex: 1;
}

footer .container .box .line .info span {
    display: block;
}

footer .container .box.imgeFooter img {
    width: 80px;
    margin: 1px;
    border: 2px solid #d9d9d9;
    border-radius: 5px;
}

footer p.copyright {
    color: #adadad;
    font-size: 17px;
    line-height: 2;
    text-align: center;
    margin: 60px 0 0;
    padding: 20px 0;
    border-top: 1px solid #b1b1b16b;
}

/* End footer */