@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap");

:root {
  --barlow: "Barlow", sans-serif;
  --blue: #002c49;
  --light-blue: #1e73be;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--barlow) !important;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
}

a,
a:hover,
a:focus,
button {
  text-decoration: none !important;
  font-family: var(--barlow) !important;
}

ul,
li {
  list-style: none;
  font-family: var(--barlow) !important;
}

h1,
h2,
h2 span,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #202020;
  font-family: var(--barlow) !important;
}

h1 {
  font-weight: 700;
  font-size: 62px !important;
  margin: 0 0 20px 0;
}

a,
ul,
li,
p {
  color: #202020;
  font-family: var(--barlow) !important;
}

p {
  line-height: 1.7em;
  font-size: 1.1em;
}

.container {
  width: 95%;
  margin: 0 auto;
  padding: 20px 30px;
}

.blue {
  color: var(--light-blue);
}

.dark-blue {
  color: var(--blue);
}


/* ---- Animations ----- */
/* ======= Animations ====== */
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.ani-active {
  opacity: 1;
}
.ani-active.fade-bottom {
  animation: fade-bottom 0.8s ease-in;
}
.ani-active.fade-top {
  animation: fade-top 0.8s ease-in-out;
}
.ani-active.fade-left {
  animation: fade-left 0.8s ease-in-out;
}
.ani-active.fade-right {
  animation: fade-right 0.8s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animated-p1 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(190px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInTop {
  animation-name: fadeInTop;
}

/* ===== Header - Navbar ====== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: none;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 5px solid var(--light-blue);
}

@media(min-width: 991px) {
  .navbar {
    padding: 0.5rem;
  }
}

.logo {
  width: 30%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.logo img {
  width: 100%;
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: -1;
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  list-style: none;
}

.navbar ul li {
  padding: 0.5rem 0.3rem;
  transition: 0.3s;
  margin: 0 10px 0 0;
}

.navbar ul li a {
  color: #202020;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
  transition: 0.5s;
  text-decoration: none;
}

.navbar ul li a::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  transition: 0.5s;
  background-color: var(--light-blue);
  bottom: 3px;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after,
.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active::after {
  width: 60%;
}

.navbar ul li a:hover {
  color: var(--light-blue);
}

.navbar ul li a.active {
  color: var(--light-blue) !important;
}

.navbar.scroll-on,
.navbar.responsive-navbar.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out 0s;
  background: #fff;
  z-index: 1000;
  animation: headerSlideDown 0.5s ease forwards;
}

.navbar.scroll-on ul li a {
  color: #202020;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
    opacity: 0;
  }

  30% {
    margin-top: -50px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* ===== Mobile Navbar ===== */
#bar {
  display: none;
  color: var(--blue);
  font-size: 26px;
}

.popup-mobilemenu {
  z-index: 1000000;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(119, 114, 104, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.popup-mobilemenu.menu-open {
  visibility: visible;
  opacity: 1;
}

.popup-mobilemenu .menu-inner {
  padding: 25px 40px;
  width: 375px;
  z-index: 999;
  position: absolute;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 70%);
  opacity: 0;
  right: -150px;
  transition: all 0.5s ease-out;
}

.popup-mobilemenu.menu-open .menu-inner {
  opacity: 1;
  right: 0;
  overflow-y: auto;
}

.popup-mobilemenu .menu-inner .menu-top {
  border-bottom: 1px solid var(--blue);
  padding: 0 0 10px 0;
  display: flex;
  justify-content: flex-end;
}

.menu-top i {
  color: var(--blue);
  font-size: 29px;
}

.popup-mobilemenu .content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 20px;
  margin-top: 20px;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  margin-top: 20px;
  text-align: right;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li {
  /* display: inherit; */
  margin: 5px 0px !important;
  margin-bottom: 5px !important;
  width: 100%;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a {
  color: #202020;
  position: relative;
  transition: 0.4s;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: 2px;
  margin: 0;
  display: inline-block;
  font-weight: 600;
  padding: 0;
  padding-bottom: 10px;
  opacity: 1;
}

.popup-mobilemenu .content .mainmenu-nav .navbar-list1 li a.active {
  color: var(--blue);
}

nav#sideNavMobile {
  width: 100%;
}

/* ====== Landing Section ===== */
.landing {
  height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("../images/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
}

.landing::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to top, #050505, transparent);
  z-index: 9;
}

.landing .container {
  position: relative;
}

.landing .main-left {
  width: 100%;
  padding: 0 5rem;
  position: relative;
  z-index: 12;
}

.landing h1 {
  margin-bottom: 10px;
  line-height: 1.1em;
  font-weight: 600;
  color: #fff;
}

.landing h2 {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
}

p#dl {
  margin-top: 40px;
  color: #fff;
}

.landing .blue {
  font-weight: 700;
}

.btn-custom {
  padding: 15px 20px;
  border: 2px solid var(--blue);
  background-color: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
  min-width: 240px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
}

.btn-custom.pay-btn {
  background: #ffc439;
  border-color: #ffd97e;
  color: #000;
  outline: none;
}

.btn-custom.dl-btn {
  background: #fff;
  border-color: #fff;
  color: #202020;
}

.btn-custom:hover {
  background: transparent;
  color: #fff;
}

/* ===== About Us Section ===== */
.section {
  padding: 30px;
}

section:not(#home) h1 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.section h2 {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 700;
}

.flex-img {
  border-radius: 6px;
}

.flex-img img {
  border-radius: 6px;
  transition: 0.5s;
}

.flex-img img:hover {
  transform: scale(1.05);
}

.flex-content h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 500;
}

.flex-content p {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}


/* ===== Features ===== */

#features {
  background: #f0f0f0;
}

#features .flex-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.flex-content ul li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.1;
  margin-left: 20px;
  list-style: disc;
}

/* ===== Changelog Page ===== */
#changelog .col {
  width: 40%;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.changelog-card h3 {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.changelog-card ul li {
  font-size: 18px;
  margin-bottom: 7px;
  line-height: 1.1;
  padding-left: 35px;
  position: relative;
}

.changelog-card ul li::before {
  content: "\2713";
  position: absolute;
  width: 19px;
  height: 18px;
  background: var(--light-blue);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  left: 0;
  top: 2px;
}

/* ===== How To Order Page ===== */
#order .btn-custom:hover {
  color: var(--blue);
}

.content p {
  font-size: 18px;
  line-height: 1.2 !important;
}

.content h3 {
  color: var(--blue);
}

.content ul li {
  font-size: 18px;
}



/* ===== Screenshots Page ===== */
#screenshots .col {
  width: 28%;
}

#screenshots h2 {
   color: var(--blue);
}

.divider:last-child {
    border-top: 1px solid var(--light-blue);
    padding-top: 30px;
}

.ss-img img {
  width: 100%;
}

.ss p {
    line-height: 1.2;
    margin-top: 7px;
}

/* ===== Services Section ===== */
.section-header {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  padding-bottom: 5px;
}

.section-header::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 3px;
  left: calc(50% - 50px);
  bottom: 0;
  background: linear-gradient(to left, #5db3ff, #002c49, #5db3ff);
  border-radius: 100%;
}

.section-header::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 9px;
  left: calc(50% - 10px);
  bottom: -3px;
}

.section-header h1 {
  font-weight: 500 !important;
  line-height: 1.2;
}

.services {
  background-color: #f7f7f7;
}

.section.services h2 {
  margin-bottom: 20px;
}

.card {
  height: 100%;
  padding: 0;
  border: 1px solid #e1e1e1;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0.125rem 1rem 0 rgb(0, 0, 0, 0.2);
  transition: 0.5s;
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
}

.card-img {
  border-radius: inherit;
  height: 200px;
  display: flex;
}

.card-img img {
  width: 100%;
  border-radius: inherit;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
}

.card-title {
  padding: 25px;
}

.card-title h4 {
  font-size: 30px;
  font-weight: 500;
  color: var(--blue);
}

/* =====  Pricing Section ====== */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

.price-box {
  background: #fff;
  border: 2px solid #e6f2ff;
  box-shadow: 0 0 25px -10px #000;
  border-radius: 10px;
  padding: 70px 10px 30px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  max-width: 400px;
  margin: auto;
  margin-bottom: 50px;
  z-index: 100;
}

.price-box .price-head {
  position: absolute;
  text-align: center;
  background: var(--blue);
  width: 100%;
  top: 0;
  height: 55px;
  line-height: 50px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 2px solid #b9dafe;
}

.price-box span {
  text-transform: uppercase;
}

.price-box .price {
  position: relative;
  color: var(--blue);
  font-size: 4em;
  font-weight: 400;
  transform: translateX(-10px);
}

.price-box .price:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -35px;
  font-size: 1em;
  transform: scale(0.5);
  height: auto;
}

.price-features {
  margin: 20px 0;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  color: #646464;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 500;
}

.price-features li::before {
  content: "\2713";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  left: 0;
  top: 3px;
}

.price-box:nth-child(2) h2 {
  background: var(--blue);
  height: auto;
}

.pricing .btn {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.pricing .btn:hover {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

@media screen and (min-width: 1026px) {
  .pricing-area {
    /* height: 250px; */
  }

  .price-box {
    margin: 0;
    width: 300px;
    height: 450px;
  }

  #gaming-price .price-box {
    height: 620px;
  }

  .price-box:nth-child(2) {
    transform: scale(1.16);
    margin: 0 22px;
    box-shadow: 0 0 25px -10px #000;
    background: #fff;
    position: relative;
    z-index: 999;
    height: auto;
  }
}

/* Banner */

.page-header {
  height: 75vh;
  background: url("/images/contact.jpg");
  background-color: rgb(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(to top, #0e0d0d, transparent);
  z-index: 9;
}

.page-header.services-header {
  background-image: url("/images/services.jpg");
}

.page-header.banner {
  height: 50vh;
  background-color: rgb(0, 0, 0, 0.7);
  text-align: left;
  position: relative;
}

.page-header h1 {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-header h2 {
  color: #ccc;
  font-weight: 600;
  font-size: 34px;
}

.page-header h2 a {
  color: var(--blue);
}

.banner .flex {
  justify-content: center;
  position: relative;
}

.banner .call {
  border-left: 1px solid #48edc7;
  padding-left: 20px;
}

.banner h2 {
  color: var(--blue);
  margin: 0;
  margin-bottom: 30px;
}

.banner .btn {
  padding: 10px 20px;
  font-size: 18px;
  color: #48edc7;
  border-radius: unset;
  background: transparent;
}

.banner .btn:hover {
  background: var(--blue);
  color: #fff;
}

.banner p {
  color: #fff;
  font-size: 26px;
}

.banner a {
  color: #48edc7;
  font-size: 26px;
  font-weight: 600;
}


/* ===== Footer ===== */
footer {
  position: relative;
  height: auto;
  padding: 20px 0 0 0;
  background: #202020;
  text-align: center;
  color: #202020;
}

footer .container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

footer .links ul li {
  padding: 7px 15px;
}

footer .links ul li a {
  color: #fff;
  font-size: 24px;
  transition: all 0.4s ease-in-out;
}

footer .links ul li a:hover {
  color: var(--light-blue);
}

footer .branding {
  border-top: 1px solid #444;
}


/* section::before {
  display: block;
  content: " ";
  height: 80px;
  visibility: hidden;
  pointer-events: none;
} */

/* ====== Responsive Design ====== */
@media (max-width: 991px) {
  .navbar .nav-menu {
    display: none;
  }

  #bar {
    display: block;
    font-size: 30px;
  }

  .logo {
    width: 45%;
  }

  .col {
    width: 35%;
    margin-bottom: 20px;
  }

  .float-right {
    padding-left: 30px;
    padding-right: 30px;
  }

  .landing .main-left {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* ----- About Page ----- */
  .flex .box {
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 2em;
  }

  h1 {
    font-size: 48px !important;
  }

  .flex-content {
    width: 100%;
  }

  .services,
  .contact,
  .about {
    padding-top: 0;
  }

  .banner h3 {
    font-size: 26px;
  }

  /* ---- Order Page ----- */
  .container {
    max-width: 720px !important;
  }

  #order .btn-custom {
    width: 70% !important;
  }
  .btn-custom2 {
  }}

@media (max-width: 540px) {
  h1 {
    font-size: 46px !important;
    line-height: 1.2em !important;
  }

  .landing h2 {
    font-size: 1.3em;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 2rem;
  }

  .logo {
    width: 60%;
  }

  .section h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .flex-content p {
    padding: 0;
    font-size: 16px;
  }

  .container {
    padding: 10px 10px;
  }

  .services,
  .contact,
  .about {
    padding: 15px;
  }

  .services h3 {
    font-size: 18px;
  }

  .row {
    gap: 30px 30px;
  }

  .col {
    width: 60%;
  }

  .flex-content h2 {
    font-size: 28px;
  }

  footer .links ul {
    flex-wrap: wrap;
  }

  .contact-info {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .logo {
    width: 70%;
  }

  section:not(#home) h1 {
    line-height: 1.7;
  }

  .landing h2 {
    font-size: 1.1em;
  }

  h1 {
    font-size: 40px !important;
  }

  .landing .main-left {
    padding-left: 0;
    padding-right: 0;
  }

  .banner h3 {
    font-size: 18px;
  }

  .page-header {
    height: 35vh;
  }

  .page-header.section {
    padding: 0;
  }

  .popup-mobilemenu .menu-inner {
    width: 280px;
  }

  .section-header h1 {
    font-size: 38px;
  }

  #features img {
    width: 100% !important;
  }

  .section {
    padding: 30px 10px;
  }

  #download table {
    margin-left: -1rem;
  }

  footer .links ul li a {
    font-size: 14px;
  }
}

