﻿/* The owner of this template is Junell Vista */
/* you can message him via facebook: www.facebook.com/vjunell */



/* FONT STYLES */
:root {
    --default-font: "Titillium Web","Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
  }




/* MAIN COLOR */

:root { 
    --background-color: #f4f0dd; 
    --default-color: #444444; 
    --heading-color: #222222; 
    --accent-color: #53593d; 
    --contrast-color: #ffffff; 
  }

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
  }


/* NAVIGATION COLOR */

:root {
    --nav-color: #1e1e1e; 
    --nav-hover-color: #53593d; 
    --nav-mobile-background-color: #f4f0dd; 
    --nav-dropdown-background-color: #f4f0dd; 
    --nav-dropdown-color: #1e1e1e; 
    --nav-dropdown-hover-color: #53593d; 
  }


/* GENERAL */

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }

  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }

/* HEADER SETTINGS */

.header-text {
  text-align: center;
  opacity: 0.6;
  padding-bottom: 20px;
  padding-top: 20px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.8);
  width: 750px;
}

.header-text h2 {
  font-size: 70em;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.header-text small {
  color: #fff;
  font-size: 17px;
}

.header-p {
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 20px;
}





.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 36px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--heading-color);
  }
  
  .header .header-social-links {
    padding-right: 15px;
  }
  
  .header .header-social-links a {
    color: #fff;
    padding-left: 6px;
    display: inline-block;
    transition: 0.3s;
    font-size: 12px;
  }
  
  .header .header-social-links a i {
    line-height: 0px;
  }
  
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .header-social-links {
      order: 2;
    }
  
    .header .navmenu {
      order: 3;
    }
  }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

.footer-top {
  text-align: center;
  margin-bottom: -20px;
}

.footer-info h3 {
  font-size: 15px;
  font-weight: 400;
}

.footer-info img {
  margin-bottom: 20px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      font-size: 15px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      background-color: var(--nav-hover-color);
      visibility: hidden;
      width: 0px;
      left: 0;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {

    .ran-online-title-box {
      border: 1px solid #53593d;
      width: 350px;
      background-color: #fff;
      padding-top: 20px;
      border-radius: 30px;
  }

    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }



  /* HOME SECTION */
  .home {
    width: 100%;
    min-height: calc(100vh - 82px);
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @media (max-width: 1200px) {
    .home {
      min-height: calc(100vh - 68px);
    }
  }
  
  .home img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .home .container {
    position: relative;
    z-index: 3;
  }
  
  .home h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
  }
  
  .home p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: var(--heading-color);
  }
  
  .home .btn-get-started {
    color: var(--contrast-color);
    background: #facc22;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
  }
  
  .home .btn-get-started:hover {
    background: #000;
  }
  
  @media (max-width: 768px) {
    .home h2 {
      font-size: 32px;
    }
  
    .home p {
      font-size: 18px;
    }
  }


  /* ABOUT SECTION */

  .about {
    width: 100%;
    min-height: calc(100vh - 82px);
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @media (max-width: 1200px) {
    .about {
      min-height: calc(100vh - 68px);
    }
  }
  
  .about img {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
  }
  
  .about .container {
    position: relative;
    z-index: 3;
  }
  
  .about h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
  }
  
  .about p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: var(--heading-color);
  }
  
  .about .btn-get-started {
    color: var(--contrast-color);
    background: #facc22;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
  }
  
  .about .btn-get-started:hover {
    background: #000;
  }
  
  @media (max-width: 768px) {
    .about h2 {
      font-size: 32px;
    }
  
    .about p {
      font-size: 18px;
    }
  }

  .about-text {
    text-align: center;
    opacity: 0.6;
    padding-bottom: 20px;
    padding-top: 20px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.8);
    width: 750px;
    margin-top: -340px;
  }
  
  .about-text h2 {
    font-size: 70px;
    font-family: "EB Garamond", serif;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
  }
  
  .about-text small {
    color: #fff;
    font-size: 17px;
  }


  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .ran-online-title-box {
    border: 1px solid #53593d;
    width: 600px;
    background-color: #fff;
    padding-top: 20px;
    border-radius: 30px;
}

.server {
  margin-top: -300px;
}


  /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* RAN BUTTON DOWNLOAD */
.ran-btn {
  padding: 10px 20px;
  border: 1px solid #000;
  background-color: #53593d;
  text-align: center;
  border-radius: 7px;
  transition: 0.3s;
  text-transform: uppercase;
}

.ran-btn-download a {
  color: #fff;
}

.bi-download {
  padding-right: 7px;
}



.feature-box-1 {
  border-radius: 20px;
  border: 1px solid #53593d;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.feature-title img {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}

.feature-box-1 p {
  margin-bottom: 0;
}

.server-features {
  padding: 0 20px;
}

.server-features img {
  border-radius: 30px;
}

@media (max-width: 1199px) { 

  .feature-box-1 {
    border-radius: 20px;
    border: 1px solid #53593d;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
  }

  .feature-box-2 {
    border-radius: 20px;
    border: 1px solid #53593d;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
  }

}

.feature-box-2 {
  border-radius: 20px;
  border: 1px solid #53593d;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.feature-box-2 p {
  margin-bottom: 0;
}

.feature-box-3 li{
  list-style-type: none;
}

.feature-title h2 {
  font-size: 40px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 2px;
  color: #facc22;
  text-transform: uppercase;
}




/*-------------------------------------------------------------- */

