﻿body {
    margin: 0;
}
/* font family*/
@font-face {
    font-family: OpenSans-Regular;
    src: url('../Fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: OpenSans-SemiBold;
    src: url('../Fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: OpenSans-Bold;
    src: url('../Fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: ArchivoBlack-Regular;
    src: url('../Fonts/ArchivoBlack-Regular.ttf');
}
/* font family*/

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/

.heading {
    margin-top: 20px;
}

.Desktop {
    display: block;
}

.Mobile {
    display: none;
}

.C_Align {
    text-align: center;
}

.wtbg {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 99;
}

.logo a img {
    width: 185px;
    padding: 11px 0px;
}

.top-login {
    list-style-type: none;
    margin: 2px 0px 0px -40px;
    text-align: right;
}

    .top-login li {
        display: inline-block;
        padding: 0px 0px 0px 15px;
        font-family: OpenSans-SemiBold;
        color: #2234fb;
    }

        .top-login li a {
            color: #2234fb;
            transition: all 0.5s;
        }

        .top-login li i {
            padding: 0px 3px 0px 0px;
            color: #2234fb;
        }

        .top-login li a:hover {
            text-decoration: underline;
        }

.mainMenu {
    list-style-type: none;
    margin: 10px 0px 10px -40px;
    text-align: right;
}

    .mainMenu li {
        display: inline-block;
        padding: 0px 0px 0px 50px;
    }

        .mainMenu li ul li {
            padding: 0px;
            width: 100%;
            text-align: left;
        }

        .mainMenu li a {
            color: #1e1e1e;
            font-family: OpenSans-SemiBold;
            font-size: 14px;
            transition: all 0.5s;
        }

        .mainMenu li ul li a {
            font-family: OpenSans-Regular;
            font-size: 13px;
        }

        .mainMenu li a:hover {
            color: #2234fb;
        }

.filter-dropdown-menu {
    top: 34px;
    left: 47px;
}

.fixed-ht {
    height: 72px;
}

.slider-outside-bg {
    overflow: hidden;
    animation: change-background 10s ease infinite;
}
/* Keyframes */
@keyframes change-background {
    0% {
        background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Slider-01.jpg);
        background-position: center;
        background-size: cover;
    }

    25% {
        background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Slider-01.jpg);
        background-position: center;
        background-size: cover;
    }

    50% {
        background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Slider-02.jpg);
        background-position: center;
        background-size: cover;
    }

    75% {
        background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Slider-03.jpg);
        background-position: center;
        background-size: cover;
    }


    100% {
        background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Slider-03.jpg);
        background-position: center;
        background-size: cover;
    }
}
/* Keyframes */

.slider-inside-bg {
    overflow: hidden;
    animation: change-insidebackground 10s ease infinite;
    margin: 70px 80px;
}
/* Keyframes */
@keyframes change-insidebackground {
    0% {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../Images/General/Slider-01.jpg);
        background-position: center;
        background-size: cover;
    }

    25% {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../Images/General/Slider-01.jpg);
        background-position: center;
        background-size: cover;
    }

    50% {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../Images/General/Slider-02.jpg);
        background-position: center;
        background-size: cover;
    }

    75% {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../Images/General/Slider-03.jpg);
        background-position: center;
        background-size: cover;
    }


    100% {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../Images/General/Slider-03.jpg);
        background-position: center;
        background-size: cover;
    }
}
/* Keyframes */

.slider-inside-bg div {
    padding: 60px 0px;
    border: 1px solid #fff;
    margin: 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.slider-inside-bg h1 span {
    font-size: 28px;
}

.slider-inside-bg h1, .slider-inside-bg h2 {
    font-family: ArchivoBlack-Regular;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 2px 2px #000;
    font-size: 50px;
    margin: 0px 0px 10px;
}

.slider-inside-bg h2 {
    font-size: 25px;
    margin: 20px 0px;
}

.slider-inside-bg h3 {
    margin: 0px;
    font-size: 22px;
    font-family: OpenSans-SemiBold;
    text-shadow: 1px 1px 1px #000;
    color: #4afbfb;
}

.head1 {
    font-family: ArchivoBlack-Regular;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
    font-size: 45px;
    margin: 0px 0px 10px;
}

.head2 {
    font-family: OpenSans-SemiBold;
    color: #2234fb;
    font-size: 28px;
    line-height: 40px;
    margin: 0px 0px 20px;
}

.head3, .head4 {
    font-family: OpenSans-SemiBold;
    color: #000;
    font-size: 17px;
    margin: 0px 0px 10px;
}

.head4 {
    color: #2234fb;
    font-size: 18px;
    margin: 0px 0px 15px;
}

.head3 a {
    color: #2234fb;
    transition: all 0.5s;
}

    .head3 a:hover {
        text-decoration: underline;
    }

.blkclr {
    color: #000;
    text-shadow: 1px 1px 1px #fff
}

.home-abt-txt {
    padding: 100px 80px 20px 0px;
}

    .home-abt-txt p {
        color: #fff;
    }

    .home-abt-txt h6, .feature01 {
        margin: 30px 0px 0px;
    }

        .home-abt-txt h6 a, .feature01 a {
            padding: 10px 15px;
            background-color: transparent;
            color: #fff;
            text-transform: uppercase;
            border: 1px solid #fff;
            transition: all 0.5s;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }

            .home-abt-txt h6 a:hover, .feature01 a:hover {
                background-color: #fff;
                color: #2234fb
            }

.ftitle {
    color: #4afbfb;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0px 0px 5px;
}

.ftitletop {
    margin: 15px 0px 5px;
}

.flist {
    margin: 0px 0px 20px -40px;
    list-style-type: none;
    font-size: 13px;
}

    .flist li {
        padding: 1px 0px;
        line-height: 22px;
        color: #fff;
    }

        .flist li a {
            color: #fff;
            transition: all 0.5s;
        }

            .flist li a:hover {
                text-decoration: underline;
            }

            .flist li a i {
                color: #4afbfb;
            }

        .flist li i {
            color: #4afbfb;
            padding: 0px 3px 0px 0px;
        }

.copyright {
    margin: 10px 0px;
    text-align: center;
    font-size: 13px;
}

    .copyright a {
        color: #1B242F;
        transition: all 0.5s;
    }

        .copyright a:hover {
            text-decoration: underline;
        }

.padding01 {
    padding: 40px 0px 30px;
}

.padding02 {
    padding: 20px 0px;
}

.bg-01 {
    background-color: #36096d;
    background-image: linear-gradient(315deg, #36096d 0%, #2234fb 74%);
}

.bg-02 {
    background-color: #000;
}

.tech {
    background: -webkit-linear-gradient(90deg, #00b0a2, #0092ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: ArchivoBlack-Regular;
    padding-top: 135px;
    margin: 0px;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 50px;
}

.home-about img {
    width: 100%;
}

.grey-bg {
    background-color: #f1f1f1;
    padding: 50px 0px 40px;
}

.wid20 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 20%;
}

.db-div {
    padding-top: 15px;
}

    .db-div img {
        width: 100%;
        border: 1px solid #ccc;
        padding: 5px;
    }

    .db-div a p {
        margin: 3px 0px 0px;
        font-family: OpenSans-SemiBold;
        font-size: 13.5px;
        line-height: 20px;
        color: rgba(0,0,0,0.7);
        color: #212529;
    }

.featurebg {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../Images/General/Feature.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0px;
}

.feature {
    padding: 0px;
    margin: 0px;
}

.footerbg {
    padding: 40px 0px 30px;
}

.social-media {
    margin: 15px 0px;
}

    .social-media a i {
        color: #fff;
        font-size: 25px;
        padding: 0px 5px 0px 0px;
    }

.sub-outside {
    padding: 60px 0px;
}

.sub-inside {
    border: 1px solid #fff;
    margin: 0px;
    padding: 75px 0px;
}

    .sub-inside h1 {
        font-family: ArchivoBlack-Regular;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 1px 1px 1px #000;
        font-size: 40px;
        margin: 0px;
    }

.sub-abt-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-About.jpg);
    background-position: center;
    background-size: cover;
}

.sub-abt-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-About.jpg);
    background-position: center;
    background-size: cover;
}

.sub-team-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Team.jpg);
    background-position: center;
    background-size: cover;
}

.sub-team-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Team.jpg);
    background-position: center;
    background-size: cover;
}

.sub-committee-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Committee.jpg);
    background-position: center;
    background-size: cover;
}

.sub-committee-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Committee.jpg);
    background-position: center;
    background-size: cover;
}

.sub-annual-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Annual.jpg);
    background-position: center;
    background-size: cover;
}

.sub-annual-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Annual.jpg);
    background-position: center;
    background-size: cover;
}

.sub-credit-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Credit.jpg);
    background-position: center;
    background-size: cover;
}

.sub-credit-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Credit.jpg);
    background-position: center;
    background-size: cover;
}

.sub-contact-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Contact.jpg);
    background-position: center;
    background-size: cover;
}

.sub-contact-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Contact.jpg);
    background-position: center;
    background-size: cover;
}

.sub-finance-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Finance.jpg);
    background-position: center;
    background-size: cover;
}

.sub-finance-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Finance.jpg);
    background-position: center;
    background-size: cover;
}

.sub-corporate-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Corporate.jpg);
    background-position: center;
    background-size: cover;
}

.sub-corporate-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Corporate.jpg);
    background-position: center;
    background-size: cover;
}

.sub-annualreturn-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-AnnualReturn.jpg);
    background-position: center;
    background-size: cover;
}

.sub-annualreturn-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-AnnualReturn.jpg);
    background-position: center;
    background-size: cover;
}

.sub-contactinverst-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-ContactInverst.jpg);
    background-position: center;
    background-size: cover;
}

.sub-contactinverst-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-ContactInverst.jpg);
    background-position: center;
    background-size: cover;
}

.sub-sebi-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-SEBI-Regulations.jpg);
    background-position: center;
    background-size: cover;
}

.sub-sebi-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-SEBI-Regulations.jpg);
    background-position: center;
    background-size: cover;
}

.sub-reports-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Reports.jpg);
    background-position: center;
    background-size: cover;
}

.sub-reports-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Reports.jpg);
    background-position: center;
    background-size: cover;
}

.sub-policy-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Policy.jpg);
    background-position: center;
    background-size: cover;
}

.sub-policy-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Policy.jpg);
    background-position: center;
    background-size: cover;
}

.sub-sitemap-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Sitemap.jpg);
    background-position: center;
    background-size: cover;
}

.sub-sitemap-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Sitemap.jpg);
    background-position: center;
    background-size: cover;
}

.sub-terms-outside {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/General/Sub-Terms.jpg);
    background-position: center;
    background-size: cover;
}

.sub-terms-inside {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../Images/General/Sub-Terms.jpg);
    background-position: center;
    background-size: cover;
}

.team {
    background-color: #fff;
    padding: 20px;
    border-bottom: 3px solid #2234fb;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    margin-bottom: 40px;
}

    .team img {
        width: 100%;
        border: 1px solid #f2f2f2;
        padding: 3px;
        border-radius: 3px;
    }

    .team h3 {
        font-family: ArchivoBlack-Regular;
        font-size: 16px;
        text-transform: uppercase;
        margin: 10px 0px 5px;
        color: #2234fb;
    }

    .team h4 {
        font-family: OpenSans-Bold;
        color: #000;
        font-size: 13px;
        text-transform: uppercase;
        margin: 0px 0px 10px;
    }

.div01 {
    background-color: #fff;
    padding: 30px;
    border-bottom: 3px solid #2234fb;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.pdf-tbl {
    width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
}

    .pdf-tbl tr td {
        padding: 5px 5px;
        border-bottom: 1px solid #ccc;
    }

        .pdf-tbl tr td:nth-child(1) {
            width: 10%;
        }

        .pdf-tbl tr td img {
            width: 50px;
            padding: 5px;
        }

        .pdf-tbl tr td a {
            color: #2234fb;
            transition: all 0.5s;
        }

            .pdf-tbl tr td a:hover {
                text-decoration: underline;
            }

.pdf-tbl-sebi {
    margin: 0px;
}

    .pdf-tbl-sebi tr td {
        padding: 7px 5px;
    }

        .pdf-tbl-sebi tr td:nth-child(1) {
            width: 6%;
        }

        .pdf-tbl-sebi tr td:nth-child(2) {
            width: 5%;
        }

        .pdf-tbl-sebi tr td img {
            width: 32px;
            padding: 5px;
        }

.pdf-tbl-fy {
    margin: 15px 0px;
}

    .pdf-tbl-fy tr:nth-child(1) {
        border-top: 1px solid #ccc;
    }

    .pdf-tbl-fy tr td:nth-child(1), .pdf-tbl-fy tr td:nth-child(3) {
        width: 2%
    }

    .pdf-tbl-fy tr td:nth-child(2), .pdf-tbl-fy tr td:nth-child(4) {
        width: 48%
    }

    .pdf-tbl-fy tr td img {
        width: 32px;
        padding: 5px;
    }

.accordion-line {
    border-bottom: 1px solid #ccc;
    margin: 10px 0px;
}

.contact-address {
    background-color: #fff;
    padding: 20px 15px 10px;
    border-bottom: 2px solid #2234fb;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    min-height: 310px;
    margin-bottom: 20px;
}

    .contact-address h6 {
        margin: 0px 0px 10px;
        font-size: 15px;
        color: #000;
        font-family: OpenSans-SemiBold;
        text-transform: uppercase;
    }

        .contact-address h6 i, .contact-address p i {
            color: #2234fb;
            padding: 0px 3px 0px 0px;
        }

    .contact-address p {
        line-height: 24px;
    }

        .contact-address p span {
            font-size: 12px;
            color: #000;
        }

        .contact-address p a {
            color: #212529;
            transition: all 0.5s;
        }

            .contact-address p a:hover {
                color: #2234fb;
            }

.contact-form {
    margin: 20px 0px;
    padding: 40px 40px 30px;
}

.dbl-txtbx {
    border: 1px solid #eee;
    background-color: #eee;
    color: #000;
    padding: 10px;
    border-radius: 3px;
    width: 100%;
}

.dbl-btn {
    border: 1px solid #2234fb;
    background-color: #2234fb;
    padding: 10px 20px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.5s;
}

    .dbl-btn:hover {
        background-color: transparent;
        color: #2234fb;
    }

.year {
    margin: 0px 0px 10px;
    padding: 0px 0px 10px;
    border-bottom: 1px solid #2234fb;
    color: #2234fb;
    font-family: OpenSans-SemiBold;
    font-size: 20px;
}

.sitemap {
    margin: 0px 0px 0px -20px;
    color: #2234fb;
    list-style-type: square;
}

    .sitemap li a {
        color: #212529;
        transition: all 0.5s;
    }

        .sitemap li a:hover {
            color: #2234fb;
        }

.img-01 img {
    width: 100%;
}

.committee-tbl {
    width: 100%;
    font-size: 15px;
}

    .committee-tbl tr th, .committee-tbl tr td {
        padding: 5px;
        border: 1px solid #ccc;
    }

    .committee-tbl tr th {
        background-color: #4afbfb;
        color: #000;
        font-family: OpenSans-SemiBold;
    }

    .committee-tbl tr {
        transition: all 0.5s;
    }

        .committee-tbl tr:hover {
            background-color: #f1f1f1;
        }

.mtop {
    margin-top: 30px;
}
/*Regulation 62 style*/

.accordion-sub {
    width: 100%;
}

    .accordion-sub tr td {
        padding: 5px 0px;
    }

        .accordion-sub tr td:nth-child(1) {
            width: 5%;
        }

        .accordion-sub tr td span {
            color: red;
        }

.panel-accordion {
    background-color: #2234fb;
}

    .panel-accordion h4 a {
        color: #fff;
    }

        .panel-accordion h4 a:hover {
            text-decoration: none;
        }

        .panel-accordion h4 a i {
            float: right;
        }

.accordion-dropdown p {
    border: 1px solid #4afbfb;
    background-color: #4afbfb;
    padding: 0px 5px;
    border-radius: 3px;
    transition: all 0.5s;
}

    .accordion-dropdown p:last-child {
        margin: 0px;
    }

    .accordion-dropdown p.clicked,
    .accordion-dropdown p:hover {
        background-color: #2234fb;
    }

    .accordion-dropdown p a {
        color: #000;
        cursor: pointer;
    }

    .accordion-dropdown p.clicked a,
    .accordion-dropdown p:hover a {
        color: #fff;
    }

.panel-title a span {
    display: none;
}

.fy-hide {
    display: none;
}

.fy-focus {
    background-color: transparent;
    color: #fff;
}
/*Regulation 62 style*/
/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
    .reachdiv {
        padding-left: 20px;
    }

    .pdf-tbl-01 {
        font-size: 14px;
    }

        .pdf-tbl-01 tr td img {
            width: 50px;
        }

    .sub-inside-sebi {
        padding: 31px 0px;
    }

    .flist-sebi li:nth-child(6) {
        width: 140%;
    }

    .panel-title a span {
        display: inline-block;
    }

    .head4 {
        line-height: 25px;
    }
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    .logo a img {
        width: 155px;
        padding: 10px 0px;
    }

    .mainMenu {
        margin: 10px 0px 0px -40px;
    }

        .mainMenu li {
            padding: 0px 0px 0px 40px;
        }

    .filter-dropdown-menu {
        top: 26px;
        left: 40px;
    }

    .fixed-ht {
        height: 62px;
    }

    .slider-inside-bg h1 {
        font-size: 40px;
    }

    .slider-inside-bg h2 {
        font-size: 22px;
        margin: 20px 0px;
    }

    .slider-inside-bg h3 {
        font-size: 18px;
    }

    .head1 {
        font-size: 35px;
    }

    .head2 {
        font-size: 30px;
    }

    .home-abt-txt {
        padding: 30px 0px 20px 0px;
    }

    .tech {
        padding-top: 80px;
        font-size: 35px;
        line-height: 40px;
    }

    .contact-address {
        min-height: 400px;
    }

    .pdf-tbl-01 {
        font-size: 16px;
    }

        .pdf-tbl-01 tr td img {
            width: 65px;
        }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {

    .logo, .top-login, .mainMenu {
        text-align: center;
    }

        .logo a img {
            width: 95px;
            padding: 5px 0px;
        }

    .mainMenu {
        margin: 5px 0px;
    }

    .top-login li {
        padding: 0px 5px;
    }

    .mainMenu li {
        padding: 0px 15px;
    }

    .filter-dropdown-menu {
        top: 30px;
        left: 15px;
    }

    .fixed-ht {
        height: 98px;
    }

    .slider-inside-bg div {
        padding: 70px 0px;
        margin: 30px;
    }

    .slider-inside-bg h1 {
        font-size: 35px;
    }

    .slider-inside-bg h2 {
        font-size: 20px;
    }

    .slider-inside-bg h3 {
        font-size: 18px;
    }

    .head1 {
        font-size: 30px;
    }

    .head2 {
        font-size: 27px;
    }

    .home-abt-txt {
        padding: 20px 0px 20px 0px;
    }

    .tech {
        padding-top: 50px;
        font-size: 30px;
        line-height: 35px;
    }

    .wid20 {
        width: 33%;
    }

    .sub-inside {
        padding: 80px 0px;
    }

        .sub-inside h1 {
            font-size: 35px;
        }

    .contact-address {
        min-height: 310px;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .top-login, .mainMenu {
        text-align: left;
    }

    .mainMenu {
        margin: 0px 0px 0px -40px;
    }

        .top-login li, .mainMenu li {
            padding: 3px 0px;
            display: list-item;
            font-family: OpenSans-Regular;
        }

            .top-login li a, .mainMenu li a {
                font-family: OpenSans-Regular;
            }

    .logo a img {
        width: 120px;
        padding: 8px 0px;
    }

    .filter-dropdown-menu {
        top: 30px;
        left: 0px;
    }

    .fixed-ht {
        height: 50px;
    }

    .padding01, .padding02 {
        padding: 20px 0px;
    }

    .slider-inside-bg div {
        padding: 70px 0px;
        margin: 30px;
    }

    .slider-inside-bg h1 {
        font-size: 30px;
    }

    .slider-inside-bg h2 {
        font-size: 18px;
    }

    .slider-inside-bg h3 {
        font-size: 16px;
    }

    .head1 {
        font-size: 28px;
    }

    .head2 {
        font-size: 22px;
        line-height: initial;
    }

    .home-abt-txt {
        padding: 20px 0px 20px 0px;
    }

        .home-abt-txt h6 {
            margin: 30px 0px;
        }

    .tech {
        padding: 20px 0px;
        text-align: center;
        font-size: 25px;
        line-height: 30px;
    }

    .grey-bg {
        padding: 20px 0px 10px;
    }

    .wid20 {
        width: 50%;
    }

    .sub-outside {
        padding: 30px 0px;
    }

    .sub-inside {
        padding: 50px 0px;
    }

        .sub-inside h1 {
            font-size: 25px;
        }

    .team {
        margin-bottom: 20px;
    }

    .div01 {
        padding: 20px;
    }

    .pdf-tbl {
        font-size: 15px;
        margin-bottom: 20px;
    }

        .pdf-tbl tr td {
            padding: 5px 5px;
            border-bottom: 1px solid #ccc;
        }

            .pdf-tbl tr td img {
                width: 35px;
                padding: 5px;
            }

    .contact-address {
        min-height: 0px;
    }

    .panel-title a {
        line-height: 20px;
        font-size: 14px;
    }

    .head4 {
        font-size: 16px;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
