@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

body {
    background: #111;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #333;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #fff;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    font-display: auto;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

#topbar {
    padding: 0 0 10px 0;
    font-size: 14px;
    transition: all 0.5s;
}

#topbar .social-links {
    text-align: right;
}

#topbar .social-links a {
    color: #535074;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
}

#topbar .social-links a:hover {
    color: #333;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

#header {
    background: #34383b;
    height: 110px;
    padding: 20px 0;
    position: relative;
    -webkit-box-shadow: 5px 0px 10px rgb(0 0 0 / 50%);
    box-shadow: 5px 0px 10px rgb(0 0 0 / 50%);
}

#header .logo h1 {
    font-size: 29px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #ffffff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 7px 0;
    max-height: 26px;
}

.main-pages {
    margin-top: 60px;
}

.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.main-nav a {
    display: block;
    position: relative;
    color: #efefef;
    padding: 10px 15px;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-display: auto;
    transition: .2s all ease;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
    color: #fff;
    text-decoration: none;
}

.main-nav ul li.active:before, .main-nav a:hover:before {
    animation: opas .2s linear;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    bottom: -20px;
    left: 0px;
    right: 0px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 418px;
    background-size: cover;
    background-position: 50% 50%;
}

#landing {
    width: 100%;
    background: #303030;
    position: relative;
    min-height: 418px;
}
#landing .intro-info {
    padding-top: 5rem;
}
#landing .intro-info h2 {
    color: #efefef;
    font-size: 48px;
    font-weight: 700;
}

#landing .intro-info h2 span {
    color: #fff;
}

#landing .intro-info .btn-get-started,
#landing .intro-info .btn-services {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1bb1dc;
    color: #fff;
    font-display: auto;
}

#landing .intro-info .btn-get-started:hover,
#landing .intro-info .btn-services:hover {
    background: #0a98c0;
}

.main-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    min-width: 186px;
    padding: 17px 25px;
    border-radius: 0;
    border: 1px solid #686868;
    background: #444;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    transition: .2s all ease;
    margin: 1rem;
    text-align: center;
}

.main-btn:hover {
    filter: brightness(120%);
}

@keyframes opas {
    0% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}