body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background-image: linear-gradient(175deg, #ffffff 80%, #b4b4b4 100%);
    margin: auto;
}

a {
    color: rgb(13, 18, 100);
    text-decoration: none;
}

a:hover {
    color: rgb(13, 18, 100);
    text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgb(252, 250, 250);
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(13, 18, 100, 0.3);
    position: fixed;
    left: 0;
    right: 0;
}

#header.fixed-top {
    height: 70px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: rgb(13, 18, 100);
}

#header .logo img {
    max-height: 77px;
}

.scrolled-offset {
    margin-top: 70px;
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: rgb(40, 40, 40);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: rgb(13, 18, 100);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: rgb(13, 18, 100);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(252, 250, 250);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: rgb(13, 18, 100);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/* LANGUAGE BUTTON */
.navbar-language {
    max-height: 27px;
    max-width: 27px;
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: rgb(40, 40, 40);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: rgb(252, 250, 250);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: rgb(252, 250, 250);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: rgb(40, 40, 40);
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: rgb(13, 18, 100);
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: rgb(252, 250, 250);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: rgb(13, 18, 100);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/headera.jpg") top left;
    background-size: cover;
    position: center;
    background-attachment: fixed;
}

.hero-text {
    float: right;
    color: rgb(13, 18, 100);
    font-size: 50px;
    line-height: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding-top: 150px;
}

.about .content {
    padding: 30px 0;
}

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #0D1264;
    padding-bottom: 20px;
}

.about .content p {
    margin-bottom: 0;
    color: #000000;
}

.about .content .icon-box {
    margin-top: 25px;
}

.about .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.about .content .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.about .image {
    background: url("../img/VECTRUM-ABOUT.png") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 667px) {
    .about .image img p h3 {
        max-width: 100%;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.row {
    justify-content: center;
    display: inline-flex;
}

.section-title {
    margin-bottom: 150px;
    margin-top: 150px;
    text-align: center;
    color: #0D1264;
}

.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 20px rgba(13, 18, 100, 0.4);
    transition: all ease-in-out 0.3s;

    height: 98%;
    width: 98%;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0D1264;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #2a2a2a;
}

.why-us .box p {
    color: #2a2a2a;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box:hover {
    background: #dbdbdb;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(13, 18, 100, 0.4);
}

.why-us .box:hover h4 {
    color: #0D1264;
}

.why-us .box .icon {
    width: 40%;
    height: 40%;
}

.why-us .box .icon1 {
    width: 40%;
    height: 35%;
    margin-bottom: 13px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    background: #fdfdfd;
    padding: 30px;
    box-shadow: 10px 15px 30px rgba(13, 18, 100, 0.45);
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #0D1264;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #0D1264;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-container {
    margin-top: 50px;
}

.nav-item {
    font-size: 15px;
}

#footer .footer-container .nav-item:hover {
    color: rgb(255, 255, 255);
}

#footer .footer-container .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgb(40, 40, 40);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 5px;
    border-radius: 5px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-container .social-links a:hover {
    background: rgb(13, 18, 100);
    color: #fff;
    text-decoration: none;
}


@media (max-width: 700px) {

    .row,
    .navbar {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}