/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.6
	Stable tag: 3.4.6
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  color: white;
  scroll-behavior: smooth;
}
body {
  background-color: #0a0c1e;
}
  .holder span 
    {
        color: rgba(253, 199, 0, 1);
    }
     .holder 
        {
            padding: 50px 20px;
            
        }
.sec1 
{
	display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
	    max-width: 760px;
	margin:auto

}
        .holder h1 
        {
            font-size: 26px;
            font-weight: 700;
			        text-align: center;

        }
        .holder p 
        {
            font-size: 14px;
        }
    
    @media screen and (min-width:768px)
    {
        .holder 
        {
            padding: 110px 96px;
            
        }
		.sec1 {
			
            gap: 80px;
}
        .holder h1 
        {
            font-size: 72px;
        }
        .holder p 
        {
            font-size:18px;
            color: rgba(255, 255, 255, 0.9);
;
        }
    }
.topSec
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
}
.topSec p 

{
    display: flex;
    align-items: center;
    border: 1px solid rgba(65, 62, 107, 0.5);
    padding: 10px 12px;
    border-radius:50px;
    background: rgba(33, 30, 61, 1);
    gap: 6px;
    font-size: 16px;
	margin:0;
		color:rgba(255, 255, 255, 0.7);

}
.sec1 a
{
  color: white;
  text-decoration: underline;
}

@media screen and (max-width:768px)
{
    .topSec
    {
        gap: 36px;
    }
    .topSec p 
    {
        font-size: 14px;
    }
}
/* =========================
   NAVIGATION BAR
========================= */

.navigationBar {
  background-color: #0c082b;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding: 22px 20px;
  align-items: center;
}

.logo {
  max-width: 92px;
	height:30px !important;
}

.desktopOptions {
  display: flex;
  gap: 72px;
  align-items: center;
  justify-content: end;
  flex: 1;
}

.desktopOptions a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* =========================
   MOBILE HAMBURGER
========================= */

#nav-icon1 {
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  display: none;
}

#nav-icon1 span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  left: 0;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.2s ease;
}

#nav-icon1 span:nth-child(1) { top: 0; }
#nav-icon1 span:nth-child(2) { top: 8px; }
#nav-icon1 span:nth-child(3) { top: 16px; }

/* OPEN STATE */
#nav-icon1.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
}

#nav-icon1.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobileOptions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background-color: #0c082b;

  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 100;

  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
}

.mobileOptions a {
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
}

.mobileOptions.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 600px) {
  #nav-icon1 {
    display: block;
  }

  .desktopOptions {
    display: none;
  }

  .logo {
    max-width: 130px;
  }
}

@media screen and (min-width: 768px) {
  .navigationBar {
    padding: 22px 96px;
  }

  .logo {
    max-width: 164px;
  }

  .desktopOptions a {
    font-size: 1em;
  }
}
/* =========================
   FOOTER
========================= */

.footer {
  background-color: white;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerTop {
  width: 106px;
}

.footerFirst {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer h6 {
  color: #0a0c1e;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer a {
  color: rgba(10, 12, 30, 0.7);
  display: block;
 
  text-decoration: none;
  font-weight: 500;
	margin-bottom:8px;
  font-size: 14px;
}

.footer p {
  color: #0a0c1eb2;
  text-align: left;
}

.socialIcons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footerSecond {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.otherLinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ctadownloads {
  display: none;
}
.otherLink
{
	gap:0
}
@media screen and (min-width: 768px) {
    .footer hr {
        display: none;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 600px) {
  .footer {
    margin-bottom: 4em;
	  
  }

  .footerTop {
    max-width: 130px;
  }

  .footerTop img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 65px 96px;
	  gap:26px;
  }

  .footerFirst {
    flex-direction: row;
    justify-content: space-between;
  }

  .footerSecond {
            display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        margin-top: 2em;
        border-top: 1px solid hsla(235, 81%, 94%, 0.753);
        padding-top: 2em;
  }

  .footer h6 {
    font-size: 20px;
  }

  .footer a {
    font-size: 16px;
  }

  .footerSecond a {
    margin: 0;
  }

  .otherLinks {
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
    gap: 10px;
  }

  .ctadownloads {
    display: flex;
    margin-top: 1em;
    gap: 20px;
  }

  .imgStore {
    max-width: 180px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
  }

  .imgStore:hover {
    transform: scale(1.1);
  }

  .imgStore img {
    width: 100%;
  }
	.footerSecond p
	{
margin-bottom:0}
	.otherLinks a:nth-child(1) { order: 2; }
  .otherLinks a:nth-child(2) { order: 3; }
  .otherLinks a:nth-child(3) { order: 4; }
  .otherLinks a:nth-child(4) { order: 5; }
  .otherLinks a:nth-child(5) { order: 6; }
  .otherLinks a:nth-child(6) { order: 1; }
  .footer h6 {
    font-size: 20px;
  }
  .footerSecond p 
  {
      margin: 0;
  }
  .card p 
  {
      width: 100%;;
  }
  .otherLinks p 
  {
      font-size: 16px;
  }
	 .footerTop
  {
      width: 100%;
      max-width: 164px;
  }
}

    .e-con.e-flex>.e-con-inner
{
    max-width: 100%;
    padding: 0;
    gap: 0;
}
.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded
{
    padding: 0;
}

.topSec h1 
{
	margin:0
}

