﻿/*#region Background Images Media Queries*/


@media only screen and (max-width: 500px) {
    .founder_img {
        content: url(/Content/images/founder_200.jpg);
    }
    .company_img {
        content: url(/Content/images/company_200.jpg);
    }
    .quality_img {
        content: url(/Content/images/quality_300.jpg);
    }
    .commitment_img {
        content: url(/Content/images/commitment_450.jpg);
    }
    .cost_img {
        content: url(/Content/images/cost_450.jpg);
    }
    .whatweoffer_img {
        content: url(/Content/images/keykeyboard_200.jpg);
    }
    .vision_img {
        content: url(/Content/images/dashboardtable_200.jpg);
    }
}

@media only screen and (min-width: 501px) {
    .details_bg {
        background: url(/Content/images/laptop_1000.jpg) no-repeat center center fixed;
    }
    .founder_img {
        content: url(/Content/images/founder_300.jpg);
    }
    .company_img {
        content: url(/Content/images/company_300.jpg);
    }
    .quality_img {
        content: url(/Content/images/quality_500.jpg);
    }
    .commitment_img {
        content: url(/Content/images/commitment_750.jpg);
    }
    .cost_img {
        content: url(/Content/images/cost_750.jpg);
    }
    .whatweoffer_img {
        content: url(/Content/images/keykeyboard_300.jpg);
    }

    .vision_img {
        content: url(/Content/images/dashboardtable_300.jpg);
    }
}

@media only screen and (min-width: 1001px) {
    .details_bg {
        background: url(/Content/images/laptop_1920.jpg) no-repeat center center fixed;
    }
    .founder_img {
        content: url(/Content/images/founder_545.jpg);
    }
    .company_img {
        content: url(/Content/images/company_500.jpg);
    }
    .quality_img {
        content: url(/Content/images/quality_1000.jpg);
    }
    .commitment_img {
        content: url(/Content/images/commitment_350.jpg);
    }
    .cost_img {
        content: url(/Content/images/cost_350.jpg);
    }
    .whatweoffer_img {
        content: url(/Content/images/keykeyboard_500.jpg);
    }

    .vision_img {
        content: url(/Content/images/dashboardtable_500.jpg);
    }
}
/*#endregion Background Images Media Queries*/


/*#region Global*/

html, body {
    height: 100%;
}

    body::before {
        content: '';
        margin-top: 100px;
    }

.clear_top {
    padding-top: 2em;
}

.clear_top_m {
    margin-top: 2rem;
}

.section_band {
    padding: 3rem 0;
    width: 100%;
    margin: 10rem 0;
    position: relative;
}

.ghost_text {
    font-size: 3rem;
    font-family: 'Garamond', 'Georgia', 'serif';
    font-weight: bold;
    font-style: italic;
    color: rgb(205 205 205 / 35%);
    line-height: 3rem;
}

.ghost_top {
    position: absolute;
    top: -3rem;
    left: 1rem;
}

.ghost_bottom {
    position: absolute;
    bottom: -3rem;
    right: 1rem;
}

.lblue_bg {
    background: rgba(178,217,244,0.35)!important;
}

.fill-height {
    flex-grow: 1;
}

.width-fit {
    width: fit-content;
} 

.v-divider {
    /*height: calc(100vh - 15vh - 95px);*/
    width: 32px;
}

.width20rem {
    min-width: 20rem;
    max-width: 20rem;
}

@media only screen and (max-width: 799px) {
    .width20rem {
        min-width: 100%;
        max-width: 100%;
    }
    .threeD_card.card {
        margin: 3rem 0!important;
    }
}

.page_section_header {
    text-align: center;
    font-size: 2.2rem;
    /*color: #959595b3;*/
    color: #0060d7b3;
    /* background-color: #9595951c; */
    text-transform: uppercase;
    /* border-top-right-radius: 50px; */
    border-top-left-radius: 50px;
    /* max-width: 48rem; */
   /* margin: 0 auto;*/
    font-weight: 500;
    width: 50%;
    border-bottom: 2px solid #95959578;
    text-align: right;
}

.cards__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /*border-top: 2px solid #95959578;*/
}

.threeD_card.card {
    margin: 3rem;
    border-color: transparent;
    border-radius: 11px;
    border-left: 1px solid #ededed;
    position: relative;
    /*z-index: 5;*/
}

    .threeD_card.card::before, .threeD_card.card::after {
        position: absolute;
        bottom: 15px;
        left: 10px;
        z-index: -1;
        height: 20%;
        max-height: 100px;
        max-width: 460px;
        width: 60%;
        content: "";
        opacity: .7;
        -webkit-box-shadow: 0 17px 10px rgb(0 0 0 / 70%);
        box-shadow: 0 17px 10px rgb(0 0 0 / 70%);
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }

    .threeD_card.card ::before {
        /*position: absolute;
                    bottom: 15px;
                    left: 10px;
                    z-index: -1;
                    height: 20%;
                    max-height: 100px;
                    max-width: 460px;
                    width: 60%;
                    content: "";
                    opacity: .7;
                    -webkit-box-shadow: 0 17px 10px rgb(0 0 0 / 70%);
                    box-shadow: 0 17px 10px rgb(0 0 0 / 70%);
                    -webkit-transform: rotate(-3deg);
                    transform: rotate(-3deg);*/
    }

    .threeD_card.card::after {
        left: auto;
        right: 10px;
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    .threeD_card.card .card-header {
        background-color: transparent;
        border: 0;
        border-bottom: 2px solid #ededed;
        border-left: 20px solid #ededed;
    }

    .threeD_card.card .card-footer {
        text-align: right;
        background-color: transparent;
        border: 0;
    }

        .threeD_card.card .card-footer:hover {
            background-color: #efefef;
        }

        .threeD_card.card .card-footer a, .cards__wrapper .card .card-footer a:visited,
        .threeD_card.card .card-footer a:hover, .cards__wrapper .card .card-footer a:active {
            text-decoration: none;
            color: #4b8ceb;
        }


.section_band_items__wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
}

.section_band_item {
    display: inline-block;
    position: relative;
    margin: 4rem 2rem;
    max-width: 16rem;
    min-width: 16rem;
}

.section_band_item__icon_Bg {
    position: absolute;
    width: 100%;
    height: 15vh;
    font-size: 20vh;
    line-height: 15vh;
    z-index: 100;
    color: #fff;
    opacity: .5;
}

.section_band_item__header {
    color: #f15822;
    font-size: 3rem;
    position: relative;
    z-index: 200;
    font-weight: bold;
}

.section_band_item__text {
    position: relative;
    z-index: 200;
    font-weight: 500;
}


.a_icon_bounce_right:hover > i {
    animation: .3s ease .1s infinite alternate bounce_right_small;
}

@keyframes bounce_right_small {
    to {
        transform: translateX(10px);
        /*margin-left: 0;*/
    }
}

.bouncing {
    -webkit-animation: bounce 1.5s;
    animation: bounce 1.5s;
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    transition-timing-function: ease;
}

@-webkit-keyframes bounce {
    0%, 25%, 50%, 75%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}

@keyframes bounce {
    0%, 25%, 50%, 75%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}

.required_field {
    font-weight: 500;
}
    .required_field:after {
        content: '*';
        color: red;
        font-size: 12px;
        margin-left: 4px;
    }

    .d-contents {
        display: contents;
    }
.loadin, .loadinsm {
    opacity: 0;
    transform: translateY(45px);
    transition: transform 0.6s, opacity 0.9s;
}
    .loadin.loaded, .loadinsm.loaded {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
    }

.rotate_left {
    transform: rotate(-15deg);
    position: relative;
    left: 50px;
    z-index: 1;
}
.rotate_right {
    transform: rotate(15deg);
    position: relative;
    left: 25px;
    z-index: 1;
    top: -50px;
}
.white_bg {
    background-color: #fff;
}
.zIndex5 {
    z-index: 5;
}
/*#endregion Global*/

/*#region Main Layout*/

#header {
    height: 15vh;
    min-height: 100px;
    max-height: 148px;
    width: 100%;
    background-color: #000;
    /*position: relative;*/
    box-shadow: 0px 10px 16px 1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 10px 16px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 16px 1px rgba(0,0,0,0.75);
}

    #header .contact_details {
        position: absolute;
        right: 0;
        top: 0;
        padding: 1rem;
        font-size: 0.75rem;
        color: #c7c7c7;
    }

    #header > nav {
        position: absolute;
        bottom: 0;
        background-color: transparent;
        width: 100vw;
        z-index: 999;
    }

    #header .navbar-nav.main_nav {
        width: 100%;
        font-size: 1.25rem;
    }

        #header .navbar-nav.main_nav li.nav-item {
            margin-right: 1.25rem;
            text-align: center;
        }

    #header .navbar-nav.social_nav li.nav-item {
        text-align: center;
    }

    #header .navbar-nav.main_nav a.nav-link, #header .navbar-nav.main_nav a.nav-link:link, #header .navbar-nav.main_nav a.nav-link:active, #header .navbar-nav.main_nav a.nav-link:visited {
        color: #fff;
    }

    #header .navbar-nav.main_nav a:hover:not(.active) {
        border-bottom: thin solid #fff;
        border-top: thin solid #fff;
        /*text-shadow: 1px 1px 5px #fff, 1px 1px 5px #fff;*/
        /* fixes jerk cause by top border on hover */
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    #header .navbar-nav.main_nav a.active {
        border-bottom: thin solid #fff;
    }

#freetoolsDropDown ~ ul {
    left: auto;
    background-color: #000;
}

.main_nav__wrapper {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.logo {
    position: relative;
    bottom: -1%;
    left: 7.25%;
    max-width: 153px;
    /* width: 8vw; */
    height: 125%;
    max-height: 185px;
}

    .logo img {
        height: 100%;
        width: auto;
        filter: drop-shadow(0px 5px 8px #000);
    }

.social_nav__top {
    display: none;
}

#header .navbar .navbar-toggler {
    border-color: #ffffff45;
    box-shadow: 0px 0px 5px 1px #ffffff4f;
}

.main_nav_hamburger {    
    top: 20px;
}

.main_nav_hamburger, .main_nav_hamburger:after, .main_nav_hamburger:before {
    display: block;
    background-color: transparent;
    position: absolute;
    /*top: 0;*/
    /*left: 0;*/
    height: 4px;
    width: 3rem;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 1px 1px rgb(255 255 255 / 53%);
    -moz-box-shadow: 0px 0px 1px 1px rgba(255,255,255,0.53);
    box-shadow: 0px 0px 5px 1px rgb(255 255 255 / 53%);
}
    .main_nav_hamburger:before {
        content: "";
        margin-top: 16px;
    }
    .main_nav_hamburger:after {
        content: "";
        margin-top: 32px;
    }

    #main-content {
        padding-top: 15vh;
        padding-bottom: 60px;
        margin-left: auto;
        /*max-width: 100%;*/
        overflow: auto;
    }

footer.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
}

@media only screen and (max-width: 1215px) {
    .logo img {
        opacity: 0.5;
    }
    p, p:after {
        animation: none;
    }
}

@media only screen and (max-width: 847px) {
    /*864px*/
    /* since free tools has a dropdown, dropdown-toggle class introduces nowrap
        this causes an issue at around 864 width. the other nav items will take up
        2 lines, placing the icon on top. but free tools will remain on 1 line,
        causing inconsistency. The dropdown icon seems to be responsible.
        we want the free tools icon to take un a line as the others, with the nav items
        text and dropdown icon on the second line. these changes need to be removed 
        when we enter the next screen size.
    */
    #freetoolsDropDown {
        white-space: normal;
    }

        #freetoolsDropDown > span.fa-cubes {
            width: 100%;
        }
}

@media only screen and (max-width: 842px) {
    /* clean temporary adjustments from previous screen size */
    #freetoolsDropDown {
        white-space: inherit;
    }

        #freetoolsDropDown > span.fa-cubes {
            width: auto;
        }
    /* end clean */
    #header .contact_details {
        padding: 0 1rem;
    }

    #header .main_nav {
        font-size: 1.2rem;
    }

    #header .navbar-nav.main_nav a.nav-link, #header .navbar-nav.main_nav a.nav-link:link, #header .navbar-nav.main_nav a.nav-link:active, #header .navbar-nav.main_nav a.nav-link:visited {
        padding-top: 0;
        margin-top: 0.25rem;
    }

    .social_nav__top {
        display: inline-block;
        margin-left: 1rem;
    }
 /*   .social_nav__top {
        width: 25vw;
        display: flex;
        justify-content: space-between;
    }*/

        .social_nav__top > a {
            display: inline-block;
            /*padding: 0 0.25rem;*/
            padding: 0 1rem;
        }

    .social_nav {
        display: none;
    }
}

@media only screen and (max-width: 791px) {
    /*808px*/
    #freetoolsDropDown {
        white-space: normal;
    }

        #freetoolsDropDown > span.fa-cubes {
            width: 100%;
        }
}

@media only screen and (max-width: 701px) {
    #freetoolsDropDown {
        white-space: inherit;
    }

        #freetoolsDropDown::after {
            display: none;
        }

        #freetoolsDropDown > span.fa-cubes {
            width: auto;
        }
}

@media only screen and (max-width: 575px) {
    #header {
        height: auto;
        min-height: 60px;
        max-height: fit-content;
    }

        #header > nav {
            position: relative;
            margin-top: 1.25rem;
        }

        #header button.navbar-toggler img {
            height: 60px;
        }

    .logo {
        /*left: 13px;
        top: 0;
        height: inherit;
        margin-left: auto;
        margin-right: auto;*/
        display: none;
    }

        .logo img {
            opacity: .4;
        }

    #header .navbar-nav.main_nav a.nav-link.active {
        color: #00adff;
        border-color: #00adff;
    }

    .contact_details {
        display: flex;
        justify-content: space-evenly;
        width: 100vw;
    }
    #header .contact_details .phone_text, #header .contact_details .email_text {
        display: none;
    }
    .social_nav__top {
        width: 25vw;
        display: flex;
        justify-content: space-between;
    }
    .side_nav__toggle_strip {
        /*height: 50px !important;*/
        overflow: hidden !important;
        position: absolute !important;
        left: 0 !important;
        top: 100px !important;
        z-index: 100;
        border-bottom: 2px solid #ededed;
        padding-top: 1rem;
    }
    .details {
        z-index: 50;
    }
}

#phone_wrapper_top_banner, #email_wrapper_top_banner {
    display: inline-block;
    cursor: pointer;
}

.email_text:before {
    content: attr(data-tld) attr(data-domain) "\0040" attr(data-user);
    unicode-bidi: bidi-override;
    direction: rtl;
}

.phone_text:before {
    content: attr(data-sequence) "\002D" attr(data-carrier) "\00A0 \0028" attr(data-area) "\0029\0020 1\002b";
    unicode-bidi: bidi-override;
    direction: rtl;
}



/*#endregion Main Layout*/

/*#region Home*/

#home_carousel {
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,212,255,0) 40%);
    /* background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 45%); */
}

.skewed-slide-item {
    height: 300px;
    width: auto;
    transform: skew(-10deg,-10deg);
    position: relative;
    top: 30px;
    left: 25px;
}

.skewed-slide-item-reflection {
    position: relative;
    top: -70px;
    left: -40px;
    -moz-transform: scaleY(-1) skew(10deg, 10deg);
    -o-transform: scaleY(-1) skew(10deg, 10deg);
    -webkit-transform: scaleY(-1) skew(10deg, 10deg);
    transform: scaleY(-1) skew(10deg, 10deg);
    -webkit-mask-image: -webkit-gradient(linear, right top, right bottom, from(transparent), color-stop(40%, transparent), to(rgba(255, 255, 255, 0.2)));
}

.carousel-inner .carousel-item {
    transition: -webkit-transform 2s ease;
    transition: transform 2s ease;
    transition: transform 2s ease, -webkit-transform 2s ease;
}

.services_summary__wrapper {
}
    @media only screen and (max-width: 480px) {
        #home_carousel .carousel-caption {
        bottom: 0;
        padding-bottom: 0;
    }

        #home_carousel .carousel-caption p {
            margin-bottom: 0;
        }

    #home_carousel .carousel-item img {
        width: 90%;
        height: auto;
        top: 025%;
    }

    #home_carousel .carousel-item .skewed-slide-item-reflection {
        top: 025%;
        left: 0;
    }

    .cards__wrapper .card {
        /*margin: 3rem;*/
        min-width: 0;
        max-width: 100%;
    }
}
/*#endregion Home*/

/*#region Free Tools*/
#free_tools__wrapper {
    display: flex;
    flex-wrap: nowrap;
    height: calc(100vh - 15vh - 60px);
    height: -webkit-fill-available;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
}

.v-divider {
    flex-shrink: 0;
    width: 1.5rem;
    height: calc(100vh - 15vh - 60px); 
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 0.5em 1.5em rgb(0 0 0 / 10%), inset 0 0.125em 0.5em rgb(0 0 0 / 15%);
}

#free_tools__content {
    flex-grow: 1;
    overflow: auto;
    height: calc(100vh - 15vh - 60px);
}

#free_tools__nav {
    /*position: fixed;*/
    display: flex;
    visibility: hidden;
}

@media only screen and (max-width: 768px) {
    #free_tools__nav {
        display: none;
    }
}
/*#endregion Free Tools*/

/*#region loading indicator*/
/* Author: Ekta Maurya */

.loading-mask {
    background: transparent;
    color: #000;
    z-index: 99999999;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    border: 0;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid transparent;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #002eff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #002eff;
    box-shadow: 0 0 20px rgba(0,46,255,.5);
}

    .loader:before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top: 3px solid #002eff;
        border-right: 3px solid #002eff;
        border-radius: 50%;
        animation: animate_loader_c 2s linear infinite;
        box-sizing: content-box;
    }

    .loader span {
        display: block;
        position: absolute;
        top: calc(50% - 2px);
        left: 50%;
        width: 50%;
        height: 4px;
        background: transparent;
        transform-origin: left;
        animation: animate_loader 2s linear infinite;
    }

        .loader span:before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #002eff;
            top: -6px;
            right: -8px;
            box-shadow: 0 0 20px #002eff;
        }

@keyframes animate_loader_c {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate_loader {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}
/*#endregion loading indicator*/

/*#region Services*/

.service__wrapper .details h1 {
    font-size: 2rem;
    /* margin: 0 auto; */
    border-bottom: 1px solid #c9c9c9;
    border-left: 30px solid #ff9f3b;
    /* border-bottom-left-radius: 1rem; */
    /* border-right: 10px solid #000; */
    /* border-bottom-right-radius: 3rem; */
    border-top-left-radius: 1rem;
    margin-left: 3rem;
    background: #ffffff91;
    color: #6b859d;
    display: inline-block;
    padding: 1.5rem 2rem;
    width: -webkit-fill-available;
    /* padding-top: 1.5rem; */
    letter-spacing: .35rem;
    /* padding-bottom: 0; */
    text-align: left;
}

    .service__wrapper .details h1::after {
        /*content: "\a";
        display: block;
        white-space: pre;*/
}

.service__wrapper .details p {
    width: fit-content;
    white-space: pre-line;
    border: 2px solid #ededed;
    margin-top: 3rem;
    transform: translatey(0px);
    /* animation: float 5s ease-in-out infinite; */
    /* text-align: center; */
    /* font-weight: bold; */
    background: #ffffffe8;
    padding: 50px;
    border-radius: 11px;
    position: relative;
    box-shadow: 20px 20px #00000017;
    font-size: 1.05rem;
}

    .service__wrapper .details p:after {
        transform: translatey(0px);
        /*animation: float2 5s ease-in-out infinite;*/
        content: ".";
        font-weight: bold;
        -webkit-text-fill-color: #ffffffe0;
        text-shadow: 22px 22px #00000017;
        text-align: right;
        font-size: 55px;
        width: 55px;
        height: 11px;
        line-height: 30px;
        border-radius: 11px;
        background-color: #ffffffe0;
        position: absolute;
        display: block;
        bottom: -30px;
        left: 100%;
        box-shadow: 22px 22px #00000017;
        z-index: -2;
    }

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes float2 {
    0% {
        line-height: 30px;
        transform: translatey(0px);
    }

    55% {
        transform: translatey(-20px);
    }

    60% {
        line-height: 10px;
    }

    100% {
        line-height: 30px;
        transform: translatey(0px);
    }
}

.side_nav__toggle_strip {
    border-right: 2px solid #ededed;
    padding-right: 1rem;
    padding-left: 1rem;
}


.service__nav {
    /*padding-top: 30px;*/
    position: sticky;
    left: 0;
    top: 0;
    z-index: 1000;
    padding-bottom: 5px;
}

    .service__nav .accordion {
        --bs-accordion-active-color: inherit;
        --bs-accordion-active-bg: inherit;
        --bs-accordion-btn-focus-border-color: transparent;
        --bs-accordion-btn-focus-box-shadow: none;
        --bs-accordion-btn-icon: none;
        --bs-accordion-btn-active-icon: none;
    }

    .service__nav .accordion-body {
        background: #c9c9c9;
    }

    .service__nav .nav-link.active {
        border-right: 0;
        border-bottom-width: 1px;
        border-bottom-color: #dee2e6;
        border-bottom-left-radius: 0.375rem;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        box-shadow: 0 0 10px 0px #000;
        color: var(--bs-nav-link-color);
        left: 21px;
        position: relative;
        -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999990;
    }

    .service__nav .nav-link:not(.active) {
        color: #808b95;
        -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service__nav .nav-tabs {
        border-bottom: 0;
    }


.details {
    overflow: auto;
    position: relative;
}

.details_bg {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: .08;
    filter: alpha(opacity=10);
    background: url(/Content/images/laptop_500.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.details_overview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 100%;
}

.service__wrapper {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-align: center;
}

.service__nav .accordion-button {
    font-weight: bold;
    color: #6b859d;
    column-gap: 1rem;
}

    .service__nav .accordion-button:hover {
        color: #ff9f3b;
    }

.service__nav .service_icon {
    position: relative;
    top: 0.1rem;
    color: #ff9f3b;
}

.service__nav .accordion_item__selected {
    margin: 5px 0;
    position: relative;
    z-index: 999999;
    filter: drop-shadow(0 5px 10px #000);
    border: thin solid #ccc;
    /*box-shadow: -6px 9px 5px 0px rgba(0,0,0,0.75);
            -webkit-box-shadow: -6px 9px 5px 0px rgba(0,0,0,0.75);
            -moz-box-shadow: -6px 9px 5px 0px rgba(0,0,0,0.75);*/
}

.service__nav .accordion_item__not_selected {
    position: relative;
    z-index: 99999;
}

.service__nav .accordion-item .nav-link {
    white-space: nowrap;
}

    .service__nav .accordion-item .nav-link:not(.active):hover {
        background: aliceblue;
        z-index: 9999;
    }

.service_detail__wrapper {
    margin: 0 auto;
    text-align: left;
    display: inline-grid;
}

.sidebar_toggler {
    /*float: right;*/
    border: none;
    padding-right: 0;
}

    .sidebar_toggler:active,
    .sidebar_toggler:focus {
        outline: none;
    }

.sidebar_toggler_icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

    .sidebar_toggler_icon:after,
    .sidebar_toggler_icon:before {
        width: 24px;
        position: absolute;
        height: 1px;
        background-color: #000;
        top: 0;
        left: 0;
        content: '';
        z-index: 2;
        transition: all 300ms linear;
    }

    .sidebar_toggler_icon:after {
        top: 8px;
    }

.sidebar_toggler[aria-expanded="true"] .sidebar_toggler_icon:after {
    transform: rotate(45deg);
}

.sidebar_toggler[aria-expanded="true"] .sidebar_toggler_icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.sidebar_toggler[aria-expanded="true"] .sidebar_toggler_icon {
    border-color: transparent;
}

.sidebar_toggler_icon:after, .sidebar_toggler_icon:before {
    height: 2px;
}

.sidebar_toggler_icon {
    border-bottom-width: 2px;
}

/*#endregion Services*/

/*#region Contact*/
.animated_ghost_text {
    animation: warp_to_bottom_right 3s linear forwards;
}

@keyframes warp_to_bottom_right {
    from {
        transform: skewX(75deg) translate(-50vw);
        opacity: .0;
    }
    50% {
        transform: skewX(45deg) translateX(25vw);
        opacity: .6;
    }
    to {
        opacity: 1;
    }
}
/*#endregion Contact*/

/*#region Bottom Summary*/

.bottom_summary {

}

    .bottom_summary .card {
        border-color: transparent !important;
        background-color: transparent;
    }

        .bottom_summary .card .card-header {
            background-color: transparent !important;
            font-size: 1.5rem;
            color:#5084a7 ;
        }

        .bottom_summary .card .social_icon {
            background-color: transparent;
            font-size: 2rem;
            color: #2163b5;
            margin: 0 1rem;
        }

        .bottom_summary .card .card-text {
            background-color: transparent;
            font-size: 1rem;
            color: #2163b5;
            font-weight: 500;
        }

            .bottom_summary .card .card-text a, .bottom_summary .card .card-text a:link,
            .bottom_summary .card .card-text a:active, .bottom_summary .card .card-text a:visited {
                background-color: transparent;
                font-size: 1rem;
                color: #2163b5;
                font-weight: 500;
                font-style: normal;
                text-decoration: none;
            }

                .bottom_summary .card .card-text a:hover {
                    color: #2163b5;
                    /*border-bottom: 2px solid #2163b5;
                    border-bottom-left-radius: 10px;*/
                }

                .bottom_summary .card img.whatsapp_bottom_summary {
                    width: 200px;
                    height: auto;
                    box-shadow: 2px 2px 10px 1px #649aeb;
                }

    .bottom_summary .card-body.sitemap, .bottom_summary .card-body.sitemap a {
        font-size: .7rem !important;
    }

        .bottom_summary .card-body.sitemap ul {
            list-style: none;
        }

/*#endregion Bottom Summary*/
