:root {
    --secondary-bg-color: #151422;
    --tertiary-bg-color: #0D0C1C;
    --accent-bg-color: #FF5C36;
    /* --button-hover-bg-color: #c0320b; */
    --button-hover-bg-color: #FF5C36;
    --header-bg-color: #201751; 

    --primary-text-color: #FFF;
    --secondary-text-color: #0D0C1C;
    --accent-text-color: #FF5C36;

    --link-hover-bg-color: rgb(255, 255, 255);
    --link-selected-color: #FF5C36;

    --hover-bg-color: #3A4346;
}

.animatedRing {
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 150px;
    height: 150px;

    background: transparent;
    border: 6px solid var(--secondary-bg-color);
    border-radius: 50%;

    text-align: center;
    line-height: 150px;

    font-size: 20px;
    color: var(--accent-bg-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 3px 0 10px var(--button-hover-bg-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.animatedRing:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    border: 6px solid transparent;
    border-top: 6px solid var(--accent-bg-color);
    border-right: 6px solid var(--accent-bg-color);

    border-radius: 50%;
    animation: animateOuter 2s linear infinite;
}

.animatedRing span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;

    width: 50%;
    background: transparent;
    transform-origin: left;
    animation: animateInner 2s linear infinite;
}

.animatedRing span:before {
    content: '';
    position: absolute;

    width: 16px;
    height: 16px;

    border-radius: 50%;
    background-color: var(--accent-bg-color);
    box-shadow: 0 0 20px var(--accent-bg-color);
}

@keyframes animateOuter
{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes animateInner
{
    0% { transform: rotate(45deg);}
    100% { transform: rotate(360deg); }
}



.animatedBlocks {
    display: inline-block;

    /* change color here */
    color:rgb(238, 28, 28);

    z-index: 99;
    position: fixed;
    top: 50%;
    left: 50%;

    width: 80px;
    height: 80px;
}
.animatedBlocks,
.animatedBlocks div {
  box-sizing: border-box;
}

.animatedBlocks div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: currentColor;
  animation: animatedBlocks 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.animatedBlocks div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.animatedBlocks div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.animatedBlocks div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}

@keyframes animatedBlocks {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}





html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 17px !important;
    font-weight: 300 !important;

    font-display: fallback;
    font-optical-sizing: auto;
    color: white !important;

    display: flex;
    flex-direction: column;
    min-height: 100vh;

    /* height: 100%; */
}

.headerPanel {
    /* background-color: var(--header-bg-color) !important; */
    /* background-color: unset !important; */
    color: var(--secondary-text-color) !important;
}

.floatMenu {
    height: 100px;
    margin-left: auto;
    margin-right: auto;    
}

.headerLogo {
    height: 98px;
    /* width: 300px; */
}

@media only screen and (max-width: 1024px) {
    .headerLogo {
        height: 60px;
        width: 200px;
    }
}

#nav-right-items {
    margin-right: 97px;
    /* right side button margin */
}

/* spacing between menu items */
.navbar-nav .nav-item {
    margin-left: 40px;
}

.dropdown-menu > .nav-item {
    margin-left: 0;
}

@media only screen and (max-width: 1024px) {
    .navbar-nav .nav-item {
        margin-left: 14px;
    }
}


/* Navigation menu */
.navbar-toggler {
    width: 47px;
    height: 34px;
    border: 0 !important;
    color: red !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler .line {
    float: left;
    width: 100%;
    height: 2px;
    background-color: #fff;
    color: red !important;
    margin-bottom: 5px;
}

/* open and close icon : interchange */
.navbar-close-icon {
    display: inline-block;
    
    color: #ffffff;
    font-size: 26px;
    font-family: sans-serif;
}

.navbar-toggler:not(.collapsed) .navbar-open-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .navbar-close-icon {
    display: block;
}

.navbar-toggler.collapsed .navbar-open-icon {
    display: block;
}

.navbar-toggler.collapsed .navbar-close-icon {
    display: none;
}
/* open and close icon : interchange */

.navbar-nav .nav-item:hover {
    /* background-color: var(--link-hover-bg-color) !important; */
}

/* .navbar-nav > .active > a {
    color: var(--link-selected-color) !important;
} */

.navbar-nav .nav-item > a:hover {
    color: var(--link-selected-color) !important;
}

/* underline animation for menu links */
.navbar-nav .nav-item .nav-link {
    position: relative;
    text-decoration: none;

    padding-left: 0;
    padding-right: 0;
    margin: 0 8px;

    font-family: 'Roboto Condensed', Arial, Verdana, sans-serif !important;
    color: white !important;
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 20px;
        padding-top: 20px;
        padding-bottom: 10px;
        width: fit-content;
    }
}

.navbar-nav .nav-item.active > a {
    color: var(--link-selected-color) !important;
    font-weight: 600 !important;
}


.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    display: inline;
    width: 100%;
    height: 1px;

    bottom: 0;
    left: auto;

    transform: scaleX(0);
    transform-origin: top center;
    transition: transform 0.4s ease;

    background-color: var(--link-selected-color) !important;
}

.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
}
/* underline animation for menu links */

/*
.dropdown:hover .dropdown-menu {
    background-color: var(--header-bg-color) !important;
    color: yellow !important;
    display: block;
    margin-top: 0px; 
    border-top: 0 !important;
    border: 1px solid gray;
}
*/

.dropdown .dropdown-menu {
    background-color: var(--header-bg-color) !important;
    color: yellow !important;
}

.dropdown-menu .nav-item:hover {
    /* color: var(--link-selected-color) !important;
    background-color: rgb(211, 211, 201) !important; */
}

.dropdown-menu .nav-item.active {
    color: var(--link-selected-color) !important;
    /* background-color: rgb(136, 180, 136) !important; */
}



/* ############################ Footer ############################ */
footer {
    /* margin-top: auto; */
}

.footer-area {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.footerArea {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 16px;
    width: 100%;
    
    bottom: 0;
    box-sizing: border-box;
    color: var(--primary-text-color);
}

.footerBackground {
    /* background-image: url(../images/footer_bg.png); */
    background-color: var(--header-bg-color);
    /* background-blend-mode: multiply; */
    /* background-blend-mode: lighten; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    width: 100%;
    /* min-height: 320px; */

    display: flex;
    flex-wrap: wrap;
    padding: 30px 30px 10px 30px;
}

.smallHeadingFtr {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    /* font-size: 25px;
    font-weight: 400; */
}


.smallHeadingFtr h2 {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    position: relative;
    margin-bottom: 32px;
}

.smallHeadingFtr h2::after {
    content: "";
    position: absolute;
    /* width: 15%; */
    width: 33px;
    height: 2px;
    background: var(--link-selected-color);
    border-radius: 12px;

    top: 48px;
    /* bottom: 4px; */
    left: 4px;
}

.companyDescFooter {
    padding: 2px 8px 0 8px;
}

.copyrightBackground {
    background-color: var(--tertiary-bg-color);
}

.telephoneLink {
    /* font-size: 16px; */
}

@media only screen and (max-width: 600px) {
    .telephoneLink {
        font-size: 16px;
    }    
}

.telephoneLink a {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    color: var(--primary-text-color);
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .telephoneLink a {
        font-size: 16px;
    }
}

.telephoneLink a:hover {
    color: var(--accent-text-color) !important;
    /* text-decoration: wavy !important;
    text-underline-offset: 5px !important;
    text-decoration-style: wavy !important;
    text-decoration-thickness: 2px !important; */
}

.svgContainer {
    text-align: left;
    margin-right: 5px;
}

.thumbnail {
    list-style: none;
    padding-bottom: 10px;
}
.thumbnailLike {
    list-style: none;
}

@media only screen and (max-width: 600px) {
    .thumbnail {
        padding-bottom: 20px;
    }
}

.thumbnail > i, .thumbnailLike > i {
    padding-right: 10px !important;
}

.thumbnail:hover {
    opacity: 0.5;
}

.footerLink {
    text-decoration: none;
    position: relative;
    color: var(--primary-text-color) !important;
    transition: all 4s ease;
}

/* .footerLink:hover {
    left: 20px;
} */

.footerLink::before  {
    content: "";
    position: absolute;
    display: block;

    width: 100%;
    height: 1px;

    bottom: 0;
    left: auto;

    transform: scaleX(0);
    transform-origin: top center;
    transition: transform 0.4s ease;

    background-color: var(--link-selected-color) !important;
}

.footerLink:hover {
    color: var(--link-selected-color) !important;
}

.footerLink:hover::before {
    transform: scaleX(1);
}

.emailLink {
    color: var(--accent-text-color) !important;
}



.fa-map-marker {
    font-size: 20px !important;
    color: var(--accent-text-color) !important;
}

.fa-phone {
    font-size: 20px !important;
    color: var(--accent-text-color) !important;
}

.fa-envelope {
    font-size: 17px !important;
    color: var(--accent-text-color) !important;
}



.copyrightToolbar {
    display: flex;
    /* height: 100%; */
    justify-content: center;
    align-items: center;

    font-size: 14px;
}
/* ############################ Footer ############################ */


/* To override the bootstrap input field - focus border style */
.form-control {
    outline: 0 none !important;
}

.form-control:focus {
    border-color: #28a745 !important;
    border-width: 1px !important;
    box-shadow: 0 0 0 0 rgba(9, 230, 60, 0.25) !important;
    outline: 0 none !important;
}
/* To override the bootstrap input field - focus border style */

.input-area,
.search-area,
.form-group {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Floating Icon */
.whatsappFloatIcon {
    position: fixed;

    width: 52px;
    height: 52px;
    border-radius: 30%;

    bottom: 20px;
    right: 20px;

    background-color: #25d366;
    color: #fff;
    font-size: 30px;

    text-align: center;
    transition: 0.5s;
}

.whatsappFloatIcon::before {
    content: '';
    position: absolute;

    width: 100%;
    height: 100%;
    border-radius: 30%;

    top: 0;
    left: 0;

    background-color: #25d366;
    transition: 0.5s;
}

.whatsappFloatIcon:hover::before {
    transform: scale(1.05);
    box-shadow: 0 0 7px #1cc058;
}

.whatsappFloatIcon:hover {
    box-shadow: 0 0 5px #1cc058;
}

.floatIconWA {
    position: relative;
    margin-top: 12px;
}

h1 {
    font-size: 43px !important;
    line-height: 48px !important;
    font-weight: 600 !important;
}
h2 {
    font-size: 37px !important;
    line-height: 40px !important;
    font-weight: 600 !important;
    /* color:red !important; */
}
h3 {
    font-size: 35px !important;
    line-height: 34px !important;
    font-weight: 800 !important;
    /* color:red !important; */
}
h4 {
    font-size: 27px !important;
    line-height: 30px !important;
    font-weight: 400 !important;
    /* color: green !important; */
}
h5 {
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    /* color: brown !important; */
}

.pageLoader {
    z-index: 5;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 1px solid blue;
    background: url(../images/loader.gif) no-repeat center center;
}

.description {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px;
    /* text-transform: capitalize; */
}



/* #################### HOME ######################## */
.homePgBgStart {
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);
}



.parentContainer {
	position: relative;
	min-height: 100%;
	overflow: hidden;
}

.videoContainer {
    /* border: 1px solid green; */

    /* position: relative;
	min-height: 100%;
	overflow: hidden; */
}

.homePGBackgroundVideo {
    /* width: 1354px;
    height: 758px; */

    /* position: relative;     */
    /* top: 100px; */
    /* left: 0; */

    /* overflow: hidden; */
    /* border: 1px solid red; */

    position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
}

.homeHeaderOverlay {  
    /* width: 1354px; */
    width: 100%;
    /* height: 758px; */
    height: 100%;

    position: absolute;
    /* top: 100px; */
    left: 0;
    top: 0;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

.pgImageDisp {
    border: 1px solid #1b1b1b;
    border-radius: 12px;

    margin: 5px 3px;
    overflow: hidden;

    transition: all 0.7s;

    /* min-height: 126px; */
    max-height: 265px;

    /* cursor: pointer; */
}

.homePgMainHeadings {
    font-size: 45px;
    font-weight: 400;
    
    margin-bottom: 30px;
    transition: text-shadow 0.6s linear;
}

@media only screen and (max-width: 600px) {
    .homePgMainHeadings {
        font-size: 37px;
    }
}

.homePgMainHeadings:hover {
    text-shadow: 4px 0px 6px rgba(255,255,255, 0.3);
}

.btnContainer {
    margin-top: 36px;
}

.homePgHeadingWants {
    font-size: 54px;
    font-weight: 600;
    color: #fff;
    line-height: 80px;
    /* border: 1px solid red; */
}

@media only screen and (max-width: 992px) {
    .homePgHeadingWants {
        font-size: 34px;
    }
}

@media only screen and (max-width: 768px) {
    .homePgHeadingWants {
        font-size: 28px;
    }
}

.homePgText1 {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    line-height: 80px;
    /* border: 1px solid red; */
}

@media only screen and (max-width: 992px) {
    .homePgText1 {
        font-size: 30px;
        font-weight: 600;
        line-height: 54px;
    }
}

@media only screen and (max-width: 768px) {
    .homePgText1 {
        font-size: 28px;
        font-weight: 500;
        line-height: 50px;
    }
}

.homePgText2 {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    line-height: 50px;
}

@media only screen and (max-width: 992px) {
    .homePgText2 {
        font-size: 16px;
        font-weight: 200;
        line-height: 22px;
    }
}

@media only screen and (max-width: 768px) {
    .homePgText2 {
        font-size: 15px;
        font-weight: 200;
        line-height: 25px;
    }
}

@media only screen and (max-width: 460px) {
    .homePgText2 {
        font-size: 13px;
        font-weight: 200;
        line-height: 25px;
    }
}

.homePgBGAboutUs {
    /* margin-top: 100px; */
    /* margin-top: 92px; */
    /* margin-top: 0px; */
    background-color: var(--tertiary-bg-color);
    /* color: var(--primary-text-color); */
}

.homePgAboutUsText {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px;
    color: var(--primary-text-color);
    font-weight: 100;
}

.btn-min-width {
    /* min-width: 14.25rem; */
    max-width: 100%;
}

.btnPortfolio {
    padding: 13px 20px;
    background: #0246F9;
    color: #ffffff;
    border: 0;
    outline: 0;
    width: auto !important;

    font-weight: 400;

    background-image: linear-gradient(180deg, #1384FF 0%, #2D8BF0 16%, #0245F5 50%, #0246F9 66%, #01007C 100%);
    background-repeat: no-repeat;
    background-position: top 0 left 0;
    background-size: 100% 200%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;

    transition: all 0.3sease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .btnPortfolio {
        font-size: 13px !important;
        font-weight: 300 !important;
        padding: 6px 10px;
        margin: 7px 5px;
    }
}

.btnPortfolio:hover {
    background-position: top 100% left 0;
}

.btnPortfolio:hover::before {
    margin-right: 0.75rem;
}

.homePgBGWhoWeAre {
    background-color: var(--secondary-bg-color);
    color: var(--primary-text-color);
}

.homePgBGWhoWeAre .description {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 14px;
}

.homePgBGWhyChoose {
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);
}

.homePgBGWhyChoose .description {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 14px;
}

.homePgBGExpertise {
    background-color: var(--secondary-bg-color);
    color: var(--primary-text-color);
}

.homePgBGExpertise .description {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 14px;
}

.homePgBGClients {
    /* background-color: var(--tertiary-bg-color); */
    /* color: var(--primary-text-color); */
    color: var(--secondary-text-color);
}

.homePgBGClients .description {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 14px;
}

.expertiseItemBox {
    width: 200px;
    position: relative;
    /* border: 1px solid red; */

    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .expertiseItemBox {
        width: 100%;
        /* border: 1px solid red; */
    }
}

.expertiseItemBox:hover {
    transform: scale(1.1);
}

.expertiseItemBox img {
    width: 100%;
    object-fit: contain;

    transition: 0.3s;
}

.expertiseItemBox img:hover { filter: brightness(30%); }

.expertiseItemBox h4 {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    position: absolute;

    padding: 2px 4px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.getInTouchBtn {
    border: 1px solid var(--primary-text-color) !important;
    border-radius: 0 !important;

    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    padding: 10px 20px;
    margin: 20px 5px;

    background: linear-gradient(to left, var(--tertiary-bg-color) 50%, var(--accent-bg-color) 50%) right;
    background-size: 200%;
    transition: 0.4s ease-out;
}

@media only screen and (max-width: 767px) {
    .getInTouchBtn {
        font-size: 13px !important;
        font-weight: 300 !important;
        padding: 4px 10px;
        margin: 7px 5px;
    }
}

.getInTouchBtn:hover {
    background-position: left;
    color: var(--secondary-text-color);
    border: 1px solid var(--accent-bg-color) !important;
}

.teamMemberPhoto {
    max-height: 388px;
}

@keyframes slideUp {
    100% { transform: translate(0, -10px); }
}

@keyframes shineImage {
	100% {
		left: 110%;
	}
}

.simpleYellowText {
    color: var(--accent-text-color);
    font-family: 'Roboto Condensed', Arial, Verdana !important;
}

.yellowText {
    color: var(--accent-text-color);
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px;
    font-weight: 600;
}

.yellowText2 {
    color: var(--accent-text-color);
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 14px;
}

/* #################### HOME ######################## */


/* ######################### ABOUT US ######################### */
.aboutUsHeaderArea {
    position: relative;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-image: url(../images/about/generic2.jpeg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 870px) {
    .aboutUsHeaderArea {        
        background-position: center center;
        /* background-size: 100% 650px; */
        background-size: cover;
    }
}

.aboutUsHeaderOverlay {
    position: absolute;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

.pgMainHeading {
    font-size: 62px;
    font-weight: 400;
}

@media only screen and (max-width: 600px) {
    .pgMainHeading {
        font-size: 46px;
    }
}

.serviceItemBox {
    width: 200px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .serviceItemBox {
        width: 100%;
        /* border: 1px solid red; */
    }
}

.serviceItemBox h4 {
    font-size: 25px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
}

.serviceItemBox div {
    font-size: 16px !important;
    font-weight: 300;
    color: gray;
    text-align: center;
    padding: 7px 0;
}

.pgHeadText {
    font-size: 33px;
    font-weight: 300;
    /* text-transform: uppercase; */
    color: var(--primary-text-color);
}

@media only screen and (max-width: 600px) {
    .pgHeadText {
        font-size: 24px;
    }
}
/* -webkit-box-reflect: below; */

.aboutUsPgSection2BG {
    /* margin-top: 100px; */
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);

    /* border: 2px solid red; */
}

.aboutUsPgDescription {
    background: url(../images/aboutus/bg_rectangle.png) no-repeat center center;
    color: var(--primary-text-color);

    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 17px;
    /* text-align: justify; */

    padding: 30px 20px 30px 20px;

    position: relative;
    /* width: 113%;
    left: -120px; */

    transition: transform ease 1s;
}


.aboutUsCardCustom {
    /* width: 379px; */
    height: 280px;
    border: 0 !important;
    border: 1px solid var(--primary-text-color) !important;

    transition: transform ease 700ms;
}

.aboutUsCardCustom:hover {
    transform: translate(0, -10px);
    box-shadow: 5px 5px 0px var(--accent-bg-color);
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .aboutUsCardCustom {
        height: auto;
    }
}

.aboutUsCardCustom .cardBody {
    height: 170px;

    border-radius: 12px;
    color: var(--primary-text-color);

    position: relative;
    padding: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .aboutUsCardCustom .cardBody {
        height: unset;

        padding: 6px 12px;
    }
}

.aboutUsCardCustom .cardBody .card-title {
    font-size: 42px;
    line-height: 60px;
    text-transform: capitalize;
}

.aboutUsCardCustom .cardBody .card-text {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 17px;
    /* text-transform: capitalize; */
}

.bolderHeading {
    font-weight: 600 !important;
}


.aboutUsPgExpPeopleText {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 17px;
    font-weight: 200;
    /* text-transform: capitalize; */
    /* text-align: justify; */
}

.lighBlueBg {
    background-color: var(--secondary-bg-color);
    color: var(--primary-text-color);
}
/* ######################### ABOUT US ######################### */



/* ######################### EVENTS ######################### */
.eventsPgSectionBG {
    /* margin-top: 100px; */
    /* margin-top: 92px; */
    /* margin-top: -8px; */
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);
}

.eventsScopeArea {
    position: relative;
    height: 400px;
    min-height: 400px;

    background-image: url(../images/services/events/bg2.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 870px) {
    .eventsScopeArea {
        background-position: center center;
    }
}

@media only screen and (max-width: 540px) {
    .eventsScopeArea {        
        /* height: 480px; */
    }
}

.eventsScopeOverlay {
    position: absolute;
    left: 0;
    top: 0;

    height: 400px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

@media only screen and (max-width: 540px) {
    .eventsScopeOverlay {        
        /* height: 480px; */
    }
}

.elementor-shape-top {
    top: -5px;
}

.elementor-shape .elementor-shape-fill {
    fill: #0D0C1C;
    transform-origin: center;
    transform: rotateY(0deg);
}

.scopeWorkEvents {
    /* width: 200px; */
    /* text-align: center; */
}

@media only screen and (max-width: 767px) {
    .scopeWorkEvents {
        width: 100%;
        /* border: 1px solid red; */
    }
}

.scopeWorkEvents div {
    font-size: 24px !important;
    font-weight: 400;
    padding: 7px 0;
    /* border: 1px solid red; */

    display: list-item;
    list-style-type: square;
    list-style-position: inside;
}

@media only screen and (max-width: 720px) {
    .scopeWorkEvents div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

@media only screen and (max-width: 600px) {
    .scopeWorkEvents div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

@media only screen and (max-width: 480px) {
    .scopeWorkEvents div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

.interiorsPgOurProcessText {
    font-size: 28px !important;
    font-weight: 300;
}

@media only screen and (max-width: 720px) {
    .interiorsPgOurProcessText {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 600px) {
    .interiorsPgOurProcessText {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 480px) {
    .interiorsPgOurProcessText {
        font-size: 20px !important;
    }
}
/* ######################### EVENTS ######################### */



/* ######################### INTERIORS ######################### */
.interiorsHeaderArea {
    position: relative;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-image: url(../images/services/interiors/laptop.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.interiorsHeaderOverlay {
    position: absolute;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

.interiorsScopeArea {
    position: relative;
    height: 480px;

    background-image: url(../images/services/interiors/arch.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 540px) {
    .interiorsScopeArea {
        background-position: center center;
        height: 480px;
    }
}

.interiorsScopeOverlay {
    position: absolute;
    top: 0px;
    left: 0px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);

    height: 480px;

    /* border: 1px solid red; */
}


.elementor-shape-top {
    top: -5px;
}

.elementor-shape .elementor-shape-fill {
    fill: #0D0C1C;
    transform-origin: center;
    transform: rotateY(0deg);
}

.scopeWorkInteriors {
    /* width: 200px; */
    /* text-align: center; */
}

@media only screen and (max-width: 767px) {
    .scopeWorkInteriors {
        width: 100%;
        /* border: 1px solid red; */
    }
}

.scopeWorkInteriors div {
    font-size: 24px !important;
    font-weight: 400;
    padding: 7px 0;
    /* border: 1px solid red; */

    display: list-item;
    list-style-type: square;
    list-style-position: inside;
}

@media only screen and (max-width: 720px) {
    .scopeWorkInteriors div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

@media only screen and (max-width: 600px) {
    .scopeWorkInteriors div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

@media only screen and (max-width: 480px) {
    .scopeWorkInteriors div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

.interiorsPgOurProcessText {
    font-size: 28px !important;
    font-weight: 300;
}

@media only screen and (max-width: 720px) {
    .interiorsPgOurProcessText {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 600px) {
    .interiorsPgOurProcessText {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 480px) {
    .interiorsPgOurProcessText {
        font-size: 20px !important;
    }
}
/* ######################### INTERIORS ######################### */


/* ######################### BRANDING ######################### */
.brandingHeaderArea {
    position: relative;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-image: url(../images/services/branding/bg_1.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.brandingHeaderOverlay {
    position: absolute;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

.brandingScopeArea {
    position: relative;
    height: 450px;

    background-image: url(../images/services/branding/bg_2.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 540px) {
    .brandingScopeArea {
        background-position: center center;
        height: 547px;
    }
}

.brandingScopeOverlay {
    position: absolute;
    top: 0;
    left: 0;

    height: 450px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

@media only screen and (max-width: 540px) {
    .brandingScopeOverlay {
        background-position: center center;
        height: 547px;
    }
}

.elementor-shape-top {
    top: -5px;
}

.elementor-shape .elementor-shape-fill {
    fill: #0D0C1C;
    transform-origin: center;
    transform: rotateY(0deg);
}

.scopeWorkBranding {
    /* width: 200px; */
    /* text-align: center; */
}

@media only screen and (max-width: 767px) {
    .scopeWorkBranding {
        width: 100%;
        /* border: 1px solid red; */
    }
}

.scopeWorkBranding div {
    font-size: 24px !important;
    font-weight: 400;
    padding: 7px 0;
    /* border: 1px solid red; */

    display: list-item;
    list-style-type: square;
    list-style-position: inside;
}

@media only screen and (max-width: 720px) {
    .scopeWorkBranding div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

@media only screen and (max-width: 600px) {
    .scopeWorkBranding div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

@media only screen and (max-width: 480px) {
    .scopeWorkBranding div {
        font-size: 18px !important;
        font-weight: 200;
        padding: 2px 0;
    }
}

.brandingPgOurProcessText {
    font-size: 28px !important;
    font-weight: 300;
}

@media only screen and (max-width: 720px) {
    .brandingPgOurProcessText {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 600px) {
    .brandingPgOurProcessText {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 480px) {
    .brandingPgOurProcessText {
        font-size: 20px !important;
    }
}
/* ######################### BRANDING ######################### */



/* ######################### PROJECTS / Our Work ######################### */
.projectsHeaderArea {
    position: relative;
    /* top: 100px; */
    left: 0;

    height: 683px;

    /* background-image: url(../images/projects/bg_3.webp); */
    background-image: url(../images/projects/bg_2.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 870px) {
    .projectsHeaderArea {        
        background-position: center center;
        /* background-size: 100% 650px; */
        /* background-size: cover; */
    }
}

.projectsHeaderOverlay {
    position: absolute;
    /* top: 100px; */
    left: 0;

    height: 683px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

.projectsBackground {
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);
}

.projectsPgSection2BG {
    /* margin-top: 100px; */
    background-color: var(--tertiary-bg-color);
    color: var(--primary-text-color);
}

.projectSectionHeader {
    font-size: 45px;
    font-weight: 400;

    text-align: center;
}

.projectImage {
    border: 1px solid gray;
    border-radius: 12px;
    position: relative;

    margin: 14px 0px;
    overflow: hidden;

    transition: all 0.7s;

    min-height: 126px;
    max-height: 140px;

    cursor: pointer;
}

@media only screen and (max-width: 1366px) {
    .projectImage {
        min-height: 103px;

        /* max-height: 350px; */
        /* max-height: 140px; */
    }
}

@media only screen and (max-width: 767px) {
    .projectImage {
        width: 100%;
        /* border: 1px solid red; */

        max-height: 350px;
    }
}

@media only screen and (max-width: 460px) {
    .projectImage {
        width: 100%;
        /* border: 1px solid red; */

        max-height: 210px;
    }
}

.projectImage:hover {
    transform: scale(1.1);
}

.projectImage img {
    width: 100%;
    object-fit: contain;

    /* overflow: hidden; */

    /* transition: all 0.5s; */
}

.projectImage h5 {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.elementor-icon-list-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    list-style-type: none;
    margin: 0;
    padding: 0;
}

.elementor-icon-list-item {
    margin: 0;
    padding: 0;
    position: relative;
    margin-right: calc(18px / 2);
    margin-left: calc(18px / 2);
}

.elementor-icon-list-text {
    padding: 5px 10px;
    color: white;

    font-size: 26px;
    font-weight: 400;
}

.elementor-icon-list-item a {
    text-decoration: none;
}

.elementor-icon-list-item a:hover {
    text-decoration: none;
    color: white;
    opacity: 0.5;
}

.elementor-divider {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;

    display: flex
}

.elementor-divider-separator {
    width: 100%;
    border-block-start: 2px solid white;
}

.projectPgBgStart {
    color: var(--primary-text-color);
    min-height: 405px;

    background-image: url(../images/projects/bg_top.png);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.projectOverviewCardCustom {
    border: 1.5px solid var(--primary-text-color) !important;
    margin-bottom: 8px;
    transition: 0.6s ease-in-out;
}

.projectOverviewCardCustom:hover {
    background-color: var(--hover-bg-color);
    border: 1.5px solid var(--accent-bg-color) !important;
    border-radius: 15px;

    transform: scale(1.002);
}

.projectOverviewCardCustom:hover .card-image {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

@media only screen and (max-width: 991.5px) {
    .projectOverviewCardCustom {
        margin-bottom: 12px;        
    }
}

.projectOverviewCardCustom .card-image {
    width: 100%;
}

.projectOverviewCardCustomContent {
    width: 100%;
    height: auto;
}

.projectOverviewCardCustomContent .cardContainer {
    margin-top: 3px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cardContainer .card-title {
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cardContainer .card-date {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px;
    font-weight: 600;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 0;
}

.projectOverviewCardCustomContent .card-text {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px;
    /* text-transform: capitalize; */

    padding-top: 4px;
}

@media only screen and (max-width: 480px) {
    .projectOverviewCardCustomContent .card-text {
        padding: 6px 8px;
    }
}

.projectOverviewCardCustomContent .card-link {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 20px;
    color: var(--accent-text-color);
}

.projectOverviewCardCustomContent .card-link a {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 20px;
    color: var(--accent-text-color);

    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

.projectOverviewCardCustomContent .card-link a:hover {
    color: var(--button-hover-bg-color);
    text-decoration: none;
}

.projectsMainHeading {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
}
/* ######################### PROJECTS ######################### */


/* ######################### CONTACT ######################### */
.contactHeaderArea {
    position: relative;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-image: url(../images/contactus/contact_bg.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 870px) {
    .contactHeaderArea {        
        background-position: center center;
        /* background-size: 100% 650px; */
        background-size: cover;
    }
}

.contactHeaderOverlay {
    position: absolute;
    /* top: 100px; */
    left: 0;

    height: 650px;

    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-text-color);
}

.contactFormArea {
    /* margin-top: 100px; */
    background-color: var(--secondary-bg-color);
    color: var(--primary-text-color);
    /* font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px;
    font-weight: 600;*/
}

.contactInfo {
    border: 1px solid gray;

    margin-top: 54px;
    margin-bottom: 54px;

    padding: 10px 10px;
}

@media only screen and (max-width: 992px) {
    .contactInfo {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .contactInfo {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.contactLine {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 20px !important;
    font-weight: 300;
}

.contactLineIcon {
    color: #fff;
    border: 1px solid gray;

    width: 40px;
    height: 40px;
    line-height: 40px;

    border-radius: 50px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    .contactLineIcon {
        max-width: 36px;
        max-height: 36px;
        border-radius: 36px;
    }
}

@media only screen and (max-width: 600px) {
    .contactLineIcon {
        max-width: 32px;
        max-height: 32px;
        border-radius: 32px;
    }
}

.alertDanger {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px !important;
    font-weight: 500;

    color: #ca0808;
    background-color: #e99097;
    border-color: #5c030a;
}

.alertSuccess {
    font-family: 'Roboto Condensed', Arial, Verdana !important;
    font-size: 18px !important;
    font-weight: 500;

    color: #02830d;
    background-color: #1ce04d;
    border-color: #023b07;
}
/* ######################### CONTACT ######################### */


/* scroll to top button */
#scrollTopBtn, #scrollBottomBtn {
    display: none;
    position: fixed;

    bottom: 15px;
    right: 10px;
    z-index: 99;

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 15px;

    background-color: var(--tertiary-bg-color);
    border: 1px solid var(--accent-bg-color);

    cursor: pointer;
    aspect-ratio: 1;
}

#scrollTopBtn:before {
    content: "";
    position: absolute;
    inset: 30%;
    transform: translateY(17%) rotate(-45deg);
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

#scrollTopBtn:hover, #scrollBottomBtn:hover {
    background-color: var(--accent-bg-color);
    border: 1px solid var(--accent-bg-color);
}

#scrollTopBtn:hover::before {
    border-top: 4px solid #000;
    border-right: 4px solid #000;
}
/* scroll to top button */

/* scroll to bottom button */
#scrollBottomBtn {
    bottom: 170px;
    right: 10px;
}

#scrollBottomBtn:before {
    content: "";
    position: absolute;
    inset: 30%;
    transform: translateY(-17%) rotate(-225deg);
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

#scrollBottomBtn:hover::before {
    border-top: 4px solid #000;
    border-right: 4px solid #000;
}
/* scroll to bottom button */

/* Hover underline style */
.hover\:underline:hover {
    text-decoration-line: underline;
}
.underline-offset-4 {
    text-underline-offset: 4px;
}
.decoration-1 {
    text-decoration-thickness: 3px;
}
.decoration-wavy {
    text-decoration-style: wavy;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--hover-bg-color);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--accent-bg-color);
    border-radius: 4px;          /* roundness of the scroll thumb */
    border: 1px solid gray;
}

.pageTopMargin {
    margin-top: 111px;
}

.pageTopMarginHome {
    /* margin-top: 120px; */
}

.pageTopMarginProjects {
    margin-top: 100px;
}

.pageTopMarginContact {
    margin-top: 100px;
}

@media only screen and (max-width: 680px) {
    .pageTopMargin {
        margin-top: 100px;
    }

    .pageTopMarginHome {
        /* margin-top: 110px; */
    }

    .pageTopMarginProjects {
        margin-top: 100px;
    }

    .pageTopMarginContact {
        margin-top: 100px;
    }    
}

/* HTML: <div class="loader"></div> */
.loader {
    height: 15px;
    aspect-ratio: 6;
    display: flex;
}

.loader:before,
.loader:after {
    content: "";
    flex: 1;
    padding-left: calc(100%/6);
    background: radial-gradient(closest-side at calc(100%/3) 50%,#000 90%,#0000) 0/75% 100% content-box;
    animation: l20 2s infinite;
}

.loader:after {
    --_s:-1;
}

@keyframes l20 {
    0%       {transform:scale(var(--_s,1)) translate(0)    rotate(0)}
    25%      {transform:scale(var(--_s,1)) translate(-25%) rotate(0)}
    50%      {transform:scale(var(--_s,1)) translate(-25%) rotate(1turn)}
    75%,100% {transform:scale(var(--_s,1)) translate(0)    rotate(1turn)}
}


/* Client Logo scroller */
.wrapper {
    margin-bottom: 30px;
	background-color: rgba(255, 255, 255, 1);
	/* background-color: rgba(255, 255, 255, 0.7); */
	overflow: hidden;
	position: relative;

	/* width: 100%; */
    height: 130px;
    border: 1px solid gray;

	display: flex;
	align-items: center;
	padding: 0 20px;
}

.wrapper:before,
.wrapper:after {
	content: "";
	position: absolute;

	/* width: 150px; */
    /* height: 130px; */
	z-index: 2;
}

.wrapper:after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.wrapper:before {
	left: 0;
	top: 0;
}

.wrapper .trackRight {
	display: flex;
	width: 5200px;
	animation: scrollRight 50s 0.5s linear infinite;
}

.wrapper .trackLeft {
	display: flex;
	width: 3800px;
	animation: scrollLeft 50s 0.5s linear infinite;
}

.wrapper .logo {
	/* width: 400px; */
	/* width: 100%; */
}

.wrapper .logo img {
    padding: 5px 30px;
	/* height: 130px; */

    max-height: 110px;
    /* border: 1px solid green; */
}

@keyframes scrollRight {
	from {
        transform: translateX(-5200px);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes scrollLeft {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-3800px);
	}
}
/* Client Logo scroller */


.shakeIcon:hover {
    /* animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both; */
    animation: loader 0.82s;
    /* transform: translate3d(0, 0, 0); */
    /* perspective: 1000px; */
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-2px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(2px, 0, 0);
    }
}

@keyframes loader {
    0% {
      transform: rotateZ(0deg);
    }
    50% {
        transform: rotateZ(180deg);
      }
    100% {
      transform: rotateZ(360deg);
    }
}
