﻿:root {
    --col-white: #fff;
    --col-black: #000;
    --col-l: #DBE8FF;
    --col-2: #f6f9ff;
    --col-3: #f5f5f5;
    --col-4: #141414;
    --col-5: #202020;
    --col-6: #1065ff;
    --col-7: #1f2baa;
    --col-8: #00278c;
    --col-9: #001345;
    --col-10: #;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: auto;
}

/* Hide scrollbar for all elements */
 
::-webkit-scrollbar {
  display: none;
}

body{
    font-family: "Encode Sans Expanded", sans-serif;
}

/* desktop */
@media screen and (min-width: 900px) {
    .only-desktop {
        display: block;
    }

    .only-mobile {
        display: none;
    }

}

/* mobile */
@media screen and (max-width: 900px) {
    .only-desktop {
        display: none;
    }

    .only-mobile {
        display: block;
    }

    .center-image {
        width: 100%;
    }
}

/*Extra font*/
.dela {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

/*!
 *
 * bttn.css - https://ganapativs.github.io/bttn.css
 * Version - 0.2.4
 * Demo: https://bttn.surge.sh
 *
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Ganapati V S (@ganapativs)
 *
 */
/* standalone - .bttn-unite */

/*
on hover button design css from - https://uiverse.io/JaydipPrajapati1910/red-dingo-88
*/
.underline-blue {
    color: var(--col-8);
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
  }
  
  .underline-blue:focus,
  .underline-blue:hover {
    color: var(--col-6);
  }
  
  .underline-blue:focus:after,
  .underline-blue:hover:after {
    width: 100%;
    left: 0%;
  }
  
  .underline-blue:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--col-6);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
  }

  .cta {
    position: relative;
    padding: 7px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
  }
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    background-color: var(--col-l);
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--col-8);
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--col-8);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background-color: var(--col-l);
  }
  
  .cta:hover svg {
    transform: translateX(0);
    stroke: var(--col-6)
  }
  
  .cta:hover span {
    color: var(--col-6) !important;
  }

  .cta:active {
    transform: scale(0.95);
  }
  
/*new div
.lndg-bg {
    width: 100%;
  height: 100%;
  position: relative;
  --color: #1a1a1a;
  background-color: #141414;
  background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
      linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
  background-size: 55px 55px;
}*/

/*landing gradient*/
@keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

.gradient {
    position: absolute;
    display: flex;
    overflow: hidden;
    --size: 200px;
    --speed: 15s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#37eba9d9, #5b37eb);
    animation: rotate var(--speed) var(--easing) alternate infinite;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
  
  @media (min-width: 720px) {
    .gradient {
      --size: 500px;
    }
  }

  /* This is just to transition when you change the viewport size. */
  * {
    transition: all 0.25s ease-out;
  }


/*-----------------------------*/

.typing {
  color: white;
  margin: auto;
}
.typing-underscore {
    display:inline-block;
  top:-0.14em;
  left:10px;
}

/*#lndg {
    font-family: inherit;
    font-weight: 300px;
    color: #1065ff;
}*/


/********** common setting **********/
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}

img {
    display: block;
    max-width: 100%;
}

a, button {
    cursor: pointer;
}

.jumbotron {
    margin-bottom: 0 !important;
}

.atlas-cta {
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    transition: .3s ease-in-out !important;
}

    .atlas-cta:hover {
        text-decoration: none;
        transform: translateY(-5px);
    }


#banner {
    background-size: cover;
}
/********** banner **********/
    #banner header {
        overflow: hidden;
    }

        #banner header img {
            max-width: 80px;
        }

/********** price table **********/

#join {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#join__premium {
    background: linear-gradient(135deg, #001345 0%, #0034b6 100%);
    color: #ffffff;
    border-radius: 15px;
}

#join ul li {
    padding: 15px 0;
}

/********** contact **********/
#contact {
    background-size: cover;
}

    #contact ul li {
        padding: 3px 0;
    }

    #contact form {
        color: #1065ff;
    }

        #contact form input, #contact form textarea {
            background: transparent;
            border: 1px solid #1065ff;
            color: #ffffff;
        }

/********** ftr **********/
.ftr {
    background-color: #f5f5f5;
    padding-top: 20px;
    border-top: solid 5px #1065ff;
}
/********** ftr icons **********/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

.bi {
  padding: 4px 7px;
  color: var(--col-2) !important;
  background-color: var(--col-6);
  border-radius: 100px;
}

.bi:hover {
  padding: 4px 7px;
  color: var(--col-6) !important;
  background-color: var(--col-white);
  border-radius: 100px;
}

.bi-envelope-fill {
    font-size: auto;
    color: var(--col-6);
}
.bi-envelope-fill:hover {
    color: var(--col-7);
}

.bi-twitter-x {
    font-size: auto;
    color: var(--col-6);

}
.bi-twitter-x:hover {
    color: var(--col-7);
}

.bi-instagram {
    font-size: auto;
    color: var(--col-6);
}
.bi-instagram:hover {
    color: var(--col-7);
}

.bi-youtube {
    font-size: auto;
    color: var(--col-6);
}
.bi-youtube:hover {
    color: var(--col-7);
}

.bi-github {
    font-size: auto;
    color: var(--col-6);
}
.bi-github:hover {
    color: var(--col-7);
}

/*footer brand name*/
.fbn {
    color: var(--col-6); 
}
.fbn:hover {
    color: var(--col-7);
    cursor: pointer;
}

/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
}

/**/

.made-with {
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    z-index: 2147483647 !important;
    color: var(--col-8);
    opacity: 1 !important;
    background-color: #fff !important;
    border-radius: 5px !important;
    padding: 2px 6px;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: flex !important;
    position: fixed !important;
    inset: auto 12px 12px auto !important;
    overflow: visible !important;
    transform: none !important;
}


.form {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    height: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 25px;
    /*box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);*/
  }
  
  .form {
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form input {
    outline: 0;
    border: 1px solid #dddddd !important;
    padding: 8px 14px;
    border-radius: 15px;
    width: 100%;
    height: 75px;
  }
  
  .form textarea {
    border-radius: 15px;
    color: var(--col-4) !important;
    height: 100%;
    width: 100%;
    resize: none;
    outline: 0;
    padding: 8px 14px;
    border: 1px solid #dddddd !important;
  }
  
  .form button {
    align-self: middle;
    padding: 3px 25px;
    outline: 0;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    background-color: #1065ff;
    color: #fff;
    cursor: pointer;
  }
  
  .form button:hover {
    background-color: #0551dd;
    color: #fff;
  }

  /*preloader*/
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--col-2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease-out;
  }
  
  .progress {
    height: 1% !important;
    width: 15%;
    background: linear-gradient(#1065ff 0 0), linear-gradient(#17e6ae 0 0), #dbdcef;
    background-size: 60% 100%;
    background-repeat: no-repeat;
    animation: progress-7x9cg2 3s infinite;
  }
  
  @keyframes progress-7x9cg2 {
    0% {
      background-position: -150% 0,-150% 0;
    }
    66% {
      background-position: 250% 0,-150% 0;
    }
    100% {
      background-position: 250% 0, 250% 0;
    }
  }