
@font-face {
    font-family: 'segoeui';
    src: url('fonts/segoeui.eot') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/segoeui.woff') format('woff'),
        /* Pretty Modern Browsers */
        url('fonts/segoeui.ttf') format('truetype');
    /* Safari, Android, iOS */
}
@font-face {
    font-family: 'BebasNeue-Regular';
    src: url('fonts/BebasNeue-Regular.eot') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts/BebasNeue-Regular.woff') format('woff'),
        /* Pretty Modern Browsers */
        url('fonts/BebasNeue-Regular.ttf') format('truetype');
    /* Safari, Android, iOS */
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none !important;
}

body {
    font-family: 'segoeui', sans-serif;
    font-size: 0.7291666666666666vw;
    line-height: normal;
    background: #000;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

/*======== Common Styling ========*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.3125vw rgba(0, 0, 0, 0.3);
    border-radius:  0.5208333333333334vw;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 0.4166666666666667vw;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius:  0.5208333333333334vw;
    -webkit-box-shadow: inset 0 0 0.3125vw rgba(0, 0, 0, .3);
    background-color: #555;
}

body>section {
    display: flex;
    width: 100%;
    overflow: hidden;
    color: #e7e7e7;
    text-transform: uppercase;
    letter-spacing: 0.2604166666666667vw;
    line-height: 2;
    position: relative;
}
body>section .sectionBG {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: 1;
}

body>section>.sectionInner {
    width: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 5vw;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

body>section>.sectionInner>* {
    width: 100%;
}

body>section>.sectionInner h4 {
    font-size: 0.8333333333333334vw;
}

body>section>.sectionInner h3 {
    font-size: 1.5vw;
}

body>section>.sectionInner h2 {
    font-size: 3.6458333333333335vw;
    line-height: normal;
    margin: 2.0833333333333335vw 0;
}

body>section>.sectionInner h2:first-child {
    margin-top: 0;
    margin-bottom: 4.2vw;
}

body>section>.sectionInner p {
    margin-bottom: 0.5208333333333334vw;
}

body > section:not(#home) >.sectionInner:before, 
body > section:not(#home) >.sectionInner:after {
    content: "";
    display: block;
    position: absolute;
    left: 10vw;
    width: 0.052083333333333336vw;
    background: #c7c7c7;
    opacity: 0.4;
}

/*======== Section 1 ========*/

#home > .sectionBG {
    background-image: url('images/sec1.png');
}

section#home>.sectionInner .content {
    display: flex;
    flex-wrap: wrap;
    gap: 8.020833333333334vw;
    text-align: center;
}

section#home>.sectionInner .content>div {
    width: 100%;
}

.logo img {
    display: block;
    margin: auto;
}

section#home>.sectionInner .content>div.menu {
    font-family: BebasNeue-Regular;
    letter-spacing: 0.052083333333333336vw;
}

section#home>.sectionInner .content>div.menu>ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.0833333333333335vw;
}

section#home>.sectionInner .content>div.menu>ul>li {
    width: 100%;
}

section#home>.sectionInner .content>div.menu>ul>li>a {
    color: #c7c7c7;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.4;
    font-size: 1.25vw;
}

section#home>.sectionInner .content>div.menu>ul>li>a:hover {
    opacity: 1;
}

section#home>.sectionInner .content>div.logo,
section#home>.sectionInner .content,
section#home>.sectionInner .content>div.menu>ul>li {
    position: relative;
}

section#home>.sectionInner .content:after,
section#home>.sectionInner .content>div.logo:before,
section#home>.sectionInner .content>div.logo:after,
section#home>.sectionInner .content>div.menu>ul>li:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 0.052083333333333336vw;
    background: #c7c7c7;
    opacity: 0.4;
}

section#home>.sectionInner .content:after {
    height: 10.416666666666666vw;
    top: calc(100% + 0.5208333333333334vw);
}

section#home>.sectionInner .content>div.logo:before {
    height: 10.416666666666666vw;
    bottom: calc(100% + 1.0416666666666667vw);
}

section#home>.sectionInner .content>div.logo:after {
    height: 4.166666666666667vw;
    top: calc(100% + 0.5208333333333334vw);
}

section#home>.sectionInner .content>div.menu>ul>li:not(:last-child):after {
    height: 1.5625vw;
    top: calc(100% + 0.2604166666666667vw);
}

/*======== Section 2 ========*/

body > section#aboutUs >.sectionInner:before {
    top: 0;
    height: 7vw;
}
body > section#aboutUs >.sectionInner:after {
    bottom: 0;
    height: 7vw;
}

body>section#aboutUs {
    justify-content: flex-end;
}
body>section#aboutUs > .sectionBG{
    background-image: url(images/sec2.png);
 }

body>section#aboutUs>.sectionInner {
    width: 50vw;
    padding: 7.8vw 5vw;
}


/*======== Section 3 ========*/

body>section#ourdesignphilosophy > .sectionBG {
    background-image: url(images/sec3.png);
}

body > section#ourdesignphilosophy >.sectionInner:before {
    top: 0;
    height: 5vw;
}
body > section#ourdesignphilosophy >.sectionInner:after {
    bottom: 0;
    height: 5vw;
}

/*======== Section 4 ========*/

body>section#services {
    justify-content: flex-end;
}

body>section#services>.sectionInner h2:first-child {
    margin-bottom: 1vw;
}

body > section#services >.sectionInner:before {
    top: 0;
    height: 5vw;
}
body > section#services >.sectionInner:after {
    bottom: 0;
    height: 4vw;
}

body>section#services > .sectionBG {
    background-image: url(images/sec4.png);
}

body>section#services>.sectionInner {
    width: 50vw;
}

.serviceList {
    padding-top: 2vw;
}

.serviceList>ul {
    display: flex;
    gap: 2.0833333333333335vw;
    flex-wrap: wrap;
}

.serviceList>ul>li>div {
    border: 0.052083333333333336vw solid;
    width: 11.575vw;
    height: 5.208333333333333vw;
    font-size: 0.920833vw;
    letter-spacing: normal;
    line-height: normal;
    padding: 0.5208333333333334vw;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s;
    cursor: pointer;
}

.serviceList>ul>li>div:hover {
    background: rgba(255, 255, 255, 0.2);
}

/*======== Section 5 ========*/

section#eightSection>ul {
    display: flex;
    width: 100%;
}

section#eightSection>ul>li {
    width: 25%;
}

section#eightSection>ul>li>div {
    display: block;
    width: 100%;
    position: relative;
}

section#eightSection>ul>li>div>img {
    display: block;
    height: 25vw;
    width: 100%;
    object-fit: cover;
}

section#eightSection>ul>li>div>span {
    position: absolute;
    z-index: 1;
    background: #000;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    padding: 0.78125vw;
    font-size: 1.5625vw;
    line-height: normal;
}

section#eightSection>ul>li:nth-child(odd)>div>span {
    top: auto;
    bottom: -0.052083333333333336vw;
}

/*======== Section 6 ========*/

body.popActive section#ourwork {
    z-index: 999;
    overflow: visible;
}

body>section#ourwork > .sectionBG {
    background-image: url(images/sec6.png);
}

body > section#ourwork >.sectionInner:before {
    display: none;
}
body > section#ourwork >.sectionInner:after {
    display: none;
}

body>section#ourwork>.sectionInner {
    width: 100%;
    background: transparent;
    padding: 0;
}

body>section#ourwork>.sectionInner>.sectionHeading {
    padding: 2vw 5vw;
}

body>section#ourwork .sectionHeading h2 {
    margin: 0;
}


.ourWorkSlider {
    width: 100%;
    position: relative;
}

.ourWorkSlider>.sliderItem {
    width: 25%;
    float: left;
}

.slick-track:after {
    content: "";
    display: block;
    visibility: hidden;
    clear: both;
}

.slick-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slick-slide {
    float: left;
}

button.slick-arrow {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background-color: transparent;
    color: transparent;
    background-size: 1.09375vw;
    background-repeat: no-repeat;
    background-position: center;
    width: 5.208333333333333vw;
    height: 100%;
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s;
}

button.slick-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

button.slick-prev {
    background-image: url(images/slider-left.png);
    left: 0;
}

button.slick-next {
    background-image: url(images/slider-right.png);
    right: 0;
}

.ourWorkSlider .sliderItem {
    height: 38.5vw;
    position: relative;
    cursor: pointer;
}

.ourWorkSlider .sliderItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.3s;
}

.ourWorkSlider .sliderItem:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s;
}

.ourWorkSlider .sliderItem:hover img{
    filter: grayscale(0);
}
.ourWorkSlider .sliderItem:hover:after {
    background: rgba(0, 0, 0, 0.2);
}

.sliderDetails {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.sliderDetails>div:not(.closeSliderPop):not(.slick-slider) {
    background-image: url(images/loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10.416666666666666vw;
    height: 100vh;
    width: 100%;
}

.sliderDetails>div:not(.closeSliderPop):not(.slick-slider)>div {
    display: none;
}

.sliderDetails.active {
    display: block;
}

.sliderDetails>div:not(.closeSliderPop) {
    display: none;
}

.sliderDetails>div:not(.closeSliderPop).active {
    display: block;
}

.sliderDetails .closeSliderPop {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
}

.sliderDetailsItem {
    text-align: center;
    height: 100vh;
    display: none !important;
    align-items: center;
    justify-content: center;
}

.slick-slide .sliderDetailsItem {
    display: flex !important;
}

.sliderDetailsItemInner {
    position: relative;
    display: inline-block;
    width: calc(100vh - 10vh);
}

.sliderDetailsItemInner img {
    display: block;
    margin: auto;
    object-fit: contain;
    width: 100%;
    max-height: calc(100vh - 30vh);
}

.sliderDetailsItemInner img+span {
    display: block;
    background: #a68475;
    text-align: right;
    padding: 0.5208333333333334vw 1.0416666666666667vw;
    font-size: 1.0416666666666667vw;
    color: #000;
    letter-spacing: 0.10416666666666667vw;
}
.sliderDetails .details {
    background: #a68475;
    padding: 1vw;
    width: 100%;
    padding-top: 0.5vw;
}
.sliderDetails .details p {
    margin: 0;
    font-size: 0.5vw;
    letter-spacing: 0.1vw;
}

/*======== Section 7 ========*/

body > section#team >.sectionInner:before {
    display: none;
}
body > section#team >.sectionInner:after {
    display: none;
}

body>section#team > .sectionBG {
    background-image: url(images/sec7.png);
    background-position: bottom center;
}

body>section#team>.sectionInner {
    background: transparent;
    width: 100%;
    padding: 5vw 0 0;
    justify-content: flex-start;
    position: relative;
}

body>section#team>.sectionInner .teamHeading {
    width: 50vw;
    position: absolute;
    top: 5vw;
    left: 5vw;
    z-index: 1;
}

.teamMembers {
    position: relative;
    z-index: 2;
}

.team.team1,
.team.team2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.teamMembers img {
    display: block;
}

.team.team0 {
    position: relative;
    z-index: 1;
}

.team .teamMembersDetails {
    position: absolute;
    bottom: 5vw;
    width: 40vw;
}

.team.team1 .teamMembersDetails {
    right: 5vw;
}

.team.team2 .teamMembersDetails {
    left: 5vw;
}

.team .teamMembersDetails h2 {
    margin: 0;
}

.team .teamMembersDetails .team_designation {
    margin-bottom: 2vw;
}

.team_content {
    padding-left: 2vw;
    position: relative;
}

.team_content:before {
    content: "";
    display: block;
    width: 0.052083333333333336vw;
    height: calc(100% + 10vw);
    position: absolute;
    background: #c7c7c7;
    top: 0;
    left: 0;
}

.teamMembers .leftPart,
.teamMembers .rightPart {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.teamMembers .rightPart {
    left: auto;
    right: 0;
}

.teamMembers .leftPart:hover~.team,
.teamMembers .rightPart:hover~.team {
    opacity: 0;
}

.teamMembers .leftPart:hover~.team.team1,
.teamMembers .rightPart:hover~.team.team2 {
    opacity: 1;
}

.teamMembers .team {
    transition: all 0.3s;
}

/*======== Section 8 ========*/

body>section#whychooseus > .sectionBG {
    background-image: url(images/sec8.png);
}

body > section#whychooseus >.sectionInner:before {
    top: 0;
    height: 10vw;
}
body > section#whychooseus >.sectionInner:after {
    bottom: 0;
    height: 9vw;
}

body>section#whychooseus>.sectionInner {
    width: 50vw;
    align-items: flex-start;
    padding: 10.1vw 5vw;
}

.whyChooseUsBox {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}

.whyChooseUsBox>div {
    display: flex;
    gap: 1vw;
    width: 100%;
    align-items: flex-start;
}

.whyChooseUsBox>div .wcu_sub {
    border: 0.052083333333333336vw solid;
    width: 50%;
    padding: 1vw;
    cursor: pointer;
}
.whyChooseUsBox>div .wcu_sub.blank {
    border-color: transparent;
    padding: 0;
}

.whyChooseUsBox>div .wcu_sub p {
    display: none;
    letter-spacing: 0.052083333333333336vw;
    font-size: 0.625vw;
    margin: 0;
    margin-top: 0.5vw;
}

.whyChooseUsBox>div .wcu_sub.active p {
    display: block;
}

/*======== Section 9 ========*/

body>section#contact {    
    position: relative;
    justify-content: flex-end;
    text-transform: none;
    letter-spacing: normal;
}

body>section#contact>.sectionInner {
    padding: 6.7vw 5vw;
}

body > section#contact >.sectionInner:before {
    display: none;
}
body > section#contact >.sectionInner:after {
    display: none;
}

body>section#contact > .sectionBG{
background-image: url(images/sec9.png);
}
.address a {
    color: inherit;
    text-decoration: none;
}
.socialMedia {
    background: #a68475;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: none;
}

.socialMedia>ul {
    display: flex;
}

.socialMedia>ul li a {
    display: block;
    padding: 0.5vw;
    transition: all 0.3s;
}

.socialMedia>ul li a:hover {
    background: rgba(0, 0, 0, 0.2);
}

.socialMedia>ul li svg {
    display: block;
    width: 1vw;
    height: 1vw;
}

.socialMedia>ul li svg path {
    fill: #fff;
}

.footerLogo {
    width: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.footerLogo:before,
.footerLogo:after {
    content: "";
    display: block;
    width: 0.052083333333333336vw;
    background: #c7c7c7;
    height: 25vw;
    bottom: 0vw;
    position: absolute;
    left: 50%;
}

.footerLogo:after {
    bottom: auto;
    top: 0vw;
}

.address {
    letter-spacing: normal;
    text-transform: none;
}
.address ul {
    display: flex;
    gap: 0.5vw;
    flex-wrap: wrap;
}
.address ul li {
    width: 100%;
}
.address svg {
    width: 1.0416666666666667vw;
    height: 1.0416666666666667vw;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5vw;
}

.address svg path {
    fill: #fff;
}

body>section#contact h4 {
    margin: 4vw 0 1vw;
}

form#submitRequest input:not([type="submit"]) {
    display: block;
    width: 100%;
    font-size: 0.8333333333333334vw;
    padding: 0.5vw 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: none !important;
    border-bottom: 0.052083333333333336vw solid #858585;
    color: #fff;
}

form#submitRequest .form-group.messageTextArea label {
    display: block;
    margin-bottom: 0.2vw;
}

form#submitRequest .form-group.messageTextArea textarea#formSubject {
    width: 100%;
    height: 8vw;
    resize: none;
    background: #292929;
    color: #fff;
    border: 0.052083333333333336vw solid #858585;
    outline: none !important;
    padding: 0.5vw;
    font-size: 0.7291666666666666vw;
}

form#submitRequest .form-group {
    margin-bottom: 1.5vw;
}

form#submitRequest .form-group>div {
    position: relative;
}

form#submitRequest .form-group>div>input~label {
    position: absolute;
    top: 0.3vw;
    left: 0;
    pointer-events: none;
    font-size: 0.7291666666666666vw;
    transition: all 0.3s;
}

form#submitRequest .form-group>div>input:focus~label,
form#submitRequest .form-group>div>input:not(:placeholder-shown)~label {
    font-size: 0.5208333333333334vw;
    top: -0.8vw;
}
form#submitRequest input.btn {
    display: inline-block;
    border: 0.052083333333333336vw solid;
    color: #fff;
    background: transparent;
    padding: 0.5208333333333334vw 1.0416666666666667vw;
    cursor: pointer;
    transition: all 0.3s;
    font-size: inherit;
}
form#submitRequest input.btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.footerLogo img {
    width: 15.9375vw;
}
form#submitRequest input, form#submitRequest textarea {
    border-radius: 0 !important;
}
.errorMsg {
    color: #d70000;
}

/*==== loading symbol ===*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}
.loading.active{
    display: flex;
}

/*Targeting Tablets (Landscape Mode)*/
@media (max-width:1280px){ 
    .sliderDetails .details p {
        font-size: 0.7vw;
    }
}

/*Targeting Tablets (Portrait Mode)*/
@media (max-width:1024px){
    .sliderDetails .details p {
        font-size: 1vw;
    }
}

/*Targeting Mobile Devices (Landscape Mode)*/
@media (max-width:767px){
    section#home>.sectionInner .content>div.logo:after {
        height: 7.166667vw;
        top: calc(100% + 0.5208333333333334vw);
    }
    body>section {
        display: block;
    }
    body>section .sectionBG {
        height: 100%;
    }
    body>section>.sectionInner {
        width: 100% !important;
        text-align: center;
        padding: 7vw 3vw !important;
    }
    body > section:not(#home) >.sectionInner:before, body > section:not(#home) >.sectionInner:after {
        left: 50%;
        height: 3vw !important;
    }
    body {
        font-size: 1.2vw;
    }
    section#home>.sectionInner .content>div.menu>ul>li>a {
        font-size: 3vw;
    }
    body>section>.sectionInner h4 {
        font-size: 1.5vw;
    }
    body>section>.sectionInner h2 {
        font-size: 3.5vw;
    }
    .serviceList>ul>li>div {
        width: 45vw;
        height: 5vw;
        font-size: 2vw;
        justify-content: center;
        align-items: center;
    }
    section#eightSection>ul>li {
        width: 50%;
    }
    section#eightSection>ul>li>div>img {
        height: 50vw;
    }
    section#eightSection>ul {
        flex-wrap: wrap;
    }
    body>section#ourwork>.sectionInner {
        padding: 3vw 0 !important;
    }
    body>section#team>.sectionInner {
        padding: 5vw 0 0 !important;
    }
    body>section#team>.sectionInner .teamHeading {
        width: 90vw;
    }
    body>section>.sectionInner h2:first-child {
        margin-bottom: 2vw;
    }
    .team .teamMembersDetails {
        bottom: 2vw;
    }
    body > section#services >.sectionInner:after,
    body > section#whychooseus >.sectionInner:after {
        height: 2vw !important;
    }
    .serviceList li:last-child > div {
        width: 92vw;
    }
    .whyChooseUsBox>div.wcu_sec3 .wcu_sub.subRight.blank {
        display: none;
    }
    .whyChooseUsBox>div.wcu_sec3 .wcu_sub.subLeft {
        width: 100%;
    }
    .footerLogo {
        width: 100%;
        padding: 10vw 5vw;
    }
    .contactForm {
        max-width: 320px;
    }
    .whyChooseUsBox>div .wcu_sub p {
        font-size: 1.3vw;
    }
    section#aboutUs, section#ourdesignphilosophy, section#services, section#whychooseus {
        padding-top: 90vw;
    }
    form#submitRequest input:not([type="submit"]),
    form#submitRequest textarea {
        font-size: 2vw;
    }
    form#submitRequest .form-group>div>input~label {
        font-size: 1vw;
        top: -1.5vw;
    }
    form#submitRequest .form-group>div>input:focus~label, 
    form#submitRequest .form-group>div>input:not(:placeholder-shown)~label {
        font-size: 1vw;
        top: -1.5vw;
    }
    form#submitRequest .form-group {
        margin-bottom: 2vw;
    }
    form#submitRequest .form-group.messageTextArea label {
        text-align: left;
        font-size: 1vw;
    }
    form#submitRequest input.btn {
        font-size: 2vw;
    }
    form#submitRequest .form-group.messageTextArea textarea#formSubject {
        font-size: 2vw;
    }
    .socialMedia>ul li svg {
        width: 3vw;
        height: 3vw;
    }
    .socialMedia>ul li a {
        padding: 1.5vw;
    }
    .ourWorkSlider .sliderItem {
        height: 60vw;
    }
    .address svg {
        width: 3vw;
        height: 3vw;
    }
    button.slick-arrow {
        background-size: 2vw;
        width: 10vw;
    }
    .sliderDetails .closeSliderPop img {
        width: 10vw;
    }
    body>section>.sectionInner h3 {
        font-size: 2vw;
    }
    .sliderDetails .details p {
        font-size: 1.2vw;
    }
    .footerLogo:before, .footerLogo:after {
        height: 8vw;
    }
}

/*Targeting Mobile Devices (Portrait Mode)*/
@media (max-width:480px){
    .logo {
        padding: 0 20vw;
    }
    section#home>.sectionInner .content>div.menu>ul>li>a {
        font-size: 5vw;
    }
    body>section>.sectionInner h2 br:first-child {
        display: none;
    }
    body>section>.sectionInner h4 {
        font-size: 3vw;
    }
    body>section>.sectionInner h2 {
        font-size: 5.5vw;
    }
    body {
        font-size: 2.8vw;
    }
    .serviceList>ul>li>div {
        height: 10vw;
        font-size: 3.1vw;
    }
    section#eightSection>ul>li>div>span {
        font-size: 3vw;
        padding: 3vw;
        top: auto;
        bottom: -0.052083333333333336vw;
        background: rgba(0, 0, 0, 0.7);
    }
    body>section#team>.sectionInner {
        padding: 55vw 0 0 !important;
    }
    .team_content {
        display: none;
    }
    .team .teamMembersDetails .team_designation {
        margin-bottom: 0;
    }
    .whyChooseUsBox>div .wcu_sub h4 {
        font-size: 3vw;
    }
    .whyChooseUsBox>div .wcu_sub p {
        font-size: 2.5vw;
    }
    body>section>.sectionInner h4 {
        font-size: 3.5vw;
    }
    .footerLogo img {
        width: 40vw;
    }
    section#aboutUs, section#ourdesignphilosophy, section#services, section#whychooseus {
        padding-top: 120vw;
    }
    body>section#services > .sectionBG {
        background-position: bottom center;
        background-size: auto 130%;
    }
    form#submitRequest input:not([type="submit"]) {
        font-size: 4vw;
        padding: 1.5vw 0;
    }
    form#submitRequest .form-group>div>input~label {
        font-size: 2.5vw;
        top: -3.5vw;
    }
    form#submitRequest .form-group>div>input:focus~label, form#submitRequest .form-group>div>input:not(:placeholder-shown)~label {
        font-size: 2.5vw;
        top: -3.5vw;
    }
    form#submitRequest .form-group.messageTextArea label {
        font-size: 2.5vw;
    }
    form#submitRequest .form-group {
        margin-bottom: 6vw;
    }
    form#submitRequest .form-group.messageTextArea textarea#formSubject {
        height: 20vw;
    }
    form#submitRequest input.btn {
        font-size: 3vw;
        padding: 2vw 5vw;
    }
    .ourWorkSlider .sliderItem {
        height: 80vw;
    }
    body>section>.sectionInner h3 {
        font-size: 2.5vw;
    }
    .sliderDetails .details p {
        font-size: 1.5vw;
    }
}