:root {
    --eduheight: 210px;
    --bluecolor: #0096eb;
    --bluecolor_light: #0187e6;
}
body {
    color: #5e5e5e !important;
}
body .container {
    position:relative;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
   
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bluecolor);
    border-radius: 0px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--bluecolor_light);
        cursor:pointer;
    }
.full_width {
    width: 100%;
    float: left;
}
.bg_image {
    background-image: url(../images/slider-bg-banner-01.jpg);
    background-repeat: no-repeat;
    background-position: 0px -2px;
    min-height: 400px;
    color: #fff;
    padding-bottom: 50px;
}
.top_header {
    position: sticky;
    top: 0px;
    z-index: 9;
}
/* Add a black background color to the top navigation */
.top_menu_color {
    background-color: #000;
}
.topnav {
    overflow: hidden;
    width: fit-content;
    float: none;
    margin: auto;
}

    /* Style the links inside the navigation bar */
    .topnav a {
        float: left;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        text-transform: uppercase;
        position:relative;
    }

        /* Change the color of links on hover */
        .topnav a:hover {
            color:#fff;
        }
            .topnav a:hover:before,
            .topnav a.active:before {
                content: '';
                position: absolute;
                border-style: solid;
                width: 0;
                height: 0;
                bottom: 4px;
                left: 0px;
                right: 0px;
                margin: auto;
                border-width: 7px 5px 8px 0;
                transform: rotate(270deg);
                border-color: transparent #f3f3f3 transparent transparent;
            }
            /* Add a color to the active/current link */
            .topnav a.active {
                color: #fff;
                font-weight: bold;
            }
.top_head {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 40px;
    padding: 10px;
    text-transform: uppercase;
}
.top_head_intro {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: -22px;
}
.top_head_intro span {
    font-size:40px;
}
.header_left {
    width: calc(100% - 500px);
    float: left;
    min-height: 400px;
    padding-top: 60px;
}
.header_right {
    width: 500px;
    float: left;
    min-height: 400px;
    position:relative;
}
    .header_right img {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        margin: auto;
        max-width: 100%;
        max-height: 100%;
        box-shadow: 0px 0px 8px #fff;
        -moz-box-shadow: 0px 0px 8px #fff;
        -webkit-box-shadow: 0px 0px 8px #fff;
        border-radius: 50%;
    }
.top_head_inner_intro {
    width: 100%;
    float: left;
    text-align: left;
    font-size: 33px;
    text-transform: capitalize;
}
.top_head_inner_intro_text {
    width: 100%;
    float: left;
    font-size: 28px;
}
.top_head_inner_intro_mid {
    width: auto;
    float: left;
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: -2px;
    color: #0019ad;
    background-color: #fff;
    border-radius: 4px;
    padding: 0px 8px;
}
.top_head_inner_intro_det {
    width: 100%;
    float: left;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}
.social_icon {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -40px;
    margin: auto;
    height: 30px;
    width: fit-content;
}
    .social_icon a {
        color: #fff;
        background-color: #000;
        padding: 7px 10px;
        border-radius: 4px;
        width: 33px;
        height: 30px;
        display: block;
        float: left;
        text-align: center;
        margin-right: 10px;
    }
        .social_icon a:hover {
            color: unset;
            box-shadow: 0px 0px 5px #fff;
            -moz-box-shadow: 0px 0px 5px #fff;
            -webkit-box-shadow: 0px 0px 5px #fff;
        }
        .social_icon a:last-child {
            margin-right: 0px;
        }
.tech_header {
    width: 100%;
    float: left;
    font-size: 35px;
    color: var(--bluecolor);
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
    padding-top: 45px;
}
.tech_header_text {
    width: 100%;
    float: left;
    font-size: 19px;
    text-align: center;
    padding-bottom: 35px;
    position: relative;
}

    .tech_header_text:before {
        position: absolute;
        width: 100px;
        height: 3px;
        background-color: var(--bluecolor);
        left: 0px;
        right: 0px;
        bottom: 25px;
        margin: auto;
        content: "";
    }
    @keyframes growProgressBar {
        0%, 33% {
        --pgPercentage: 0;
    }

    100% {
        --pgPercentage: var(--value);
    }
}

@property --pgPercentage {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

div[role="progressbar"] {
    --size: 12rem;
    --fg: var(--bluecolor);
    --bg: #def;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    /* color: var(--fg);*/
    margin: auto;
    box-shadow: 2px 2px 8px #cfcfcf;
    box-shadow: 2px 2px 8px #cfcfcf;
    border: 1px solid #ccc;
}

    div[role="progressbar"]::before {
        counter-reset: percentage var(--value);
        content: counter(percentage) '%';
    }
.skill_text {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 21px;
    padding-bottom: 35px;
}
.service_block_container {
    width: 100%;
    float: left;
}
.service_block_head {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bluecolor);
    padding-top: 50px;
}
.service_block_head span {
    color: #5e5e5e;
}
.service_block_sub_head {
    width: 100%;
    float: left;
}
.service_block {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin: auto;
    border: 1px solid #ccc;
    margin-bottom:20px;
}
.service_block_icon {
    width: 100%;
    float: left;
    background-color: var(--bluecolor);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 40px;
}
.service_block_text {
    width: 100%;
    float: left;
}
.service_block_text_header {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 18px;
    padding: 10px 0px;
    font-weight: 500;
    height: 72px;
    background-color: #e0f4ff;
    margin-bottom: 10px;
}
.service_block_text_info {
    width: 100%;
    float: left;
    font-size: 15px;
    text-align: center;
    padding: 0px 25px;
    padding-bottom: 20px;
}
.signle_line_header {
    padding-top: 25px;
}
.service_block_text_info div {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bluecolor);
}
.experience_block {
    background-color: #e0f4ff;
    margin-top: 80px;
}















.timeline {
    width:100%;
    float:left;
    position: relative;
}

    .timeline::before {
        content: '';
        background: #e3e4e6;
        width: 3px;
        height: 95%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

.timeline-item {
    width: 100%;
    margin-bottom: 25px;
    position:relative;
}

    .timeline-item:nth-child(even) .timeline-content {
        float: right;
        margin-left: 0px;
        margin-right: 7%;
    }

        .timeline-item:nth-child(even) .timeline-content .date {
            right: unset;
            left: -115px;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            border-style: solid;
            width: 0;
            height: 0;
            top: 30px;
            left: -15px;
            border-width: 10px 15px 10px 0;
            border-color: transparent #fff transparent transparent;
        }

    .timeline-item::after {
        content: '';
        display: block;
        clear: both;
    }

.timeline-content {
    position: relative;
    width: 38%;
    margin-left: 7%;
    padding: 10px 30px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 4px 4px 20px rgb(203 203 203 / 30%);
    text-align: justify;
}

    .timeline-content::after {
        content: '';
        position: absolute;
        border-style: solid;
        width: 0;
        height: 0;
        top: 30px;
        right: -15px;
        border-width: 10px 0 10px 15px;
        border-color: transparent transparent transparent #fff;
    }

.timeline-img {
    width: 30px;
    height: 30px;
    background: #343434;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    left: 0px;
    right: 0px;
    margin: auto;
    color: #fff;
    padding: 6px;
}

.timeline-content a {
    background: #3f51b5;
    color: #fff;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .6);
}

    .timeline-content a:hover, .timeline-content a:active, .timeline-content a:focus {
        background: #32408f;
        color: #fff;
        text-decoration: none;
    }

.timeline-card {
    padding: 0 !important;
}

    .timeline-card p {
        padding: 0 20px;
    }

    .timeline-card a {
        margin-left: 20px;
    }

.timeline-item .timeline-img-header {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .4)), url('https://picsum.photos/1000/800/?random') center center no-repeat;
    background-size: cover;
}

.timeline-img-header {
    height: 200px;
    position: relative;
    margin-bottom: 20px;
}

    .timeline-img-header h2 {
        color: #fff;
        position: absolute;
        bottom: 5px;
        left: 20px;
    }

.timeline-content .date {
    background: var(--bluecolor);
    display: inline-block;
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 60px;
    right: -115px;
    text-align: center;
    font-size: 14px;
    border-radius: 10px;
}
#training .timeline-content .date {
    width:100px;
}
.educat_block_left h3,
.timeline-content h3 {
    margin-bottom: 0px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--bluecolor);
    font-weight: bold;
    text-align:left;
}
.edu_left_uni_name,
.designation_div {
    width: 100%;
    float: left;
    color: #9b9b9b;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    padding-bottom: 7px;
    text-align:left;
}
.timeline-item:nth-child(odd) h3,
.timeline-item:nth-child(odd) .designation_div {
    text-align: right;
}
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 50px;
    }

    .timeline .timeline-img {
        left: 50px;
    }

    .timeline .timeline-content {
        max-width: 100%;
        width: auto;
        margin-left: 70px;
    }

    .timeline .timeline-item:nth-child(even) .timeline-content {
        float: none;
    }

    .timeline .timeline-item:nth-child(odd) .timeline-content::after {
        content: '';
        position: absolute;
        border-style: solid;
        width: 0;
        height: 0;
        top: 30px;
        left: -15px;
        border-width: 10px 15px 10px 0;
        border-color: transparent #f5f5f5 transparent transparent;
    }
}

.edu_block .col-md-6 {
    margin-bottom:30px;
}
.educat_block {
    width: 100%;
    float: left;
}
.educat_block_left {
    width: calc(100% - 200px);
    float: left;
    height: var(--eduheight);
    background-color: #e0f4ff;
    border-radius: 10px 0px 0px 10px;
    padding: 20px 30px;
    position: relative;
}
    .educat_block_left:before {
        content: '';
        position: absolute;
        border-style: solid;
        width: 0;
        height: 0;
        top: 0px;
        right: -15px;
        bottom: 0px;
        margin: auto;
        border-width: 10px 0 10px 15px;
        border-color: transparent transparent transparent #f3f4f8;
        z-index: 1;
    }
.educat_block_right {
    width: 200px;
    float: left;
    background-color: var(--bluecolor);
    color: #fff;
    text-align: center;
    padding: 15px;
    height: var(--eduheight);
    border-radius: 0px 10px 10px 0px;
    position:relative;
}
    .educat_block_right > span {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        margin: auto;
        height: 95px;
    }
    .grade_text {
        font-size: 28px;
    }
.edu_block .col-md-6:nth-child(even) .educat_block_left {
    float: right;
    border-radius: 0px 10px 10px 0px;
}

    .edu_block .col-md-6:nth-child(even) .educat_block_left:before {
        border-width: 10px 15px 10px 0;
        border-color: transparent #f3f4f8 transparent transparent;
        left: -15px;
        right: unset;
    }

.edu_block .col-md-6:nth-child(even) .educat_block_right {
    border-radius: 10px 0px 0px 10px;
}
.portfoilio_div {
    width: 100%;
    float: left;
    margin-top: 10px;
    margin-bottom: 40px;
}

    .portfoilio_div .toolbar {
        text-align: center;
        margin-bottom: 25px;
    }

#portfolio {
    width: 100%;
    float: left;
}

    #portfolio .tile {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 350ms ease;
        transition: all 350ms ease;
        float: left;
        width: 25%;
        margin: 0px 0%;
       /* height: 195px;
        padding: 0px 5px;*/
        overflow: hidden;
      /*  margin-bottom: 20px;*/
        position: relative;
       /* box-shadow: 0px 0px 6px #c8c8c8;*/
    }

        #portfolio .tile:hover {
        }

    #portfolio .scale-anm {
        transform: scale(1);
    }


    #portfolio p {
        padding: 10px;
        border-bottom: 1px #ccc dotted;
        text-decoration: none;
        font-family: lato;
        text-transform: uppercase;
        font-size: 12px;
        color: #333;
        display: block;
        float: left;
    }

        #portfolio p:hover {
            cursor: pointer;
            background: #333;
            color: #eee;
        }

    #portfolio .tile img {
        width: 100%;
        max-height: 100%;
       /* position: absolute;*/
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        margin: auto;
    }

.portfoilio_div .btn {
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: .5rem 1rem;
    margin: 0;
    height: auto;
    border: 1px solid #5e5e5e;
    vertical-align: middle;
    -webkit-appearance: none;
    color: #555;
    background-color: transparent;
    text-transform: uppercase;
}

    .portfoilio_div .btn:hover {
        outline: none;
        border-color: #f25752;
        background-color: #f25752;
        color: #fff;
        box-shadow: none;
    }

    .portfoilio_div .btn:focus {
        outline: none;
        border: 0px;
        background-color: #f25752;
        color: #fff;
        box-shadow: none;
    }
.contact_table {
    width: 96%;
    float: left;
    table-layout: fixed;
    margin-left: 4%;
}
    .contact_table tr td:nth-child(1) {
        width: 40px;
        vertical-align: top;
    }
    .contact_table tr td {
        padding: 5px;
        padding-bottom: 25px;
    }
    .contact_table tr:first-child td {
        height: 1px;
        padding: 0px;
    }
    .contact_table tr:nth-child(2) td {
        padding-top:0px;
    }
    .contact_head {
        width: 100%;
        float: left;
        font-size: 18px;
        font-weight: 500;
    }
.contact_table tr td:nth-child(2) {
    padding-top:0px;
}
.contact_table td i {
    padding: 5px;
    background-color: var(--bluecolor);
    color: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: 14px;
}
.contact_style {
    margin-top: 30px !important;
    margin-bottom: 50px;
}
.contact_style .form-control:focus {
    box-shadow:none;
}
.contact_style label {
    font-weight:600;
}
.contact_style .col-md-8 .btn {
    float:right;
}
    .contact_style button {
        background-color: #333;
        color: #fff;
        outline:0px;
        box-shadow:none;
    }
        .contact_style button:hover,
        .contact_style button:focus {
            background-color: #484848;
            color: #fff;
            outline: 0px;
            box-shadow: none;
        }
        .contact_style .form-group {
            margin-bottom:10px;
        }
    .contact_style .col-md-8 textarea {
        height:200px;
        resize:none;
    }
.footer_style {
    background-image: url(../images/footer_bg.jpg);
    min-height: 300px;
    background-repeat: no-repeat;
    background-position: bottom;
}
.footer_style .container {
    position:relative;
    text-align:center;
}
.footer_text {
    color: #fff;
    padding: 50px 0px;
    font-size: 14px;
    margin-top: 35px;
}
    .footer_text a {
        color: #fff;
        text-decoration: none;
    }
        .footer_text a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer_icon {
            width:100%;
            float:left;
            text-align:center;
            position:relative;
        }
            .footer_icon a {
                background-color: #bbb;
                border-radius: 4px;
                padding: 10px 10px;
                margin: 0px 25px;
                font-size: 24px;
                width: 50px;
                float: left;
            }
.footer_icon_inner {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    width: max-content;
}
.footer_icon a:hover {
    color: var(--bluecolor);
    background-color: #fff;
}



.menuBtn_device {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 5px;
    top: 12px;
    z-index: 101;
    display: none;
    background-color: #d3d3d3;
    border-radius: 4px;
}

    .menuBtn_device > span {
        background-color: #0142c2;
        border-radius: 1px;
        height: 2px;
        width: 20px;
        position: absolute;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        margin: auto;
        transition: height 100ms;
    }

        .menuBtn_device > span:after, .menuBtn_device > span:before {
            content: '';
            background-color: #0142c2;
            border-radius: 1px;
            height: 2px;
            width: 20px;
            position: absolute;
            right: 0px;
            margin-left: -15px;
            transition: all 200ms;
        }

        .menuBtn_device > span:after {
            top: -6px;
        }

        .menuBtn_device > span:before {
            bottom: -6px;
        }

    .menuBtn_device.act > span {
        height: 0;
    }

        .menuBtn_device.act > span:after, .menuBtn_device.act > span:before {
            background-color: #e40514;
            top: 1px;
        }

        .menuBtn_device.act > span:after {
            transform: rotate(45deg);
        }

        .menuBtn_device.act > span:before {
            transform: rotate(-45deg);
        }

.mainMenu_device {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 100;
    height: 100%;
    width: 100%;
    text-align: center;
    box-shadow: 0px 0px 12px #686868;
    border-radius: 0px;
    overflow: hidden;
    display: none;
}

    .mainMenu_device.act {
        opacity: 1;
        transform: scale(1);
    }

        .mainMenu_device.act ul li {
            opacity: 1;
            transform: translateX(0);
            border-top: 1px solid #ebecef;
            text-align: left;
            padding-left: 30px;
        }

            .mainMenu_device.act ul li:last-child {
                border-bottom: 1px solid #ebecef;
            }

    .mainMenu_device ul {
        display: table-cell;
        vertical-align: middle;
        list-style: none;
        padding-inline-start: 0px;
        padding-top: 8px;
    }

    .mainMenu_device li {
        padding: 8px 0;
        transition: all 400ms 510ms;
        opacity: 0;
    }

        .mainMenu_device li:nth-child(odd) {
            transform: translateX(30%);
        }

        .mainMenu_device li:nth-child(even) {
            transform: translateX(-30%);
        }

        .mainMenu_device li:last-child {
            transform: none;
        }

    .mainMenu_device a {
        color: #808080;
        display: inline-block;
        font-size: 15px;
        font-weight: 500;
    }
        .mainMenu_device a i {
            width: 20px;
            margin-right: 5px;
        }
        @media(max-width:500px) {
            .topnav {
        display:none;
    }
    .menuBtn_device {
        display: unset;
    }

    .mainMenu_device {
        display: table !important;
        transition: all 500ms cubic-bezier(0.68,-0.55,0.265,1.55);
        transform: scale(0);
        opacity: 0;
    }
    .header_left {
        width:100%;
        min-height:unset;
    }
    .top_head {
        font-size:28px;
        display:none;
    }
    .top_head_inner_intro {
        text-align: center;
       
    }
    .top_head_intro {
        font-size: 18px;
        display: none;
    }
    .top_head_inner_intro_mid {
        width: 100%;
        text-align: center;
        background-color: unset;
        color: #fff;
        font-size:13px;
    }
    .top_head_inner_intro_det {
        font-size: 17px;
        line-height: 23px;
    }
    .bg_image {
        background-size:cover;
    }
    .header_right {
        width:100%;
        min-height:290px;
    }
        .header_right img {
            width:200px;
        }
    .service_block {
        margin-bottom:15px;
    }
    .timeline .timeline-content {
        max-width: 92%;
        width: auto;
        margin-left: 4%;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0px !important;
        max-width: 92%;
        width: auto;
        margin-left: 4%;
    }
    .timeline-content .date {
        right: unset;
        left: 0px;
        top: 22px;
    }
    .timeline-item:nth-child(even) .timeline-content .date {
        right: 0px;
        left: unset;
    }
    .timeline-content::after {
        display:none;
    }
    .educat_block_left,
    .educat_block_right {
        width: 100%;
        height: unset;
        border-radius: 0px;
        padding: 10px;
    }
        .educat_block_right > span {
            position:unset;
        }
        .educat_block_left:before {
            top: unset;
            right: 0px;
            left: 0px;
            bottom: -12px;
            border-width: 10px 0 10px 11px;
            transform: rotate(90deg);
        }
    .edu_block .col-md-6:nth-child(even) .educat_block_left:before {
        top: unset;
        right: 0px;
        left: 0px;
        bottom: -12px;
        transform: rotate(270deg);
    }
    .edu_block .col-md-6:nth-child(even) .educat_block_left,
    .edu_block .col-md-6:nth-child(even) .educat_block_right {
        border-radius: 0px;
    }
    .service_block_head {
        font-size:26px;
    }
    .footer_icon a {
        margin: 0px 10px;
    }
    #portfolio .tile{
        width:50%;
    }
}
.positionfixed {
    position:fixed !important;
}
/*style start for device menu*/
