@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

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

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 1024px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1439px) {
  .container {
    width: 1170px;
  }
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
}

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

.mainTitle {
  text-transform: uppercase;
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid;
  margin: 0 auto 80px;
  font-weight: 700;
  letter-spacing: 1.1px;
  font-size: 30px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: default;
}

.mainTitle::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #d39e45;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20%;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: -1;
}

.mainTitle::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #d39e45;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20%;
  z-index: -1;
  -webkit-transition: 1s;
  transition: 1s;
}

.mainTitle:hover::before {
  border-radius: 0;
  left: 0%;
  width: 51%;
  height: 100%;
}

.mainTitle:hover::after {
  border-radius: 0;
  right: 0%;
  width: 50%;
  height: 100%;
}

.mainTitle:hover {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  color: white;
  border: 2px solid white;
}

.dots {
  background-image: url("../images/dots.png");
  height: 186px;
  width: 204px;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dots-up {
  top: 200px;
  right: -210px;
}

.dots-down {
  bottom: 200px;
  left: -210px;
}

.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;
}

::-webkit-scrollbar {
  background-color: #ececec;
  width: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

::-webkit-scrollbar:hover {
  width: 20px;
}

::-webkit-scrollbar-button {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #d39e45;
}

.scrollToTop {
  position: fixed;
  bottom: -50px;
  right: 20px;
  background-color: #d39e45;
  color: white;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 10;
  cursor: pointer;
  opacity: 0.5;
}

.scrollToTop:hover {
  opacity: 1;
}

.showUp {
  bottom: 20px;
}

header .darkModeButton {
  position: absolute;
  left: -100px;
  top: 25px;
}
header .darkModeButton .checkbox {
  opacity: 0;
  position: absolute;
}
header .darkModeButton .label {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset 0 0 10px #ddd;
          box-shadow: inset 0 0 10px #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .darkModeButton .label .moon {
  color: #f1c40f;
}
header .darkModeButton .label .sun {
  color: #f39c12;
}
header .darkModeButton .label .ball {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .darkModeButton .checkbox:checked + .label .ball {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background-color: #0a101c;
}
header .darkModeButton .checkbox:checked + .label {
  background-color: #182845;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header .darkModeButton-small {
  position: absolute;
  top: 250px;
}
header .darkModeButton-small .checkbox1 {
  opacity: 0;
  position: absolute;
}
header .darkModeButton-small .label1 {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset 0 0 10px #ddd;
          box-shadow: inset 0 0 10px #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .darkModeButton-small .label1 .moon {
  color: #f1c40f;
}
header .darkModeButton-small .label1 .sun {
  color: #f39c12;
}
header .darkModeButton-small .label1 .ball1 {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .darkModeButton-small .checkbox1:checked + .label1 .ball1 {
  -webkit-transform: translateX(24px) !important;
          transform: translateX(24px) !important;
  background-color: #0a101c;
}
header .darkModeButton-small .checkbox1:checked + .label1 {
  background-color: #182845;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header .darkModeButton-small-mobile {
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
  margin-top: 5px;
}
header .darkModeButton-small-mobile .checkbox2 {
  opacity: 0;
  position: absolute;
}
header .darkModeButton-small-mobile .label2 {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset 0 0 10px #ddd;
          box-shadow: inset 0 0 10px #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .darkModeButton-small-mobile .label2 .moon {
  color: #f1c40f;
}
header .darkModeButton-small-mobile .label2 .sun {
  color: #f39c12;
}
header .darkModeButton-small-mobile .label2 .ball2 {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .darkModeButton-small-mobile .checkbox2:checked + .label2 .ball2 {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background-color: #0a101c;
}
header .darkModeButton-small-mobile .checkbox2:checked + .label2 {
  background-color: #182845;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header .laguagesButton {
  position: absolute;
  right: -100px;
  top: 25px;
}
header .laguagesButton .checkboxlang {
  opacity: 0;
  position: absolute;
}
header .laguagesButton .labellang {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset 0 0 10px #ddd;
          box-shadow: inset 0 0 10px #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .laguagesButton .labellang .egFlag {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
header .laguagesButton .labellang .gbFlag {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
header .laguagesButton .labellang .balllang {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .laguagesButton .checkboxlang:checked + .labellang .balllang {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

header .laguagesButton-small {
  position: absolute;
  top: 250px;
  left: 250px;
}
header .laguagesButton-small .checkboxlang1 {
  opacity: 0;
  position: absolute;
}
header .laguagesButton-small .labellang1 {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset 0 0 10px #ddd;
          box-shadow: inset 0 0 10px #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .laguagesButton-small .labellang1 .egFlag {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
header .laguagesButton-small .labellang1 .gbFlag {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
header .laguagesButton-small .labellang1 .balllang1 {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .laguagesButton-small .checkboxlang1:checked + .labellang1 .balllang1 {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

header .laguagesButton-small-mobile {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  left: 70%;
  margin-top: 5px;
}
header .laguagesButton-small-mobile .checkboxlang2 {
  opacity: 0;
  position: absolute;
}
header .laguagesButton-small-mobile .labellang2 {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: inset 0 0 10px #ddd;
          box-shadow: inset 0 0 10px #ddd;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  height: 26px;
  width: 50px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .laguagesButton-small-mobile .labellang2 .egFlag {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
header .laguagesButton-small-mobile .labellang2 .gbFlag {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
header .laguagesButton-small-mobile .labellang2 .balllang2 {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  height: 22px;
  width: 22px;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .laguagesButton-small-mobile .checkboxlang2:checked + .labellang2 .balllang2 {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

@media (min-width: 767px) and (max-width: 991px) {
  header .laguagesButton-small-mobile {
    position: absolute;
    left: 65px;
    top: 90px;
  }
}
@media (min-width: 991px) and (max-width: 1024px) {
  header .laguagesButton-small {
    position: absolute;
    left: 30px;
    top: 200px;
  }
}
header {
  position: fixed;
  -webkit-box-shadow: 0 0 10px #ddd;
          box-shadow: 0 0 10px #ddd;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  z-index: 100;
  margin-top: -72px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 20px;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
header .container .logo {
  color: #d39e45;
  font-size: 26px;
  font-weight: bold;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .container .mainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .container .mainNav li .headLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  text-transform: capitalize;
  height: 72px;
  position: relative;
  padding: 0 20px;
  overflow: hidden;
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .container .mainNav li .headLinks:hover {
  color: #d39e45;
}
header .container .mainNav li .headLinks:after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  background-color: #fafafa;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .container .mainNav li .headLinks:hover:after {
  width: 100%;
}
header .container .mainNav li .headLinks:before {
  content: "";
  width: 0%;
  background-color: #d39e45;
  position: absolute;
  top: 0;
  border-radius: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 4px;
}
header .container .mainNav li .headLinks:hover:before {
  width: 100%;
}
header .container .mainNav .megaMenu-button .megaMenu {
  position: absolute;
  width: 100%;
  left: -1400px;
  padding: 30px;
  background-color: white;
  border-bottom: 3px solid #d39e45;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  top: 100%;
  opacity: 0;
  -webkit-transition: left 0.4s, opacity 0.4s;
  transition: left 0.4s, opacity 0.4s;
}
header .container .mainNav .megaMenu-button .megaMenu .imageMenu img {
  max-width: 100%;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu {
  min-width: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu li {
  position: relative;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu li a {
  color: #d39e45;
  padding: 15px;
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu li a i {
  margin-right: 10px;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu li:not(:last-child) {
  border-bottom: 1px solid #e9e6e6;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fafafa;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .container .mainNav .megaMenu-button .megaMenu .linksMenu li:hover::before {
  width: 100%;
}
header .container .mainNav .megaMenu-button .megaMenu .darkModeButton-small {
  display: none;
}
header .container .mainNav .megaMenu-button .megaMenu .laguagesButton-small {
  display: none;
}
header .container .mainNav .megaMenu-button:hover .megaMenu {
  opacity: 1;
  z-index: 100;
  left: 0;
}
header .container .button {
  display: none;
}

.button .megaMenu2 {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 30px;
  background-color: white;
  border-bottom: 3px solid #d39e45;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  top: -1000%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: top 0.4s, opacity 0.4s;
  transition: top 0.4s, opacity 0.4s;
}
.button .megaMenu2 .linksMenu {
  min-width: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.button .megaMenu2 .linksMenu li {
  position: relative;
}
.button .megaMenu2 .linksMenu li a {
  color: #d39e45;
  padding: 15px;
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
}
.button .megaMenu2 .linksMenu li a i {
  margin-right: 10px;
}
.button .megaMenu2 .linksMenu li:not(:last-child) {
  border-bottom: 1px solid #e9e6e6;
}
.button .megaMenu2 .linksMenu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fafafa;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button .megaMenu2 .linksMenu li:hover::before {
  width: 100%;
}
.button .megaMenu2 .up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  color: #d39e45;
  -webkit-animation: bouncing 1.5s infinite;
          animation: bouncing 1.5s infinite;
  position: relative;
  left: 6px;
}

@media (max-width: 767px) {
  header {
    width: 95%;
    margin-top: -80px;
  }
  header .container .logo {
    width: 100%;
    /*height: 50px;*/
  }
  header .container .mainNav {
    margin: auto;
  }
  header .container .mainNav li .headLinks {
    padding: 10px;
    font-size: 14px;
    height: 40px;
  }
  header .container .mainNav li .megaMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 5px;
  }
  header .container .mainNav li .megaMenu .linksMenu:first-of-type li:last-child {
    border-bottom: 1px solid #e9e6e6;
  }
  header .button .megaMenu2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 5px;
  }
  header .button .megaMenu2 .linksMenu:first-of-type li:last-child {
    border-bottom: 1px solid #e9e6e6;
  }
}
@media (max-width: 991px) {
  header .container ul .megaMenu-button {
    display: none;
  }
  header .container ul .megaMenu-button .megaMenu .imageMenu {
    display: none;
  }
  header .container ul .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .container ul .button button {
    text-transform: capitalize;
    border: none;
    outline: none;
    background-color: transparent;
    margin-left: 6px;
  }
}
@media (max-width: 1240px) {
  .darkModeButton {
    display: none;
  }

  .darkModeButton-small {
    display: block !important;
  }

  .laguagesButton {
    display: none;
  }

  .laguagesButton-small {
    display: block !important;
  }
}
.landing {
  margin-top: 72px;
  width: 100%;
  height: 91vh;
  position: relative;
  overflow: hidden;
}
.landing .container {
  height: 80%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.landing .container .text {
  width: 50%;
  cursor: default;
}
.landing .container .text h1 {
  font-size: 28px;
  margin: 0 0 10px;
  text-transform: capitalize;
}
.landing .container .text p {
  font-size: 23px;
  line-height: 1.7;
  color: #777;
  text-transform: capitalize;
  max-width: 500px;
}
.landing .container .photo {
  width: 600px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.landing .container .photo img {
  max-width: 100%;
  -webkit-animation: up-and-down 4s linear infinite;
          animation: up-and-down 4s linear infinite;
  position: relative;
}
.landing [href="#articles"] {
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #d39e45;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 60px;
  -webkit-animation: bouncing 1.5s infinite;
          animation: bouncing 1.5s infinite;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.landing [href="#articles"]:hover {
  color: #1787e0;
}

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

@media (max-width: 1023px) and (min-width: 768px) {
  .landing .container .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .landing .container .photo {
    display: none;
  }
}
@media (max-width: 767px) and (min-width: 320px) {
  .landing {
    height: 91vh;
    margin-top: 80px;
  }
  .landing .container .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: 100%;
  }
  .landing .container .text h1 {
    font-size: 25px;
  }
  .landing .container .text p {
    font-size: 18px;
  }
  .landing .container .photo {
    display: none;
  }
  .landing [href="#articles"] {
    left: 45%;
  }

  .landing:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ececec;
    position: absolute;
    -webkit-transform: skewY(-6deg);
            transform: skewY(-6deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    top: -50px;
    z-index: -1;
  }
}
#articles {
  padding: 100px 0;
}
#articles .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
#articles .container .box {
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#articles .container .box .coverPhoto img {
  max-width: 100%;
}
#articles .container .box .cardText {
  cursor: default;
  padding: 20px;
}
#articles .container .box .cardText h3 {
  margin: 0;
  text-transform: capitalize;
}
#articles .container .box .cardText p {
  margin: 10px 0 0;
  line-height: 1.5;
  color: #777;
}
#articles .container .box .cardFooter {
  padding: 20px;
  border-top: 1px solid #e6e6e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#articles .container .box .cardFooter a {
  color: #d39e45;
  font-weight: bold;
  text-transform: capitalize;
}
#articles .container .box .cardFooter a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f30b";
  font-weight: 900;
  color: #d39e45;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 20px;
}
#articles .container .box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
#articles .container .box:hover a::before {
  -webkit-animation: moving-arrow 0.6s linear infinite;
          animation: moving-arrow 0.6s linear infinite;
}

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

#features {
  padding: 100px 0;
}
#features .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
#features .container .box {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#features .container .box .featuresPhoto {
  overflow: hidden;
  position: relative;
}
#features .container .box .featuresPhoto img {
  max-width: 100%;
}
#features .container .box .featuresPhoto::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#features .container .box .featuresPhoto::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 0 0 170px 500px;
  border-color: transparent transparent white transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#features .container .box .featuresText {
  cursor: default;
  width: 100%;
  text-align: center;
}
#features .container .box .featuresText h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
  position: relative;
  font-size: 40px;
  margin: auto;
}
#features .container .box .featuresText h3::after {
  content: "";
  width: calc(100% - 30px);
  height: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -20px;
}
#features .container .box .featuresText p {
  color: #777;
  line-height: 2;
  font-size: 20px;
  margin: 30px 0;
  padding: 25px;
}
#features .container .box .featuresButton a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  font-weight: bold;
  font-size: 22px;
  padding: 10px 30px;
  border-radius: 6px;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
#features .container .box:hover .featuresPhoto::after {
  border-width: 170px 500px 170px 0;
}
#features .container .quality .featuresPhoto::before {
  background-color: rgba(244, 64, 54, 0.6);
}
#features .container .time .featuresPhoto::before {
  background-color: rgba(0, 150, 136, 0.6);
}
#features .container .passion .featuresPhoto::before {
  background-color: rgba(3, 169, 244, 0.6);
}
#features .container .quality h3::after {
  background-color: #f44036;
}
#features .container .time h3::after {
  background-color: #009688;
}
#features .container .passion h3::after {
  background-color: #03a9f4;
}
#features .container .quality .featuresButton a {
  border: 3px solid #f44036;
  color: #f44036;
}
#features .container .quality .featuresButton a::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: #f44036;
  position: absolute;
  top: -1px;
  left: 0px;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#features .container .quality:hover .featuresButton a::before {
  content: "";
  width: 101%;
}
#features .container .quality:hover .featuresButton a {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  color: white;
}
#features .container .time .featuresButton a {
  border: 3px solid #009688;
  color: #009688;
}
#features .container .time .featuresButton a::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: #009688;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#features .container .time:hover .featuresButton a::before {
  content: "";
  width: 102%;
}
#features .container .time:hover .featuresButton a {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  color: white;
}
#features .container .passion .featuresButton a {
  border: 3px solid #03a9f4;
  color: #03a9f4;
}
#features .container .passion .featuresButton a::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: #03a9f4;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#features .container .passion:hover .featuresButton a::before {
  content: "";
  width: 101%;
}
#features .container .passion:hover .featuresButton a {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  color: white;
}

@media (min-width: 532px) and (max-width: 669px) {
  #features .container .box .featuresPhoto::after {
    border-width: 0 0 170px 700px;
  }
  #features .container .box:hover .featuresPhoto::after {
    border-width: 170px 800px 170px 0;
  }
}
#testimonials {
  padding: 100px 0;
  background-color: #ececec;
}
#testimonials h2 {
  z-index: 5;
}
#testimonials .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
#testimonials .container .box {
  padding: 20px;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  position: relative;
}
#testimonials .container .box .headerTest .headerText {
  cursor: default;
}
#testimonials .container .box .headerTest .headerText h3 {
  text-transform: capitalize;
  margin: 0 0 10px;
}
#testimonials .container .box .headerTest .headerText p {
  text-transform: capitalize;
  color: #777;
  margin-bottom: 10px;
}
#testimonials .container .box .headerTest .iconsTest .filled {
  color: #ffc107;
}
#testimonials .container .box .headerTest .photoTest {
  position: relative;
}
#testimonials .container .box .headerTest .photoTest img {
  position: absolute;
  right: -30px;
  top: -70px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ececec;
}
#testimonials .container .box .footerTest {
  cursor: default;
}
#testimonials .container .box .footerTest p {
  line-height: 1.5;
  color: #777;
  margin: 10px 0 0;
}

#teamMembers {
  padding: 100px 0;
}
#teamMembers .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
#teamMembers .container .card {
  border-radius: 10px;
  position: relative;
}
#teamMembers .container .card .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 60px;
}
#teamMembers .container .card .top img {
  width: calc(100% - 60px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
#teamMembers .container .card .top .iconsTeam {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  gap: 20px;
}
#teamMembers .container .card .top .iconsTeam a {
  color: #777;
  width: 60px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#teamMembers .container .card .top .iconsTeam a:hover {
  color: #1787e0;
}
#teamMembers .container .card .bottom {
  padding-left: 80px;
  text-transform: capitalize;
  cursor: default;
}
#teamMembers .container .card .bottom h3 {
  margin-bottom: 0;
  margin-top: 22px;
  color: #777;
  font-size: 22px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#teamMembers .container .card .bottom p {
  margin: 10px 0 25px;
}
#teamMembers .container .card::before,
#teamMembers .container .card::after {
  content: "";
  background-color: #e4e4e4;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#teamMembers .container .card::before {
  width: calc(100% - 60px);
  z-index: -2;
}
#teamMembers .container .card::after {
  z-index: -1;
  background-color: #f3f3f3;
  width: 0;
  left: 60px;
  right: unset;
}
#teamMembers .container .card:hover::after {
  width: calc(100% - 60px);
}
#teamMembers .container .card:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
#teamMembers .container .card:hover .bottom h3 {
  color: #d39e45;
}
#teamMembers .container .card:hover .top a {
  color: #d39e45;
}

#services {
  padding: 100px 0;
  background-color: #ececec;
}
#services h2 {
  z-index: 5;
}
#services .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
#services .container .boxServices {
  background-color: white;
  -webkit-box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  counter-increment: services;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
#services .container .boxServices .icon {
  margin: 30px auto 20px;
  display: block;
  text-align: center;
  color: #d5d5d5;
}
#services .container .boxServices h3 {
  text-align: center;
  margin: 20px 0 40px;
  font-size: 25px;
  color: #d39e45;
  text-transform: capitalize;
  cursor: default;
}
#services .container .boxServices .footerServices {
  padding: 15px;
  position: relative;
  background-color: #f9f9f9;
  text-align: right;
}
#services .container .boxServices .footerServices a {
  display: block;
  color: #d39e45;
  text-transform: capitalize;
}
#services .container .boxServices .footerServices::before {
  content: "0" counter(services);
  position: absolute;
  background-color: #d39e45;
  color: white;
  left: 0;
  top: 0;
  height: 100%;
  width: 80px;
  font-size: 30px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 15px;
}
#services .container .boxServices .footerServices::after {
  content: "";
  position: absolute;
  background-color: #d5d5d5;
  top: 0;
  left: 80px;
  width: 50px;
  height: calc(100% + 0.4px);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
}
#services .container .boxServices::before {
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  top: -3px;
  background-color: #d39e45;
  position: absolute;
  width: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#services .container .boxServices:hover::before {
  width: 100%;
}
#services .container .boxServices:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

#ourSkills {
  padding: 100px 0;
}
#ourSkills .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#ourSkills .container .skills {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#ourSkills .container .skills .skill {
  cursor: default;
}
#ourSkills .container .skills .skill h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 18px 0;
}
#ourSkills .container .skills .skill h3 span {
  font-size: 12px;
  border: 1px solid #ccc;
  padding: 3px 5px;
  border-radius: 4px;
  color: #d39e45;
}
#ourSkills .container .skills .skill .the-progress {
  height: 30px;
  background-color: #eee;
  position: relative;
}
#ourSkills .container .skills .skill .the-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #d39e45;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 991px) {
  #ourSkills .container img {
    display: none;
  }
}
#howItWorks {
  padding: 100px 0;
  background-color: #ececec;
}
#howItWorks h2 {
  z-index: 5;
}
#howItWorks .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#howItWorks .container .worksPhoto {
  max-width: 100%;
  margin-right: 100px;
}
#howItWorks .container .steps .worksBox {
  background-color: #f6f5f5;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid white;
  position: relative;
  z-index: 1;
}
#howItWorks .container .steps .worksBox img {
  width: 64px;
  margin-right: 30px;
}
#howItWorks .container .steps .worksBox h3 {
  text-transform: capitalize;
  cursor: default;
  margin: 0;
  font-size: 22px;
}
#howItWorks .container .steps .worksBox p {
  color: #777;
  line-height: 1.7;
  margin: 10px 0 0;
  font-size: 18px;
  cursor: default;
}
#howItWorks .container .steps .worksBox::before {
  content: "";
  left: 50%;
  top: 50%;
  position: absolute;
  width: 0;
  height: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ededed;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#howItWorks .container .steps .worksBox:hover::before {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  #howItWorks .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #howItWorks .container .worksPhoto {
    margin: 0 0 50px;
  }
}
@media (max-width: 767px) {
  #howItWorks .container .steps .worksBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  #howItWorks .container .steps .worksBox img {
    margin: 0 0 30px;
  }
}
#latestEvents {
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}
#latestEvents .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#latestEvents .container img {
  max-width: 450px;
}
#latestEvents .container .eventsTime {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#latestEvents .container .eventsTime .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto;
  gap: 10px;
}
#latestEvents .container .eventsTime .time .unit {
  cursor: default;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  text-align: center;
  width: 125px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#latestEvents .container .eventsTime .time .unit span {
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#latestEvents .container .eventsTime .time .unit span:first-child {
  font-size: 35px;
  padding: 15px;
  color: #d39e45;
  font-weight: bold;
}
#latestEvents .container .eventsTime .time .unit span:last-child {
  padding: 8px 10px;
  font-size: 13px;
  border-top: 1px solid #d4d4d4;
  text-transform: capitalize;
}
#latestEvents .container .eventsTime .time .unit:hover {
  border-color: #d39e45;
}
#latestEvents .container .eventsTime .time .unit:hover span:last-child {
  border-color: #d39e45;
}
#latestEvents .container .title {
  text-align: center;
  margin: 40px 0 0;
  font-size: 30px;
  text-transform: capitalize;
  cursor: default;
}
#latestEvents .container .description {
  cursor: default;
  text-align: center;
  line-height: 1.7;
  font-size: 19px;
  color: #777;
  margin: 19px 0;
}
#latestEvents .container .subscribe {
  width: 100%;
  margin-top: 50px;
}
#latestEvents .container .subscribe form {
  width: 600px;
  margin: 20px auto;
  padding: 30px 40px;
  background-color: #f6f5f5;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
#latestEvents .container .subscribe form input[type=email] {
  padding: 20px;
  border-radius: 50px;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  caret-color: #d39e45;
  outline-color: #1787e0;
}
#latestEvents .container .subscribe form input[type=email]::-webkit-input-placeholder {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#latestEvents .container .subscribe form input[type=email]::-moz-placeholder {
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#latestEvents .container .subscribe form input[type=email]:-ms-input-placeholder {
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#latestEvents .container .subscribe form input[type=email]::-ms-input-placeholder {
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#latestEvents .container .subscribe form input[type=email]::placeholder {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#latestEvents .container .subscribe form input[type=email]:focus::-webkit-input-placeholder {
  opacity: 0;
}
#latestEvents .container .subscribe form input[type=email]:focus::-moz-placeholder {
  opacity: 0;
}
#latestEvents .container .subscribe form input[type=email]:focus:-ms-input-placeholder {
  opacity: 0;
}
#latestEvents .container .subscribe form input[type=email]:focus::-ms-input-placeholder {
  opacity: 0;
}
#latestEvents .container .subscribe form input[type=email]:focus::placeholder {
  opacity: 0;
}
#latestEvents .container .subscribe form input[type=submit] {
  border-radius: 50px;
  border: none;
  background-color: #d39e45;
  color: white;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#latestEvents .container .subscribe form input[type=submit]:hover {
  background-color: #1787e0;
}

@media (max-width: 1200px) {
  #latestEvents .dots {
    display: none;
  }
}
@media (max-width: 991px) {
  #latestEvents .container img {
    display: none;
  }
}
@media (max-width: 767px) {
  #latestEvents .container .eventsTime .time .unit {
    width: 70px;
  }
  #latestEvents .container .eventsTime .time .unit .days {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #latestEvents .container .subscribe form {
    max-width: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
  }
  #latestEvents .container .subscribe form input[type=email] {
    border-radius: 0;
  }
  #latestEvents .container .subscribe form input[type=submit] {
    border-radius: 0;
  }
}
#pricingPlans {
  padding: 100px 0;
  background-color: #ececec;
  position: relative;
  overflow: hidden;
}
#pricingPlans h2 {
  z-index: 5;
}
#pricingPlans .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
#pricingPlans .container .boxPricing {
  position: relative;
  -webkit-box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.13), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: white;
  text-align: center;
  z-index: 1;
  text-transform: capitalize;
  cursor: default;
}
#pricingPlans .container .boxPricing .title {
  font-weight: bold;
  margin: 30px 0;
  font-size: 25px;
  letter-spacing: -1px;
}
#pricingPlans .container .boxPricing img {
  width: 80px;
  margin-bottom: 30px;
}
#pricingPlans .container .boxPricing .price {
  margin-bottom: 20px;
}
#pricingPlans .container .boxPricing .price .amount {
  display: block;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #d39e45;
}
#pricingPlans .container .boxPricing .price .time {
  color: #777;
}
#pricingPlans .container .boxPricing ul {
  text-align: left;
}
#pricingPlans .container .boxPricing ul li {
  padding: 20px;
  border-top: 1px solid #eee;
}
#pricingPlans .container .boxPricing ul li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  margin-right: 10px;
  font-weight: 900;
  color: #d39e45;
}
#pricingPlans .container .boxPricing a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #d39e45;
  color: #d39e45;
  margin: 30px auto 40px;
  padding: 15px 20px;
  border-radius: 6px;
  font-weight: bold;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#pricingPlans .container .boxPricing a:hover {
  background-color: #1787e0;
  border-color: #1787e0;
  color: white;
}
#pricingPlans .container .boxPricing::before,
#pricingPlans .container .boxPricing::after {
  content: "";
  width: 0;
  height: 50%;
  background-color: #f6f6f6;
  position: absolute;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#pricingPlans .container .boxPricing::before {
  left: 0;
  top: 0;
}
#pricingPlans .container .boxPricing::after {
  right: 0;
  bottom: 0;
}
#pricingPlans .container .boxPricing:hover::before,
#pricingPlans .container .boxPricing:hover::after {
  width: 100%;
}
#pricingPlans .container .popular .label {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: #d39e45;
  color: white;
  font-weight: bold;
  padding: 10px 10px 35px 10px;
  font-size: 18px;
  right: 20px;
  width: 40px;
}
#pricingPlans .container .popular .label::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-color: transparent transparent white;
  border-width: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#pricingPlans .container .boxPricing:hover .label::before {
  border-color: transparent transparent #f6f6f6;
}

@media (min-width: 1200px) {
  #pricingPlans .container .popular {
    top: -20px;
  }
}
#topVideos {
  padding: 100px 0;
}
#topVideos .container .holder {
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  background-color: #ececec;
  border: 1px solid #ddd;
}
#topVideos .container .holder .list {
  min-width: 300px;
  background-color: white;
}
#topVideos .container .holder .list .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  padding: 20px;
  background-color: #f4f4f4;
  font-weight: bold;
  color: #d39e45;
  cursor: default;
}
#topVideos .container .holder .list ul {
  overflow-y: scroll;
  max-height: 500px;
}
#topVideos .container .holder .list ul li {
  padding: 20px 10px;
  border-top: 1px solid #ececec;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
}
#topVideos .container .holder .list ul li span {
  margin-top: 4px;
  color: #777;
}
#topVideos .container .holder .list ul li:hover {
  background-color: #fafafa;
  color: #d39e45;
}
#topVideos .container .holder .preview {
  background-color: #e2e2e2;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
#topVideos .container .holder .preview img {
  max-width: 100%;
}
#topVideos .container .holder .preview .info {
  padding: 20px;
  background-color: white;
  margin-top: 10px;
  cursor: default;
}

@media (max-width: 991px) {
  #topVideos .container .holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #topVideos .container .holder .list ul {
    max-height: 350px;
  }
}
@media (min-width: 991px) and (max-width: 1023px) {
  #topVideos .container .holder .list ul {
    max-height: 250px;
  }
}
#ourAwesomeStats {
  text-transform: capitalize;
  padding: 100px 0;
  position: relative;
  background-image: url("../images/stats.jpg");
  background-size: cover;
  min-height: 300px;
}
#ourAwesomeStats h2 {
  font-weight: bold;
  font-size: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  position: relative;
  cursor: default;
}
#ourAwesomeStats .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#ourAwesomeStats .container .box {
  background-color: white;
  padding: 30px 15px;
  text-align: center;
  position: relative;
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#ourAwesomeStats .container .box .number {
  display: block;
  font-size: 50px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: default;
}
#ourAwesomeStats .container .box .text {
  color: #d39e45;
  font-style: italic;
  font-size: 20px;
  font-weight: bold;
  cursor: default;
}
#ourAwesomeStats .container .box::before,
#ourAwesomeStats .container .box::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #d39e45;
  -webkit-transition: 1s;
  transition: 1s;
  height: 0;
}
#ourAwesomeStats .container .box::before {
  top: 0;
  right: 0;
}
#ourAwesomeStats .container .box::after {
  left: 0;
  bottom: 0;
}
#ourAwesomeStats .container .box:hover {
  opacity: 1;
}
#ourAwesomeStats .container .box:hover::before,
#ourAwesomeStats .container .box:hover::after {
  height: 100%;
}

#ourAwesomeStats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
}

#requestADiscount {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-transform: capitalize;
}
#requestADiscount .image {
  background-image: url(../images/discount-background1.jpg);
  background-size: cover;
  color: white;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  -webkit-animation: change-background 10s linear infinite;
          animation: change-background 10s linear infinite;
}
#requestADiscount .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 135, 224, 0.97);
  z-index: -1;
}
#requestADiscount .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding-bottom: 50px;
}
#requestADiscount .form .input {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: #f9f9f9;
  caret-color: #d39e45;
}
#requestADiscount .form .input::-webkit-input-placeholder {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#requestADiscount .form .input::-moz-placeholder {
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#requestADiscount .form .input:-ms-input-placeholder {
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#requestADiscount .form .input::-ms-input-placeholder {
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#requestADiscount .form .input::placeholder {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#requestADiscount .form .input:focus::-webkit-input-placeholder {
  opacity: 0;
}
#requestADiscount .form .input:focus::-moz-placeholder {
  opacity: 0;
}
#requestADiscount .form .input:focus:-ms-input-placeholder {
  opacity: 0;
}
#requestADiscount .form .input:focus::-ms-input-placeholder {
  opacity: 0;
}
#requestADiscount .form .input:focus::placeholder {
  opacity: 0;
}
#requestADiscount .form textarea {
  resize: none;
  height: 200px;
}
#requestADiscount .form .input:focus {
  outline: none;
}
#requestADiscount .form [type=submit] {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #d39e45;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#requestADiscount .form [type=submit]:hover {
  background-color: #1787e0;
}
#requestADiscount .content {
  text-align: center;
  padding: 0 20px;
}
#requestADiscount .content h2 {
  cursor: default;
  font-size: 40px;
  letter-spacing: -2px;
  margin: 33px 0;
}
#requestADiscount .content p {
  cursor: default;
  line-height: 1.6;
  font-size: 18px;
  max-width: 500px;
}
#requestADiscount .content img {
  width: 300px;
  max-width: 100%;
}

@media (max-width: 991px) {
  #requestADiscount .image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #requestADiscount .form {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer {
  background-color: #0a101c;
  padding: 70px 0 0;
  text-transform: capitalize;
  cursor: default;
}
.footer .container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.footer .container h3 {
  color: white;
  font-size: 50px;
  margin: 0 0 20px;
}
.footer .container .box .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .container .box .social li {
  margin-right: 10px;
}
.footer .container .box .social li a {
  background-color: #313131;
  color: #b9b9b9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .container .box .social li .facebook:hover {
  background-color: #1877f2;
}
.footer .container .box .social li .twitter:hover {
  background-color: #1da1f2;
}
.footer .container .box .social li .youtube:hover {
  background-color: #ff0000;
}
.footer .container .box .text {
  line-height: 2;
  color: #b9b9b9;
}
.footer .container .box .links li {
  padding: 15px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .container .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}
.footer .container .box .links li:hover {
  padding-left: 10px;
}
.footer .container .box .links li:hover a {
  color: white;
}
.footer .container .box .links li a {
  color: #b9b9b9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .container .box .links li a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f101";
  font-weight: 900;
  margin-right: 10px;
  color: #d39e45;
}
.footer .container .box .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.footer .container .box .line .icon {
  font-size: 25px;
  color: #d39e45;
  margin-right: 10px;
}
.footer .container .box .line .info {
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .container .box .line .info span {
  display: block;
}
.footer .container .footer-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.footer .container .footer-gallery .card {
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.footer .container .footer-gallery .card .footerPhoto {
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .container .footer-gallery .card .footerPhoto img {
  width: 78px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .container .footerPhoto::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 2;
}
.footer .container .footerPhoto:hover::before {
  -webkit-animation: flashing 0.7s;
          animation: flashing 0.7s;
}
.footer .container .footerPhoto:hover img {
  -webkit-transform: rotate(5deg) scale(1.1);
          transform: rotate(5deg) scale(1.1);
}
.footer .copyright {
  padding: 25px 0;
  text-align: center;
  margin: 50px 0 0;
  border-top: 1px solid #444;
  color: white;
}
.footer .copyright a {
  color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .copyright a:hover {
  color: #d39e45;
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer .box .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .box .line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .box .line .icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@-webkit-keyframes up-and-down {
  0%, 100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
@keyframes up-and-down {
  0%, 100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
@-webkit-keyframes bouncing {
  0%, 10%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bouncing {
  0%, 10%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes moving-arrow {
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@keyframes moving-arrow {
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@-webkit-keyframes moving-arrow-left {
  100% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
@keyframes moving-arrow-left {
  100% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
@-webkit-keyframes flashing {
  0%, 40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}
@keyframes flashing {
  0%, 40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}
@-webkit-keyframes change-background {
  0%, 100% {
    background-image: url("../images/discount-background1.jpg");
  }
  50% {
    background-image: url("../images/discount-background2.jpg");
  }
}
@keyframes change-background {
  0%, 100% {
    background-image: url("../images/discount-background1.jpg");
  }
  50% {
    background-image: url("../images/discount-background2.jpg");
  }
}
.darkMode ::-webkit-scrollbar {
  background-color: #182845;
}
.darkMode ::-webkit-scrollbar-button {
  background-color: rgba(255, 255, 255, 0.65);
}

.dark-mode {
  background-color: #0a101c;
}
.dark-mode .mainTitle {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode .mainTitle:hover {
  color: #182845;
  border-color: #182845;
}
.dark-mode .spikes::after {
  background-image: linear-gradient(135deg, #0a101c 25%, transparent 25%), linear-gradient(225deg, #0a101c 25%, transparent 25%);
}
.dark-mode header {
  -webkit-box-shadow: 0 0 10px #182845;
          box-shadow: 0 0 10px #182845;
  background-color: #182845;
}
.dark-mode header .laguagesButton .labellang {
  background-color: #182845;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.dark-mode header .laguagesButton .balllang {
  background-color: #0a101c;
}
.dark-mode header .laguagesButton-small .labellang1 {
  background-color: #182845;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.dark-mode header .laguagesButton-small .balllang1 {
  background-color: #0a101c;
}
.dark-mode header .laguagesButton-small-mobile .labellang2 {
  background-color: #182845;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.dark-mode header .laguagesButton-small-mobile .balllang2 {
  background-color: #0a101c;
}
.dark-mode header .container .mainNav li .headLinks {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode header .container .mainNav li .headLinks:hover {
  color: #d39e45;
}
.dark-mode header .container .mainNav li .headLinks:after {
  background-color: #0a101c;
}
.dark-mode header .container .mainNav .megaMenu-button .megaMenu {
  background-color: #182845;
}
.dark-mode header .container .mainNav .megaMenu-button .megaMenu .linksMenu li:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.65);
}
.dark-mode header .container .mainNav .megaMenu-button .megaMenu .linksMenu li::before {
  background-color: #0a101c;
}
.dark-mode .button button {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode .button .megaMenu2 {
  background-color: #182845;
}
.dark-mode .button .megaMenu2 .linksMenu li:not(:last-child) {
  border-bottom-color: rgba(255, 255, 255, 0.65);
}
.dark-mode .button .megaMenu2 .linksMenu li::before {
  background-color: #0a101c;
}
@media (max-width: 767px) {
  .dark-mode header .container .mainNav li .megaMenu .linksMenu:first-of-type li:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.65);
  }
  .dark-mode header .button .megaMenu2 .linksMenu:first-of-type li:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.65);
  }
}
.dark-mode .landing {
  background-color: #0a101c;
}
.dark-mode .landing .container .text h1 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode .landing .container .text p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode .landing:before {
  background-color: #182845;
  z-index: unset;
}
@media (max-width: 767px) and (min-width: 320px) {
  .dark-mode .landing:before {
    background-color: #182845;
    z-index: unset;
  }
}
.dark-mode #articles .container .box {
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  background-color: #182845;
}
.dark-mode #articles .container .box .cardText h3 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #articles .container .box .cardText p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #articles .container .box .cardFooter {
  border-top-color: rgba(255, 255, 255, 0.65);
}
.dark-mode #articles .container .box:hover {
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}
.dark-mode #gallery {
  background-color: #182845;
}
.dark-mode #gallery .container .box {
  background-color: #0a101c;
  -webkit-box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.5), 0px 2px 4px 0px rgba(0, 0, 0, 0.55);
          box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.5), 0px 2px 4px 0px rgba(0, 0, 0, 0.55);
}
.dark-mode #gallery .container .box .galleryPhoto::before {
  background-color: rgba(18, 18, 18, 0.2);
}
.dark-mode #features .container .box {
  border-color: rgba(255, 255, 255, 0.65);
  background-color: #182845;
}
.dark-mode #features .container .box .featuresPhoto::after {
  border-color: transparent transparent #182845 transparent;
}
.dark-mode #features .container .box .featuresText h3 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #features .container .box .featuresText p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #features .container .box .featuresButton a {
  z-index: 10;
}
.dark-mode #features .container .box:hover .featuresButton a {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #testimonials {
  background-color: #182845;
}
.dark-mode #testimonials .container .box {
  background-color: #0a101c;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.dark-mode #testimonials .container .box .headerTest .headerText h3 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #testimonials .container .box .headerTest .headerText p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #testimonials .container .box .headerTest .photoTest img {
  border-color: #182845;
}
.dark-mode #testimonials .container .box .footerTest p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #teamMembers .container .card .top .iconsTeam a {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #teamMembers .container .card .bottom h3 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #teamMembers .container .card .bottom p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #teamMembers .container .card::before,
.dark-mode #teamMembers .container .card::after {
  background-color: #182845;
}
.dark-mode #teamMembers .container .card::after {
  background-color: #1a1a1a;
}
.dark-mode #teamMembers .container .card:hover .bottom h3 {
  color: #d39e45;
}
.dark-mode #teamMembers .container .card:hover .top a {
  color: #d39e45;
}
.dark-mode #teamMembers .container .card:hover .bottom p {
  color: #1787e0;
}
.dark-mode #services {
  background-color: #182845;
}
.dark-mode #services .container .boxServices {
  background-color: #0a101c;
  -webkit-box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.55);
          box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.55);
}
.dark-mode #services .container .boxServices .icons {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #services .container .boxServices .footerServices {
  background-color: #182845;
}
.dark-mode #services .container .boxServices .footerServices::before {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #services .container .boxServices .footerServices::after {
  background-color: #0a101c;
}
.dark-mode #ourSkills .container .skills .skill h3 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #ourSkills .container .skills .skill h3 span {
  border-color: rgba(255, 255, 255, 0.65);
}
.dark-mode #ourSkills .container .skills .skill .the-progress {
  background-color: #182845;
}
.dark-mode #howItWorks {
  background-color: #182845;
}
.dark-mode #howItWorks .container .steps .worksBox {
  background-color: #0a101c;
  border-color: rgba(255, 255, 255, 0.65);
}
.dark-mode #howItWorks .container .steps .worksBox h3 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #howItWorks .container .steps .worksBox p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #howItWorks .container .steps .worksBox::before {
  background-color: #182845;
}
.dark-mode #latestEvents .container .eventsTime .time .unit {
  border-color: rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #latestEvents .container .eventsTime .time .unit span:last-child {
  border-top-color: rgba(255, 255, 255, 0.65);
}
.dark-mode #latestEvents .container .title {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #latestEvents .container .description {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #latestEvents .container .subscribe form {
  background-color: #182845;
}
.dark-mode #latestEvents .container .subscribe form input[type=submit] {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #pricingPlans {
  background-color: #182845;
}
.dark-mode #pricingPlans .container .boxPricing {
  -webkit-box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.55);
          box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.5), 0 2px 4px 0 rgba(0, 0, 0, 0.55);
  background-color: #0a101c;
}
.dark-mode #pricingPlans .container .boxPricing .title {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #pricingPlans .container .boxPricing .price {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #pricingPlans .container .boxPricing .price .time {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #pricingPlans .container .boxPricing ul li {
  color: rgba(255, 255, 255, 0.65);
  border-top-color: rgba(255, 255, 255, 0.65);
}
.dark-mode #pricingPlans .container a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #pricingPlans .container .boxPricing::before,
.dark-mode #pricingPlans .container .boxPricing::after {
  background-color: #182845;
}
.dark-mode #pricingPlans .container .popular .label {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #pricingPlans .container .popular .label::before {
  border-color: transparent transparent #0a101c;
}
.dark-mode #pricingPlans .container .boxPricing:hover .label::before {
  border-color: transparent transparent #182845;
}
.dark-mode #topVideos .container .holder {
  background-color: #182845;
  border-color: rgba(255, 255, 255, 0.65);
}
.dark-mode #topVideos .container .holder .list {
  background-color: #182845;
}
.dark-mode #topVideos .container .holder .list .name {
  color: rgba(255, 255, 255, 0.85);
  background-color: #0a101c;
}
.dark-mode #topVideos .container .holder .list ul li {
  border-top-color: #0a101c;
}
.dark-mode #topVideos .container .holder .list ul li span {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #topVideos .container .holder .list ul li:hover {
  background-color: #0a101c;
}
.dark-mode #topVideos .container .holder .preview {
  background-color: #182845;
}
.dark-mode #topVideos .container .holder .preview .info {
  color: rgba(255, 255, 255, 0.65);
  background-color: #0a101c;
}
.dark-mode #ourAwesomeStats h2 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #ourAwesomeStats .container .box {
  background-color: #0a101c;
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #ourAwesomeStats::before {
  background-color: rgba(31, 31, 31, 0.95);
}
.dark-mode #requestADiscount .image {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode #requestADiscount .form .input {
  border-bottom-color: rgba(255, 255, 255, 0.65);
  background-color: #0a101c;
}
.dark-mode #requestADiscount .form [type=submit] {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #requestADiscount .content h2 {
  color: rgba(255, 255, 255, 0.85);
}
.dark-mode #requestADiscount .content p {
  color: rgba(255, 255, 255, 0.65);
}
.dark-mode .scrollToTop {
  color: #0a101c;
}

.rtl {
  overflow-x: hidden;
}
.rtl .scrollToTop {
  right: unset;
  left: 20px;
}
.rtl header .darkModeButton .label {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl header .darkModeButton-small .label1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl header .darkModeButton-small-mobile {
  -webkit-transform: translateX(-50%);
          transform: translateX(-60%);
}
.rtl header .darkModeButton-small-mobile .label2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl header .laguagesButton .labellang {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl header .laguagesButton-small {
  position: absolute;
  left: 620px;
}
.rtl header .laguagesButton-small .labellang1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl header .laguagesButton-small-mobile {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.rtl header .laguagesButton-small-mobile .labellang2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 767px) and (max-width: 991px) {
  .rtl header .laguagesButton-small-mobile {
    position: absolute;
    right: -575px;
    top: 90px;
  }
}
.rtl header .container .mainNav .megaMenu-button .megaMenu {
  left: unset;
  right: -1400px;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.rtl header .container .mainNav .megaMenu-button .megaMenu .linksMenu li a i {
  margin-right: 0;
  margin-left: 10px;
}
.rtl header .container .mainNav .megaMenu-button .megaMenu .linksMenu li::before {
  left: unset;
  right: 0;
}
.rtl header .container .mainNav .megaMenu-button:hover .megaMenu {
  left: unset;
  right: 0;
}
.rtl .landing .container .text {
  text-align: right;
}
.rtl .landing:before {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
@media (max-width: 767px) and (min-width: 320px) {
  .rtl .landing:before {
    -webkit-transform: skewY(6deg);
            transform: skewY(6deg);
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
}
.rtl #articles .container .box .cardFooter a::before {
  content: "\f30a";
  right: unset;
  left: 20px;
}
.rtl #articles .container .box:hover a::before {
  -webkit-animation: moving-arrow-left 0.6s linear infinite;
          animation: moving-arrow-left 0.6s linear infinite;
}
.rtl #testimonials .container .box .headerTest .photoTest img {
  right: unset;
  left: -30px;
}
.rtl #teamMembers .container .card .bottom {
  padding-left: unset;
  padding-right: 80px;
}
.rtl #teamMembers .container .card::before,
.rtl #teamMembers .container .card::after {
  right: unset;
  left: 0;
}
.rtl #teamMembers .container .card::after {
  left: unset;
  right: 60px;
}
.rtl #ourSkills .container .skills .skill .the-progress span {
  left: unset;
  right: 0;
}
.rtl #howItWorks .container .worksPhoto {
  margin-right: unset;
  margin-left: 100px;
}
.rtl #howItWorks .container .steps .worksBox img {
  margin-right: unset;
  margin-left: 30px;
}
.rtl #latestEvents .container .eventsTime .time {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl #pricingPlans .container .boxPricing ul {
  text-align: right;
}
.rtl #pricingPlans .container .boxPricing ul li {
  padding-right: 40px;
  position: relative;
}
.rtl #pricingPlans .container .boxPricing ul li::before {
  position: absolute;
  right: 10px;
}
.rtl .footer .container .box .social li {
  margin-left: 10px;
  margin-right: unset;
}
.rtl .footer .container .box .links li {
  position: relative;
  padding-right: 30px;
}
.rtl .footer .container .box .links li:hover {
  padding-left: unset;
  padding-right: 50px;
}
.rtl .footer .container .box .links li a::before {
  position: absolute;
  content: "\f100";
  margin-right: unset;
  margin-left: 10px;
  right: 5px;
}
.rtl .footer .container .box .line .icon {
  margin-right: unset;
  margin-left: 10px;
}
