/*
@font-face {
    font-family: 'HelveticaNeueLTProRoman';
    src: url('../fonts/HelveticaNeueLTProRoman.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueLTProBd';
    src: url('../fonts/HelveticaNeueLTProBd.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueLTProBdCn';
    src: url('../fonts/HelveticaNeueLTProBdCn.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueLTProHvCn';
    src: url('../fonts/HelveticaNeueLTProHvCn.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueLTProMd';
    src: url('../fonts/HelveticaNeueLTProMd.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/


html,
body {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin-left: 0;
    /*    font-family: 'HelveticaNeueLTProRoman';*/
    font-family: 'Roboto', sans-serif;
    margin-right: 0;
    background-color: #ffffff;
    font-weight: 400;
    color: #000000;
    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0px;
    /*    font-family: 'HelveticaNeueLTProBd';*/
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 14px;
}

a {
    color: #000;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

a:focus,
a:hover {
    color: #ED3349;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

footer a:hover {
    color: #fff;
}

a:hover,
a:focus,
.btn.active,
.btn:active {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #fff;
    background: transparent;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    max-width: 100%;
}

.bold-text {
    font-weight: 700;
}

.nopadding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.clear {
    clear: both;
}



.text-white {
    color: #fff !important;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.desk-view {
    display: block;
}

.mob-view {
    display: none;
}

.hide {
    display: none;
}

/*btn css*/

.po-re {
    position: relative;
}

.btn-all {
    border-radius: 10px !important;
    min-width: 160px;
    padding: 8px 20px 8px 20px;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    background: transparent;
    /*font-family: 'HelveticaNeueLTProMd';*/
}

.btn-bordered {
    border: 1px solid #DE4019;
    background: transparent;
    color: #DE4019;
}

.btn-bordered:hover,
.btn-bordered:focus {
    border-color: #DE4019;
    background: transparent !important;
    color: #DE4019;
}

.btn.btn-black-bordered {
    border-color: #433F3C;
    color: #000;
}

.btn.btn-white-bordered {
    border-color: #fff;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-black {
    background: #000;
    color: #fff;
}

/*preloader css*/

#preloader {
    height: 100vh;
    width: 100vw;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999999999999
}

.loader-block {
    width: 200px;
    height: 100px;
    display: inline-block;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@-webkit-keyframes dot-keyframes {
    0% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    100% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes dot-keyframes {
    0% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    100% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.loading-dots {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.loading-dots--dot {
    -webkit-animation: dot-keyframes 1.5s infinite ease-in-out;
    animation: dot-keyframes 1.5s infinite ease-in-out;
    background-color: #636466;
    border-radius: 10px;
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loading-dots--dot:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading-dots--dot:nth-child(3) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

/*preloader css end*/


.owl-theme .owl-dots .owl-dot {
    background: transparent;
    border: none;
    padding: 0px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e4e4e4 !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #3a1e58 !important;
}

#owl-main.owl-theme .owl-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-space {
    padding: 100px 0px;
}

/*flex*/

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-justify-center {
    -ms-flex-line-pack: justify;
    align-content: justify;
}

.flex-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*float: right;*/
}

.flex-inverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*flex end*/

ul.footer-links {
    list-style-type: none;
    padding-left: 0px;
}

.footer-links a {
    /*color: #fff; */
    color: rgb(255 255 255 / 50%);
    /*letter-spacing: 1px;*/
    font-size: 15px;

}

.mg-0 {
    margin: 0px !important;
}

ul.footer-links li {
    margin-bottom: 8px;
    padding-right: 10px;
}

.social-links {
    padding-left: 0px;
    text-align: left;
}

ul.social-links li {
    display: inline-block;
    margin: 0px 5px 0px 0px;
}

ul.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.social-links li a {
    display: block;
    width: 25px;
    height: 25px;
    background: #fff;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
}

ul.social-links li i {
    color: #323050;
    font-size: 18px;
}

ul.social-links li a:hover {
    background: #d94320;
    color: #fff;
}

ul.social-links li a:hover i {
    color: #fff;
}

span.navbar-toggler-icon {
    background: #d94320;
    display: grid;
    border: 1px solid #000;
}

span.line {
    border: 1px solid #fff;
    display: block;
}

footer p {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 400;
}

/*header*/


/*header end*/
a.logo img {
    width: 200px;
}

.navbar-nav {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    width: 100%;
}

header li.nav-item {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header a.nav-link {
    color: #000;
    padding: 10px 55px;
    margin: 0px 7px;
    font-size: 14px;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#collapsibleNavbar {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*    height: 100%;*/
}

.navbar {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: rgb(255 255 255 / 100%);
    border-radius: 10px;
    padding: 0 20px;
}

.btn.btn-red {
    background: #d94320;
    color: #fff;
}

.btn.btn-login {
    margin-left: 10px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    padding: 17px 0px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #fff !important;
}

/*banner section*/
.home-banner {
    background-image: url('../img/home/mob-1-300.jpg');
    height: 60vh;
    background-size: contain;
    background-position: bottom center;
    /*margin-top: 56px;*/
    background-repeat: no-repeat;
}
.banner-caption {
    position: absolute;
    top: 50%;
    left: 6%;
    width: 35%;
    padding: 0px 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    text-align: left;
    color: #fff;
}

p.animated.banner-text {
    width: 65%;
}

.img-banner {
    position: relative;
    width: 100%;

}

.img-banner img {
    width: 100%;
}

.banner-caption h1 {
    font-size: 46px;
    color: #fff;
    /*    font-family: 'HelveticaNeueLTProBdCn';*/
    font-family: 'Roboto', sans-serif;
}

.main-title {
    color: #ED3349;
    font-size: 64px;
    line-height: 70px;
    font-weight: 800;

}

.section-title {
    color: #433F3C;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    /*    font-family: 'HelveticaNeueLTProBdCn';*/
    font-family: 'Roboto', sans-serif;
}

/*swiper*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*swiper end*/

/*slick slider home*/
@media (min-width: 992px) {

    .slider,
    .slide {
        height: 100vh;
    }
}

.slide {
    position: relative;
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        height: 100%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.slide .slide__img img {
    /*max-width: 100%;*/
    width: 100%;
    /*height: auto;*/
    height: 100%;
    -o-object-fit: revert;
    object-fit: revert;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}


.slide .slide__content--headings .animated {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-transition: opacity 0.5s ease 0.3s;
    transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slick-dots li {
    position: relative;
    display: inline-block;
    /* margin: 0 5px; */
    padding: 0;
    cursor: pointer;
    height: 8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 9px;
    border-radius: 50%;
    background: #d94320;
}

.slick-dots li.slick-active {
    width: 70px;
    display: inline-block;
    background: #fff;
    border-radius: 50px;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.slick-next,
.slick-prev {
    top: auto;
    bottom: 17px;
}

.slick-next {
    right: 42%;
}

.slick-prev {
    left: 42%;
    z-index: 1;
}

.slick-arrow.slick-next {
    /*right: 0;*/
    background: url("../img/next.png") 0 0 / 100% no-repeat;
    background-size: contain;
}

.slick-arrow.slick-prev {
    background: url(../img/prev.png) 0 0 / 100% no-repeat;
    background-size: contain;
}

.slick-next:before,
.slick-prev:before {
    content: none;
}

/*slick slider home end*/



.single-app {
    text-align: center;
    padding: 30px 20px;
}

.single-app p {
    margin: 0;
}

.app-icon {
    margin-bottom: 20px;
}

.single-app a {
    margin-top: 20px;
}

.home-media-slide {
    /*padding: 22px;*/
    /*margin: 22px;*/
    border-radius: 10px;
    overflow: hidden;
    /*border: 1px solid #e0e0e0;*/
    /*    -webkit-box-shadow: 0px 15px 37px -15px #bebebe;*/
    /*    box-shadow: 0px 15px 37px -15px #bebebe;*/
}

.home-insight .home-media-slide {
    /*padding: 22px;*/
    /*margin: 22px;*/
    border-radius: 10px;
    overflow: hidden;
    /*border: 1px solid #e0e0e0;*/
    -webkit-box-shadow: 0px 15px 37px -15px #bebebe;
    box-shadow: 0px 15px 37px -15px #bebebe;
}

.media-image img {
    width: 100%;
}

span.media-tag {
    background: #de4019;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
    display: block;
    margin-top: -11px;
    margin-bottom: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 1;
    position: relative;
}

.media-text {
    padding: 0px 45px 20px;
    background: #fff;
}

h3.title-media {
    /*    font-family: 'HelveticaNeueLTProBd';*/
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

p.media-content {
    font-size: 18px;
    line-height: 22px;
}

span.block-date {
    font-size: 12px;
}

#media-slider {
    margin-top: 50px;
}

.media-tabs.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    background: #433f3c;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    width: 400px;
}

ul.nav.nav-tabs.media-tabs li {
    width: 50%;
    border-right: 1px solid #9e9e9e;
}

ul.nav.nav-tabs.media-tabs li a {
    color: #fff;
    opacity: 0.7;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 18px;
}

ul.nav.nav-tabs.media-tabs li:last-child {
    border-right: none;
}

ul.nav.nav-tabs.media-tabs a.nav-link.active {
    color: #fff;
    opacity: 1;
}

ul.news__dots-list {
    background: #d94320;
    list-style-type: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-left: 0px;
    margin-bottom: 0px;
    border-radius: 10px;
    margin-right: 5px;
}

ul.news__dots-list li {
    padding: 5px 15px;
    color: #f09a9a;
}

ul.news__dots-list li.slick-active {
    color: #fff;
}

.media-dots-container {
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    background: #d94320;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    float: right;
    border-radius: 50px;
    overflow: hidden;
    padding: 10px 30px;
}

.news__dots {
    border-right: 1px solid #fff;
}

.black-background {
    background: #000;
}

/*philosophy home*/
.single-philosophy {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    background: transparent;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
}

.single-philosophy:hover {
    /*flex-direction: column;*/
}

.philosophy-top {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.single-philosophy:hover .philosophy-top {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.philosophy-blocks {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.single-philosophy:hover {
    background: rgb(255 255 255 / 20%);
}

.expand-block {
    padding: 10px 0px;
    /*display: none;*/
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    /*transform: scaleY(0);  */
    opacity: 0;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    position: relative;
}

.expand-block:after {
    position: absolute;
    background: #000;
    top: 0px;
    left: 0px;
    /*content: "";*/
    width: 100%;
    height: 0%;
    /* border-radius: 50px; */
}

.single-philosophy:hover .expand-block:after {
    height: 100%;
}

.single-philosophy:hover .expand-block {
    display: block;
    /*transform: scaleY(1);*/
    opacity: 1;

}

/*
.single-philosophy:hover .philosophy-icon {
    -webkit-filter: brightness(100);
    filter: brightness(100);
}
*/

.philosophy-icon {
    padding: 10px 0px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    /*height: 150px;*/
}

.philosophy-icon img {
    height: 100px;
    width: auto;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.philosphy-title {
    padding: 20px 0px;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.philosphy-title h3 {
    font-size: 18px;
}

.philosophy-blocks {
    /*min-height: 350px;*/
}

/*philosophy home end*/
.form-subscribe {
    max-width: 600px;
    /* margin:0 auto; */
    /* float: left; */
}

.form-subscribe .form-control {
    background-color: #ffffff;
    padding-left: 24px;
    padding-right: 50px;
    letter-spacing: 1px;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    height: 50px;
}

span.subscribe-left {
    padding-right: 10px;
    font-size: 12px;
    text-align: right;
}

.form-subscribe .form-control.focus,
.form-subscribe .form-control:focus {
    z-index: 2;
    /* background-color:hsla(0,0%,100%,.8); */
}

.form-subscribe .btn {
    /* border-top-right-radius:36px; */
    /* border-bottom-right-radius:36px; */
    background: #de4019;
    color: #fff;
    border-color: #de4019;
    height: 100%;
    border-radius: 15px;
    padding: 5px 20px;
}

.sm-section {
    padding: 60px 0px 0px;
}

.block-title {
    font-size: 18px;
}

/*why iti section*/
.single-why-iti {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*border-right: 1px solid #8d8d8d;*/
    align-items: center;
    display: flex;
    padding: 20px 10px;
    min-height: 180px;
    margin: 20px 0px;
    border-radius: 20px;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.play-img img {
    width: 100%;
}

.why-iti-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
}

.why-iti-icon img {
    /* width: 100px; */
    height: auto;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.why-iti-icon {
    padding: 20px;
}

.why-iti-title {
    width: -webkit-fill-available;
    width: 45%;
}

.expand-block-why-iti {
    /* width: 0%; */
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.single-why-iti:hover .why-iti-left {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.single-why-iti:hover .expand-block-why-iti {
    opacity: 1;
}

/*why iti section end*/
.vert-line {
    position: absolute;
    width: 0.3px;
    height: 70%;
    right: -0.5px;
    background: #C6C6C6;
}

.single-why-iti:nth-child(even)::after {
    /*border-left:1px solid #000;*/
    background: transparent;
}

/*.single-why-iti:hover::after{
    border:none!important;
    height: 100%;
}*/
.single-why-iti:hover {
    /*border:1px solid #333;*/
}

.single-why-iti:hover:nth-child(even) {
    border: 1px solid #C6C6C6;
}

.single-why-iti:hover:nth-child(odd) {
    border: 1px solid #C6C6C6;
}

/*footer*/
.footer {
    background: #000;
    padding: 50px;
    padding: 50px;
    /*    border-top: 2px solid #fff;*/
}

.footer-links ul {
    list-style-type: none;
    padding-left: 0px;
}

.footer-links ul li {
    font-size: 12px;
    margin: 12px 0px;
}

.footer-block-left {
    width: 10%;
}

.footer-block-right {
    width: 100%;
    padding-left: 3%;
    border-left: 5px solid #fff;
}

.link-block-footer {
    width: 13.5%;
}

.footer-title {
    color: #fff;
    /*    font-family: HelveticaNeueLTProRoman;*/
    font-family: 'Roboto', sans-serif;
}

/*career css*/
.inner-banner-section .nr-banner .outer-valign .inner-valign {
    display: table-cell;
    vertical-align: middle;
}

.inner-banner-section .nr-banner .outer-valign {
    display: table;
    height: 525px;
    width: 100%;
}

.inner-banner-section .nr-banner .outer-valign .inner-valign h1 {
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-size: 50px;
    font-size: 65px;
    /*    font-family: HelveticaNeueLTProBdCn;*/
    font-family: 'Roboto', sans-serif;
}

.inner-banner-section .nr-banner .outer-valign .inner-valign p {
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.4;
    padding-bottom: 5px;
}

.inner-banner-section .nr-banner {
    /*background-image: url(../img/career/banner-career.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 30% 50%;
    width: 100%;
    background-color: #000;
    height: 525px;
    position: relative;
}

#career .nr-banner {
    background-image: url(../img/career/banner-career.png);
}

#about .nr-banner {
    background-image: url(../img/about/banner-about.png);
}

#about-iti .nr-banner {
    background-image: url(../img/about/about-iti-banner.png);
}

.orange-background {
    background: #DE4019;
}

/*career end*/
/*about iti*/
.orange-block {
    position: absolute;
    width: 50%;
    height: 100%;
    background: #de4019;
    right: 0px;
}

span.big-text {
    font-size: 70px;
    color: #de4019;
}

span.thin-title {
    /*    font-family: 'HelveticaNeueLTProRoman';*/
    font-family: 'Roboto', sans-serif;
}

span.input-group-btn {
    margin-left: -50px;
    z-index: 22;
}

.about-content p {
    font-size: 20px;
}

.only-content p {
    font-size: 20px;
}

.modal-dialog {
    max-width: 750px;

}

.modal-pop-form .modal-dialog {
    max-width: 70%;

}

.modal-pop-form .form-group.col-lg-6 {
    float: left;
}

/*

.wrap-modal-slider {
  padding: 0 30px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wrap-modal-slider.open {
  opacity: 1;
}
*/
/*  POPUP FORM*/
.wrap-modal-slider .intl-tel-input {
    display: block;
}

.modal-pop-form .modal-content {
    background: #FFFFFF;
    border: 1px solid #707070;
    border-radius: 20px;
}

.wrap-modal-slider .form-control {
    border-radius: 10px;
    border: 1px solid #433F3C;
    font-size: 16px;
}

.wrap-modal-slider .form-control::-webkit-input-placeholder {
    font-size: 12px;
    color: #433F3C;
    text-align: center;
}

.wrap-modal-slider .form-control:-ms-input-placeholder {
    font-size: 12px;
    color: #433F3C;
    text-align: center;
}

.wrap-modal-slider .form-control::placeholder {
    font-size: 12px;
    color: #433F3C;
    text-align: center;
}

.wrap-modal-slider h3 {
    color: #DE4019;
    text-align: center;
    padding-bottom: 30px;
}

.wrap-modal-slider .form-control option::-webkit-input-placeholder {
    font-size: 12px;
    color: #433F3C;
    text-align: center;
}

.wrap-modal-slider .form-control option:-ms-input-placeholder {
    font-size: 12px;
    color: #433F3C;
    text-align: center;
}

.wrap-modal-slider .form-control option::placeholder {
    font-size: 12px;
    color: #433F3C;
    text-align: center;
}

.wrap-modal-slider .form-group p {
    text-align: center;
    font-size: 16px;
}

.wrap-modal-slider select {
    margin-bottom: 15px;
}

.wrap-modal-slider .slick-dots li.slick-active {
    width: auto;
    background: #d94320;
}


.wrap-modal-slider .slick-dots {
    bottom: -40px;
}

hr.border-box {
    width: 100%;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 50px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
    padding-left: 0;
    text-align: center;
}

.file-upload-wrapper:before {
    content: "";
    /*    font: normal normal normal 14px/1 FontAwesome;*/
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 0;
    background: #4daf7c;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: 50px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0;
}

.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #DE4019;
    padding: 0px 15px;
    /* padding-left: 40px; */
    display: block;
    width: calc(100% - 0px);
    pointer-events: none;
    z-index: 20;
    height: 50px;
    line-height: 50px;
    color: #fff;
    border-radius: 0;
    /*    font-family: 'HelveticaNeueLTProRoman';*/
    font-family: 'Roboto', sans-serif;
}

a.submit-btn-pop {
    background: #433F3C;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

.btn-linkedin {
    /* background: #0E76A8; */
    border-radius: 10px;
    color: #433F3C;
    border-width: 1px;
    border-style: solid;
    border-color: #433F3C;
    width: 100%;
    font-size: 16px;
    height: 50px;
    line-height: 35px;
}

.btn-linkedin:link,
.btn-linkedin:visited {
    color: #433F3C;
}

.btn-linkedin:active,
.btn-linkedin:hover {
    /* background: #084461; */
    color: #433F3C;
}

.btn-linkedin i {
    position: absolute;
    left: 20%;
    top: 15%;
    font-size: 30px;
    color: #DE4019;
}

.modal-pop-form .modal-body {
    width: 85%;
    padding: 100px 50px;
    margin: 0 auto;
}

/*
.modal-pop-form button.slick-prev.slick-arrow {
    position: absolute;
    top: 50%;
    left: 0%;
}
.modal-pop-form button.slick-next.slick-arrow {
    position: absolute;
    top: 50%;
    right: 0%;
}
*/
.modal-pop-form .slider-arrow.slider-next.slick-arrow {
    position: absolute;
    top: 50%;
    right: -10%;
    z-index: 22;
}

.modal-pop-form .slider-arrow.slider-prev.slick-arrow {
    position: absolute;
    top: 50%;
    left: -10%;
    z-index: 22;
}

.modal-pop-form .slider-arrow i {
    color: #000;
    font-size: 55px;
    z-index: 22;
}

/*  POPUP FORM*/
.header-wrapper {
    position: absolute;
    height: 70px;
    width: 100%;
    background-color: transparent;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    top: 4%;
}

.header-wrapper.scrollNav {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    /*    background: #fff;*/
    z-index: 999;
}

.header-wrapper.scrollNav header {
    /*    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);*/
    /*    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);*/
    border-radius: 10px;
}

.rajesh-box {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, #000));
    background-image: linear-gradient(#fff 50%, #000 50%);
    border-bottom: 9px solid #DE4019;
    padding-bottom: 0;
}

.rajesh-box .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote-txt p {
    color: #fff;
    /*    font-family: HelveticaNeueLTProMd;*/
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 100;
    line-height: 30px;
}

.quote-txt i {
    color: #fff;
}

.rajesh-box-btn a.insight-btn {
    color: #fff;
    background: #de4019;
    padding: 15px 60px;
    border-radius: 46px;
    font-size: 20px;
    width: 35%;
    text-align: center;
}

.rajesh-box-btn {
    padding-top: 50px;
}

.quote-txt {
    padding-top: 50px;
}

.rajesh-box-btn a.team-btn {
    color: #fff;
    background: #de4019;
    padding: 15px 60px;
    border-radius: 46px;
    font-size: 20px;
    margin-left: 20px;
    width: 35%;
    text-align: center;
}

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;

}

.navbar-nav li:hover > ul.dropdown-menu {
    /*    top: 0px;*/
    background: transparent;
    color: #fff;
    border-radius: 20px;
    opacity: 1;
    width: auto;
    text-align: left;
    padding: 20px 20px;
    top: 50px;
    position: absolute;
    border: 0;
    z-index: -1;
}

ul.dropdown-submenu {
    position: relative;

}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    /*left:-100%;*/
    left: -10rem;
    /* 10rem is the min-width of dropdown-menu */
    margin-top: -6px;
}

li.nav-item a.nav-link {
    border-bottom: 2px solid #fff;
}

li.nav-item:hover a.nav-link {
    border-bottom: 2px solid #d94320;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dropdown-menu a.dropdown-item {
    color: #fff;
    font-size: 15px;
    padding: 10px 5px;
    background-color: transparent;
}

.dropdown-menu a.dropdown-item:focus,
.dropdown-menu a.dropdown-item:hover {
    background-color: transparent;
}

.rajesh-content p {
    /*    font-family: 'HelveticaNeueLTProRoman';*/
    font-family: 'Roboto', sans-serif;
    padding-top: 15px;
    font-weight: 500;
}

.quote-txt p {
    font-weight: 400;
}

.home-media .sm-section a.btn-all {
    border-radius: 46px !important;
    padding: 10px 50px;
    font-size: 20px;
}

.home-media .sm-section a.btn-all:hover {
    background: #fff;
    color: #000;
}

.home-insight .sm-section a.btn-all {
    border-radius: 46px !important;
    padding: 10px 50px;
    font-size: 20px;
}

.home-insight .sm-section a.btn-all:hover {
    background: #000;
    color: #fff;
}

.login-wrapper {
    position: relative;
}

.login-box {
    position: absolute;
    right: 0;
    bottom: -60px;
    background: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*    -webkit-box-shadow: 0 3px 10px rgb(217 67 32);*/
    /*    box-shadow: 0 3px 10px rgb(217 67 32);*/
}

.login-box a {
    font-size: 22px;
    font-weight: 600;
}

.footer-title a {
    color: #fff;
    padding-bottom: 10px;
}


.single-philosophy:hover .philosophy-icon img:first-child {
    display: none;
}

.single-philosophy .philosophy-icon img:nth-child(2) {
    display: none;
}

.single-philosophy:hover .philosophy-icon img:nth-child(2) {
    display: block;
    margin: 0 auto;
}

.error {
    color: #fff;
}

.dropdown-menu {
    width: 100%;
}

.more-data {
    display: none;
}

.home-product .row2 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-product .product-txt-wrap h3 {
    font-size: 40px;
}

.footer-newsletter .flex-align-center {
    float: right;
}

.navbar-expand-md .navbar-nav {
    /*    height: 100%;*/
}

.navbarExtention {
    background-color: #000;
    height: 205px;
    width: 100%;
    position: absolute;
    z-index: -22;
    display: none;
    border-radius: 15px;
    top: 48px;
    left: 0;
}

.drop-close {
    display: none;
}

.caret-img {
    color: #cc1919;
    text-shadow: none;
    font-size: 16px;
    padding: 0 5px;
    vertical-align: baseline;
}

.hvr-sweep-to-right {
    display: block;
    /* vertical-align: middle; */
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    /* position: relative; */
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #000;
    color: #fff;
    padding: 20px 50px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
    width: -webkit-max-content;
    width: -moz-max-content;
    /* width: max-content; */
    border-radius: 10px;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d94320;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 10px;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: white;
    padding: 20px 50px;
    border-radius: 10px;
    display: inline-block;
    margin: 0 auto;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 50px;
    margin-top: 50px;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.home-media .all-box.single-content {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
}

.home-media .all-box.single-content a {
    width: 100%;
    padding: 0 10px;
}

.home-media .all-box.single-content a iframe {
    width: 100%;
    height: 321px;
}

.home-media .all-box.single-content .media-content p {
    text-align: center;
    color: #000;
    padding: 10px;
    margin-bottom: 0;
}

.home-media .mediaRow .col-lg-4 {
    padding: 0;
    margin: 0 11px;
    -webkit-box-flex: 30%;
    -ms-flex: 30%;
    flex: 30%;
}

.home-media .all-box.single-content .img-box {
    padding-top: 15px;
    width: 100%;
}

#insight-tab .all-box a {
    width: 100%;
}

input#experience_button {
    color: #fff;
    background-color: #de4019;
    border: none;
    padding: 6px 40px;
    /* height: 40px; */
    display: inline-block;
    /* line-height: 36px; */
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

input#student_button,
.formNextBtn {
    color: #fff;
    background-color: #de4019;
    border: none;
    padding: 6px 40px;
    /* height: 40px; */
    display: inline-block;
    /* line-height: 36px; */
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.credits {
    background-color: #000;
}

.credits p {
    text-align: center;
    margin-bottom: 0;
    padding: 10px 0;
    color: #fff;
}

.credits p a {
    color: #fff;
    text-decoration: underline;
}

/** sliderBtn **/

.sliderBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.sliderBtn button.next {
    /*
    -webkit-box-shadow: -5px 30px 30px rgb(0 0 0 / 45%);
    box-shadow: -5px 30px 30px rgb(0 0 0 / 45%);
*/
    /* opacity: 0.7; */
    outline: none;
    /* display: -webkit-box; */
    display: -ms-flexbox;
    padding: 8px 30px;
    color: #fff;
    font-size: 12px;
    background-color: #DE4019;
    border: 1px solid #DE4019;
    border-radius: 20px;
    cursor: pointer;
}

.sliderBtn .next p {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.sliderBtn .next p span {
    margin-left: 5px;
}

.sliderBtn .next p span img {
    width: 10px;
}

/** sliderBtn **/
h4.modal-title .small {
    display: block;
}
p.alert.alert-error {
    color: #fff;
}
@media only screen and (max-width: 767px){
.login-box a{
    font-size: 12px;
    font-weight: 500;
}
.login-box{
    bottom: -35px;
    right: 33px;
        box-shadow: 0px 12px 12px -12px #c2b1b1;
}
}