@charset "UTF-8";

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
::selection {
    color: #fff;
    background: #0ca9e7;
}

body {
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #fff;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-image: radial-gradient(circle farthest-corner at 36.5% 10%, rgba(0, 112, 218, 1) 0%, rgba(15, 27, 49, 1) 90%);
    background-attachment:fixed;
    background-repeat:no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.worldMap {
    position: absolute;
    z-index: -1;
}

.worldMap svg {
    width: 100vw;
    height: 100vh;
}

.worldMap path {
    fill: #000;
    opacity: 0.2;
}

/*--------------------------------------------------------------
# Confidential
--------------------------------------------------------------*/

.conf {
    color: #fff;
    font-weight: bold;
    position: fixed;
}

.conf:nth-child(1) {
    top: 10px;
    left: 10px;
}

.conf:nth-child(2) {
    bottom: 10px;
    right: 10px;
}

.numServ {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: white;
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr.divider {
  height: 0.2rem;
  max-width: 27rem;
  margin: 1.5rem auto;
  background-color: #DFF6E5;
  opacity: 1;
}

.ftco-section {
  padding: 4em 0;
  padding-bottom: 15px;
  height: 100vh;
}

.heading-section {
  font-size: 28px;
  color: #ffffff;
}

.heading-section .text-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 6.5rem;
  font-family: verdana;
  color: #ffffff;
  text-shadow: 1px 1px 1px #919191, 
      1px 2px 1px #919191, 
      1px 3px 1px #919191, 
      1px 4px 1px #919191, 
      1px 5px 1px #919191, 
      1px 6px 1px #919191, 
      1px 7px 1px #919191, 
      1px 8px 1px #919191, 
      1px 9px 1px #919191, 
      1px 10px 1px #919191, 
      1px 18px 6px rgba(16,16,16,0.4), 
      1px 22px 10px rgba(16,16,16,0.2), 
      1px 25px 35px rgba(16,16,16,0.2), 
      1px 30px 60px rgba(16,16,16,0.4);
}

.heading-section h4 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .heading-section h4 {
        font-size: 2.5rem;
    }
}

/*--------------------------------------------------------------
# Login Form
--------------------------------------------------------------*/
.login-wrap {
    box-sizing: border-box;
    background-image: radial-gradient(at calc((var(--this-mouse-x) / var(--this-width)) * 100%) calc((var(--this-mouse-y) / var(--this-height)) * 100%), #daf0fb23, #004a8600);
    border-top: 1px solid #ffffff44;
    border-left: 1px solid #ffffff44;
    border-right: 1px solid #00000088;
    border-bottom: 1px solid #00000088;
    border-radius: 10px;
    padding: 48px;
    backdrop-filter: blur(3px);
    box-shadow: inset 0 0 0 500px rgba(255,255,255,0.05);
}

.form-control {
    background: transparent;
    border: none;
    height: 50px;
    color: white !important;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.8) !important;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.8) !important;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.8) !important;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.8) !important;
}

.form-control:hover,
.form-control:focus {
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    text-transform: uppercase;
    height: 50px;
}

.wrap-pass {
    position: relative;
}

.wrap-pass span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #a5a5a5;
    cursor: pointer;
    display: none;
}

.wrap-pass input:valid ~ span {
    display: block;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    color: #fff;
}

/*--------------------------------------------------------------
# Particle
--------------------------------------------------------------*/
.vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.vertical-centered-box:after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.vertical-centered-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

#particles-background,
#particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    transform: scale3d(0.5, 0.5, 1);
    overflow: hidden;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
