:root
{
    --primaryColor: #356bbe;
    --primaryColor: #c7ab6d;
    --primaryColorHover: green;
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: "Montserrat", sans-serif;
/*     min-height: 250vh; */
/*     background-image: linear-gradient(black, white); */
}
a{
    color: #206c6d;
}
a:hover
{
    text-decoration: none !important;
}
.linkBox {
    text-align: right;
    color: #206c6d !important;
    text-transform: capitalize;
    width: 100%;
    display: block;
}
.whiteText
{
    color: white !important;
}
img
{
    max-width: 100%;
}
ul, li
{
    list-style: none;
    margin: 0;
}
.btn-primary
{
    background-color: var(--primaryColor);
    border: none;
}
.btn-primary:hover
{
    background-color: var(--primaryColorHover);
}
.h-75vh
{
    height: 75vh;
}
.h-80vh
{
    height: 80vh;
}
.h-85vh
{
    height: 85vh;
}
.h-90vh
{
    height: 90vh;
}
.h-100vh
{
    height: 100vh;
}
.max-w-100
{
    max-width: 100%;
}


@media only screen and (max-width: 768px)
{
    body
    {
        font-size: 14px;
    }
}


/* Header Start */


.header
{
    top: 0;
    color: black;
    position: sticky;
    z-index: 101;
    width: 100%;
    font-size: 14px;
    color: black;
    transition: 0.3s;
    background: white;
    box-shadow: 0px 4px 33px 1px rgba(0, 0, 0, .07);
}
.header div[class*="col"]
{
    position: initial;
}
.header .row.align-items-stretch {
    display: flex;
    align-items: stretch;
}
@media only screen and (min-width: 991px)
{
    .home .header {
        top: 0;
        color: black;
        position: fixed;
        z-index: 101;
        width: 100%;
        font-size: 14px;
        color: white;
        transition: 0.3s;
        background: linear-gradient(180deg, #000000, transparent);
        box-shadow: none;
    }

    .header.sticky
    {
        color: black;
        background: white;
        box-shadow: 0px 4px 33px 1px rgba(0, 0, 0, .07);
    }
}
.logoContainer {
    padding: 11px 0;
    width: 100%;
    transition: 0.3s;
}
.sticky .logoContainer {
    padding: 4px 0;
}
.logoContainer img {
    width: 100%;
    display: block;
}
.navigationLeft
{
    display: flex;
    align-items: center;
}
.linksContainer
{
    height: 100%;
    width: 100%;
    transition: 0.3s;
}
.navigationLinks {
    list-style: none;
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navigationLinkContainer {
    padding: 5px 0px;
    display: flex;
    align-items: baseline;
}
.navigationLinkContainer a
{
    font-size: inherit;
    position: relative;
}
.navigationLinkContainer > a
{
    color: inherit;
    padding: 7px 10px;
    font-weight: bold;
    transition: 0.3s;
}
.navigationLinkContainer:hover > a
{
    color: var(--primaryColor);
}
.navigationMenuOpen
{
    display: none;
}
.haveDropDown, .haveSubDropDown
{
    position: relative;
}
.dropDown
{
    font-weight: 400;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    color: black;
    background-color: white;
    transform: translateY(20px);
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    pointer-events: none;
}
@media screen and (min-width: 991px) {
    .haveSubDropDown .dropDown
    {
        top: 0;
        left: 100%;
        transform: translateX(20px);
    }
}


.haveSubDropDown .dropDown.left
{
    right: 100%;
    left: unset;
    transform: translateX(-20px);
}
.haveDropDown:hover > .dropDown,
.haveSubDropDown:hover > .dropDown
{
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transform: translateY(0);
}
.dropDown a
{
    font: inherit;
    color: inherit;
    transition: 0.3s;
}

.dropDown a:hover
{
   color: white;
   background-color: var(--primaryColor); 
}
.megaMenuRow
{
    border-top: 2px solid #206c6d;
    background-color: white;
    padding: 12px;
    border-radius:0 0 10px 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.16), 2px 2px 7px rgba(0,0,0,0.2);
}
.dropDownContainer .dropDownLinkBox.hasSubMegaMenu > a
{
    font-weight: bold;
}


.dropDownContainer .dropDownLinkBox:last-child
{
    border: none;
}
.dropDownLinkBox a
{
    display: flex;
    padding: 10px 12px;
}
.mobileNav
{
    display: none;
}
.contactInfo
{
    width: 100%;
    position:relative;
}
.mobileNav .contactInfo a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 16px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
}
.mobileNav .contactInfo a i{
    margin-right: 5px;
}
.mobileNav .social-icons
{
    padding: 7px 12px;
    display: flex !important;
}
.goBackBtn
{
    display: none;
    background-color: #efefef;
}
.navigationProfile
{
    display: none;
}
.navigationProfile img {
    width: 180px;
    height: auto;
    max-width: 100%;
    border-radius: 45px;
}
.profileContainer {
    display: flex;
    align-items: center;
    padding: 20px 12px;
    background-color: #f5f5f5;
}
.profileDetails {
    width: calc(100% - 70px);
    padding-left: 12px;
}
.profileName {
    width: 100%;
    font-size: 17px;
    line-height: normal;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fixedNavigationPhoneText {
    display: none;
}


@media screen and (max-width: 991px)
{
    .header {
        color: black;
        padding: 8px 0;
    }
    .navigationMenuOpen {
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        font-size: 17px;
        justify-content: center;
        color: var(--primaryColor);
        cursor: pointer;
        border-radius: 3px;
        background-color: white;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }
    .linksContainer
    {
        height: 100vh;
        top: 0;
        left: 0;
        width: 100%;
        position: fixed;
        pointer-events: none;
        opacity: 0;
        z-index: 1;
        backdrop-filter: blur(5px);
        background-color: rgba(0,0,0,0.16);
    }
    .linksContainer.active
    {
        pointer-events: initial;
        opacity: 1;
    }
    .linksContainer div[class*="col"]
    {
        padding: 0;
    }
    .navigationLinkContainer a
    {
        transition: 0.5s;
        position: relative;
    }
    .navigationLinkContainer:hover > a
    {
        color: white;
        background-color: var(--primaryColor);
    }
    .navigationLinks {
        width: 80%;
        font-size: 12px;
        max-width: 280px;
        position: relative;
        justify-content: flex-start;
        flex-direction: column;
        background-color: white;
        transition: 0.5s;
        height: 100%;
        overflow-y: auto;
        transform: translateX(-100%);
    }
    
    .linksContainer.active .navigationLinks
    {
        transform: translateX(0);
        display: block;
    }
    .navigationProfile {
        display: block;
    }
    .mobileNav
    {
        display: block;
    }
    .dropDownContainer {
        margin-bottom: 0px;
    }
    .goBackBtn {
        height: 39px;
        width: 100%;
        top: 0;
        left: 0;
        transition: 0.3s;
        align-items: center;
        cursor: pointer;
        z-index: 1;
        background-color: #efefef;
        display: none;
        position: fixed;
        font-size: 16px;
        font-weight: bold;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: hidden;
    }
    .hasSubMegaMenu .goBackBtn {
        z-index: 1;
    }
    .goBackBtn i {
        font-size: 13px;
        margin: 0 7px 0 10px;
    }
    .mobileNav .closeBtn {
        height: 39px;
        width: 32px;
        top: 0;
        right: 0;
        display: flex;
        transition: 0.3s;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        z-index: 100;
        background-color: transparent;
    }
    .fixedNavigationPhoneText {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        max-width: 280px;
        z-index: 1;
        display: block;
        line-height: 1.5;
        padding: 7px 12px;
        font-weight: 500;
        background-color: white;
    }
    .fixedPhoneLink {
        font-size: 1.3em;
        font-weight: bold;
    }
    .haveDropDown.active .goBackBtn,
    .haveSubDropDown.active .goBackBtn
    {
        display: flex;
    }
    .goBackBtn i
    {
        pointer-events: none;
    }
    .mobileNav .closeBtn:hover
    {
        color: white;
        background-color: #f00;
    }
    
    .navigationLinkContainer {
        padding: 0;
        position: relative;
        flex: initial;
    }
    .navigationLinkContainer a {
        padding: 9px 16px;
        display: block;
        width: 100%;
        font-size: 14px;
    }
    navigationLinkContainer
    .navigationLinkContainer:hover > a {
        color: white;
        background-color: var(--primaryColor);
    }
    .navigationLinkContainer a.viewMoreBtn {
        margin: 7px auto;
        text-align: center;
        width: calc(100% - 24px);
        color: #206c6d;
        padding: 7px 12px;
        border-radius: 6px;
        transition: 0.33s linear;
        border: 1px solid #206c6d;
    }
    .navigationLinkContainer a.viewMoreBtn:hover
    {
        background-color: #206c6d;
        color: white;
    }
    
    .navigationLinkContainer .haveDropDown a
    {
        padding: 7px 35px 7px 12px;
        display: block;
        width: 100%;
    }
    .navigationLinkContainer > a::before
    {
        display: none;
    }
    .dropDownLinkBox
    {
        position: relative;
    }
    .dropDownLinkBox:hover > a
    {
        color: white;
        background-color: var(--primaryColor);
    }
    .dropDownLinkBox.haveSubDropDown::before, .navigationLinkContainer.haveDropDown::before {
        content: "\f105";
        right: 0;
        padding-right: 15px;
        height: 100%;
        width: 50px;
        display: flex;
        position: absolute;
        font-family: 'fontAwesome';
        justify-content: flex-end;
        align-items: center;
        z-index: 1;
        font-size: 14px;
        color: var(--primaryColor);
        font-weight: bold;
        cursor: pointer;
    }
    .dropDownLinkBox.haveSubDropDown:hover::before, .navigationLinkContainer.haveDropDown:hover::before {
        color: white;
    }
    .dropDown {
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        color: #000;
        font-weight: 400;
        position: fixed;
        transition: 0.5s;
        z-index: 2;
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        padding-top: 39px;
        transform: translateY(0) translateX(-107%);
    }
    .dropDown .container{
        width: 100%;
    }
    .haveDropDown:hover > .dropDown,
    .haveSubDropDown:hover > .dropDown {
        transform: translateY(0) translateX(-107%);
    }
    .subMegaMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 2;
        transition: 0.5s;
        padding-top: 50px;
        transform: translateY(0) translateX(-107%);
    }
    .hasSubMegaMenu.active .subMegaMenu {
        transform: translateY(0) translateX(0%);
    }
    .subMegaMenu .dropDownLinkBox {
        border: none;
    }
    .haveDropDown.active > .dropDown,
    .haveSubDropDown.active > .dropDown
    {
        transform: translateX(0);
    }
    .dropDown > div:first-child {
        height: 100vh;
        overflow-y: auto;
    }
    .dropDown > div::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #fff;
    }
    .dropDown > div::-webkit-scrollbar-thumb {
        background-color: #dfdfdf;
    }
    .megaMenuRow {
        padding: 0;
        padding-top: 50px;
        border: none;
        display: flex;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        align-content: flex-start;
    }
    .dropDownContainer .dropDownLinkBox.hasSubMegaMenu > a {
        font-weight: normal;
    }
    .modalBtn
    {
        display: none;
    }
}


/* Header End */

.blog-wrapper .row
{
    display: flex;
    flex-wrap: wrap;
}
a.viewMoreBtn {
    justify-content: flex-end;
    text-align: right;
    color: #206c6d;
}


/* Breadcrumb Start */

.home .breadcrumbContainer
{
    display: none;
}
.breadcrumbContainer
{
    position: relative;
    background-color: #efefef;
}
.breadcrumbTitleBox
{
    font-size: 32px;
    text-align: center;
    padding: 60px 0;
}

/* Breadcrumb End */

/* Project Listing Start */

.projectListContainer
{
    position: relative;
}
.projectListCards
{
    padding: 40px 0;
}
.projectCard
{
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: 0.3s;
    background-color: white;
}
.projectCard:hover
{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.projectCard:last-child
{
    margin: 0;
}
.projectCardBox
{
    display: flex;
    align-items: stretch;
}
.projectImageContainer {
    width: 40%;
    min-height: 280px;
    position: relative;
}
.projectImageBox,
.projectImage
{
    height: 100%;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.projectImageContainer img {
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100%;
    transition: 0.3s;
    object-fit: cover;
    position: absolute;
}
.projectCard:hover img
{
    transform: scale(105%);
}
.projectContentContainer {
    width: 60%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}
.projectTitle
{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: 0.3s;
    display: block;
    color: var(--primaryColor);
}
.projectTitle:hover
{
    color: black;
}
.projectDesc
{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 28px;
    color: #676767;
}
.projectLinkBtn
{
    padding: 5px 12px;
    color: white;
    transition: 0.3s;
    background-color: black;
}
.projectLinkBtn:hover
{
    color: white;
    background-color: var(--primaryColor);
}


.horizontal .projectListCards {
    padding: 12px 0;
    display: grid;
    align-items: stretch;
    justify-content: center;
    gap: 26px 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.horizontal .projectCard
{
    padding: 0;
    height: 100%;
}
.horizontal .projectCardBox
{
    flex-wrap: wrap;
}
.horizontal .projectImageContainer
{
    width: 100%;
    min-height: 240px;
}
.horizontal .projectContentContainer
{
    width: 100%;
}

@media only screen and (max-width: 768px)
{
    .horizontal .projectListCards {
        grid-template-columns: 1fr 1fr;
    }

}
@media only screen and (max-width: 575px)
{
    .projectCardBox
    {
        flex-direction: column;
    }
    .projectImageContainer {
        width: 100%;
        min-height: 250px;
        height: 250px;
    }
    .projectContentContainer {
        width: 100%;
        padding: 18px 16px;
    }

    .horizontal .projectListCards {
        grid-template-columns: 1fr;
    }
}

/* Project Listing End */


/* Project Single Start */

.projectMainWrapper
{
    min-height: 65vh;
    /* padding-bottom: 24px; */
}

/* Project Single End */


/* Contact Form Start */
.contactForm
{
    padding: 24px;
    background-color: white;
    transform: translateY(-15%);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contactFormTitle
{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}
.form-label
{
    font-weight: 600;
    display: block;
    color: #676767;
    font-size: 14px;
    margin-bottom: 2px;
}

@media only screen and (min-width: 768px)
{
    .contactForm
    {
        width: 105%;
        transform: translateX(-15%);
    }
}

/* Contact Form End */


/* Footer Start */

.footer {
    position: relative;
    box-shadow: 0 0px 20px rgba(200,200,200, 0.2);
}
.footer::before
{
    content: '';
    position: absolute;
    inset: 0 0;
    opacity: 0.5;
    background: radial-gradient(at bottom right, var(--primaryColor), white);

}
.mainFooterBox {
    padding: 40px 0 65px;
}
.footerLogo
{
    width: 240px;
    max-width: 100%;
}
.footerLogo img
{
    width: 100%;
}
.footer-right-widget ul:not(.wp-block-social-links-is-layout-flex) a,
.footer-middle-widget a
{
    font-weight: 500;
    color: #565656;
    display: block;
    margin-bottom: 7px;
    transition: 0.3s;
}
.footer-right-widget a:hover,
.footer-middle-widget a:hover
{
    color: #121212;
}
.copyrightContent {
    text-align: center;
    font-size: 12px;
    color: white;
    font-weight: 600;
    background: var(--primaryColor);
    padding: 5px 0;
    position: relative;
    z-index: 1;
}
.copyrightContent p{
    margin: 0;
}

@media only screen and (max-width: 768px)
{

    .footer {
        font-size: 13px;
    }
    .widget-title
    {
        font-size: 18px;
        font-weight: 600;
    }
    .copyrightContent {
        font-size: 10px;
    }
    .widget_nav_menu
    {
        margin-bottom: 30px;
    }

}
@media only screen and (max-width: 575px)
{

    .footer {
        font-size: 12px;
    }
    .widget-title
    {
        font-size: 17px;
        font-weight: 600;
    }
    .copyrightContent {
        font-size: 10px;
    }
    .widget_nav_menu
    {
        margin-bottom: 24px;
    }

}




/* Footer End */

/* Elementor Overrides */

.e-contact-buttons__powered-text
{
    display: none !important;
}
.swiper-slide {
    height: 100%;
    aspect-ratio: 7/5;
    position: relative;
}
.swiper-slide-inner
{
    height: 100%;
}
.elementor .swiper-slide img
{
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
}
.elementor-widget-image-carousel .swiper {
    height: 100%;
}

.elementor-element .swiper .elementor-swiper-button, .elementor-element .swiper~.elementor-swiper-button, .elementor-lightbox .swiper .elementor-swiper-button, .elementor-lightbox .swiper~.elementor-swiper-button {
    z-index: 3;
}