@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/**********************************
* Default CSS
***********************************/
html {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
width: 100%;
height: 100%;
}

* {
-webkit-tap-highlight-color: transparent;
border: none;
border-radius: 0;
outline: 0;
line-height: normal;
margin: 0;
padding: 0;
}

body {
-webkit-font-smoothing: antialiased;
font-size: 100%;
}

*, :after, :before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
display: block;
}

nav ul {
list-style: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

a {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}

ins {
background-color: #ff9;
color: #000;
text-decoration: none;
}

mark {
background-color: #ff9;
color: #000;
font-style: italic;
font-weight: bold;
}

del {
text-decoration: line-through;
}

abbr[title], dfn[title] {
border-bottom: 1px dotted;
cursor: help;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #cccccc;
margin: 1em 0;
padding: 0;
}

input, select {
vertical-align: middle;
}

audio, canvas, progress, video {
display: inline-block;
vertical-align: baseline;
}

audio:not([controls]) {
display: none;
height: 0;
}
html,
body {
    height: 100%;
}

body {
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #383838;
	position: relative;
	font-family: 'Raleway', sans-serif;;
	font-size: 14px;
	font-weight: 400;
    line-height: normal;
	font-style: normal;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fw-600 {
    font-weight: 600;
}

section {
    padding: 80px 0;
}
p {
    font-size: 16px;
    font-weight: 400;
    color: #343434;
    margin-bottom: 20px;
    line-height: 1.4;
}
h2 {
    color: #343434;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
}
h3 {
    color: #343434;
    font-size: 22px;
    font-weight: 800;
}
h4 {
    font-size: 22px;
    font-weight: 700;
}
.textBold {
    font-weight: bold;
}
.text-center {
    text-align: center;
}
.text-end {
    text-align: right;
}
.normLink {
    font-size: 18px;
    font-weight: 700;
    color: #7a7a7a;
    text-decoration: none;
}
.normLink:hover {
    color: #343434;
}
.siteContainer {
    width: 90%;
    margin: 0 auto;
}
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 9;
}
.logoBox {
    width: 170px;
    display: block;
}
.logoBox img {
    width: 100%;
    display: block;
}
.siteMenu {
    float: right;
}
.siteMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.siteMenu ul li {
    float: left;
    position: relative;
}
.siteMenu ul li + li {
    margin-left: 50px;
}
.siteMenu ul li a {
    text-decoration: none;
    color: #7a7a7a;
    font-weight: 700;
    font-size: 16px;
    padding: 26px 0;
    display: block;
}
.siteMenu ul li .submenu {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    right: 0;
    display: none;
}
.siteMenu ul li:hover .submenu {
    display: block;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from {
         opacity: 0;
    }

    to {
         opacity: 1;
    }
}
.siteMenu ul li:hover a,
.siteMenu ul li.active a
{
    color: #000;
}
.siteMenu ul li .submenu li {
    float: none;
    margin: 0;
    text-align: right;
    
}
.siteMenu ul li .submenu li a {
    padding: 10px 0;
    color: #7a7a7a;
    transition: 0.3s;
}
.siteMenu ul li .submenu li a:hover {
    color: #000;
}
.nav-icon {
    width: 30px;
    height: 28px;
    margin: 0;
    position: relative;
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}
.nav-icon {
    margin: 21px 0;
}
.nav-icon.open span {
    background: #404041
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #404041;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon.white-line span {
    background: #404041;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.bannerCont {
    width: 100%;
    height: 100%;
    background-image: url(../images/bannerBg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0;
}
.bannerCont .bannerTitle {
    position: absolute;
    top: 30%;
    left: 5%;
    right: 5%;
}
.bannerCont .bannerTitle p {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px 0;
}
.bannerCont .bannerTitle h1 {
    font-size:36px;
    font-weight: 800;
    color: #383838;
    margin: 0;
}
section h2 {
    position: relative;
    margin: 0 0 70px 0;
}
section h2:after {
    content: '';
    position: absolute;
    width: 3px;
    height: 70px;
    background-color: #f58220;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}
section h2.topBorder:after {
    bottom: inherit;
    top: -80px;
}
section h2.dimonBox:before {
    content: '';
    position: absolute;
    background: #f58220;
    height: 50px;
    width: 50px;
    text-align: center;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 5px;
}
.workBox {
    margin: 20px 0;
}
.workBox img {
    display: block;
    width: 100%;
    border-bottom: 4px solid #f58220;
}
.workBox h3 {
    text-align: center;
    padding-top: 10px;
    text-align: center;
}
.newsBox {
    margin: 20px 0;
}
.newsBox img {
    width: 100%;
    display: block;
}
.newsBox .date {
    color: #7a7a7a;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid #f58220;
    margin: 0;
}
.newsBox h3 {
    padding: 10px 0;
}
.workCarousel a {
    display: block;
    margin-bottom: 9px;
}
.testmWrapper {
    background-color: #343434;
    border: 3px solid #f58220;
    padding: 80px 40px 40px;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
}
.testmWrapper:before {
    content: '';
    position: absolute;
    background: #f58220;
    height: 50px;
	width:50px;
    text-align: center;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 5px;
}
.testmWrapper:after {
    content: '\f10d';
    font-family: 'FontAwesome';
    color: #000;
    font-size: 18px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testmWrapper .item {
    text-align: center;
}
.testmWrapper .clientName {
    color: #f58220;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.testmWrapper .testmText {
    color: #fff;
}
.testmCarousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
}
.testmCarousel.owl-theme .owl-dots .owl-dot.active span {
    background: #f58220;
}

footer {
    background-color: #cdcdcd;
    padding: 20px 0;
    height: 60px;
}
footer p {
    margin: 0;
    font-size: 14px;
}
footer p a {
    text-decoration: none;
    color: #000;
}
.bannerCont.innerBanner {
    height: 785px;
}
.bannerCont.innerBanner .bannerTitle p {
    background: rgba(56, 56, 56, 0.8);
    display: inline-block;
    padding: 0 10px;
}
.bannerCont.innerBanner .bannerTitle h1 {
    background: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
    display: inline-block;
}
.bannerCont.innerBanner.aboutus {
    background-image: url(../images/about-banner.jpg);
}
.bannerCont.innerBanner.portArchit {
    background-image: url(../images/portfolio-banner.jpg);
}
.bannerCont.innerBanner.news {
    background-image: url(../images/news-banner.jpg);
}
.bannerCont.innerBanner.contactus {
    background-image: url(../images/contact-banner.jpg);
}
.bannerCont.innerBanner.aboutus .bannerTitle,
.bannerCont.innerBanner.portArchit .bannerTitle {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: inherit;
    bottom: 10%;
}
.bannerCont.innerBanner.news .bannerTitle {
    width: 30%;
    left: 45%;
    top: inherit;
    bottom: 22%;
    text-align: left;
}
.bannerCont.innerBanner.contactus .bannerTitle {
    width: 50%;
    left: 20%;
    top: inherit;
    bottom: 10%;
    text-align: left;
}
.bannerCont.innerBanner.news .bannerTitle h1,
.bannerCont.innerBanner.contactus .bannerTitle h1 {
    background: transparent;
}

.bannerCont.innerBanner.aboutus .bannerTitle p {
    background: transparent;
    padding: 0;
}
.bannerCont.innerBanner.aboutus .bannerTitle br {
    content: "";
    display: block;
    margin: -20px 0;
}

.testmCarousel {
    text-align: center;
}
.testmCarousel .owl-dots {
    display: inline-block;
    position: relative;
}
/* .testmCarousel .owl-dots:after {
    content: '';
    position: absolute;
    width: 83%;
    height: 3px;
    background-color: #7a7a7a;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
} */
.philoCont {
    padding: 40px;
    background-color: rgba(122,122,122,0.15);
}
.whatCont {
    background-color: #383838;
    padding: 80px 0;
}
.doBox h3 {
    color: #f58220;
}
.doBox img {
    width: 100%;
    display: block;
}
.doBox ul {
    color: #d1d3d4;
    font-size: 18px;
    margin: 0 0 0 22px;
}
.doBox ul li {
    margin: 6px 0;
    font-size: 16px;
}
.teamSect .teamTitel {
    background-color: rgba(122,122,122,0.15);
    padding: 20px;
    text-align: center;
}
.teamSect .teamTitel h3 {
    max-width: 640px;
    margin: 0 auto;
}
.leadBox {
    border-bottom: 4px solid #f58220;
}
.leadBox img {
    display: block;
    width: 100%;
}
.leadBox h3 {
    color: #f58220;
}
.designation {
    color: #7a7a7a;
    font-size: 18px;
    font-weight: 700;
}
.degree {
    color: #7a7a7a;
}
.teamBox {
    border: 1px solid #7a7a7a;
    border-bottom: 4px solid #f58220;
    padding: 40px;
    height: 100%;
}
.projeThumb {
    overflow: hidden;
    height: 100%;
    display: block;
    position: relative;
}
.projeThumb img {
    height: 100%;
    width: 100%;
    display: block;
}
.projeThumb .overlayProj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    transition: 0.3s;
}
.projeThumb:hover .overlayProj {
    opacity: 1;
}
.projeThumb .overlayProj .innerBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
.projeThumb .overlayProj .innerBox .projTitle,
.projeThumb .overlayProj .innerBox .complDate {
    color: #f58220;
    font-size: 20px;
    font-weight: 800;
}
.projeThumb .overlayProj .innerBox .complDate {
    color: #fff;
}
.projeThumb.projBoxone {
    height: calc(50% - 0.75rem);
}
.projeThumb.projBoxone + .projBoxone {
    margin-top: 1.5rem;
}
.projeThumb.projBoxtwo {
    height: calc(66.3% - 0.75rem);
}
.projeThumb.projBoxthree {
    margin-top: 1.5rem;
    height: calc(32.4% - 0.75rem);
}


.fullStop {
    width: 10px;
    height: 10px;
    background-color: #f58220;
    display: inline-block;
    border-radius: 20px;
}
.videoBox {
    max-width: 850px;
    width: 80%;
    display: block;
    margin: 0px auto;
    position: relative;
    cursor: pointer;
    z-index: 1;
}
.InnerVideoBox {
    max-width: 850px;
    width: 100%;
    display: block;
    margin: 0px auto;
    position: relative;
    cursor: pointer;
    z-index: 1;
    margin-top: 20px;
}


.video-js .vjs-big-play-button {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    font-size: 50px;
    line-height: 90px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid #fff;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    line-height: 1.7;
}
.clientComment h2 {
    text-align: left;
    margin-bottom: 30px;
}
.clientComment h2:after {
    display: none;
}
.clientComment .commInner {
    position: relative;
}
.clientComment .commInner:before {
    content: '';
    position: absolute;
    background-image: url(../images/quoteImg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 100px;
    height: 89px;
    top: 80px;
    left: -80px;
    z-index: -1;
}
.contactLeftb {
    background-color: #343434;
    padding: 40px;
}
.contactLeftb h3,
.contactLeftb p {
    color: #fff;
}
.contactLeftb h3 span {
    color: #f58220;
}
.icon-text {
    margin-bottom: 10px;
}
.icon-text .fa {
    color: #343434;
}
.icon-text i {
    float: left;
    width: 45px;
    font-size: 24px;
}
.icon-text p {
    overflow: hidden;
    font-size: 18px;
}
.icon-text p a {
    color: #343434;
    text-decoration: none;
}
section.projPage {
    padding-bottom: 0;
}
section.projPage h2:after {
    display: none;
}
.imageCont {
    height: calc(100vh - 239px);
}
.imageCont .projImg {
    width: 100%;
    display: block;
}
.imageCont .projImg + .projImg {
    margin-top: 20px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #f58220;}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #f58220;}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #f58220;}
.projButton {
    font-size: 40px;
    display: block;
    font-weight: bold;
    color: #7a7a7a;
}
.projButton:hover {
    color: #343434;
}
img.mfp-img {
    max-height:inherit!important;
}
.mfp-zoom-out-cur {
    cursor: pointer;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer;
}
.content {
    min-height: calc(100vh - 60px);
}
.mt-9 {
    margin-top: 9px;
}