/* Edit your primary color here  (This will change the whole theme color) */
:root {
    --sp-primary: #0b3b5d;
    --sp-secondary: #00a6ff;
    --sp-dark: black;
    --sp-light: white;
    --sp-low-light: #fbfbfb;
    --sp-lower-light: #eeeeee;
    --sp-ash: #9a9a9a;
}

html {
    font-size: 14px !important;
}

/* Styles */

body {
    background-color: var(--sp-low-light);
}

nav {
    position: relative;
}

::-moz-selection { /* Code for Firefox */
    color: var(--sp-light);
    background: var(--sp-primary);
}

::selection {
    color: var(--sp-light);
    background: var(--sp-primary);
}

pre {
    white-space: normal;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    padding: 15px;
    background-color: var(--sp-lower-light);
    border-left: 2px solid var(--sp-primary);
    text-align: left !important;
    overflow: hidden;
    word-wrap: break-word;
}

a {
    text-decoration: none !important;
    color: var(--sp-dark);
}

footer {
    border-bottom: 7.5px solid var(--sp-primary);
}

section {
    margin-bottom: 100px;
}

/* .btn-primary {
    background-color: var(--sp-secondary);
    border: var(--sp-secondary);
}

.btn-primary:hover {
    background-color: var(--sp-primary);
    border: var(--sp-primary);
} */

.sections {
    opacity: 0;
}

.start {
    -webkit-animation: spawn 1s ease-out forwards;
       -moz-animation: spawn 1s ease-out forwards;
        -ms-animation: spawn 1s ease-out forwards;
         -o-animation: spawn 1s ease-out forwards;
            animation: spawn 1s ease-out forwards;
}

.offcanvas .navbar-nav{
    overflow-y: scroll;
}

.primary-color{
    color: var(--sp-primary) !important;
}

.secondary-color{
    color: var(--sp-secondary) !important;
}

.background-primary{
    background-color: var(--sp-primary) !important;
    color: var(--sp-light);
}

.background-secondary{
    background-color: var(--sp-secondary) !important;
    color: var(--sp-light);
}

.company-profile tr td {
    padding: 20px;
    width: 50%;
    vertical-align: middle;
}

.bread-crumbs {
    position: relative;
    text-align: center;
    background-size: cover;
    color: var(--sp-light);
    margin-bottom: 100px;
    height: 200px;
}

.bread-crumbs-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(6,27,65,0) 0%,var(--sp-primary) 100%);
}
.bread-crumbs-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 70px 0;
    z-index: 4;
    text-align: center;
}

.bread-crumbs a {
    color: var(--sp-light) !important;
    transition: color 0.5s;
}

.bread-crumbs a:hover {
    color: var(--sp-primary) !important;
}

.copyright-section{
    text-align: center;
    color: var(--sp-light);
    padding: 15px;
}

.heading-default {
    text-align: center;
}

/* .heading-default p {
    padding: 0px 200px;
    color: var(--sp-ash) !important;
    font-size: 14px;
} */

/* .info-link-text {
    opacity: 0;
    transition: opacity 1s;
}

.info-link-text:hover {
    opacity: 1;
} */

ul.collapse {
    width: 200px;
}

ul.collapse li a {
    padding: 15px;
}

footer .cards {
    padding: 75px 0 50px 0;
}

.card.footer-card {
    border: none;
    background-color: transparent;
}

.cards {
    margin-top: 30px;
}

.cards.flex ul {
    display: flex;
}

.cards.post ul {
    display: flex;
}

.cards ul {
    padding: 0;
    list-style-type: none;
}

.card {
    border-radius: 0;
}

.card.card-proud {
    border: none;
    transition: border 0.7s;
    padding: 10px;
    width: 100%;
    background-color: var(--sp-low-light);
}

.card.card-proud .card-body p {
    color: var(--sp-ash);
}

.card.card-proud .card-body .card-link {
    position: absolute;
    bottom: 0;
    right: 7px;
    color: var(--sp-low-light);
    z-index: 2;
}

.card.card-proud .card-body .triangle-bottomright {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    border-bottom: 50px solid var(--sp-primary);
    border-left: 50px solid transparent;
    opacity: 0;
    transition: opacity 0.7s;
}

.card.card-proud .card-body .card-icon {
    font-size: 3em;
    color: var(--sp-ash);
    transition: color 0.7s;
}

.card.card-news {
    margin: 0 15px;
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-image {
    width: 100%;
}

.card.active {
    border-bottom: 4px solid var(--sp-primary);
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card.active .card-body .card-icon {
    color: var(--sp-primary);
}

.card.active .card-body .triangle-bottomright {
    opacity: 1;
}

.btn-arrow {
    position: relative;
    line-height: 30px;
    white-space: nowrap;
    display: inline-block;
}

.btn-arrow:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 100%;
    opacity: 1;
    background-color: var(--sp-light);
    transition: .3s ease-in-out, 0.5s opacity;
}

.btn-arrow:after {
    content: "\f054";
    font-family: fontawesome;
    font-size: 0.8rem;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--sp-light);
    background-color: var(--sp-dark);
    border-radius: 0 15px 15px 0;
    transition: .6s ease-in-out;
}

.btn-arrow:hover:before,
.btn-arrow:focus:before {
    left: -200%;
    opacity: 0;
}

.btn-arrow:hover:after,
.btn-arrow:focus:after {
    color: var(--sp-light);
    background-color: var(--sp-primary);
    left: 104%;
}

.pos-relative {
    position: relative;
}

.hide-on-mobile {
    display: block;
}

.bottom-info {
    padding: 0px;
}

.nav {
    border-bottom: 1px solid #eeeeee;
    padding: 10px 20px;
}

.nav-info-icon {
    font-size: 2em;
}

.nav-info-icon-big {
    font-size: 3em;
    height: 65px;
    display: inline-block;
}

.social-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.nav-info {
    line-height: 1;
}

.nav-info-bounce.nav-info-icon-big i {
    margin-top: 10px;
}

i {
    margin-top: 7px;
}

.logo-nav {
    text-align: center;
}

.show-on-mobile {
    display: none;
}

.show-on-mobile-flex {
    display: none;
}

.fa-search {
    cursor: pointer;
}

.navbar-toggler {
    border: none;
}

.header-page {
    background-image: url("../img/Keyboard.jpg");
    text-align: center;
    color: white;
    padding: 30px 0;
}

.nav-info-container {
    display: flex;
    justify-content: space-between;
}

.nav-info-single {
    justify-content: space-between;
}

.nav-info {
    float: left;
    justify-content: space-between;
}

.nav-info-icon{
    margin-right: 10px;
}

.owl-carousel svg {
    fill: var(--sp-low-light);
}

.owl-item.header-owl {
    height: 720px;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 720px;
    width: 100%;
}

.overlay.overlay-background {
    background-color: var(--sp-low-light);
    opacity: 0.3;
}

.overlay.overlay-text {
    color: var(--sp-dark);
    padding: 150px 100px;
    z-index: 5;
    word-wrap: break-word;
}

.overlay.overlay-text h1 {
    font-size: 4em;
}

.overlay.overlay-text h4 {
    font-size: 2em;
}

.overlay.overlay-text p {
    font-size: 1.5em;
}

.section-info {
    background-color: transparent;
    margin-top: -200px;
    position: relative;
}

svg {
    fill: white;
}

.owl-carousel svg {
    position: relative;
    margin-top: -100px;
    height: 100px;
}

.container-big {
    padding: 30px;
}

.info-container {
    display: flex;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.section-info svg {
    height: 78px;
}

.heading-default h3 {
    font-size: 36px;
    font-family: inherit;
    position: relative;
    max-width: max-content;
    margin: 0 auto;
    padding: 0 14px;
}

.heading-default h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    bottom: 0;
    margin: auto 0;
    width: 60px;
    height: 2px;
    background-color: var(--sp-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

.img-brand {
    width: 100px;
}

.contact .contact-header {
    text-align: center;
}

.offices .single-office {
    padding: 15px 0;
    border-bottom: 1px solid var(--sp-ash);
}

.offices .single-office .single-office-content {
    padding: 0 175px;
    line-height: 1;
    font-size: 16px;
}

.owl-nav {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 225px 0;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    margin: 25px;
    padding: 15px;
    font-size: 1.2em !important;
    width: 50px !important;
    height: 50px !important;
    display: block !important;
    color: var(--sp-light) !important;
    right: 0;
}

.dropdown-menu {
    border-radius: 0px !important;
    border-top: 5px solid var(--sp-primary);
}

.dropdown-menu::before {
    top: -8px;
    left: 15%;
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border: 3px solid var(--sp-primary);
    background-color: var(--sp-light);
    border-right: none;
    border-bottom: none;
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
 }

.accordion-item {
    border: none;
    background-color: transparent;
}

/* .btn-arrow:before {
    display: none;
} */

ul.navbar-nav {
    height: 20px;
}

ul.navbar-nav li.nav-item:not(:last-child) {
    border-right: 2px dotted var(--sp-dark);
}

.nav-item i::after{
    display: none;
}

ul.navbar-nav li {
    padding: 0 10px;
    vertical-align: middle;
}

.nav-link {
    padding: 0 5px;
    font-size: 1.1em !important;
}

.search-result {
    padding: 15px 0;
    border-bottom: 1px solid var(--sp-dark);
}

.widget {
    position: relative;
}

.bg-social-link {
    position: relative;
    background-color: var(--sp-primary);
    width: 40px;
    height: 40px;
    padding-top: 4px;
    padding-left: 13px;
}

.social-link-overlay {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--sp-primary);
    position: absolute;
    display: none;
}

.social-link {
    margin: 0 7.5px;
}

.pos-relative b span {
    display: none;
}

.pos-relative b span.roll-active {
    display: inline;
    animation: zoom-in 0.8s;
}

@media only screen and (max-width: 769px) {

    .top-nav {
        position: absolute;
        background-color: var(--sp-light);
        width: 90%;
        left: 5%;
        top: 100%;
        z-index: 5;
    }

    .top-nav.active {
        animation: tada 1s;
    }

    .top-nav .row {
        display: block;
    }

    .headtop-mobi {
        width: 32px;
    }

    .headtop-mobi {
        position: absolute;
        top: 100%;
        right: 5%;
        width: 40px;
        text-align: center;
        background-color: var(--sp-primary);
        -webkit-box-shadow: 0 10px 20px 10px rgb(255 255 255 / 0.2);
        -moz-box-shadow: 0 10px 20px 10px rgb(255 255 255 / 0.2);
        box-shadow: 0 10px 20px 10px rgb(255 255 255 / 0.2);
        z-index: 6;
    }

    .headtop-mobi button{
        border: none;
    }

    .headtop-mobi:after {
        content: "";
        height: 0;
        width: 0;
        display: block;
        position: absolute;
        top: 20px;
        right: 0;
        border-width: 20px;
        border-style: solid;
        border-right-color: var(--sp-primary);
        border-left-color: var(--sp-primary);
        border-top-color: transparent;
        border-bottom-color: transparent;
        z-index: 6;
    }

    .header-above-toggle {
        display: inline-block;
        position: relative;
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding: 0;
        cursor: pointer;
        color: var(--sp-light);
        background-color: transparent;
        z-index: 8;
    }

    .header-above-toggle div, .header-above-toggle:before, .header-above-toggle:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        line-height: 7px;
        text-align: center;
        background: var(--sp-light);
        left: 50%;
        margin-left: -4px;
        border-radius: 50%;
        display: block;
    }

    ul.navbar-nav {
        height: auto;
    }

    ul.navbar-nav li.nav-item:not(:last-child) {
        border-right: none ;
    }

    ul.navbar-nav li.nav-item {
        border-top: 1px solid var(--sp-ash);
    }

    ul.navbar-nav li.nav-item:last-child {
        border-bottom: 1px solid var(--sp-ash);
    }

    ul.navbar-nav li {
        padding: 10px;
        font-size: 1.1em !important;
    }

    .accordion-collapse li .dropdown-item {
        width: 100%;
        padding: 0;
    }

    .accordion-collapse li {
        width: 100%;
        border-top: 1px solid var(--sp-ash);
        padding: 10px 0;
    }

    .accordion-collapse {
        width: 100% !important;
        margin-top: 10px;
        margin-right: 0;
        padding-left: 0;
    }

    .bread-crumbs {
        height: 150px;
    }

    .bread-crumbs-content {
        padding: 40px 0;
    }

    .col {
        margin: 30px 0;
    }

    .owl-nav {
        padding: 90px 0;
    }

    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        font-size: 0.75em !important;
        width: 35px !important;
        height: 35px !important;
    }

    .offcanvas-header {
        width: 100%;
    }

    .nav-item {
        width: 100%;
        padding: 15px;
        font-size: 1.3em;
    }

    .overlay.overlay-text {
        color: var(--sp-dark);
        padding: 65px 75px;
        z-index: 5;
        word-wrap: break-word;
    }

    .overlay.overlay-text h1 {
        font-size: 1.5em;
        line-height: 1.2;
    }

    .overlay.overlay-text h4 {
        font-size: 1.2em;
    }

    .overlay.overlay-text p {
        font-size: 1.1em;
        line-height: 1.2;
    }

    .bread-crumbs {
        margin-bottom: 70px;
    }

    .cards {
        margin-top: 20px;
    }

    .cards.post ul {
        display: block;
    }

    /* .heading-default p {
        padding: 0px 15px;
    } */

    .card.card-news {
        margin: 30px 0;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .show-on-mobile {
        display: block;
    }

    .show-on-mobile-flex {
        display: flex;
    }

    .owl-carousel svg {
        margin-top: -50px;
        height: 50px;
    }

    .owl-item.header-owl {
        height: 360px;
        background-size: cover;
    }

    .section-info {
        margin-top: 30px;
        /* margin-left: 15px;
        margin-right: 15px; */
    }

    .info-container {
        display: block;
    }

    .offices .single-office .single-office-content {
        padding: 0 75px;
    }

    .me-auto {
        margin-right: 0 !important;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .accordion-collapse {
        list-style-type: none;
    }
}

@media only screen and (max-width: 481px) {


    .nav-info-container {
        display: inline-block;
    }

    .nav-info-single {
        clear: both;
        width: 100%;
    }

    .owl-nav {
        display: none;
    }

    .overlay.overlay-text {
        color: var(--sp-dark);
        padding: 20px 26px;
        z-index: 5;
        word-wrap: break-word;
    }

    .cards {
        margin-top: 15px;
    }

    .cards.flex ul{
        display: block;
    }

    .owl-item.header-owl {
        height: 250px;
        background-size: cover;
    }

    .owl-carousel svg {
        margin-top: -50px;
        height: 25px;
    }

    .offices .single-office .single-office-content {
        padding: 0 15px;
        font-size: 14px;
    }
}
