body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Muli';
    background: #f4f4f6;
    font-size: 100%;
}

.container {
    width: 1110px;
}

figure {
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

h1 {
    font-family: 'Montserrat';
    font-size: 3.125rem;
    line-height: 3.3125rem;
    color: #fff;
    font-weight: 400;
}

h2 {
    font-family: 'Montserrat';
    font-size: 2.5rem;
    line-height: 2.875rem;
    color: #0b0129;
    /* text-transform: capitalize; */
    font-weight: 400;
}

h3 {
    font-family: 'Montserrat';
    font-size: 1.9375rem;
    line-height: 1.9375rem;
    color: #0b0129;
    /* text-transform: capitalize; */
    font-weight: 400;
}

h6 {
    font-size: 1rem;
    color: #f26641;
    font-weight: 700;
    text-transform: uppercase;
}

p {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 26px;
}


/* ==================Start: Button Style===================== */

.btn-outline-success {
    font-family: 'Muli';
    font-weight: 700;
    color: #f26641;
    border-color: #f26641;
    /* background: url('../images/button.svg')no-repeat; */
}

.btn {
    border-radius: 0;
    border-width: 2px;
    padding: 5px 40px;
}

.lab-btn {
    position: relative;
    display: inline-block;
}

.btn-outline-success:hover,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show>.btn-outline-success.dropdown-toggle {
    color: #f35c3a;
    background-color: transparent;
    border-color: #f35c3a;
    box-shadow: none !important;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
    box-shadow: none;
}

.plus-top {
    padding: 4px 4px 0px 4px;
    background: #f35c3a;
    position: absolute;
    border: 4px solid #fff;
    line-height: 7px;
    right: -12px;
    top: -12px;
    color: #fff;
    width: 26px;
    height: 26px;
    text-align: center;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.btn-outline-success:hover {
    background: #f26641;
    color: #ffffff;
}

.banner-btn .btn-outline-success:hover {
    background: #fff;
    color: #f26641;
    border-color: #ffffff;
}

.banner-btn:hover .plus-top {
    color: #f26641;
    background: #fff;
}

#academic .tab-button:hover .btn.btn-outline-success {
    color: #f26641;
    background-color: #ffffff;
}


/* .tab-button:hover .plus-top {
    border: 4px solid #ffffff;
    background: #f26641;
    color: #ffffff;
} */


/* .lab-btn:hover .plus-top {
    top: -12px;
} */

.lab-btn.tab-button.banner-btn .plus-top {
    border: 4px solid #882917;
}


/* ===================End : Button Style==================== */


/* ===================Start : header Style===================== */

nav {
    width: 100vw;
    height: 80px;
    position: fixed;
    /* z-index: 10; */
    transition: all 0.3s;
}

nav.navShadow {
    box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
    height: 100px;
    background: linear-gradient(90deg, rgba(11, 1, 41, 1) 20%, rgba(214, 75, 38, 1) 90%);
    animation: slide-down 0.7s;
    opacity: 1;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

nav.navShadow .y-labs-logo img {
    width: 70%;
}

nav.navShadow .y-labs-logo {
    top: 12px;
}

nav.navShadow .main-menu {
    top: 35px;
}

.header {
    position: absolute;
    z-index: 1;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    /* padding:4px 0;
    animation:slide-down 0.7s;
    opacity:0.9;     */
}

.y-labs-logo {
    display: inline-block;
    position: relative;
    left: 50px;
    top: 30px;
}

.y-labs-logo img {
    width: 85%;
}

.main-menu {
    float: right;
    position: relative;
    top: 50px;
    right: 50px;
}

.main-menu ul li {
    display: inline-block;
    padding: 5px 20px;
}

.main-menu ul li a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.main-menu ul li.active {
    border: 2px solid #f26641;
}

.main-menu ul li.active:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 13px;
    left: auto;
    right: -8px;
    top: -8px;
    background: #f26641;
    border: 3px solid #4b1b27;
}

.mobile-menu {
    display: none;
}


/* ===================End : header Style===================== */


/* ======================Start : Banner Style================= */

.banner-labs {
    position: relative;
    background: url('../images/banner-img.jpg')no-repeat;
    height: 100vh;
    background-position: top center;
    background-size: cover;
}

.banner-contant {
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    margin: 0px auto;
    align-content: center;
    justify-content: center;
    padding-top: 70px;
    height: 100%;
}

.banner-contant p {
    font-size: 19px;
    color: #fff;
    font-weight: 400;
    line-height: 26px;
}


/* ======================End : Banner Style===================== */


/* ========================Start : Tab Section===================== */

.home-tab {
    padding-top: 60px;
}

.home-tab .nav-link {
    display: inline-block;
    padding: 22px;
    width: 260px;
    height: 150px;
    border-radius: 0;
    position: relative;
    border: 1px solid #ccc;
}

.home-tab .nav-link:nth-child(1),
.home-tab .nav-link:nth-child(2) {
    border-bottom: 0px;
}

.home-tab .nav-link:nth-child(1),
.home-tab .nav-link:nth-child(3) {
    border-right: 0;
}

.home-tab .nav-pills .nav-link.active {
    color: #fff;
    background-color: #f35c3a;
}

.home-tab .nav-pills .nav-link.active .tab-cont h6,
.home-tab .nav-pills .nav-link.active .tab-number {
    color: #fff;
}

.tab-cont h6 {
    color: #909090;
    font-size: 14px;
    /* line-height: 26px; */
    position: absolute;
    bottom: 10px;
}

.tab-number {
    float: right;
    font-weight: 700;
    color: #909090;
}

.home-tab .tab-content {
    background: #fff;
    padding: 45px;
}

.contant-nunber {
    float: right;
    font-size: 3.25rem;
    line-height: 15px;
    font-weight: 700;
    color: #dedede;
    margin-top: 10px;
}

.tab-pane .icon-bg {
    width: 80px;
    height: 80px;
    background: url('../images/tab-iconbg.png')no-repeat;
    margin-bottom: 30px;
    display: inline-block;
}

.tab-button {
    display: inline-block;
    margin-top: 30px;
}

.short-icons {
    width: 38px;
    height: 43px;
    display: inline-block;
    background: url('../images/icons/brant-icon.png')no-repeat;
}

.short-icons.segmen {
    background: url('../images/icons/segmen-icon.png')no-repeat;
}

.short-icons.product {
    background: url('../images/icons/product-icon.png')no-repeat;
}

.short-icons.usage {
    background: url('../images/icons/usage-icon.png')no-repeat;
}

.short-icons.pre-model {
    background: url('../images/icons/model-icon.png')no-repeat;
}

.home-tab .nav-pills .nav-link.active .short-icons {
    background-position: 0px -43px;
}

.tab-content .short-icons {
    margin: 18px auto;
    display: block;
    width: 40px;
    background-position: 0px -40px;
}


/* ========================End : Tab Section====================== */

.section-pad {
    padding: 120px 0;
}

.section-pad.left-width {
    position: relative;
}

.section-pad.left-width:before {
    content: '';
    width: 67%;
    height: 490px;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
}

.section-pad.left-width.right-width {
    padding: 90px 0 0;
    margin-top: 120px;
}

.section-pad.left-width.right-width:before {
    width: 65%;
    right: 0;
    left: auto;
    height: 100%;
    z-index: -1;
}

.bot-border {
    border-bottom: 1px solid #f4f4f6;
}

.about-details {
    padding: 70px 0 90px;
}

.list-icons ul {
    display: flex;
    height: 100%;
    flex-flow: nowrap;
}

.list-icons ul li {
    width: 200px;
}

.list-icons h6 {
    font-size: 14px;
    padding-top: 35px;
}

.list-icons img {
    display: block;
    text-align: center;
    margin: 0px auto;
    border-right: 2px solid #b93d07;
    padding: 0 45px;
}

.list-icons li img:nth-child(4) {
    border-right: 0px !important;
    display: none;
}


/* ================== Start : Academic Style======================== */

.twotype-bg {
    background: rgb(11, 1, 41)url('../images/academic-1-bg.jpg')no-repeat;
    /* background: linear-gradient(90deg,rgba(11,1,41,1)  50%, rgba(214,75,38,1)  50%); */
    height: 600px;
    padding-top: 100px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.academic-image {
    position: absolute;
    top: 20px;
}

.twotype-bg a.btn.btn-outline-success {
    color: #fff;
    border-color: #fff;
}

.twotype-bg .plus-top {
    color: #ec6600;
    background: #fff;
    border: 4px solid #b93d07;
}


/* ================== End : Academic Style======================== */


/* ==================== Start : Footer Style======================== */

.footer-bgcolor {
    background: #0b0129;
}

.section-pad.left-width.foot-left {
    padding: 75px 0;
}

.section-pad.left-width.foot-left:before {
    height: 100%;
    width: 58%;
}


/*========== Quick : Start ===========*/

.enquiry-form {
    padding: 70px 0;
}

.enquiry-form input.form-control {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #48415d;
    border-radius: 0;
    padding: 0.375rem 0rem;
    margin-top: 30px;
    color: #fff;
    font-weight: 500;
}

.enquiry-form input.form-control::placeholder {
    color: #48415d;
}

.form-control:focus {
    box-shadow: none;
}

.enquiry-form .plus-top {
    border: 4px solid #0b0129;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


/* =========Enquiry :End ========== */

.menu-footer ul {
    padding: 0;
}

.menu-footer ul li {
    padding-bottom: 10px;
    line-height: 18px;
}

.menu-footer ul li:last-child {
    padding-bottom: 0;
}

.menu-footer ul li a {
    color: #0b0129;
    font-family: 'Muli';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.menu-footer ul li a:hover {
    color: #f35c3a;
}

.contact-info {
    display: inline-block;
    float: right;
    padding-top: 20px;
}

.contact-info h5 {
    font-family: 'Muli';
    font-size: 1.875rem;
    line-height: 1.125rem;
    font-weight: 400;
    color: #fff;
}

.contact-info a {
    font-family: 'Muli';
    font-size: 1.25rem;
    line-height: 1.125rem;
    color: #fff;
    text-align: left;
}

.social-icons ul {
    margin: 0;
    padding-top: 40px;
}

.social-icons ul li {
    display: inline-block;
}

.social-icons a.youtube,
a.instagram,
a.facebook,
a.twitter,
a.linked-in {
    width: 30px;
    height: 30px;
    /* display: block; */
    float: left;
    /* text-indent: -9999em; */
    background: url('../images/social-icons.png') no-repeat;
    margin: 0 15px 0 0px;
}

a.instagram {
    background-position: -54px 0px;
}

a.facebook {
    background-position: -108px 0px;
}

a.twitter {
    background-position: -163px 0px;
}

a.linked-in {
    background-position: -215px 0px;
}


/* Hover icons */

a.youtube:hover {
    background-position: 0px -32px;
}

a.instagram:hover {
    background-position: -54px -32px;
}

a.facebook:hover {
    background-position: -108px -32px;
}

a.twitter:hover {
    background-position: -163px -32px;
}

a.linked-in:hover {
    background-position: -215px -32px;
}


/* End : hover icons */

.copy-rightbg {
    padding: 45px 0;
}

.copy-rightbg p {
    margin: 0;
}

.form-control.is-invalid:focus {
    box-shadow: none;
}


/* ==== banneer button ========= */

.tab-button.banner-btn .btn-outline-success {
    color: #ffffff;
    border-color: #ffffff;
}

.tab-button.banner-btn .btn-outline-success:hover {
    color: #ec6600;
    border-color: #ffffff;
    background: #ffffff;
}

.tab-button.banner-btn .plus-top {
    color: #ec6600;
    background: #fff;
    border: 4px solid #b93d07;
}

@media only screen and (max-width: 1110px) and (min-width:320px) {
    .container {
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        padding: 0 15px;
    }
}

@media(max-width:1440px) {
    .section-pad.left-width.foot-left:before {
        width: 63%;
    }
}

@media(max-width:1200px) {
    .home-tab .nav-link {
        width: 210px;
    }
}

@media(max-width:1024px) {
    h2 br {
        display: none;
    }
    .home-tab .nav-link {
        width: 210px;
    }
    .twotype-bg {
        height: 510px;
    }
}

@media(max-width:991px) {
    .home-tab .nav-link {
        width: 250px;
    }
    .home-tab .nav-link:nth-child(3) {
        border: 1px solid #ccc;
    }
    .main-menu ul li {
        padding: 5px 14px;
    }
    .twotype-bg {
        height: auto;
        background: rgb(11, 1, 41)url('../images/academic-bg.jpg')no-repeat;
        background-position: bottom;
    }
    .section-pad {
        padding: 80px 0;
    }
    .academic-image {
        position: relative;
        top: 0;
        text-align: center;
    }
    .order-768 {
        order: 3;
    }
}

@media(max-width:880px) {
    .contact-info h5 {
        font-size: 1.575rem;
    }
}

@media(max-width:768px) {
    html {
        font-size: 75%;
    }
    .banner-labs {
        background-position: center;
    }
    .main-menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    figure {
        margin: 0px auto;
        text-align: center;
    }
    /* .twotype-bg {
        height: auto;
        background: rgb(11, 1, 41)url('../images/academic-bg.jpg')no-repeat;
        background-position: bottom;
    } */
    .section-pad {
        padding: 80px 0;
    }
    /* .academic-image {
        position: relative;
        top: 0;
        text-align: center;
    }
    .order-768 {
        order: 3;
    } */
    .section-pad.left-width.right-width {
        padding: 40px 0 0;
        margin-top: 50px;
    }
    .section-pad.left-width.right-width:before {
        width: 100%;
        height: 80%;
        bottom: 0;
        top: auto;
    }
    .section-pad.left-width.foot-left:before {
        height: 92%;
        width: 65%
    }
    .section-pad.left-width.foot-left {
        padding: 50px 0 20px;
    }
    .contact-info {
        float: left;
    }
    .social-icons ul {
        padding-top: 20px;
    }
    .copy-rightbg {
        padding: 0 0 45px 0;
    }
    .section-pad.left-width:before {
        width: 100%;
    }
    .menu-footer {
        margin-top: 0px;
    }
    /* .menu-footer {
        margin-top: 25px;
    } */
    .menu-footer.col-two {
        margin-top: 0px;
        padding-bottom: 50px;
    }
    .change-col {
        flex-direction: column-reverse;
    }
    .image-top {
        padding-top: 25px;
    }
    .twotype-bg .plus-top {
        border: 4px solid #943111;
    }
    .menu-footer ul li:last-child {
        padding-bottom: 10px;
    }
    .home-tab .nav-link:nth-child(1),
    .home-tab .nav-link:nth-child(3) {
        border-right: 1px solid #ccc;
    }
    nav.navShadow .y-labs-logo img {
        width: 55%;
    }
    nav.navShadow {
        height: 80px;
    }
}

@media(max-width:767px) {
    .section-pad.left-width.foot-left:before {
        height: 85%;
        width: 65%;
    }
    .section-pad.left-width.foot-left .col-md-2 {
        margin-top: 20px;
    }
}

@media(max-width:575px) {
    .y-labs-logo {
        left: 30px;
        top: 25px;
        width: 25%;
    }
    h1 br {
        display: none;
    }
    h1 {
        font-size: 3rem;
        line-height: 3.125rem;
    }
    .banner-contant {
        padding: 0 20px;
    }
    h2 br {
        display: none;
    }
    .home-tab .nav-link {
        width: 200px;
    }
    .list-icons ul {
        flex-wrap: wrap;
    }
    .list-icons ul li {
        width: 50%;
    }
    .list-icons h6 {
        padding: 20px 0;
    }
    .list-icons img {
        border: 0;
    }
    .list-icons ul li img:nth-child(2) {
        border-right: 0 !important;
    }
    .home-tab .nav-link:nth-child(1),
    .home-tab .nav-link:nth-child(3) {
        border-right: 0px solid #ccc;
    }
    /* .section-pad.left-width.right-width {
        padding: 70px 0 0;
        margin-top: 80px;
    } */
}

@media(max-width:480px) {
    .home-tab .nav-link {
        width: 180px;
    }
    .section-pad.left-width.foot-left:before {
        height: 80%;
        width: 85%;
    }
}

@media(max-width:430px) {
    .home-tab .nav-link {
        width: 160px;
    }
    .home-tab .tab-content {
        padding: 25px;
    }
}

@media(max-width:390px) {
    .home-tab .nav-link {
        width: 150px;
        height: 130px;
    }
}

@media(max-width:370px) {
    .home-tab .nav-link {
        width: 143px;
        padding: 15px;
    }
    .mobile-menu .mobile-list ul li a {
        font-size: 1.600em !important;
    }
}

@media(max-width:350px) {
    .home-tab .nav-link:nth-child(1),
    .home-tab .nav-link:nth-child(3) {
        border-right: 1px solid #ccc;
    }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    main {
        min-width: 200px;
        max-width: 800px;
        margin: 80px auto;
        padding: 10px;
    }
    main .wrap {
        padding: 40px 20px;
        background-color: #fff;
    }
    main .title {
        font-size: 2em;
        text-align: center;
        margin: 20px auto 40px;
        text-transform: uppercase;
    }
    .mobile-menu .mobile-list {
        background: rgba(214, 75, 38, 1);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    .mobile-menu .mobile-list .navShadow {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .mobile-menu .mobile-list ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 50%;
        top: 25%;
        transition: all 0.3s ease-in-out;
        transform: translateX(-50%);
    }
    .mobile-menu .mobile-list ul li {
        transform: translateY(50px);
        opacity: 0;
    }
    .mobile-menu .mobile-list ul li a {
        display: block;
        font-size: 2em;
        text-decoration: none;
        padding: 10px 0;
        text-align: center;
        color: #fff;
        font-weight: normal;
        transition: all 0.2s ease-in-out;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    .mobile-menu .mobile-list ul li a:hover {
        color: #ec6600;
    }
    .toggle-btn {
        display: block;
        position: absolute;
        z-index: 10;
        right: 28px;
        top: 28px;
        cursor: pointer;
    }
    .toggle-btn .bar {
        width: 30px;
        height: 2px;
        margin: 7px auto;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
    }
    .toggle-btn .bar:nth-child(2) {
        width: 20px;
    }
    #toggle:checked~.mobile-list {
        opacity: 1;
        visibility: visible;
    }
    /* #toggle:checked ~ nav ul {
        top: 70px;
      } */
    #toggle:checked~.mobile-list ul li {
        transform: translateY(0px);
        opacity: 1;
    }
    #toggle:checked~.mobile-list ul li:nth-child(1) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
    }
    #toggle:checked~.mobile-list ul li:nth-child(2) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
    }
    #toggle:checked~.mobile-list ul li:nth-child(3) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
    }
    #toggle:checked~.mobile-list ul li:nth-child(4) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
    }
    #toggle:checked~.mobile-list ul li:nth-child(5) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
    }
    #toggle:checked~.mobile-list ul li:nth-child(6) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.6s;
    }
    #toggle:checked+label.toggle-btn .bar {
        background-color: #fff;
    }
    #toggle:checked+label.toggle-btn .bar:nth-child(2) {
        transform: translateX(50px);
        opacity: 0;
    }
    #toggle:checked+label.toggle-btn .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    #toggle:checked+label.toggle-btn .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}