@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;400&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Nunito:wght@300&family=Oswald:wght@200;300;400;500;600&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100&family=Roboto+Flex:opsz,wght@8..144,300&family=Roboto+Slab:wght@100;400;500&family=Yantramanav:wght@100;300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;400&family=Nunito:wght@300&family=Roboto+Flex:opsz,wght@8..144,300&family=Yantramanav:wght@100;300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;400&family=Nunito:wght@300&family=Roboto+Flex:opsz,wght@8..144,300&family=Roboto+Slab&family=Yantramanav:wght@100;300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;400&family=Nunito:wght@300&family=Oswald:wght@200;300;400;500;600&family=Roboto+Flex:opsz,wght@8..144,300&family=Roboto+Slab:wght@100;400;500&family=Yantramanav:wght@100;300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');



* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    font-family: Roboto;
}

body.loading {
    overflow: hidden;

}

.main {
    display: none;
}

.main .active {
    display: block;
}

#loading_indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 10px solid grey;
    border-radius: 50%;
    border-top: 10px solid #fdd41a;
    width: 100px;
    height: 100px;
    animation: spinIndicator 1s linear infinite;
    z-index: 999;
}



a {
    text-decoration: none;
    color: inherit;
}


@keyframes spinIndicator {
    100% {
        transform: rotate(360deg);
    }
}



@keyframes afterload-fade-in {
    from {
        visibility: visible;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* *,
*:before,
*:after {
box-sizing: border-box;
} */
/* Standard selection color */
::selection {
    background-color: #fdd41a;
    color: #21201c;
}

/* Firefox selection color */
::-moz-selection {
    background-color: #fdd41a;
    color: #21201c;
}


body {

    background-size: cover;
    min-height: 600px;
    font-family: Roboto;

    width: 100vw;
    overflow-x: hidden;
    color: #686868;
    text-justify: distribute;

}

#opSd {
    opacity: 0;
    transform: translateX(-10%);
    /* Initially move it outside the viewport on the left */
    animation: slideLeft 1s forwards 1s;

}

body::-webkit-scrollbar {
    width: 6px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #21201c;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #fdd41a;
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 1px solid orange;
    /* creates padding around scroll thumb */
}



.header {
    display: flex;
    height: 101px;

}

.navigationPanel {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100px !important;

}

#menu {
    border: none;
    border: 0px;
    margin: 0px;

    font: 67.5% Roboto;
    font-size: 15px;

    width: 100vw;
    height: 80px;
}



#navMain {

    list-style: none;
    margin: 0;
    /* padding-top: 1rem; */
    float: left;
    z-index: 9;
    position: absolute;
    /* width: 100vw; */
    text-align: center;
    display: flex;
    align-items: center;
    padding-left: 20px;

    /* justify-content: center; */
}

.sub {

    height: 50px !important;
    line-height: 50px !important;
    font-size: 10px !important;
    text-align: left;
    padding-left: 10px;
    border-top: 0.1px solid #fdd41a;
    display: flex;
    align-items: center;
    width: 240px !important;
    /* padding-bottom: 60px; */
}

.sub2 {
    height: 50px !important;
    font-size: 10px !important;
    width: 280px !important;
    padding-left: 20px;
    border-top: 0.1px solid #fdd41a;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    line-height: 50px !important;

}

.bordersub {
    border-top: 3px solid #fdd41a;
}

#navMain li {
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-direction: row;
    display: flex;
    position: relative;
    float: left;
    background: transparent;
    text-align: left;
    display: inline-block;
    align-items: center;
    text-decoration: none;
    color: #21201c;
    color: #000;
    height: 52px;
    line-height: 52px;
    background: white;
    cursor: pointer;
    font-size: 0.8rem;
    /* border: 0.5px solid #e1e1e1; */
    padding: 0 40px;
    font-weight: 500;
    /* transition: all ease-in-out 1s; */
}




#navMain li li ul {
    /* display: none; */
    float: left;
    align-items: center;
    /* transition: display ease-in-out 1s; */
    opacity: 1;
    transition: opacity 1s;
    z-index: 999;
}





/*--- Sublist Styles ---*/
#navMain ul {
    position: absolute;
    /* padding: 0px; */
    left: 0;

    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
    /* transition: display ease-in-out 1s; */

}

#navMain ul li {
    background-color: rgb(240, 240, 240);
    width: 200px;
}

#navMain ul li:hover {
    background-color: rgb(211, 211, 211);
}

/*--- Hide Sub Sublists ---*/
#navMain li:hover ul ul {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
    /* color: #332405; */
    /* transition: all ease-in-out; */

}

/*--- Sublevel UL's display and position on hover ---*/
#navMain li:hover ul {

    flex-direction: column;
    width: 230px;
    font-size: 10px;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transition: opacity 1s;


}

/* 
.submenu {
    display: flex;
    transition: all ease-in-out 1s;
} */



#navMain li:hover .submenu {
    color: #bbffaa;
}

#navMain a {
    text-decoration: none;
    color: #21201c;
    display: block;
    width: inherit;
    /* padding: 0 10px; */

}

#navMain li li a:hover {
    border-bottom: none;
    /* background-color: #000; */

}

#navMain li li:hover ul {
    /* font-size: 10px !important; */
    margin-left: 239px;
    margin-top: -52px;
    display: flex;
    /* height: 20px; */
    flex-direction: column;
    /* padding: 0; */
    padding-bottom: 10px;
    /* background-color: #000; */
    visibility: visible;
    opacity: 1;
    transition: opacity 1s;

}



#l2 {
    /* height: 120px; */
    width: 200px;
    align-items: center;
    /* padding-top: 10px; */
    /* background-color: #000000; */
}



.logoImage a {
    border-bottom: none !important;
}

.logoImage {
    width: 350px;
    height: 100px;
    padding-top: 10px;
}

.logoImage img {
    width: 300px;
    /* height: 150px; */
}

.customlink {
    text-decoration: none;
    color: #000;
    padding-left: 5px;
}

.navbar-main {
    text-align: right;
    /* display: flex; */
    /* flex-direction: column; */
    /* width: 100%; */


}

.navbar-main li:hover {
    color: #fdd41a;
}


.navbar-main a {
    color: #000;
}

#menu {
    border: none;
    border: 0px;
    margin: 0px;
    padding: 0px;
    font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

li img {
    width: 150px;
    padding-top: 1rem;
}

#nav {
    height: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    text-align: center;



}

#nav li {
    display: inline-block;
    position: relative;
    float: left;
    background: #ffffff;
    align-items: center;
}

#nav li a {
    display: inline-block;
    width: 150px;
    line-height: 65px;
    padding: 0;
    text-decoration: none;
    color: #2e2e2e;
    font-size: 15px;
    font-weight: 400;
}

#nav li li {
    float: left;
}

#nav li li a {
    display: block;
    font-size: 12px;

    opacity: 1;
    transition: opacity 1s;
}

#nav li:hover {
    color: #fdd41a;
    background-color: #dbdbdb;
    border-bottom: 2px solid #21201c;
}

/*--- Sublist Styles ---*/
#nav ul {
    position: absolute;
    padding: 0px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
}

/*--- Hide Sub Sublists ---*/
#nav li:hover ul ul {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
    color: #fdd41a;
}

/*--- Sublevel UL's display and position on hover ---*/
#nav li:hover ul {
    visibility: visible;
    opacity: 1;

    transition: opacity 1s;
}

/* had to make the position NOT based on hover, but permanent 
for the transition to work , thus moved it from POS_001 */
#nav li li ul {
    margin-left: 150px;
    margin-top: -65px;

}

#nav li li:hover ul {
    /* POS_001 */


    visibility: visible;
    opacity: 1;
    color: #fdd41a;
    transition: opacity 1s;
}

.navbar-mini {
    position: fixed;
    top: -100px;
    width: 100%;
    background-color: #ffffff;
    color: black;
    padding: 10px 20px;
    transition: top 0.3s;
    z-index: 101;
    justify-content: center;
    text-align: center;
    display: flex;
}

.navbar-mini.show {
    top: 0;
}



.navbar-mini.show {
    top: 0;
}


.navbar-mini ul {
    list-style-type: none;
    padding: 0;
}


.navbar-mini li {
    display: inline;
    margin-right: 1vw;
}


.navbar-mini a {
    color: #000;
    text-decoration: none;
}

.navbar-main a:hover,
.navbar-mini a:hover {
    border-bottom: 2px solid white;
    color: #fdd41a;
}

.menuMain-mini,
.menuMain {
    display: flex;
    /* width: 100vw; */

    justify-content: center;
    transition: transform 0.3s ease-in-out;

}


.l2 {
    width: 300px;
    object-fit: cover;
    height: 70px;
}

.menuContact {
    /* position: relative; */
    display: inline-block;
    background-color: white;
    padding-top: 5px;
    padding-left: 25px;
    /* right: 0; */
}



.menuMain li {
    float: left;
    color: #000;
    height: 70px;
    line-height: 70px;
    background: white;
    cursor: pointer;
    font-size: 17px;
    border: 0.5px solid #e1e1e1;

    font-weight: 700;
}

.menuMain-mini li {
    float: left;
    color: #000;
    height: 50px;
    line-height: 50px;
    background: white;
    cursor: pointer;
    font-size: 15px;
    font-family: Roboto;

    font-weight: 600;

}




.menuContact>li {
    float: left;

    width: fit-content;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 12px;
    padding: 0 10px;
}


.sub-menu {
    position: relative;
    height: 0px;
    overflow: hidden;
    text-align: center;
    transition: height .4s ease;
    width: 200px;
    /* margin-top: -2px; */
    z-index: 1000;

}



.sub-menu-mini {
    position: relative;
    height: 0px;
    overflow: hidden;
    text-align: center;
    transition: height .4s ease;
    width: 200px;
    margin-top: -2px;
    z-index: 1000;

}

.sub-menu li {

    position: relative;
    font-size: 14px;
    background: white;
    width: 200px;
    text-align: center;
    z-index: 1000;
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}



.sub-menu-mini li {

    position: relative;
    font-size: 14px;
    background: white;
    width: 200px;
    text-align: center;
    z-index: 1000;
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}

.sub-menu li:last-child {
    border-bottom: 0;
}

.sub-menu li:hover {
    color: #fdd41a;
    background-color: #686868;
}



#navMain>li:hover .sub-menu {
    height: 500px;
}




.menuMain-mini>li:hover .sub-menu-mini {
    height: 500px;

}

.dropdown:hover {
    color: #fff;
    background-color: #fdd41a;
}

.largebutton {
    display: flex;
    padding: 0 32px;
    width: 27vw !important;

}

.largebutton-mini {
    display: flex;
    padding: 0 40px;
    flex-direction: row;
    width: 400px;

}

.largebutton-mini img {
    width: 40px;
}

.largebutton-mini p {
    font-family: Roboto;

    font-size: small;
}


.smallbutton {
    width: 5vw !important;
}

.normalButton {
    /* width: 150px !important; */
    /* text-align: center; */
    padding-left: 30px;
}

.normalButton-mini {
    width: 100px;
}



/* slideshow */
.mySlides {
    display: none;
    width: 100vw;
    box-sizing: border-box;
    height: 70vh;
    margin-top: 0.2rem;
}

img {
    vertical-align: middle;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;

}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: relative;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 16px 25px;
    color: black;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    user-select: none;
    background-color: white;
    z-index: 10;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    background-color: #fdd41a;
    color: white;

}

/* On hover, add a black background color with a little bit see-through */
.prev:hover+.next {
    background-color: white;
    color: #000;
}

.prev:hover {
    background-color: #fdd41a;
    color: white;
}



/* Caption text */
.text1 {


    top: 15%;
    left: 90%;
    color: #fff;
    text-shadow: 2px 2px 4px #000000;
    font-size: 3rem;
    transition: all .2 ease;
    width: 30%;
    opacity: 0;

    transform: translateX(-10%);
    /* Initially move it outside the viewport on the left */
    animation: slideLeft 1s forwards;
    /* Apply the slide-in animation */
    font-weight: 500;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        /* Fade in by changing opacity */
        transform: translateX(0);
        /* Slide in from left to right */
    }
}

.text2 {

    top: 30%;
    left: 10%;
    color: #332405;
    text-shadow: 2px 2px 4px #000;
    font-size: 2.5rem;
    width: 100%;
    opacity: 0;
    transform: translateY(-20%);
    /* Initially move it outside the viewport on the left */
    animation: slideIn 1s forwards;
    /* Apply the slide-in animation */
}

@keyframes slideIn {
    to {
        opacity: 1;
        /* Fade in by changing opacity */
        transform: translateY(0);
        /* Slide in from left to right */
    }
}

.textH {
    top: 12%;
    left: 15%;
    color: #ffffff;
    /* text-shadow: 2px 2px 4px #fff; */
    font-size: 2rem;
    width: 100%;
    transform: translateY(-20%);
    /* Initially move it outside the viewport on the left */
    animation: slideIn 1s forwards;
    /* Apply the slide-in animation */
}

.text4 {
    top: 12%;
    left: 15%;
    color: #332405;
    text-shadow: 2px 2px 4px #fff;
    font-size: 3rem;
    width: 100%;
    transform: translateY(-20%);
    /* Initially move it outside the viewport on the left */
    animation: slideIn 1s forwards;
    /* Apply the slide-in animation */
}

.text3 {
    top: 12%;
    left: 100%;
    color: #ffffff;
    text-shadow: 2px 2px 4px #cd9d37;
    font-size: 3rem;
    width: 30%;
    transform: translateX(20%);
    /* Initially move it outside the viewport on the left */
    animation: slideLeft 1s forwards;
    /* Apply the slide-in animation */
}

.chngStyle {
    width: 50%;
    left: 70%;
    transform: translateX(20%);
    animation: slideLeft 1s forwards !important;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        /* Fade in by changing opacity */
        transform: translateX(0);
        /* Slide in from left to right */
    }
}

.text5 {
    top: 60%;
    left: 10%;
    color: #000000;
    text-shadow: 2px 2px 4px #cd9d37;
    font-size: 2.7rem;
    /* font-weight: 200; */
    width: 50%;
    transform: translateX(20%);
    /* Initially move it outside the viewport on the left */
    animation: slideLeft 1s forwards;
}

.text1,
.text2,
.text3,
.text4,
.text5,
.textH {
    /* color: #ffffff; */
    font-family: Roboto;

    /* padding: 8px 12px; */
    position: absolute;
    /* top: 0; */
    /* bottom: 8px; */
    text-align: center;
}


/* Number text (1/3 etc) */
.numbertext {
    color: #ffffff;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    position: relative;
    bottom: 30px;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    left: 47.5%;
}

.active,
.dot:hover {
    height: 15px;
    width: 15px;
}


#loading {
    width: 100vw;
    height: 100vh;

    display: block;
}

@keyframes loading-fade-out {
    to {
        display: none;
        opacity: 0;
    }
}


@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.l1 {
    width: 0;
    height: 100vh;
    background-color: #2d2d2d;
    transform-origin: left;
    transition: width .2s ease-in-out;
}

.l1.active {
    width: 100vw;
}

.l2 {
    width: 0;
    height: 100vh;
    background-color: #fdd41a;
    transition: width .5s ease-in-out 0.5s;

}

.l2.active {
    width: inherit;
}

.l3 {
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-10%);
    /* Initially move it outside the viewport on the left */
    animation: slideLeft 1s forwards 1.5s;
    transition: width 1s ease-in-out 1.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;

}

@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.l3 p {
    font-size: 2rem;

}

.l3 h3 {
    letter-spacing: 17px;
    font-size: 4rem;

}


/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


@media only screen and (max-width: 300px) {}

.mySlides img {
    width: 100%;
    height: 80vh;
}



.whatwedobutton img {
    height: 40px;
    width: 40px;
    position: absolute;
    bottom: 80px;
    left: 49.45%;
    text-align: center;
    border-radius: 100px;
    background-color: #fff;
    border: #fff;
    /* font-size: 2rem; */
    background-color: transparent;
    text-align: center;
    animation: jump 1.5s infinite;
    cursor: pointer;
}

@keyframes jump {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
        /* Initial and final position */
    }

    40% {
        transform: translateY(-30px);
        /* Jump up */
    }

    60% {
        transform: translateY(-15px);
        /* Land halfway */
    }
}


.whatwedo {
    font-family: Roboto;

    /* font-weight: bolder; */
    height: auto;
    /* width: 100vw; */
    text-align: left;
    background-color: transparent;
    /* padding: 0 1rem; */
    padding-top: 5rem;
    color: #fdd41a;
    position: relative;
    padding-bottom: 4rem;
}

h1 {
    font-size: 4rem;
    font-family: Roboto;

    /* font-weight: bold; */
}

.boldH {
    font-family: Roboto;

    font-weight: 900;
    color: #fdd41a;
}

.nw {
    font-size: 3rem;
}

p {
    font-family: Roboto;

    font-size: 1.5rem;
    letter-spacing: 1px;

}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.imagesforwhatwedo {
    display: flex;
    /* justify-content: ; */
    /* width: 100vw; */
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row;
}

.container,
.containerLeft {
    background-color: #686868;
    width: 0;
    height: 355px;
    transform-origin: left;
    transition: width .5s ease-in-out 0.5s;
    /* display: block; */
    object-fit: cover;
    margin: 10px;
}

.containerLeft {
    transform-origin: right;
}

.container.active {
    width: 400px;
}

.containerLeft.active {
    width: 400px;
}

.image-element,
.image-elementLeft {

    width: 0px;
    height: 355px;

    background-size: cover;
    background-color: #fdd41a;
    transform-origin: left;
    transition: width 0.5s ease-in-out 0.7s;

}

.image-elementLeft {
    transform-origin: right;
}

.image-element.active {
    width: 40vw;
}

.image-elementLeft.active {
    width: 40vw;
}

.slidingcontainerLeft {
    margin-left: 3rem;
}

.image,
.imageLeft {
    width: 0;
    height: 355px;

    transform-origin: left;
    transition: width 0.7s ease 1s;
}

.imageLeft.active {
    width: 40vw;
}

.image.active {
    width: 40vw;
}

.slidingcontainer1 {
    width: 40vw;
}

.container1 {
    background-color: #686868;
    width: 0;
    height: 400px;
    transform-origin: left;
    transition: width .5s ease-in-out 0.5s;
    /* display: block; */
    object-fit: cover;
    /* margin: 10px; */
}

.container1.active {
    width: 550px;
}

.image-element1 {

    width: 0px;
    height: 400px;

    background-size: cover;
    background-color: #fdd41a;
    transform-origin: left;
    transition: width 0.5s ease-in-out 0.7s;

}

.image-element1.active {
    width: inherit;
}



.image1 {
    width: 0;
    height: 400px;

    transform-origin: left;
    transition: width 0.7s ease 1s;
}

.image1.active {
    width: inherit;
}

.fullservices {
    margin: 5vh 5vw;

}

.serviceName p {
    font-family: Roboto;

    font-size: 19px;

}



.projectName {
    font-family: Roboto;

    font-size: 12px;
    font-weight: 500;
    background-color: transparent;
    text-align: center;

}

.projectsI {
    width: 350px !important;
}

.locationCom {
    width: 600px;
    height: 600px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: center;
}

.changeWrap {
    flex-wrap: wrap-reverse !important;
}

.service {


    box-shadow: 0 0 2px rgba(44, 44, 44, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.1rem;

    margin: 0.1vw;
    margin-bottom: 0;

    border: 1px solid #b6b6b6;
    border-bottom: 2px solid #fdd41a;
}

/* .weareexperts::before {
    content: attr(data-text);
    position: absolute;
   
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 2px black;
    text-stroke: 1px black;
    display: inline-block;
    font-size: larger;
} */

.serviceTitle h1 {
    font-size: 1.25rem;
    font-weight: 100;
    font-family: Roboto;


}

.servicesStroked {
    position: absolute;
    font-size: 7rem;
    /* font-weight: 100; */
    font-family: Roboto;


    color: transparent;
    -webkit-text-stroke: 0.5px rgb(196, 196, 196);
    text-stroke: 1px black;
    /* font-size: 40px; */
    bottom: -20px;
    font-weight: 900;

}

.normal {
    color: #fdd41a;
    font-size: 4rem;
    bottom: 0;

    font-weight: 700;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #fdd41a;
    font-family: Roboto;

    padding: 0rem 5rem;
}

.magglass {
    color: #fdd41a;
    font-size: 20px;
}

.smallbutton:hover {
    background-color: #686868;

    /* border-right: 2px solid #fdd41a !important; */

    fdd41a .magglass {
        background-color: #fdd41a;
        color: #fff;
    }
}

.normalButton:hover .hoverS {
    color: #fdd41a !important;
    text-decoration: line-through;

}


.hoverS {
    transition: all ease-in-out 0.5s;
}

.hamburgericon {
    /* background-color: #686868 !important; */
    color: white !important;
    z-index: 100 !important;
    /* padding-top: 16px; */
}

.sidebarhamburger {
    background-color: #686868 !important;
    color: white !important;
    z-index: 100 !important;
    width: 5vw;
    height: 10vh;
    align-items: center;
    position: absolute;
    top: 7vh;
    right: 0;
    cursor: pointer;
}

.hamburgericon-mini {
    background-color: #686868 !important;
    color: white !important;
    z-index: 100 !important;
}



.responsiveHam {
    position: absolute;
    display: none;
    right: 7%;
    top: 2%;
}

.nav-icon1,
.nav-icon2 {
    width: 30px;
    height: 10px;
    position: relative;
    margin: 19px auto;
    -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;
}

.nav-icon1 span,
.nav-icon2 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fdd41a;
    border-radius: 9px;
    opacity: 1;

    -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-icon1 span:nth-child(1),
.nav-icon2 span:nth-child(1) {
    left: 0;
    width: 50%;
    top: 0px;
}

.nav-icon1 span:nth-child(2),
.nav-icon2 span:nth-child(2) {
    left: 0;
    top: 8px;
}

.nav-icon1 span:nth-child(3),
.nav-icon2 span:nth-child(3) {
    right: 0;
    width: 50%;
    top: 16px;
}

.nav-icon1.open span:nth-child(1),
.nav-icon2.open span:nth-child(1) {
    top: 0.5vh;
    width: 100%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav-icon1.open span:nth-child(2),
.nav-icon2.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburgericon:hover {
    .nav-icon1 span:nth-child(3) {
        width: 100%;
    }

    .nav-icon1 span:nth-child(1) {
        width: 100%;
    }
}

.sidebarhamburger:hover {
    .nav-icon1 span:nth-child(3) {
        width: 100%;
    }

    .nav-icon1 span:nth-child(1) {
        width: 100%;
    }
}

.nav-icon1.open span:nth-child(3),
.nav-icon2.open span:nth-child(3) {
    width: 100%;
    top: 0.5vh;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#sidebar {

    height: 100vh;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    background-color: #222222;

    opacity: 0;
    transform: translateX(100%);
    transition: width 0.5s ease;
    overflow: hidden;
}




#sidebar.active {
    width: 35vw;
    animation: fadeInRight 1s forwards;
}

#sidebar.inactive {
    width: 0;
    animation: fadeInLeft 1s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        width: 0;
        transform: translateX(100%);
    }


    to {
        width: 35vw;
        opacity: 1;

        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 1;
        width: 35vw;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        width: 0;
        transform: translateX(100%);
    }
}




.contactDetails {
    margin: 3rem;
}


.contactDetails h1 {
    font-family: Roboto;

    font-size: 1.5rem;
    font-weight: 700;
    color: #e1e1e1;
    padding-bottom: 1rem;
}

.contactDetails h3 {
    font-family: Roboto;

    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
    padding-top: 1rem;
    color: #686868;
}


.contactDetails a {
    text-decoration: none;
    color: #686868;
}

.contactDetails a:hover {
    color: #fdd41a;
}

.social {

    height: 10vh;
    margin: 10vh 3vw;
}

.social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* width: 200px; */
}

.social li {
    padding: 1.5vw 3vh;

    height: 8vh;
    width: 4vw;
    border: 0.1px solid #575757;
    color: #fff;
    background-color: transparent;
    transition: background-color 0.5s ease;
    cursor: pointer;

}

.social li:hover {
    background-color: #fdd41a;

}

/* .menuContact a:hover {
    color: #046244;
} */

.smallmenu {
    display: flex;
    justify-content: center;
    text-align: center;
}

.sM {
    align-items: center;
    padding: 0 2px;
    padding-bottom: 2px;
}

.experienceH h1 {
    font-family: Roboto;

    font-size: 3rem;
    font-weight: 700;
    color: #000;
    padding-bottom: 1rem;
}

.experienceH {
    padding-top: 8rem;
    text-align: center;
    vertical-align: middle;
}

.experienceH p {
    font-family: Roboto;

    font-size: 1.5rem;
    letter-spacing: 1px;
}

.classp1 {
    display: flex;
    padding: 2rem 6rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 
.classp1 p {
    font-family: 'Yantramanav', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: 900;
    text-align: center;
    width: 193px;
    padding-top: 2rem;
} */

.whyus {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ep1,
.ep2,

.ep4 {
    border: 1px solid #e1e1e1;
    border-bottom: 4px solid #fdd41a;
    height: 350px;
    width: 350px;
    text-align: center;
    margin: 0.5rem;
    margin: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(44, 44, 44, 0.5);
}

.ep3 img {
    height: 360px;
    width: 350px;
    box-shadow: 0 0 10px rgba(44, 44, 44, 0.5);
}

.classp2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.classp2 img {
    height: 400px;
    width: 350px;

}


.pp2 {
    border: 1px solid #e1e1e1;
    border-bottom: 4px solid #fdd41a;
    height: 360px;
    width: 350px;
    text-align: center;
    margin: 0.3rem;
    padding: 10vh 3vw !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.pp1,
.pp2,
.pp3 {
    height: 400px;
    width: 350px;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(44, 44, 44, 0.5);
}


.fullWhatwedo {
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.slidingcontainer {
    width: 45%;
    padding-right: 10vw;
}

.redirectButton {
    align-items: center;
    display: flex;
    width: fit-content;
    text-align: right;
    /* padding-right: 1rem; */
    /* padding-top: 1rem; */
    color: #333333;
    cursor: pointer;
    float: right;
    transition: all 0.5s ease-in-out;
}

.redirectButton button {
    color: #333333;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: transparent;
    font-size: 1.5rem;
    margin-left: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.redirectButton:hover button {
    background-color: rgb(250, 183, 39);
    box-shadow: 0 10px 20px 0 rgba(255, 94, 20, .5);
}

.image-container {

    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0.1rem;
    width: 250px;
    /* Hide the overflow for zoom effect */
}

.imagePs {
    display: block;
    width: inherit;
    height: 290px;
    transition: transform 0.3s ease;
    /* Add transition for zoom effect */
}

.overlayimage {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    /* Initially transparent */
    opacity: 0;
    /* Initially transparent */
    transition: background-color 0.3s ease, opacity 0.3s ease;
    /* Smooth transition effect */
}

.text p {
    font-family: Roboto;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    text-align: left;
    font-weight: 700;
    width: 70%;
}

.more {
    position: absolute;
    top: 75%;
    left: 49%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.more p {
    color: white;
    font-size: 1em;
    text-align: left;
    padding: 2px;
    padding-left: 0px;
    padding-top: 5px;
    font-weight: 600;

}

.more .plus {
    font-size: larger;
    padding: 0.5rem 1rem;
    background-color: #fdd41a;
    color: #fff;
    border: #fdd41a;
    cursor: pointer;
    margin-left: 2px;
}

.image-container:hover .overlayimage {
    background-color: rgba(0, 0, 0, 0.7);
    /* Blackish overlay on hover */
    opacity: 1;
    /* Make the overlay fully opaque on hover */
}

.image-container:hover .imagePs {
    transform: scale(1.1);
    /* Zoom in by 10% on hover */
}

.text p {
    font-family: Roboto;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    text-align: left;
    font-weight: 700;
    width: 70%;
}

.mep {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100vw;
    padding: 2rem 0;

}

.cerficationmepmop {
    display: flex;
    justify-content: center;

    text-align: center;
    width: 100vw;

}

.mepI img {
    width: 535px;
    height: 384px;
}

.pP {
    margin: 1.5rem;
}

.mop {
    width: 380px;
    height: 384px;
    border: 1px solid #e1e1e1;
    border-bottom: 4px solid #fdd41a;
    margin: 1rem;
    padding-top: 4rem;
}

.mepP {
    width: 535px;
    height: 384px;
    border: 1px solid #e1e1e1;
    border-bottom: 4px solid #fdd41a;
    padding: 4rem;
}

.pB {
    padding-top: 1rem;
    font-family: Roboto;

    font-weight: bolder;
    color: #fdd41a;
}

.pS {
    padding-top: 3vh;
    font-family: Roboto;
    /* font-size: medium; */
    letter-spacing: 1px;
    color: #686868;
    padding-top: 10px;
    text-justify: distribute;
    line-height: 1.5rem;
    font-size: 0.8rem;
}

.sliderP-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.sliderP {
    display: flex;
    transition: transform 0.3s ease-in-out;
}


.sliderP img {
    margin-right: 1rem;
    width: 38vw;
    height: 45vh;
    /* Adjust the image width as needed */

}

.sliderPImg h3 {
    padding-top: 1rem;
    font-family: Roboto;

    text-align: right;
    padding-right: 2rem;
}

.buttons button {
    margin: 10px 30px;
    width: 150px;
    height: 50px;
    background-color: rgb(250, 183, 39);
    color: #fff;
    border: none;
    z-index: 9;
    cursor: pointer;
}

.prev-next-hover:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* Add box shadow */
}



.Pall {
    padding: 2rem;
    margin-top: 4rem;
    background: linear-gradient(to bottom, #6d6d6d, #fdd41a);

    /* background: repeating-linear-gradient(to right, #ffcc00, #ff6600 200px); */

    /* background: linear-gradient(to bottom, #5a5a5a, #ffcc00); */
}

.Pall h1 {
    margin: 1rem;
    margin-left: 2rem;
    font-family: Roboto;

    font-weight: 400;
}

.clrP {
    background-color: #21201c !important;
}

.ProductsN {
    padding: 1rem;
    display: flex;
}

.buttons {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.projectB {
    position: absolute;
}

.predB {
    padding-top: 1rem;
    padding-right: 2rem;
}

.footer {
    display: flex;
    position: relative;
    bottom: 0;
    background-color: #333333;
    height: 12vh;
    /* width: 100vw; */
    /* justify-content: center; */
    text-align: center;
    /* padding-top: 1rem; */
    color: #fff;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
    flex-flow: row wrap;

}

.FooterContactPanelResponsive {
    background-color: transparent;
    color: white;
    font-size: larger;
    display: none;

}

.footcustom {
    color: #ffffff;
}

.fa-facebook,
.fa-linkedin {
    color: #FFF;
}

.cName {
    font-family: Roboto;

    font-size: large;
    padding-right: 2rem;

}

.reserved {
    font-size: small;
    padding-right: 3rem;
}

.socialH {
    background-color: #333333;
    border-left: 1px solid #686868;
    border-right: 1px solid #686868;
    padding: 2rem 2rem;
    height: 12vh;
    margin-top: 0;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
    display: block;
}

.socialH:hover {
    background-color: #fdd41a;
}

button#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    opacity: 0;
    padding: 10px 13px;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.5s ease-in-out;
    background-color: #fdd41a;
    border-radius: 90px;
}

button#scrollToTopBtn.show {
    opacity: 1;
}

button#scrollToTopBtn:hover {
    background-color: #222222;
    color: white;
}

.detailsAboustUs {
    padding-top: 10px;
    /* position: absolute; */
    /* left: 54%; */
    width: 35vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-family: Roboto;
    text-align: left;
    padding-left: 1rem;
    margin-right: 4rem;


}

.smallheadingAbt {
    font-size: smaller;
    letter-spacing: 1px;
    color: #686868;
}

.detailsL {
    font-size: medium;
    letter-spacing: 1px;
    color: #686868;
    /* text-align: justify;
    hyphens: auto; */
    padding-top: 10px;
    text-justify: distribute;
    line-height: 1.5rem;
}

.largeHeadingAbt {
    color: #505050;
    font-size: 1.7rem;
    font-weight: 700;
    padding: 10px 0;
    text-transform: uppercase;
}


.dApButton {
    margin-top: 32px;
    width: 150px;
    height: 50px;
    background-color: #fdd41a;
    border: none;
}

.clrPP {
    font-weight: 700;
    font-size: 4rem;
    -webkit-text-stroke: 1px #fff;
    color: #fff !important;
    text-transform: uppercase;
    background-color: transparent;
    text-align: left;
    font-family: Roboto;
    padding-left: 1rem;
}

.explorethefeastures {
    background-image: url('https://images.pexels.com/photos/5997996/pexels-photo-5997996.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem;
    padding-left: 60vw;
    margin-top: 15vh;
}

.c1 {
    width: 500px;
    height: 500px;
    background-color: #e1e1e1;
    /* margin: 1rem; */
    /* margin-top: 10rem; */
    transform-origin: left;
    transition: width .5s ease-in-out 0.5s;
    /* display: block; */
    object-fit: cover;
}

.c1.active {
    width: 522px;
}

.c2 {
    width: 500px;
    height: 500px;
    background-color: #575757;

    transform-origin: left;
    transition: width .5s ease-in-out 0.7s;
    /* display: block; */

}

.c2.active {
    width: 522px;
}

.cdetails {

    width: 500px;
    height: 500px;
    background-color: #333333;
    padding: 3vh 1vw;
    transform-origin: left;
    transition: width .7s ease-in-out 1s;
    /* text-align: justify;
      hyphens: auto; */


}

.cdetails h1 {
    font-size: 3rem;
    text-align: center;
    color: #fdd41a;
    text-transform: uppercase;
    font-family: Roboto;

}

.cdetails.active {

    width: 522px;



}


.cdetails div {
    /* display: none; */
    color: #fff !important;
    transition: width .7s ease-in-out 1s;
}


.formButton:hover {
    box-shadow: 0 0 30px rgba(34, 34, 34, 0.5);
    /* color: #fdd41a; */
    background-color: #b6b6b6 !important;


}


.svg-box {
    position: relative;
}

.row {
    display: flex;
    justify-content: center;
    /* padding: 4rem 7rem; */
    flex-wrap: wrap;

}

.text {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 3em;
    letter-spacing: 3px;
    font-weight: 600;
    font-family: Roboto;
    color: #575757;
}

.pie {
    transform: rotate(-90deg);
    width: 200px;
    height: 200px;
    background: transparent;
    fill: none;
}

.pieHeading {
    margin: 1rem 0;
    margin-right: 2rem;
    margin-left: 0.2rem;
}

svg circle {
    stroke-width: 1;
    stroke: #686868;
}

svg .bar {
    stroke-width: 5;
    stroke: #fdd41a;
    stroke-linecap: round;
}

.testimonialsCounter {
    position: relative;
    display: flex;
    margin: 3rem 0;
    flex-wrap: wrap;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

.testimonialsCounter p {
    color: #fdd41a;
    font-family: Roboto;
}

.col-lg-3 {
    display: flex;
    margin-right: 1rem;
    width: 380px;
}

.headingPie1,
.headingPie2,
.headingPie3 {
    font-family: Roboto;
    color: #21201c;


}

.headingPie1,
.headingPie3 {
    font-size: 0.8rem;
    padding-top: 1rem;
}

.headingPie1 {
    /* padding-top: 3rem; */
    text-transform: uppercase;
}

.headingPie2 {
    font-size: 2rem;
    /* padding-top: 1rem; */
    color: #fdd41a;
    font-weight: 700;
}


.mini {
    padding-top: 0.7rem;
    font-size: smaller;
}

.counter {
    margin: 1rem 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.detTestimonials {
    margin: 1rem 0;
    display: flex;
    font-family: Roboto;
    flex-wrap: wrap;
    width: 100vw;
    justify-content: center;
    align-items: center;
}

.commensttesti {
    font-size: medium;
    padding-top: 1rem;
    /* text-align: justify;
      hyphens: auto; */
    padding-right: 1rem;

    text-justify: distribute;
    font-size: medium;
    letter-spacing: 1px;
    color: #686868;
    padding-top: 10px;
    text-justify: distribute;
    line-height: 1.5rem;
}

.nametesti {

    font-size: large;
    font-weight: 600;
    padding-top: 0.5rem;
    color: #fdd41a;
}

.designatesti {
    font-size: small;
    text-transform: uppercase;
    padding-top: 1rem;
}

.testi {
    width: 400px;
    height: 300px;
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    padding: 1rem;
    margin: 1rem;
    border: 0.5px solid #e1e1e1;
    color: #21201c;
    border-bottom: 2px solid #fdd41a;
    box-shadow: 0 0 10px rgba(48, 48, 48, 0.5);
}

.testi2 {
    background-color: #21201c;
    border-bottom: #21201c;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.Stroked {
    position: absolute;
    font-size: 9rem;
    /* font-weight: 100; */
    font-family: Roboto;

    color: transparent;
    -webkit-text-stroke: 0.5px rgb(221, 221, 221);
    /* font-size: 40px; */
    bottom: -20px;
    font-weight: 900;

}

.testi img {
    width: 80px;
    height: 80px;
    margin: 0 1rem;
}

.cntr {
    font-family: Roboto;
    font-size: 4rem;
    font-weight: 600;
    padding: 0 0.4rem;
    /* padding-left: 1rem; */
    padding-bottom: 1rem;
    color: #fdd41a;
}

.counterText {
    display: flex;
    /* bottom:15%; */
}

.counterTextBold {
    font-size: 2rem;
    font-weight: 600;

}

.professionals {
    background-color: #e4e4e4;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    width: 100vw;
}

.proffesH {
    font-family: Roboto;
    font-size: 4rem;
    text-transform: uppercase;
    margin: 2rem 4rem;
    color: #fdd41a;
    text-align: left;
}

.profimages {
    display: flex;
    flex-wrap: wrap;
}

.overlayProcontainer {
    position: relative;
    width: 21vw;
    height: 55vh;
    margin: 2vh 1.1vw;
}

.profoverlay {
    position: absolute;
    background-color: #fdd41a;
    width: 21vw;
    height: 55vh;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlaydescPro {
    font-family: Roboto;
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: #21201c;
    text-transform: uppercase;
}

.profdesig {
    font-size: small;
}

.profname {
    font-weight: 600;
    font-size: large;

}

.profimages img {
    width: 21vw;
    height: 55vh;
}

.overlayProcontainer:hover .profoverlay {
    opacity: 1;
}

.material-symbols-outlined {

    position: absolute;
    z-index: 10;
    background-color: #21201c;
    color: #b6b6b6;
    top: 10%;
    right: 10%;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 8px;

}


.socialProf {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    display: flex;
    flex-direction: column;
    top: 40%;
    right: 12%;
    padding-top: 40px;
    transform: translateX(7px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vieww {


    padding: 7px 5px;
    color: #b6b6b6;

}

.hoverSocial:hover .socialProf {
    transform: translateX(0);
    opacity: 1;

}

.vieww:hover {
    color: #21201c;
}

.accordion {

    width: 100%;
    max-width: 560px;
    height: 430px;
    max-height: 62vh;
    background: #FFF;
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.accordion h3 {
    font-family: Roboto;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fdd41a;
}

.accordion .accordion-content {

    margin: 3.5vh 0;
    border-radius: 5px;
    border-color: #bbffaa;
    overflow: hidden;
    /* text-align: justify;
      hyphens: auto; */


}

.accordion-content.is-open {
    padding-bottom: 1px;
}

.accordion-content header {
    display: flex;
    min-height: 7vh;
    padding: 0 15px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s linear;
}

.accordion-content.is-open header {
    min-height: 35px;

}

.accordion-content-title {
    font-family: Roboto;
    font-size: 1.2rem;
    padding-right: 10px;
    font-weight: 600;
    color: #fdd41a;
}

.accordion-content-description {
    height: 0;
    font-size: 13px;
    font-weight: 400;
    padding: 0 3vw;
    border-bottom: #000;
    font-family: Roboto;
    font-size: medium;
    letter-spacing: 1px;
    color: #686868;
    padding-top: 10px;
    text-justify: distribute;
    line-height: 1.5rem;

}

.FAQs {
    display: flex;
    width: 100vw;
    padding: 4rem 4rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

.clrYlw h1 {
    color: #fdd41a;
    font-size: 8rem !important;
}

/* .FAQs img {
    width: 500px;
    height: 400px;
} */

.news {
    background: linear-gradient(to bottom, #6d6d6d, #fdd41a);
    width: 100vw;
    padding: 4rem 1vw;
    font-family: Roboto;

}

.newsTemplate {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: 1rem 0;
}

.imagenews {
    width: inherit;
}

.imagenews img {
    width: inherit;
    height: 35vh;
}

.newscontainer {
    background-color: #FFF;
    margin: 0.5rem;
    width: 300px;
    height: 500px;
    cursor: pointer;
    transition: all ease-in-out 0.5s;
}

.serviceContainer,
.serviceContainer1 {
    /* background-color: #fafafa; */
    background-color: none;
    margin: 0.8rem;
    width: 370px;
    height: 500px;

    transition: all ease-in-out 0.5s;

}

.serviceContainer {
    background-color: #fafafa;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(44, 44, 44, 0.5);

}

.serviceContainer1 img {
    width: 370px;
    height: 500px;

}


.serviceDetail p {
    font-size: medium;
    line-height: 20px;
    letter-spacing: 1px;
    padding-right: 1.5rem;
    font-size: medium;
    letter-spacing: 1px;
    color: #686868;
    padding-top: 10px;
    text-justify: distribute;
    line-height: 1.5rem;
    /* text-align: justify;
      hyphens: auto; */
}

.largeScreen {
    display: none;
}

.serviceH h1,
h2 {
    font-size: 1.8rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    font-weight: 800;
    color: #fdd41a;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #5f5f5f;
}

.serviceH h1 {
    font-size: 2rem;
    font-weight: 800;
    padding-bottom: 3rem;
}

.imagesvc img {
    width: 370px;
    height: 350px;
}

.fa-plus {
    transition: all ease-in-out 0.5s;
}

.newscontainer:hover,
.serviceContainer:hover {
    .headingnews {
        color: #fdd41a;
        text-shadow: 1px 1px 2px #2e2e2e;

    }

    .buttonreadmore .fa-plus {
        background-color: #fdd41a;
        box-shadow: 0 0 2px rgba(44, 44, 44, 0.5);
    }
}

.datenews {
    font-family: Roboto;
    text-transform: uppercase;
    padding: 2rem;
    font-size: small;
}

.headingnews {
    font-family: Roboto;
    text-transform: uppercase;
    padding: 0 1.8rem;
    font-size: 15px;
    color: #21201c;
    font-weight: 600;
    padding-bottom: 1rem;
    letter-spacing: 1px;
    transition: all ease-in-out 0.5s;

}

.buttonreadmore {
    padding: 1rem 2rem;
    padding-bottom: 2rem;
    transition: all ease-in-out 0.5s;
}

.buttonreadmore .fa-plus {
    padding: 1rem;
    margin-left: 1rem;
}


.formcontact {
    color: #7e7e7e;
    display: flex;
    flex-direction: column;
}

.formtocontactus {
    background-color: #fff;
    width: 300px;
    height: 461px;
    padding: 5rem;
}

.headingforform {
    text-align: center;
    padding-bottom: 2rem;
    color: #7e7e7e;
}

.headingforform h1 {
    letter-spacing: 1px;
    font-size: 25px;
    line-height: 25px;
    font-weight: normal;
    color: #2d2d2d;
    text-transform: uppercase;
    padding: 6rem;

}

.headingforform p {
    font-size: 14px;
    line-height: 27px;
    color: #7e7e7e;
    letter-spacing: 1px;
    padding-top: 1rem;
}

.formcontact input {
    margin: 0.3rem 2rem;
    width: 400px;
    height: 34px;
    padding: 0.5rem;
    background-color: #f9f9f9;
    color: #7e7e7e;
    ;

    outline: 0;
    border-bottom: 2px solid #fdd41a !important;
    border: 1px solid #f1f1f1;
}

.formcontact textarea {
    margin: 0.3rem 2rem;
    width: 400px;
    padding: 0.5rem;
    background-color: #f9f9f9;
    border-color: #f1f1f1;
    color: #7e7e7e;
    ;
    outline: 0;
    border: 1px solid #f1f1f1;
    border-bottom: 2px solid #fdd41a !important;
    border: 1px solid #f1f1f1;

}

input:focus,
textarea:focus {
    outline: 2px solid #fdd41a;
}



.cdetails p {
    font-size: small;
    padding: 2rem 1.8rem;

    color: #7e7e7e;
}

.formButton {
    background-color: #fdd41a;
    text-transform: uppercase;
    width: 400px;
    height: 34px;
    border: none;
    cursor: pointer;
    padding: 5px 20px;
    color: #000000;
    margin: 0.2rem 2rem;
    transition: all ease-in-out 0.3s;
}


.minicontact:hover {
    color: #fdd41a;
}



/* Style for Contact Page */

.eandc {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem;
    justify-content: center;
    align-items: center;
}

.textE h2 {
    font-size: 1.5rem;
    color: #505050;
    text-shadow: none;
}

.newHeadingH3 {
    font-weight: 500;
    font-size: medium;
}

.textE p {
    font-size: medium;
    letter-spacing: 1px;
    color: #686868;
    padding-top: 10px;
    line-height: 1.5rem;
    font-size: 1rem;
    width: 500px;
    /* text-align: justify;
      hyphens: auto; */
}

.textE {
    padding: 1rem;
}


.Eandcmini {
    width: 250px;
    padding: 1rem;
    margin-right: 1rem;
    text-align: center;
    border: 1px solid rgb(231, 231, 231);
    border-bottom: 2px solid #fdd14a;
    height: 250px;
}

.Eandcmini i {
    font-size: 4rem;
    padding: 1rem;
    padding-top: 3rem;
}

.Eandcmini p {
    font-size: 1rem;
    font-weight: 600;

}

.experienceandcapacities {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem;
    justify-content: center;
    align-items: center;
}

.bigEandC {
    width: 520px;
    height: 355px;
    margin-left: -2rem;
    padding: 2rem;

}

.bigEandC p {
    padding: 10px 2rem;
    font-size: 16px;
    font-weight: 300;

}

.paddingLess {
    padding: 0rem !important;
    margin: 0.5rem;
}

.mainImagePage {
    background-image: url('https://img.freepik.com/free-photo/civil-engineer-holding-blueprint-his-hand-talking-cellphone_23-2147842957.jpg?size=626&ext=jpg&ga=GA1.1.883146338.1696511196&semt=ais');
    width: 100vw;
    height: 80vh;
    background-repeat: no-repeat;
    display: flex;

    background-size: cover;
    background-position: center;
}

.dApButton {
    cursor: pointer;
}

.mainTextImg {

    width: 600px;
    opacity: 0;
    color: #000;
    padding: 4rem;
    padding-top: 8rem;
    transform: translateX(-10%);
    /* Initially move it outside the viewport on the left */
    animation: slideIn 1s forwards;
    color: #21201c;
    font-family: Roboto;
    text-shadow: 2px 2px 10px #444444;
    /* text-align: justify;
    hyphens: auto; */

}

.mainTextImg h4,
h1 {
    text-transform: uppercase;
}


.location1 {
    margin: 8rem;
    margin-left: 10rem;
    width: fit-content;


}

.location1 p {
    font-size: medium;
    padding-top: 1rem;
    width: fit-content;


}

.location1 p:hover {

    color: #686868;
    cursor: pointer;

    .contactawesome {
        color: #fdd41a;
        cursor: pointer;
    }
}


.mainTextImg h4 {
    font-weight: 300;

}

.contactawesome {
    padding-right: 1rem;
    color: #21201c;

}

.locationAndForm {
    margin: 3rem 8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.formtoContact {
    width: 450px;
}

.formtoContact h1 {
    font-size: 2rem;
    padding-left: 1rem;
}

.formtoContact p {
    font-size: 0.7rem;
    padding-left: 1rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.mainTextImg h3 {
    padding-top: 1rem;
    font-weight: 400;
    font-size: 1.2rem;

}


.formcontactUs input,
textarea {
    /* color: #cd9d37; */
    border-bottom: 0.5px solid #999999 !important;
    width: 450px;
    margin: 0.5rem 0.5rem;
    padding: 1rem;
    border: none;
}

.map {
    height: 600px;
    padding-right: 2rem;
}

label {
    padding: 1rem;
    font-size: x-small;

}


#formButtonContact {
    background-color: #fdd41a;
    border: none;
    margin-top: 1rem;
    margin-left: 10px;
    cursor: pointer;
    width: 150px;
    height: 60px;
    padding: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    /* box-shadow: 0 0 2px rgba(44, 44, 44, 0.5); */
}

.formButtonContact:hover {
    box-shadow: 0 0 5px rgba(44, 44, 44, 0.5);
}

.subAddPara {
    font-family: Roboto;
    font-size: large;
    padding: 0 7rem;
    font-size: medium;
    letter-spacing: 1px;
    color: #686868;
    /* text-align: justify;
    hyphens: auto; */
    line-height: 1.5rem;
    padding-bottom: 3rem;
    margin-top: -1rem;
}

.chngClr {
    color: whitesmoke;
    text-shadow: 1px 1px 6px #000;
}

.sz {
    font-size: 2.4rem;
}

.corevalues {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    flex-wrap: wrap;
}

.corevalue {
    width: 300px;
    text-align: center;

}

.coretagline p {
    font-size: x-small;
}

.coreHeading h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #2b2a25;
    padding-top: 1rem;


}

.coredetail p {
    font-size: 13px;
    padding: 1rem;
    color: #21201c;

}

.svgcore {
    font-size: 3rem;
    text-align: center;
    padding: 1.3rem;

    /* width: 100px;
    height: 100px; */
}


.imagesGallery {
    display: flex;
    flex-wrap: wrap;
    margin: 4rem 6rem;
}



.imageProjects {
    width: 300px;
}



.product {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 4rem 5rem;
}

.details {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.name h1 {
    font-family: Roboto;
    /* width: 50%; */
    font-size: 1.2rem;
}

.developement {
    font-family: Roboto;
    padding-top: 1rem;
}

.info h3 {
    font-family: Roboto;
    padding-top: 3rem;
}

.country,
.city,
.year {
    font-family: Roboto;
    padding-top: 1rem;
}

.contactusH {
    margin: 4rem 10rem;
}

.contactusH h1 {
    text-align: center;
    font-size: 3rem;
}

.contactus {
    margin-top: 2rem;
    display: flex;
}

.contactus p {
    font-size: 15px;
    font-family: Roboto;
}


table {
    border: 1px solid;
    border-collapse: collapse;
    text-align: center;
    margin: 0 2rem;
}

th {
    padding: 1rem 2rem;
    background-color: rgb(187, 187, 187);
    /* border: 1px solid  rgb(187, 187, 187); */
}

td {
    padding: 1rem 2rem;
}


.introP {
    margin: 6rem 8rem;
    text-emphasis: left;
    font-family: Roboto;
    /* text-align: justify;
      hyphens: auto; */
}

.introP h1 {
    font-family: Roboto;
    text-align: center;
    font-size: 2rem;
}

.introP p {
    line-height: 1.5rem;
    letter-spacing: 2px;

}

.whybuyP {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.whybuyP img {

    height: 410px;
    width: 530px;
}

.contentText {
    padding: 2rem 2rem;
    margin: 0 1rem;
    border: 1px solid #e0e0e0;
    border-bottom: 2px solid #cd9d37;
    width: 48%;
}

.contentText h1 {
    font-family: Roboto;
    text-align: center;
    font-size: 1.5rem;
    padding: 1rem;
}

.contentText li {
    line-height: 1.5rem;
    font-family: Roboto;
    letter-spacing: 2px;
    list-style-type: circle;
}

.photogallery {
    margin: 4rem 9rem;
    text-align: center;
}

.photogallery h1 {
    font-family: Roboto;
    text-align: center;
    font-size: 3rem;
    padding: 1rem;
}

.photogallery h2 {
    font-family: Roboto;
    text-align: center;
    font-size: 2rem;
    padding: 1rem;
}

.image-container-load {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
}

.image-container-load img {
    width: 249px;
    height: 250px;
    margin: 10px;
}


.photogallery button {
    background-color: #cd9d37;
    height: fit-content;
    width: 100px;
    padding: 1rem;
    border: none;
    align-items: center;
}

.priceandplan {
    margin: 4rem 8rem;
}


.row>.column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 25%;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 50vw;
    height: fit-content;
    max-width: 1000px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.mySlidesM {
    display: none;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prevM,
.nextM {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.nextM {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevM:hover,
.nextM:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

img {
    margin-bottom: -4px;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.PinfoC {
    margin-left: 1rem;
}

.location {
    margin-left: 1rem;
    width: 34%;
    /* background-color: #cd9d37; */
    align-self: center;
    height: 355px;
}

.location iframe {
    width: 100%;
    /* background-color: #cd9d37; */
    align-self: center;
    height: 355px;
}

.location h1 {
    font-family: 'Roboto Slab';
    text-align: center;
    font-size: 3rem;
    padding: 1rem;
}

.contactperson {
    display: flex;

}

.contactperson img {
    width: 140px;
    height: 140px;
}



.desig {
    margin-top: 2rem;
}

.contactForm {
    display: grid;
    grid-template-columns: auto auto;
    width: 500px;
    margin-left: 4rem;
}

.contactForm button {
    background-color: #cd9d37;
    border: none;
    width: 100px;
    height: 60px;
    cursor: pointer;

}

.contactForm button:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);

}

.uname {
    margin: 0.2rem 0;
    margin-right: 1rem;
    padding: 0.5rem;
}

.utele {
    margin: 0.2rem 0;
    padding: 0.5rem;
}

.uemail {
    grid-column: 1/3;
    margin: 0.5rem 0;
    padding: 5px;
}

.msg {
    grid-column: 1/3;
    margin: 0.5rem 0;
    padding: 10px;
}

.projectTemp {
    width: 38vw;
    margin-left: 13rem;
}

.blogsMainPage {
    margin: 2rem 8rem;
}

.blogsMainPage p {
    font-size: 1rem;
    /* text-align: justify;
      hyphens: auto;*/
}


.gallerySelect {
    float: right;
}

.gallery {
    height: fit-content;
}


.project {
    width: 350px;
    margin: 1rem;
    background-color: transparent;


}

.searchBox {
    font-size: 2rem;
    margin-right: 6rem;

}

.searchBox select {
    font-size: 1rem;
}

li h3 {
    margin-top: 1rem;
    margin-left: 4rem;
    text-decoration: underline;
}

li p {
    margin-top: 1rem;
    margin-left: 4rem;
    /* text-decoration: underline; */
}

.projectTypeCheck {
    height: 50vh;
    width: fit-content;
}

.img-comp-container {
    position: relative;
    width: 350px;
    height: 290px;
    /*should be the same height as the images*/
}

.img-comp-img {
    position: absolute;
    width: 350px;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    vertical-align: middle;
    width: 350px;
    height: 290px;
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    /*set the appearance of the slider:*/
    width: 20px;
    height: 20px;
    background-color: #fdd14a;
    opacity: 0.7;
    border-radius: 50%;

}

.imagesliderpro {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;

}

.slider-containerProject {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem;

}

.newdiv {
    display: block;
}

.name_slider {
    position: relative;
    top: 100%;
    font-size: 1.5rem;
    font-weight: 600;

}


.name_slider:hover {
    color: #fdd41a;
}

.emailAdded {
    display: none;


}

/* .grid-layout {
    display: grid;
    align-items: start;
    background-color: var(--grey);
    grid-template-columns: repeat(5, 1fr);
    width: 700px;
    gap: 10px;
    border: 2px solid var(--blue);
    padding: 10px;
    margin: 20px;
    grid-template-rows: masonry;
    align-tracks: stretch;
}

.item {
    background-color: #000;
    border: 2px solid var(--lemon);
    display: flex;
    justify-content: center;
    align-items: center;
} */

.masonry {
    column-count: 3;
    /* Set the initial column count */
    column-gap: 20px;
    /* Adjust the gap between items */
    margin: 6rem;
    margin-top: 8rem;
}

.item {
    break-inside: avoid;
    /* Prevent items from breaking across columns */
    margin-bottom: 20px;
    /* Adjust the margin between items */

    width: 380px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.item:hover {
    .date {
        text-shadow: 2px 2px 4px #000000;
    }

    .blogHeadingList {
        color: #fdd41a;
    }

    .chngdirection button {
        background-color: rgb(250, 183, 39);
        box-shadow: 0 10px 20px 0 rgba(255, 94, 20, .5);
    }
}

.item img {
    width: inherit;
}

.chngdirection {
    float: left !important;
    padding-bottom: 2rem;
    transition: all 0.5s ease-in-out;
}

.date {
    font-size: 14px;
    line-height: 2em;
    letter-spacing: .1em;
    font-weight: 500;
    color: inherit;
    padding-top: 1rem;
    transition: all 0.5s ease-in-out;
}

.blogHeadingList {
    font-size: 21px;
    font-weight: 700;
    line-height: 28px;
    color: #565969;
    transition: all 0.5s ease-in-out;
}

.blogintroLineList {
    font-size: 18px;
    line-height: 2em;
    font-weight: 500;
    color: inherit;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.errorpagediv{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    height: 70vh;
    width: 100vw;
    padding-left: 6rem;
}