/* start global rules */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  font-family: "Work Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
:root {
  --main-color: #2196f3;
  --alt-color: #1787e0;
  --section-background: #ececec;
  --main-box-shadow: 0 0 10px #ddd;
  --main-tranzition: 0.3s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
.continer {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* small */
@media (min-width: 768px) {
  .continer {
    width: 750px;
  }
}
/* medium */
@media (min-width: 992px) {
  .continer {
    width: 970px;
  }
}
/* larg */
@media (min-width: 1200px) {
  .continer {
    width: 1170px;
  }
}
/* start main heading */
.main-heading {
  margin: 40px auto 70px;
  text-align: center;
  border: 2px solid black;
  width: fit-content;
  padding: 0px 31px;
  text-transform: uppercase;
  position: relative;
  transition: var(--main-tranzition);
  z-index: 100;
}
.main-heading:hover {
  color: white;
  border-color: white;
  transition-delay: 0.5s;
}
.main-heading::before,
.main-heading::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.main-heading::after {
  right: -30px;
}
.main-heading:hover::after {
  z-index: -1;
  animation: move-right 0.5s linear forwards;
}
.main-heading::before {
  left: -30px;
}
.main-heading:hover::before {
  z-index: -1;
  animation: move-left 0.5s linear forwards;
}

@keyframes move-right {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}
@keyframes move-left {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }
}
/* end main heading */
.separator {
  position: relative;
}
.separator::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 24px;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(223deg, white 25%, transparent 25%);
  background-size: 30px, 30px;
}
/* scrolling */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--main-color);
}
.scroll-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  border: none;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  color: white;
  font-size: 20px;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1000;
  transform: translateX(500px);
}
.scroll-top:hover {
  background-color: var(--alt-color);
}
/* end global rules */
/* start header */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: relative;
}
header .continer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
header .continer .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  font-weight: bold;
  font-size: 31px;
  padding: 7px 7px;
  height: 60px;
}
@media (max-width: 767px) {
  header .continer .logo {
    width: 100%;
  }
}
header .continer .main-nav {
  display: flex;
}
@media (max-width: 767px) {
  header .continer .main-nav {
    margin: auto;
  }
}
/*start mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 40px);
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 3px solid var(--main-color);
  z-index: -1;
  opacity: 0;
  transition: var(--main-tranzition);
  display: flex;
  gap: 40px;
  padding: 30px;
}
.mega-menu .image img {
  max-width: 100%;
}
@media (max-width: 991px) {
  .mega-menu .image img {
    display: none;
  }
}
.mega-menu .links {
  display: flex;
}
.mega-menu .links ul {
  min-width: 255px;
  flex: 1;
}
@media (max-width: 767px) {
  .mega-menu {
    padding: 15px 0;
    gap: 0;
    width: fit-content;
    left: 50%;
  }
  .mega-menu .links {
    flex-direction: column;
  }
  .mega-menu .links li a {
    margin: inherit;
    gap: 0;
    padding: 5px;
  }
  .mega-menu .links ul:first-of-type .not-border {
    border-bottom: 1px solid #e9e6e6;
    padding-bottom: 9px;
  }
}
.mega-menu .links li {
  margin-bottom: 34px;
  margin-left: 26px;
  max-width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .mega-menu .links li {
    margin-bottom: 10px;
    margin-left: 0;
    max-width: 100%;
  }
}
.mega-menu .links li::before {
  content: "";
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fafafa;
  z-index: -1;
  transition: var(--main-tranzition);
}
.mega-menu .links li:hover::before {
  width: 100%;
}
.mega-menu .links li a {
  color: var(--main-color);
  font-size: 18px;
  padding: 0 15px;
  font-weight: bold;
  display: block;
}
.mega-menu .links li a i {
  margin-right: 13px;
}
.mega-menu .links li a:not(.not-border) {
  border-bottom: 1px solid #e9e6e6;
  padding-bottom: 10px;
}
/*end mega menu */
header .continer .main-nav > li > a {
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: larger;
  transition: var(--main-tranzition);
  position: relative;
  overflow: hidden;
  height: 60px;
}
header .continer .main-nav > li > a::before {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: -100%;
  transition: var(--main-tranzition);
}
header .continer .main-nav > li > a:hover {
  background-color: #f6f5f5;
  color: var(--main-color);
}
header .continer .main-nav > li > a:hover::before {
  left: 0%;
}
header .continer .main-nav > li:hover .mega-menu {
  top: calc(100% + 1px);
  opacity: 1;
  z-index: 1000;
}
/* end header */
/* start landing */
.landing {
  position: relative;
}
.landing::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  background-color: #ececec;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: skewY(-6deg);
  transform-origin: top left;
}
.landing .continer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: calc(100vh - 60px);
}
.landing .land-text {
  text-align: center;
  flex: 1;
}
.landing .land-text h2 {
  font-weight: bolder;
  font-size: xx-large;
}
@media (max-width: 767px) {
  .landing .land-text {
    text-align: center;
    flex: 1 0 100%;
  }
  .landing .land-text h2 {
    font-size: xx-large;
  }
  .landing .land-text p {
    font-size: medium;
    margin: 10px auto;
  }
}
.landing .land-text p {
  line-height: 1.9;
  color: #666;
  text-transform: capitalize;
}
.landing .land-img img {
  width: 550px;
  max-width: 100%;
  animation: up-down 5s linear infinite;
}
@media (max-width: 991px) {
  .landing .land-img {
    display: none;
  }
}
.landing .go-down i {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: x-large;
  color: var(--main-color);
  animation: bounce 1.5s infinite;
}
/* end landing */
/* start articles */
.articles {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.articles .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
.articles .box {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  transition: var(--main-tranzition);
}
.articles .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}
.articles .box img {
  max-width: 100%;
  width: 100%;
}
.articles .box .content {
  padding: 0 22px;
  border-bottom: 1px solid #e9e6e6;
}
.articles .box .content h3 {
  font-weight: 900;
}
.articles .box .content p {
  margin: 10px 0;
  color: #777;
  line-height: 1.3;
}
.articles .box .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.articles .box .info h4 {
  margin-left: 23px;
  color: var(--main-color);
  font-weight: bold;
  cursor: pointer;
}
.articles .box .info i {
  margin-right: 23px;
  color: var(--main-color);
  font-size: smaller;
  transition: var(--main-tranzition);
  cursor: pointer;
}
.articles .box:hover .info i {
  animation: moving-arrow 0.6s linear infinite;
}
/* end articles */
/* start gallery */
.gallery {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
  position: relative;
}
.gallery .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.gallery .box {
  padding: 15px;
  background-color: white;
  box-shadow: 0 21px 20px rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
}
.gallery .box .image {
  position: relative;
  overflow: hidden;
}
.gallery .box .image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: rgb(255 255 255 /0.2);
  z-index: 5;
  transition: var(--main-tranzition);
  opacity: 0;
}
.gallery .box .image:hover::before {
  animation: flashing 0.7s;
}
.gallery .box img {
  max-width: 100%;
  transition: var(--main-tranzition);
}
.gallery .box .image:hover img {
  transform: rotate(5deg) scale(1.1);
}
/* end gallery */
/* start feature */
.feature {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.feature .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.feature .continer > div {
  text-align: center;
  border: 1px solid #ccc;
}
.feature .continer .img-holder {
  position: relative;
  overflow: hidden;
}
.feature .continer .img-holder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feature .continer .img-holder::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 0 0 170px 500px;
  border-color: transparent transparent white;
  border-style: solid;
  transition: var(--main-tranzition);
}
.feature .continer .img-holder img {
  max-width: 100%;
}
.feature .continer > div:hover .img-holder::after {
  border-width: 170px 500px 170px 0;
}
.feature .continer > div h3 {
  font-size: 35px;
  font-weight: bold;
  margin: 0 auto 60px;
  position: relative;
  width: fit-content;
  padding-bottom: 20px;
}
.feature .continer > div h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 4px;
}
.feature .continer > div p {
  line-height: 2;
  color: #777;
}
.feature .continer > div a {
  font-size: 21px;
  display: block;
  border: 3px solid;
  width: fit-content;
  margin: 40px auto;
  padding: 10px 30px;
  font-weight: bold;
  border-radius: 11px;
}
.feature .continer .box-quality a {
  background-color: white;
  color: #f44036;
  border-color: #f44036;
  background: linear-gradient(to right, #f44036 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: var(--main-tranzition);
}
.feature .continer .box-quality h3::before {
  background-color: #f44036;
}
.feature .continer .box-quality .img-holder::before {
  background-color: #f440367a;
}
.feature .continer .box-time a {
  background-color: white;
  color: #009688;
  border-color: #009688;
  background: linear-gradient(to right, #009688 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: var(--main-tranzition);
}
.feature .continer .box-time h3::before {
  background-color: #009688;
}
.feature .continer .box-time .img-holder::before {
  background-color: #00968869;
}
.feature .continer .box-passion a {
  background-color: white;
  color: #03a9f4;
  border-color: #03a9f4;
  background: linear-gradient(to right, #03a9f4 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: var(--main-tranzition);
}
.feature .continer .box-passion h3::before {
  background-color: #03a9f4;
}
.feature .continer .box-passion .img-holder::before {
  background-color: #03a9f48a;
}
.feature .continer > div:hover a {
  background-position: left bottom;
  color: white;
}
/* end feature */
/* start testimonials */
.testimonials {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
  position: relative;
}
.testimonials .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.testimonials .box {
  padding: 10px;
  background-color: white;
  position: relative;
  border-radius: 5px;
}
.testimonials .box img {
  position: absolute;
  width: 100px;
  border-radius: 50%;
  border: 10px solid var(--section-background);
  right: -10px;
  top: -50px;
}
.testimonials .box h3 {
  font-weight: bold;
  margin-left: 10px;
  margin-bottom: 9px;
}
.testimonials .box .title {
  margin: 0 0 10px 10px;
  display: block;
  color: #777;
}
.testimonials .box .rate {
  margin-left: 10px;
}
.testimonials .box .rate .fa-solid {
  color: #ffc107;
}
.testimonials .box p {
  margin-left: 10px;
  line-height: 1.4;
  color: #777;
}
/* end testimonials */
/* start team */
.team {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.team .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.team .box {
  position: relative;
}
.team .box::before,
.team .box::after {
  content: "";
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 10px;
}
.team .box::before {
  z-index: -2;
  background-color: #f3f3f3;
}
.team .box::after {
  z-index: -1;
  background-color: #e4e4e4;
  width: 0;
  transition: var(--main-tranzition);
}
.team .box:hover::after {
  width: calc(100% - 60px);
}
.team .box .data {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}
.team .box .data img {
  max-width: 100%;
  border-radius: 10px;
  width: calc(100% - 60px);
  transition: var(--main-tranzition);
}
.team .box:hover .data img {
  filter: grayscale(100%);
}
.team .box .data .social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
}
.team .box .data .social a {
  margin-bottom: 20px;
}
.team .box .data .social a i {
  color: #777;
  transition: var(--main-tranzition);
}
.team .box .data .social a:hover i {
  color: var(--main-color);
}
.team .box .info {
  padding-left: 80px;
}
.team .box .info h3 {
  font-size: x-large;
  color: var(--main-color);
  transition: var(--main-tranzition);
  margin: 14px 0;
}
.team .box:hover .info h3 {
  color: #777;
}
.team .box .info p {
  margin: 0 0 21px;
}
/* end team */
/* start services */
.services {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
  position: relative;
}
.services .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.services .box {
  background-color: white;
  position: relative;
  padding: 20px 0 0;
  box-shadow: 0 21px 20px rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
  transition: var(--main-tranzition);
  counter-increment: services;
}
.services .box::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  background: var(--main-color);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--main-tranzition);
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .box:hover::before {
  width: 100%;
}
.services .box .data {
  text-align: center;
  padding-top: 11px;
}
.services .box .data i {
  font-size: 60px;
  color: #d5d5d5;
}
.services .box .data h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 32px;
}
.services .box .info {
  width: 100%;
  height: 50px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}
.services .box .info::after {
  content: "0" counter(services);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: var(--main-color);
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 30px;
  font-weight: bold;
}
.services .box .info::before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: #d5d5d5;
  left: 88px;
  bottom: 0;
  width: 51px;
  z-index: 2;
  transform: skewX(-30deg);
}
.services .box .info a {
  margin-right: 15px;
  color: var(--main-color);
}
/* end services */
/* start our skills*/
.our-skill {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.our-skill .continer {
  display: flex;
  align-items: center;
}
.our-skill .continer .data {
  flex: 1;
}
@media (max-width: 991px) {
  .our-skill .continer img {
    display: none;
  }
}
.our-skill .skill h3 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-skill .skill h3 span {
  font-size: 11px;
  font-weight: bold;
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 7px;
  color: var(--main-color);
}
.our-skill .progress {
  height: 30px;
  background-color: #eee;
  position: relative;
  transition: var(--main-tranzition);
  border-radius: 4px;
}
.our-skill .progress span {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  height: 100%;
  border-radius: 4px;
  transition: 0.4s linear;
}
/* end our skills  */
/* start work sptep */
.works {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
  position: relative;
}
.works .continer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .works .continer {
    flex-direction: column;
  }
  .works .continer .image {
    margin-bottom: 40px;
  }
}
.works .continer .image {
  max-width: 100%;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .works .continer .image {
    display: none;
  }
}
.works .continer .info .box {
  background-color: #f6f5f5;
  border: 1px solid white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.works .continer .info .box::before {
  content: "";
  background-color: #ededed;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: -1;
  transition: var(--main-tranzition);
}
.works .continer .info .box:hover::before {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .works .continer .info .box {
    flex-direction: column;
  }
}
.works .continer .info .box img {
  width: 60px;
  margin: 0 25px 0 17px;
}
@media (max-width: 767px) {
  .works .continer .info .box img {
    margin: 15px 0 15px 0;
  }
}
@media (max-width: 767px) {
  .works .continer .info .box .text {
    text-align: center;
  }
}
.works .continer .info .box .text h2 {
  font-size: 20px;
}
.works .continer .info .box .text p {
  color: #777;
  line-height: 1.5;
}
/* end work sptep */
/* start events */
.events {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
}
.events .continer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.events .continer img {
  max-width: 450px;
}
@media (max-width: 991px) {
  .events .continer img {
    display: none;
  }
}
.events .continer .info {
  flex: 1;
}
.events .continer .time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.events .continer .time .unit {
  text-align: center;
  width: 75px;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
  transition: var(--main-tranzition);
}
.events .continer .time .unit span {
  display: block;
}
.events .continer .time .unit:hover {
  border-color: var(--main-color);
}
.events .continer .time .unit span:first-child {
  padding: 32px 0;
  font-size: 35px;
  font-weight: bold;
  color: var(--main-color);
}
.events .continer .time .unit span:last-child {
  padding: 9px 0 9px;
  border-top: 1px solid #d4d4d4;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  transition: var(--main-tranzition);
}
.events .continer .time .unit:hover span:last-child {
  border-color: var(--main-color);
}
.events .continer .text h2 {
  text-align: center;
  margin-top: 33px;
  font-size: 30px;
}
.events .continer .text p {
  color: #777;
  line-height: 1.7;
  font-size: 17px;
  text-align: center;
}
.events .continer .subscribe {
  width: 100%;
  margin-top: 50px;
}
.events .continer .subscribe form {
  width: 600px;
  background-color: #f6f5f5;
  padding: 20px 30px;
  margin: 30px auto;
  display: flex;
  gap: 20px;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .events .continer .subscribe form {
    flex-direction: column;
    width: 100%;
    border-radius: 0;
  }
}
.events .continer .subscribe form input[type="email"] {
  padding: 13px;
  flex: 1;
  border-radius: 50px;
  border: none;
  caret-color: var(--main-color);
}
@media (max-width: 767px) {
  .events .continer .subscribe form input[type="email"] {
    border-radius: 0;
  }
}
.events .continer .subscribe form input[type="email"]::placeholder {
  transition: opacity var(--main-tranzition);
}
.events .continer .subscribe form input[type="email"]:focus {
  outline: none;
}
.events .continer .subscribe form input[type="email"]:focus::placeholder {
  opacity: 0;
}
.events .continer .subscribe form input[type="submit"] {
  padding: 14px 16px;
  color: white;
  background-color: var(--main-color);
  border: none;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--main-tranzition);
}
@media (max-width: 767px) {
  .events .continer .subscribe form input[type="submit"] {
    border-radius: 0;
  }
}
.events .continer .subscribe form input[type="submit"]:hover {
  background-color: var(--alt-color);
}
/* end events */
/* start pricing */
.pricing {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  background-color: var(--section-background);
  position: relative;
}
.pricing .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.pricing .continer .box {
  box-shadow: 0 21px 20px rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
  background-color: white;
  position: relative;
  z-index: 1;
  text-align: center;
}
.pricing .continer .box::before,
.pricing .continer .box::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 0;
  z-index: -1;
  background-color: #f6f6f6;
  transition: var(--main-tranzition);
}
.pricing .continer .box::after {
  bottom: 0;
  right: 0;
}
.pricing .continer .box::before {
  top: 0;
  left: 0;
}
.pricing .continer .box:hover::before,
.pricing .continer .box:hover::after {
  width: 100%;
}
.pricing .box {
  position: relative;
}
.pricing .box img {
  width: 80px;
  margin-bottom: 33px;
}
@media (min-width: 1200px) {
  .pricing .popular {
    top: -20px;
  }
}
.pricing .popular .label {
  position: absolute;
  writing-mode: vertical-rl;
  background-color: var(--main-color);
  color: white;
  padding: 12px 12px 28px;
  right: 20px;
  font-size: 15px;
  font-weight: bold;
  width: 40px;
}
.pricing .popular .label::before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0;
  border-style: solid;
  border-width: 20px;
  border-color: transparent transparent white;
}
.pricing .box h2 {
  font-size: 25px;
  margin-bottom: 24px;
}
.pricing .box .price {
  margin-bottom: 20px;
}
.pricing .box .price span:first-child {
  display: block;
  font-size: 55px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 5px;
}
.pricing .box .price span:last-child {
  color: #777;
}
.pricing .box ul {
  text-align: left;
}
.pricing .box ul li {
  padding: 20px;
  border-top: 1px solid #ececec;
  position: relative;
}
.pricing .box ul li::before {
  font-family: "font Awesome 5 free";
  content: "\f00c";
  margin-right: 8px;
  font-weight: 900;
  color: var(--main-color);
}
.pricing button {
  margin: 22px 0 42px;
  padding: 10px 13px;
  background-color: white;
  border: none;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  border-radius: 6px;
  font-weight: bold;
  transition: var(--main-tranzition);
}
.pricing button:hover {
  color: white;
  background-color: var(--alt-color);
  border-color: white;
}
/* end pricing */
/* start videos */
.videos {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
}
.videos .holder {
  display: flex;
  justify-content: center;
  border: 1px solid #dbd8d8;
  background-color: var(--section-background);
}
@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;
  align-items: center;
  padding: 20px;
  background: #f4f4f4;
  font-weight: bold;
}
.videos .holder .list ul li {
  padding: 20px;
  border-top: 1px solid #ececec;
  transition: var(--main-tranzition);
  cursor: pointer;
}
.videos .holder .list ul li:hover {
  color: var(--main-color);
}
.videos .holder .list ul li span {
  display: block;
  margin-top: 7px;
  color: #777;
}
.videos .holder .preview {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.videos .holder .preview img {
  max-width: 100%;
}
.videos .holder .preview .info {
  padding: 20px;
  background-color: white;
}
/* end videos */
/* start stats */
.stats {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  background-image: url(../images/stats.jpg);
  background-size: cover;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffffff0;
}
.stats h2 {
  position: relative;
  text-align: center;
  font-size: 35px;
  font-weight: bold;
}
.stats .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
.stats .continer .box {
  position: relative;
  background-color: white;
  text-align: center;
  transition: var(--main-tranzition);
  opacity: 0.7;
}
.stats .continer .box:hover {
  opacity: 1;
}
.stats .continer .box::before,
.stats .continer .box::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 0;
  background-color: var(--main-color);
  transition: 1s;
}
.stats .continer .box::after {
  top: 0;
  right: 0;
}
.stats .continer .box::before {
  bottom: 0;
  left: 0;
}
.stats .continer .box:hover::before,
.stats .continer .box:hover::after {
  height: 100%;
}
.stats .continer .box i {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: bold;
  margin-top: 20px;
}
.stats .continer .box .number {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 14px;
}
.stats .continer .box .text {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 24px;
}
.stats .continer .box span {
  display: block;
}
/* end stats */
/* start discount */
.discount {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}
.discount .image {
  background-image: url(../images/discount-background1.jpg);
  background-size: cover;
  position: relative;
  flex-basis: 50%;
  color: white;
  z-index: 1;
  animation: chand-background 7s linear infinite;
}
.discount .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1787e0fa;
}
@media (max-width: 991px) {
  .discount .image {
    flex-basis: 100%;
  }
}
.discount .content {
  padding: 20px;
  text-align: center;
  position: relative;
}
.discount .content h2 {
  font-size: 32px;
  letter-spacing: -1px;
  margin-bottom: 39px;
}
.discount .content p {
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .discount .content p {
    max-width: 100%;
  }
}
.discount .content img {
  width: 300px;
  max-width: 100%;
}
.discount .formation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
}
@media (max-width: 991px) {
  .discount .formation {
    flex-basis: 100%;
  }
}
.discount .formation .input {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  caret-color: var(--main-color);
}
.discount .formation .input:focus {
  outline: none;
}
.discount .formation .text {
  resize: none;
  height: 200px;
}
.discount .formation button {
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 13px;
  border: none;
  background-color: var(--main-color);
  color: white;
  transition: var(--main-tranzition);
  cursor: pointer;
}
.discount .formation button:hover {
  background-color: var(--alt-color);
}
/* end discount */
/* start footer */
.footing {
  background-color: #191919;
  padding: 40px 0 0;
}
.footing .continer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
.footing .continer .box h2 {
  color: white;
  font-size: 45px;
  margin-bottom: 20px;
}
.footing .continer .box .social {
  display: flex;
  align-items: center;
}
.footing .continer .box .social li {
  margin-right: 15px;
}
.footing .continer .box .social li a {
  width: 60px;
  height: 60px;
  background-color: #313131;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: var(--main-tranzition);
  font-size: 20px;
}
.footing .continer .box .social .facebook:hover {
  background-color: #1877f2;
}
.footing .continer .box .social .twitter:hover {
  background-color: #1da1f2;
}
.footing .continer .box .social .insta:hover {
  background-color: #fd1d1d;
}
.footing .continer .box .social li a i {
  color: #b9b9b9;
}
.footing .continer .box .p-first {
  margin-top: 20px;
  line-height: 1.7;
  color: #b9b9b9;
}
.footing .box .links {
  padding-top: 43px;
}
.footing .box .links li {
  padding: 15px 0;
  transition: var(--main-tranzition);
}
.footing .box .links li a::before {
  font-family: "font Awesome 5 free";
  content: "\f101";
  font-weight: 900;
  margin-right: 10px;
  color: var(--main-color);
}
.footing .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}
.footing .box .links li a {
  color: #b9b9b9;
  transition: var(--main-tranzition);
}
.footing .box .links li:hover a {
  margin-left: 10px;
  color: white;
}
.footing .box .line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 16px;
}
.footing .box .line i {
  margin-right: 14px;
  font-size: 24px;
  color: var(--main-color);
}
.footing .box .line p {
  color: #b9b9b9;
  line-height: 1.6;
}
.footing .box .line .phone {
  color: #b9b9b9;
  display: block;
  line-height: 1.6;
}
.footing .gallrey img {
  max-width: 78px;
  width: 78px;
  border: 3px solid white;
}
.footing .made {
  display: block;
  color: white;
  text-align: center;
  margin: 0px auto 0px;
  border-top: 1px solid #444;
  padding: 20px 0;
}
/* end footer */
/* start animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-23px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes moving-arrow {
  100% {
    transform: translateX(10px);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}
@keyframes chand-background {
  0%,
  100% {
    background-image: url(../images/discount-background1.jpg);
  }
  50% {
    background-image: url(../images/discount-background2.jpg);
  }
}
/* end animation */
