:root {
    --bg-color: #f9f9f9;
    --assistant-color: #efefef;
    --theme-color: #e88b00;
    --font-color: #0009;
    --heading-color: #000;
    --border-color: #d2d2d2;
    --smooth-color: #141414;
    --reverse-color: #141414;
    --reverse-heading-color: #fff;
}


.inner-normal-heading {
    font-size: 18px;
    margin-bottom: 8px;
}

.internal-top-banner-sec {
    /* background: url('../images/background/top-banner.jpg'); */
    background: url("../images/background/background-new.jpg");
    width: 100%;
    height: 250px;
        background-size: cover;
    background-repeat: no-repeat;
}

.internal-top-banner-sec .internal-top-banner-sec-overlay {
    width: 100%;
    height: 100%;
    background: #000000a3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.internal-top-banner-sec .internal-top-banner-sec-overlay h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}

.internal-top-banner-sec .internal-top-banner-sec-overlay ul {
    display: inline-flex;
    gap: 30px;
    color: #fff;
}

.internal-top-banner-sec .internal-top-banner-sec-overlay ul li {
    position: relative;
}

.internal-top-banner-sec .internal-top-banner-sec-overlay ul li i {
    font-size: 20px;
    color: var(--theme-color);
}

.internal-top-banner-sec .internal-top-banner-sec-overlay ul li:not(:last-child):after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
}

/* home page started */
.home-about-view-more {
    background: gray;
    color: #fff;
    padding: 7px 10px;
}

.home-about-view-more:hover {
    background: var(--theme-color);
    color: #fff;
}

/* home page ended */

/* about us started here */
.section-title-sm {
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #666;
    font-size: 18px;
}

.section-title {
    margin-bottom: 35px;
    font-size: 30px;
    color: #222;
    font-weight: 500;
}

.section-title-border-half {
    position: relative;
}

.section-title-border-half::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--theme-color);
    bottom: -10px;
    left: 0;
}

.section-title-border-half::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    left: 15px;
    bottom: -6px;
    background: var(--theme-color);
}

.section-title-border {
    position: relative;
}

.section-title-border::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 120px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-color);
}

.section-title-border::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--theme-color);
    box-shadow: 0 0 0 5px #fff;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.vision-mission-box {
    border: 1px solid #dddddd9c;
    padding: 15px;
    height: 100%;
}

.vision-mission-box p {
    margin-bottom: 0px;
}

.about-team-sec .about-team-item {
    position: relative;
    margin-bottom: 70px;
}

.about-team-sec .about-team-item .about-team-img-wrapper {
    width: 100%;
    height: auto;
}

.about-team-sec .about-team-item .about-team-social {
    background: #f1f1f1;
    position: absolute;
    top: 0;
    transform: translateX(-36px);
    opacity: 0;
    transition: 0.5s all ease-in-out;
}

.about-team-sec .about-team-item:hover .about-team-social {
    transform: translateX(0px);
    opacity: 1;
}

.about-team-sec .about-team-item:hover .about-team-content-wrapper {
    border-bottom: 2px solid var(--theme-color);
}

.about-team-sec .about-team-item .about-team-social ul {
    padding: 5px;
}

.about-team-sec .about-team-item .about-team-social ul li {
    padding: 5px;
}

.about-team-sec .about-team-item .about-team-content-wrapper {
    background: #fff;
    box-shadow: 0 0 12px 0 rgb(32 46 60 / 6%);
    padding: 10px;
    width: 85%;
    margin: -30px auto;
    position: relative;
    text-align: center;
}

.about-team-sec .about-team-item .about-team-content-wrapper h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.about-team-sec .about-team-item .about-team-content-wrapper h3 {
    color: #6e6e6e;
    font-weight: 100;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-award-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.about-award-item h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #333;
}

/* about us ended here */
/* industries started here */
.op-grid-item {
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 5px;
    position: relative;
}

.op-grid-item .op-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000bf, transparent);
}

.op-grid-heading {
    width: 100%;
    height: 24px;
    border-left: 5px solid var(--theme-color);
    padding-left: 10px;
    margin-bottom: 10px;
    padding-top: 3px;
}

.op-grid-heading h3 {
    color: #fff;
    font-weight: 200;
}

.op-grid-text {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.op-grid-text p {
    color: #fff;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-grid-text .op-btn {
    background: #fff;
    padding: 3px 9px;
    border-radius: 3px;
    color: #313a92;
    width: fit-content;
    line-height: 22px;
    font-size: 14px;
    font-weight: 600;
}

.op-grid-content {
    padding: 20px;
    position: absolute;
    transition: all 0.5s ease-in-out;
    transform: translateY(282px);
    overflow: hidden;
}

.op-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.op-grid-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-grid-item:hover .op-grid-content {
    top: auto;
    transform: translateY(186px);
}

.op-grid-item:hover .op-grid-text {
    opacity: 1;
}

.op-grid-item:hover .op-grid-bg {
    transform: scale(1.1);
}

.ind-client-section .ind-client-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.ind-client-section .ind-client-flex .ind-client-item {
    background: #fff;
    border: 1px solid #eee;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ind-client-section .ind-client-flex .ind-client-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* industries ended here */
/* blog started here */
.single-blog {
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 30px;
}

.single-blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear,
            left top,
            left bottom,
            from(rgba(255, 0, 0, 0)),
            to(rgba(14, 1, 41, 0.99)));
    background-image: linear-gradient(to bottom,
            rgba(255, 0, 0, 0),
            rgba(14, 1, 41, 0.99));
}

.single-blog img {
    max-width: 100%;
    height: 265px;
    object-fit: cover;
}

.single-blog span {
    background-color: #ffffff;
    color: #212121;
    position: absolute;
    top: 20px;
    left: 0;
    padding: 8px 20px;
    font-weight: 600;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.single-blog .blog-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
}

.single-blog .blog-content .date {
    color: #ffffff;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.single-blog .blog-content .date i {
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 25px;
}

.single-blog .blog-content h3 {
    margin-bottom: 12px;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    line-height: 1;
    color: var(--theme-color);
    font-weight: 500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
}

.blog-view-banner-wrapper {
    width: 100%;
    height: auto;
}

.blog-view-banner-wrapper img {
    width: 100%;
    height: auto;
}

.blog-view-content-wrapper {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    padding: 15px;
}

.blogs-grid-sec .blog-view-date-wrapper ul {
    padding-left: 0;
    margin-bottom: 15px;
    list-style-type: none;
}

.blogs-grid-sec .blog-view-date-wrapper ul li {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    margin-right: 21px;
    font-size: 15px;
}

.blogs-grid-sec .blog-view-date-wrapper ul li:not(:last-child):before {
    content: "";
    position: absolute;
    top: 14px;
    right: -15px;
    width: 6px;
    height: 1px;
    background: var(--theme-color);
}

.blogs-grid-sec .blog-view-date-wrapper ul li span {
    display: inline-block;
    color: var(--theme-color);
    font-weight: 600;
}

.blogs-grid-sec .blog-view-date-wrapper ul li p {
    display: inline-block;
    color: #666666;
    font-size: 13px;
    margin-bottom: 0px;
}

.blogs-grid-sec .blog-view-date-wrapper ul li:last-child {
    margin-right: 0;
}

.article-content-wrapper h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.article-content-wrapper p:last-child {
    margin-bottom: 0px;
}

.blog-view-side-bar .recent-post-flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-view-side-bar .recent-post-flex .recent-post-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px;
    padding: 5px;
}

.blog-view-side-bar .recent-post-flex .recent-post-item .recent-post-item-img-wrapper {
    width: 80px;
    height: 80px;
}

.blog-view-side-bar .recent-post-flex .recent-post-item .recent-post-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-view-side-bar .recent-post-flex .recent-post-item .recent-post-item-content-wrapper {
    flex: 1;
}

.blog-view-side-bar .recent-post-flex .recent-post-item .recent-post-item-content-wrapper span i {
    color: var(--theme-color);
}

.blog-view-side-bar .recent-post-flex .recent-post-item .recent-post-item-content-wrapper h3 {
    margin-bottom: 0px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.blog-view-side-bar h2 {
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.blog-view-side-bar h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-color), transparent);
    bottom: -3px;
    left: 0px;
}

/* blog ended here */

/* contact us started here */
.contact-us-outer-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
}

.contact-us-left-details {
    width: 40%;
    background: var(--theme-color);
    color: #fff;
    padding: 22px;
    min-height: 50vh;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 30px;
}

.contact-us-left-details:before {
    right: -28px;
    top: 22%;
    content: "";
    background: #eb9515;
    width: 100px;
    height: 100px;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.contact-us-left-details:after {
    position: absolute;
    right: -45px;
    bottom: -60px;
    content: "";
    width: 200px;
    height: 200px;
    background: #eb9515;
    border-radius: 50%;
    z-index: -1;
}

.contact-header h2 {
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 11px;
    color: #fff;
}

.contact-us-left-details .contact-header p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-us-left-details ul {
    font-size: 14px;
}

.contact-us-left-details ul li {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 19px;
}

.contact-us-left-details ul li i {
    font-size: 21px;
    background: #ffffff52;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-left-details ul li span {
    flex: 1;
}

.contact-us-left-details .contact-footer {
    display: flex;
    gap: 20px;
}

.contact-us-left-details .contact-footer a {
    color: #fff;
    font-size: 23px;
}

.contact-us-right-form {
    flex: 1;
}

.contact-us-btn {
    background: var(--theme-color);
    color: #fff;
    padding: 5px 10px;
    margin-top: 20px;
}

.contact-us-right-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 10px;
}

/* contact us ended here */
/* gallery started here */
.tab-container {
    width: 100%;
    min-height: 300px;
    background-color: #fff;
}

.tabs {
    display: flex;
    justify-content: center;
}

.tabs button {
    width: 150px;
    padding: 10px 20px;
    border: 1px solid #fc7904;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #fc7904;
    color: #fff;
    opacity: 0.9;
}

.tabs button:hover {
    opacity: 1;
}

.tabs .non-active {
    opacity: 0.6;
}

.tab-content {
    padding: 10px 20px;
}

.hidden {
    display: none;
}

.tab.gallery-image-tab {
    border-radius: 15px 0 0 15px;
}

.tab.gallery-video-tab {
    border-radius: 0 15px 15px 0;
}

/* mplus */
.gallery-grid-container-flex {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 15px;
}

.gallery-grid-container-flex .gallery-grid-img-wrapper {
    width: 100%;
    height: auto;
    /* height: 220px; */
    position: relative;
    z-index: 1;
}

.gallery-grid-container-flex .gallery-grid-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s all ease-in-out;
}

.gallery-grid-container-flex .gallery-grid-container-item:hover img {
    filter: grayscale(0.5);
}

.gallery-grid-container-flex .gallery-grid-container-item {
    position: relative;
    overflow: hidden;
}

.gallery-grid-container-flex .gallery-grid-container-item .gallery-grid-content {
    position: absolute;
    left: 0px;
    bottom: 2px;
    z-index: 2;
    border-left: 5px solid var(--theme-color);
    padding-left: 10px;
    transition: 0.5s all ease-in-out;
    transform: translateX(-107%);
}

.gallery-grid-container-flex .gallery-grid-container-item .gallery-grid-content h5 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
}

.gallery-grid-container-flex .gallery-grid-container-item .gallery-grid-content p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
}

.gallery-grid-container-flex .gallery-grid-img-wrapper::after {
    content: "";
    width: 100%;
    height: 67%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(360deg, #000000c4, transparent);
    transition: 0.5s all ease-in-out;
    display: none;
}

.gallery-grid-container-flex .gallery-grid-container-item:hover .gallery-grid-content {
    transform: translateX(0);
}

.gallery-grid-container-flex .gallery-grid-container-item:hover .gallery-grid-img-wrapper::after {
    display: block;
}

.top-banner-content-wrapper a {
    color: #fff;
}

.gallery-video-youtube-video iframe {
    height: 200px;
    margin-bottom: 20px;
}

/* gallery ended here */
/* terms started */
.terms-content {
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px;
    padding: 15px;
}

.terms-content .terms-inner p {
    margin-bottom: 10px;
}

/* terms ended */
/* posh started */
.posh-sec {
    background: #b5b4b4;
}

.posh-sec .posh-top-banner-flex {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.posh-top-banner-left,
.posh-top-banner-right {
    flex: 1;
}

.posh-top-banner-right h1 {
    font-size: 64px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.posh-top-banner-right h1 span {
    background: #fff;
    padding: 0 10px;
    color: #b5b4b4;
}

.posh-desc-sec h2 {
    margin-bottom: 5px;
}

/* posh ended */
/* financial started */
.fin-bio-p {
    text-align: center;
    width: 70%;
    margin: auto;
    margin-bottom: 35px;
}

.financial-main-flex {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}

.financial-main-flex .fin-flex-item {
    width: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px;
    border-radius: 20px;
}

.financial-main-flex .fin-flex-item .fin-item-img-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 20px 20px 0 0;
}

.financial-main-flex .fin-flex-item .fin-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.fin-content-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fin-content-wrapper h3 {
    text-align: center;
}

.fin-content-wrapper a {
    background: #000;
    color: #fff;
    padding: 2px 10px;
}

/* financial ended */
/* csr page started */
.csr-vision {
    margin-bottom: 35px;
}

.csr-vision p {
    margin-bottom: 0px;
}

.csr-mission {
    background: #f1f1f1;
    padding: 50px 0;
}

.csr-mission ul {
    max-width: 541px;
    width: 100%;
    height: 269px;
    margin: 0 auto;
    position: relative;
    margin-top: 58px;
}

.csr-mission ul li:nth-child(1) {
    top: 0;
    left: 0;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.csr-mission ul li {
    width: 33.3333333333%;
    float: left;
    height: 50%;
    position: absolute;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 19px;
}

.csr-mission ul li img {
    width: 60px;
}

.csr-mission ul li:nth-child(2) {
    height: 100%;
    top: 0;
    left: 33.3333333333%;
}

.csr-mission ul li:nth-child(3) {
    top: 0;
    left: 66.6666666667%;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
}

.csr-mission ul li:nth-child(4) {
    top: 50%;
    left: 0;
    border-right: 1px solid #000;
}

.csr-mission ul li:nth-child(5) {
    top: 50%;
    left: 66.6666666667%;
    border-left: 1px solid #000;
}

.csr-principle ul.principles-list1 {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #000;
}

.csr-principle ul.principles-list1 li {
    width: 20%;
    float: left;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    border-right: 1px solid #000;
    padding: 35px 20px 34px 20px;
}

.csr-principle ul.principles-list1 li:last-child {
    border-right: 0;
}

.csr-principle {
    margin-top: 50px;
}

.csr-works {
    background: #f1f1f1;
    padding: 50px 0;
}

/* csr page ended */
/* career started */
.career-col-8-bg {
    padding-right: 0px;
}

.career-col-8-bg .job-description-block {
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px;
    padding: 15px;
}

.career-col-8-bg .job-description-block h1 {
    font-size: 22px;
    color: #222;
    /* font-family: cursive; */
    margin-bottom: 5px;
}

.career-col-8-bg .job-description-block p {
    margin-bottom: 10px;
}

.career-col-8-bg .job-description-block h1 span {
    font-size: 50px;
    color: brown;
    text-shadow: 2px 2px #221717d6;
}

.career-sec .career-item {
    margin-bottom: 20px;
}

.career-sec .career-item .career-item-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border: 1px solid #eee;
    padding: 15px;
}

.career-sec .career-item .career-item-wrapper .career-item-left {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-sec .career-item .career-item-wrapper .career-item-left img {
    width: 50px;
}

.career-sec .career-item .career-item-wrapper .career-item-right {
    flex: 1;
}

.career-sec .career-item .career-item-wrapper .career-item-right h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
}

.career-sec .career-item .career-item-wrapper .career-item-right h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.career-sec .career-item .career-item-wrapper .career-item-right h5 span {
    color: #444;
    font-size: 13px;
}

.career-sec .career-item .career-item-wrapper .career-item-right p {
    margin-bottom: 0px;
}

.career-sec .career-item .career-item-wrapper .career-item-right .career-apply-btn {
    margin-top: 10px;
    background: gray;
    color: #fff;
    width: fit-content;
    padding: 10px;
    line-height: 7px;
}

.job-description-block .job-requirement-title {
    margin-bottom: 10px;
}

.job-description-block .job-requirement-desc {
    margin-bottom: 10px;
}

.job-description-block .job-requirement-list {
    margin-bottom: 22px;
    margin-left: 20px;
}

.job-description-block .job-requirement-list li {
    position: relative;
    list-style-type: disc;
}

.job-description-block .job-type-title {
    margin-bottom: 10px;
}

.job-description-block .job-details-title {
    margin-bottom: 10px;
}

.job-apply-form-block {
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 10px;
    padding: 10px 15px;
}

.apply-job-btn {
    margin-top: 10px;
    padding: 5px 10px;
    color: #fff;
    background: gray;
    transition: 0.4s all ease-in-out;
}

.apply-job-btn:hover {
    background: var(--theme-color);
}

.job-apply-form-block .form-group {
    margin-bottom: 10px;
}

/* career ended */
/* client page started */
.client-flex-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.client-flex-container .client-flex-item h3 {
    margin-bottom: 10px;
}

.client-div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.client-name {
    width: 18%;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-name img {
    height: 85px;
    border-radius: 5px;
    object-fit: contain;
}

/* client page ended */
/* rqst a quote started */
.reqst-a-quote-Modal .modal-dialog {
    max-width: 100vw;
    margin: 0px;
}

.reqst-a-quote-Modal .modal-dialog .modal-content {
    border-radius: 0px;
    height: 100vh;
    /* background: url('../images/other/rqst-bg.jpg'); */
    background: url("../images/other/get-quote.JPG");
    background-size: cover;
    background-repeat: no-repeat;
}

.reqst-a-quote-Modal .modal-body {
    padding: 0px;
    background: #00000094;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reqst-a-quote-Modal .modal-body .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 1;
    background: #0009;
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 30px;
    padding: 0px;
}

.reqst-a-quote-Modal .modal-body .rqst-quote-modal-right {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 32px rgb(0 0 0 / 37%);
    border-radius: 9px;
    width: 600px;
    padding-left: 200px;
    position: relative;
}

.reqst-a-quote-Modal .modal-body .rqst-quote-modal-right h2 {
    font-size: 20px;
    font-weight: 500;
    color: #3f3f3f;
    width: fit-content;
    position: relative;
}

.reqst-a-quote-Modal .modal-body .rqst-quote-modal-right h2:after {
    content: "";
    position: absolute;
    width: 78%;
    height: 2px;
    left: 0px;
    bottom: -5px;
    background: linear-gradient(90deg, var(--theme-color), transparent);
}

.reqst-a-quote-Modal .modal-body .rqst-quote-modal-right .form-group {
    margin-bottom: 10px;
}

.reqst-a-quote-Modal .modal-body .rqst-quote-modal-right .form-group .form-control {
    font-size: 15px;
    line-height: 15px;
    border-radius: 0px;
}

.reqst-a-quote-Modal .modal-body .rqst-quote-modal-right .form-group .form-control:focus {
    box-shadow: none;
}

.rqst-quote-modal-right img {
    position: absolute;
    left: -95px;
    width: 210px;
    bottom: 87px;
}

.rqst-quote-modal-right .contact-us-btn.form-control {
    border: none;
    padding: 10px !important;
}

.rqst-a-quote-mob {
    background: #000;
    color: #fff;
    font-size: 16px;
    display: flex;
    width: 185px;
    gap: 12px;
    align-items: center;
    padding: 10px;
    position: fixed;
    top: 240px;
    right: -142px;
    padding-right: 40px;
    border-radius: 5px;
    z-index: 99;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 51%);
}

.rqst-a-quote-mob i {
    color: var(--theme-color);
    font-size: 22px;
}

.rqst-a-quote-mob:hover {
    transform: translateX(-110px);
    color: #fff;
}

/* rqst a quote ended */
/* certification started */
.swiper-container.photo-container {
    position: relative;
}

.photo-container .certificate-slide {
    display: flex;
    justify-content: center;
}

.photo-wrapper {
    overflow: hidden;
}

.photo-container .certificate-slide .certificate_inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.photo-container .swiper-button-prev:after,
.photo-container .swiper-button-next:after {
    font-size: 25px;
    font-weight: 600;
}

.CertificateModal .btn-close {
    background: #0009;
    color: #fff;
    position: absolute;
    right: -16px;
    top: -14px;
    opacity: 1;
    font-size: 22px;
    line-height: 22px;
}

.CertificateModal .modal-content {
    background: transparent;
    border: 5px solid #fff;
}

.CertificateModal .modal-content .modal-body {
    padding: 0px;
}

.photo-container .photo-next,
.photo-container .photo-prev {
    color: #000;
}

/* certification ended */
/* services started here */
.corporate-consulting-services-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.corporate-consulting-services-container .corporate-consulting-item {
    width: 32%;
    border: 1px solid #00000038;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    /* padding: 20px; */
    position: relative;
    overflow: hidden;
    gap: 12px;
}

.corporate-consulting-icon-wrapper,
.corporate-consulting-content-wrapper {
    padding: 0px 20px;
    width: 100%;
}


.corporate-consulting-services-container .corporate-consulting-item .services-c,
.corporate-consulting-services-container .corporate-consulting-item:hover .services-w {
    display: block;
    transition: 0.5s all ease-in-out;
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    margin-top: 20px;
}

.corporate-consulting-services-container .corporate-consulting-item .services-w,
.corporate-consulting-services-container .corporate-consulting-item:hover .services-c {
    display: none;
    transition: 0.5s all ease-in-out;
}

.corporate-consulting-services-container .corporate-consulting-item p {
    margin-bottom: 0px;
    transition: 0.5s all ease-in-out;
    padding: 10px 0px;
    text-align: left;
}

.corporate-consulting-services-container .corporate-consulting-item h2 {
    font-size: 19px;
    margin-bottom: 10px;
    transition: 0.5s all ease-in-out;
    text-align: justify;
}

.corporate-consulting-services-container .corporate-consulting-item .corporate-consulting-bg {
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    position: absolute;
    z-index: -1;
    transform: translate(100%, 50%);
    rotate: 10deg;
    transition: 0.5s all ease-in-out;
}

.corporate-consulting-services-container .corporate-consulting-item:hover .corporate-consulting-bg {
    transform: translate(0);
    rotate: 0deg;
}

.corporate-consulting-services-container .corporate-consulting-item:hover p,
.corporate-consulting-services-container .corporate-consulting-item:hover h2 {
    color: #000;
}

/* physical guarding */
.Services-video-Modal iframe {
    height: 350px;
}

.dtr-video-wrapper {
    position: relative;
}

.dtr-video-wrapper-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dtr-video-button {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
}

.video-button-white .dtr-video-button-wrap-inner {
    background-color: var(--theme-color);
}

.dtr-video-button-wrap-inner {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 99;
}

.dtr-video-button-wrap-inner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    display: inline-block;
    z-index: 99;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.video-button-white .dtr-border-animation {
    border-color: #fff;
}

.dtr-border-animation {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-width: 1px;
    border-style: solid;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    animation: pulse-border 4s linear 0s infinite;
    -webkit-animation: pulse-border 4s linear 0s infinite;
    -ms-animation: pulse-border 4s linear 0s infinite;
    -o-animation: pulse-border 4s linear 0s infinite;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    z-index: 9;
}

@keyframes pulse-border {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    20% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2.6);
        -moz-transform: scale(2.6);
        -o-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
    }
}

.dtr-border-2 {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

.dtr-video-button::after {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -16px;
    margin-left: -5px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: "\f04b";
    font-size: 16px;
    line-height: 32px;
    z-index: 99;
    font-weight: 900;
    color: #fff;
}

.Services-video-Modal .modal-dialog {
    max-width: 750px;
    height: auto;
}

.Services-video-Modal .modal-dialog .modal-content .modal-body {
    padding: 0px;
    position: relative;
}

.Services-video-Modal .modal-dialog .modal-content {
    border: none;
    background-color: transparent;
}

.Services-video-Modal .modal-dialog .modal-content .modal-body iframe {
    border: 5px solid #fff;
    border-radius: 5px;
}

.Services-video-Modal .modal-dialog .modal-content .modal-body .btn-close {
    position: absolute;
    right: -11px;
    top: -11px;
    background: #fff;
    opacity: 1;
    border-radius: 9px 9px 9px 0;
    color: #000;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

/* ICCC */
.command-centre-process-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-top: 50px;
}

.command-centre-process-container .command-centre-process-item {
    /* border: 1px solid #000; */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
}

.command-centre-process-container .command-centre-process-item .services-c {
    display: block;
}

.command-centre-process-container .command-centre-process-item .services-w {
    display: none;
}

.command-centre-process-container .command-centre-process-item .command-centre-content-wrapper h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.command-centre-process-container .command-centre-process-item .command-centre-content-wrapper p {
    margin-bottom: 0px;
}

.command-centre-process-container .command-centre-process-item .command-centre-icon-wrapper {
    border: 1px solid #ddd;
    padding: 5px;
    width: fit-content;
}

.command-centre-process-container .command-centre-process-item .command-centre-abs-arrow {
    width: 90px;
    position: absolute;
    right: -75px;
}

.command-center-contact-section {
    background: url("../images/services/get-in-touch-background.JPG");
    width: 100%;
    height: 360px;
    margin: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.command-center-contact-section .command-center-contact-overlay {
    background-color: #0b0b1bcf;
    width: 100%;
    height: 100%;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container {
    width: 100%;
    height: 360px;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item {
    height: calc(100% + 80px);
    width: 45%;
    background: url("../images/services/DSC_0697.JPG");
    margin-top: -40px;
    background-repeat: no-repeat;
    background-size: cover;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay {
    width: 100%;
    height: 100%;
    background: #e88b00c2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay span.c_icon::after {
    border: none;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay span.c_icon::before {
    border: none;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay span.c_icon {
    /* border: 3px solid #1c1b18; */
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #e87b1c;
    font-size: 25px;
    box-shadow: rgba(0 0 0 /42%) 0px 0px 0px;
    top: 20px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay .c_icon_number {
    /* border: 1px solid #ffffff59; */
    padding: 30px 10px;
    background: #ffffff1f;
    font-size: 30px;
    display: block;
    width: 80%;
    text-align: center;
    /* margin: 0px -18px; */
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay h2 {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay span {
    color: #fff;
    position: relative;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay span::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 1.5px;
    border-top: 2px dashed #fff;
    left: -65px;
    top: 13px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay span::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 1.5px;
    border-top: 2px dashed #fff;
    right: -65px;
    top: 13px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay h1,
.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-left-item .command-center-contact-left-item-overlay a {
    color: #fff;
    margin-bottom: 0px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-right-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-right-item h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-right-item h1 {
    color: #fff;
    font-size: 40px;
}

.command-center-contact-section .command-center-contact-overlay .command-center-contact-main-container .command-center-contact-right-item p {
    color: #fff;
    margin-bottom: 0px;
}

/* cyber security */
.cyber-banner-top {
    height: 400px;
    padding-left: 50px;
    width: auto;
}

.cyber-security-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cyber-security-container .cyber-security-item {
    width: 32%;
    background: #000000f5;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-radius: 3px;
    border-bottom: 4px solid transparent;
    transition: 0.5s all ease-in-out;
}

.cyber-security-container .cyber-security-item .cyber-security-icon-wrapper {
    padding: 12px 16px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 23px;
    background: #202020;
    width: fit-content;
    transition: 0.5s all ease-in-out;
}

.cyber-security-container .cyber-security-item .cyber-security-content-wrapper h2 {
    color: #999989;
    margin-bottom: 10px;
    font-size: 19px;
    transition: 0.5s all ease-in-out;
}

.cyber-security-container .cyber-security-item .cyber-security-content-wrapper p {
    color: #999989;
    margin-bottom: 0px;
    transition: 0.5s all ease-in-out;
}

.cyber-security-container .cyber-security-item:hover .cyber-security-icon-wrapper {
    background-color: var(--theme-color);
}

.cyber-security-container .cyber-security-item:hover img {
    filter: brightness(0) invert(1) !important;
}

.cyber-security-container .cyber-security-item:hover h2,
.cyber-security-container .cyber-security-item:hover p {
    color: #fff;
}

.cyber-security-container .cyber-security-item:hover {
    background-image: linear-gradient(143deg,
            var(--theme-color) -24%,
            #000 20%);
    border-bottom: 4px solid var(--theme-color);
}

.command-center-contact-right-item .command-center-right-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.command-center-contact-right-item .command-center-right-container .command-center-right-item {
    width: 30%;
    border: 1px solid #dddddd59;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 30px 10px 10px 10px;
    position: relative;
    margin-top: 30px;
}

.command-center-right-icon-wrapper {
    position: absolute;
    top: -35px;
    left: 0;
    bottom: 0;
    right: 0;
}

.command-center-right-icon-wrapper img {
    width: 60px;
    height: 60px;
}

.command-center-contact-right-item .command-center-right-container .command-center-right-item h3 {
    color: #fff;
    font-weight: 100;
    font-size: 15px;
    margin-bottom: 0px;
}

/* services ended here */

.single-testimonial .client-comment .testominal-desc {
    height: 310px !important;
}

.footer-sec {
    padding-bottom: 20px !important;
}

.no-img-available {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0px;
    font-size: 30px;
    opacity: .3;
}

.no-img-available i {
    margin-bottom: 15px;
    font-size: 70px;
}

.preloader {
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    bottom: 0;
    background: #000;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    height: 100vh;
}

.re-page-loader {
    background: rgb(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999
}

.re-page-loader-inner {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    transform: translatey(-50%);
    text-align: center;
    width: 100px
}



.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 14px;
    width: 100%;
    height: 100%;
}

.loading-ellipsis {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 30px;
    margin-right: 12px;
}

.loading-ellipsis div {
    position: absolute;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);

}

.loading-ellipsis div:nth-child(1) {
    left: 6px;
    animation: loading-ellipsis1 1s infinite
}

.loading-ellipsis div:nth-child(2) {
    left: 6px;
    animation: loading-ellipsis2 1s infinite
}

.loading-ellipsis div:nth-child(3) {
    left: 26px;
    animation: loading-ellipsis2 1s infinite
}

.loading-ellipsis div:nth-child(4) {
    left: 45px;
    animation: loading-ellipsis3 1s infinite
}

@keyframes loading-ellipsis1 {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes loading-ellipsis3 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(0)
    }
}

@keyframes loading-ellipsis2 {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(19px, 0)
    }
}

.preloader .loader img {
    height: 55px;
}

header,
.about-us-sec,
.service,
.testimonial-sec,
.blog-sec {
    overflow: hidden;
}

.hd-rgt li a:hover {
    color: #e88b00;
}

.contact-title {
    margin-top: 70px;
    margin-bottom: 50px;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}

.get-in-touch-box {
    width: 85%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 70px;
}

.get-in-touch-box .contact-details-box {
    width: 100%;
    border: 3px solid #fff;
    position: relative;
}

.get-in-touch-box .contact-details-box img {
    position: absolute;
    width: 70px;
    background: #000;
    height: 70px;
    top: -12px;
    padding: 16px;
    left: 10px;
}

.get-in-touch-box .contact-details-box p {
    margin-bottom: 0px;
    padding: 10px 0px;
    margin-left: 90px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}

.csr-edu-section .csr-edu-title h1 {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.csr-edu-section .csr-edu-img-box {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-edu-section .csr-edu-img-box img {
    width: 35%;
    height: 300px;
    object-fit: cover;
    margin-right: 10px;
    margin-left: 10px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
}


/* Shubham Css Start 19-10 */
.join-content {
    padding: 20px;
    background: aliceblue;
    margin-bottom: 10px;
}
.join-content span{
    font-size: 30px;
    font-weight: 800;
    padding: 5px;
}

/* New Banner Start*/
.myNewBannerSwiper {
    position: unset;
}
.myNewBannerSwiper .banner-img{
    position: relative;
}
.myNewBannerSwiper .banner-img img{
    height: 80vh;
    width: 100%;
    object-fit: cover;
}
.myNewBannerSwiper .slider-text{
    position: absolute;
}

.myNewBannerSwiper .slider-text h1{
    animation-name: backInDown;
}
/* .myNewBannerSwiper .animate__animated.animate__bounce {
    --animate-duration: 2s;
    animation: bounce;
    animation-duration: 2s;
  } */

  .myNewBannerSwiper .slider-text h1 {
    animation: BannerHeader 1s ease 0s 1 normal forwards  !important;
  }
  @keyframes BannerHeader {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: scale(0);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(1);
	}

	55% {
		animation-timing-function: ease-in;
		transform: scale(0.7);
	}

	72% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}

	81% {
		animation-timing-function: ease-in;
		transform: scale(0.84);
	}

	89% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}

	95% {
		animation-timing-function: ease-in;
		transform: scale(0.95);
	}

	100% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}
/* New Banner End*/