a{
    text-decoration: none !important;
}
footer a{
    color: #fff !important;
}
footer ul{
    list-style: none;
    padding: 0;
}
.Homepostslider .anwp-pg-post-teaser__content {
    position: absolute;
    z-index: 999;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .6s ease-in-out;
}
.Homepostslider .anwp-pg-post-teaser:hover .anwp-pg-post-teaser__content{
    opacity: 1;
}
.Homepostslider .anwp-pg-post-teaser {
    cursor: pointer;
}
.page-id-14 ul#menu-header-menu a {
    color: #fff !important;
}
.page-id-14 .letsBtn a {
    fill: #fff !important;
    color: #fff !important;
}
.mobAccClients .e-closed i.icon {
    transform: rotate(270deg);
}
.current-menu-item a.active, .current-page-ancestor a {
    font-weight: 700 !important;
}
/*Grid style on Naming section*/

.overlay-posts-grid {
  display: grid;
  gap: 20px;
}

/* Base columns */
.cols-1 { grid-template-columns: repeat(1, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }
.cols-6 { grid-template-columns: repeat(6, 1fr); }

/* Responsive tweaks */
@media (max-width: 1200px) {
  .overlay-posts-grid.cols-6,
  .overlay-posts-grid.cols-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .overlay-posts-grid.cols-4,
  .overlay-posts-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .overlay-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .overlay-posts-grid {
    grid-template-columns: 1fr;
  }
}


.overlay-posts-filter-wrapper {
    margin-bottom: 20px;
    max-width: 100%;
    width: 260px;
}

#overlay-tag-filter {
    width: auto;
    padding: 8px 12px;
    border: 1px solid #000;
    background-color: transparent;
    font-weight: bold;
}
.overlay-post {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.overlay-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;

}

.overlay-post:hover img {
    transform: scale(1.05);
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hwb(0deg 0% 100% / 70%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.Namingpageposts .overlay-content {
    background-color: #000;
    padding: 3px;
}

.overlay-post:hover .overlay-content {
    opacity: 1;
}


.overlay-excerpt {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    font-family: "Myriad Pro";
}

/*17-04-2025*/

.LIstedPosts .elementskit-post-body {
    padding: 10px 0 10px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.LIstedPosts .elementskit-post-image-card:hover img{
    transform: unset !important;
}


.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 20px;
    color: #fff;
    width: 100%;
    border: 1px solid #000;
    line-height: 32px;
    padding: 20px;
}
 select {
     display: none;
}
.custom-select {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    color: #000;
    padding: 8px 15px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-weight: 700;
    line-height: 25px;
    background: url(/wp-content/uploads/2025/04/Group-37.svg) no-repeat right 15px center;
}
 /*.custom-select:after {
     content: "";
     width: 0;
     height: 0;
     border: 7px solid transparent;
     border-color:#9E9E9E transparent transparent transparent;
     position: absolute;
     top: 16px;
     right: 10px;
     transform: rotateZ(0deg);
     transition: all 0.5s;
     transform-origin: 50% 25%;
}*/
/*.custom-select:hover {
     background-color: #b83729;
}
*/
.custom-select:active, .custom-select.active {
    color: #000;
    background: #fff url(/wp-content/uploads/2025/04/Group-37-1.svg) no-repeat right 15px center;
}
 .custom-select:active:after, .custom-select.active:after {
     transform: rotateZ(180deg);
     transition: all 0.5s;
     transform-origin: 50% 25%;
}
 .custom-select:focus{
    outline: 2px;
}
 .select-options {
     display: block;
     position: absolute;
     top: 100%;
     right: 0;
     left: 0;
     z-index: 999;
     margin: 0;
     padding: 0;
     list-style: none;
     background-color: #e8f0fd;
}
.select-options li:first-child {
    display: none;
}
.select-options li {
    color: #000;
    margin: 0;
    border: 1px solid #000;
    padding: 6px 0;
    /* text-indent: 15px; */
    /* border-top: 1px solid #AED581; */
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    padding-left: 15px;
}
.select-options li:hover {
    color: #fff;
    background: #000;
    font-weight: 700;
}
 .select-options li[rel="hide"] {
     display: none;
}
 ::-webkit-scrollbar {
     width: 10px;
     background-color: #F5F5F5;
     border-radius: 0 0 5px 0;
}
 ::-webkit-scrollbar-thumb {
     border-radius: 10px;
     background-color:#9E9E9E;
}
.overlay-posts-grid.cols-4 .overlay-excerpt {
    font-size: 24px;
    line-height: 32px;
    text-align: start;
}


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

.menuPopup {
    position: fixed;
    z-index: 1000;
    background-color: #01adee;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 50%;
}

.slide-menu-right {
    right: -100%;
    top: 0;
    height: 100%;
}

body.smr-open .slide-menu-right {
    right: 0
}
.menuPopup div#wpforms-992 {
    margin: 0 !important;
}
.menuPopup .wpforms-field {
    padding-top: 0px !important;
    padding-bottom: 6px !important;
}
.menuPopup .close {
    cursor: pointer;
}

.rightButton {
    background: #000 !important;
    border-radius: 0px !important;
    padding: 10px 40px !important;
}
.rightButton:after{
    display:none;
}
.menuPopup .wpforms-submit-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menuPopup .wpforms-submit-container{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}



/* 21-04-25 */
.Homepostslider .anwp-pg-wrap .anwp-pg-height-300 {
    min-height: 360px !important;
    aspect-ratio: 1 / 1 !important;
}
.contact_popup input, .contact_popup textarea {
    color: #000 !important;
    font-family: "Myriad Pro" !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400  !important;
    line-height: normal !important;
    border: none !important;
    border-radius: 0 !important;
    BACKGROUND: #fff !important;
    padding: 12px !important;
}
.contact_popup input::placeholder, .contact_popup textarea::placeholder {
    color: #000 !important;
    font-family: "Myriad Pro" !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400  !important;
    line-height: normal !important;
    padding: 0 !important;
    opacity: 1 !important;
}
.contact_popup input:focus, .contact_popup textarea:focus, .contact_popup input:focus-within, .contact_popup textarea:focus-within {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}
.contact_popup textarea {
    min-height: 161px !important;
}
.contact_popup button[type="submit"]:hover {
    background: #fff !important;
    color: #000 !important;
}
.menuPopup .elementor-element.elementor-element-9af1dc7 {
    padding-top: 70px;
}
.people_img img {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
}
.page-id-14 .elementskit-menu-hamburger {
    background: #fff !important;
}
.page-id-14 .ekit-nav-dropdown-hover.active ul#menu-header-menu a {
    color: #000 !important;
}
button.elementskit-menu-close.elementskit-menu-toggler:focus, button.elementskit-menu-close.elementskit-menu-toggler:focus-visible, button.elementskit-menu-close.elementskit-menu-toggler:hover {
    background: #fff !important;
}
.MobileSlider .slick-list .slick-slide {
    margin: 0 !important;
    height: auto !important;
}
.menuPopup  .elementor-heading-title a {
    word-wrap: break-word !important;
}


.whatwedoResults .onHoverShow img {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.whatwedoResults{
    cursor:pointer;
}
.MobileSlider .slick-slide {
  margin: 0 10px;
  box-sizing: border-box;
}

.MobileSlider .slick-prev{
    left:0;
}
.MobileSlider .slick-next{
    right:0;
}
.MobileSlider .slick-prev:before, .MobileSlider .slick-next:before{
    color:#000;
}
.MobileSlider img {
    margin: 0 auto;
}
.elementskit-menu-overlay.elementskit-menu-offcanvas-elements.elementskit-menu-toggler.ekit-nav-menu--overlay {
    display: none;
}

@media only screen and (max-width:767px){
    button.elementskit-menu-hamburger.elementskit-menu-toggler {
        display: block;
    }
    .ekit_menu_responsive_mobile>.elementskit-navbar-nav-default {
        background-color: #f7f7f7;
    }
    .elementskit-navbar-nav-default.elementskit-menu-offcanvas-elements {
        width: 100%;
        position: fixed !important;
        top: 0;
        left: -100vw;
        height: 100%;
        -webkit-box-shadow: 0 10px 30px 0 rgba(255,165,0,0);
        box-shadow: 0 10px 30px 0 rgba(255,165,0,0);
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-transition: left .6s cubic-bezier(.6,.1,.68,.53);
        transition: left .6s cubic-bezier(.6,.1,.68,.53);
    }
        .elementskit-menu-offcanvas-elements.active {
        left: 0;
    }
        .ekit-wid-con .elementskit-navbar-nav-default.elementskit-menu-container {
        z-index: 1000;
    }
    .ekit_menu_responsive_mobile .elementskit-nav-identity-panel {
        display: block !important;
    }
    .home .elementor.elementor-13 {
        z-index: 0;
        position: relative;
    }
    body:has(.elementskit-menu-offcanvas-elements.active) .overlay-post:after {
    z-index: 0;
}
}

.Homepostslider .anwp-pg-post-teaser__thumbnail:after {
    content: "";
    position: absolute;
    bottom: 13px;
    right: 13px;
    height: 31px;
    width: 31px;
     z-index:1;
    background: url(/wp-content/uploads/2025/04/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.Homepostslider .anwp-pg-post-teaser[data-swiper-slide-index="8"] .anwp-pg-post-teaser__thumbnail:after {
    content: "";
    background: url(/wp-content/uploads/2025/04/Group-17.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.overlay-post:after {
    content: "";
    position: absolute;
    bottom: 13px;
    right: 13px;
    height: 31px;
    width: 31px;
    z-index: 1;
    background: url(/wp-content/uploads/2025/04/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.workpagePosts .overlay-post.post-2:after, 
.workpagePosts .overlay-post.post-4:after,
.workpagePosts .overlay-post.post-10:after
 {
    content: "";
    background: url(/wp-content/uploads/2025/04/Group-17.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.Namingpageposts .overlay-post:after {
    content: none;
}
.Namingpageposts .overlay-posts-container {
    gap: 34px;
}
.blog_posts .post-items > div {
    padding: 0 18px;
}
.blog_posts .post-items {
    grid-gap: 36px 0 !important;
}
.elementskit-menu-hamburger {
    border: 1px solid rgb(0 0 0) !important;
}


.linkBox:hover:after {
    content: "";
    position: absolute;
    bottom: 13px;
    right: 13px;
    height: 31px;
    width: 31px;
    z-index: 9999;
    background: url(/wp-content/uploads/2025/04/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.MobileSlider .onHoverShow {
    opacity: 0;
}
.MobileSlider .slick-arrow:before{
    display:none;
}
.MobileSlider .slick-disabled {
    display: none !important;
}
.MobileSlider .slick-prev, .MobileSlider .slick-next {
    width: 45px;
    height: 45px;
}

.work-single-post li#menu-item-18 a {
    font-weight: 700;
}

@media only screen and (max-width: 1399px) {
    .menuPopup .elementor-element.elementor-element-9af1dc7 {
        padding-top: 20px !important;
    }
}
.menuPopup a {
    color: #fff !important;
}


/*.anwp-pg-post-teaser.swiper-slide {
    width: 360px !important;
}*/



.Homepostslider .swiper-container {
    padding: 0 18.6%;
    box-sizing: border-box;
}
.sibling-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 60px;
}
.sibling-nav .prev-page.nav-previous, .sibling-nav .nav-next.next-page {
    border: 1px solid #000000;
    padding: 8px 15px;
}
.sibling-nav .prev-page.nav-previous a, .sibling-nav .nav-next.next-page a {
    color: #000000;
}
.sibling-nav .prev-page.nav-previous:hover a, .sibling-nav .nav-next.next-page:hover a {
    color: #01ADEE;
}
.sibling-nav .prev-page.nav-previous:hover, .sibling-nav .nav-next.next-page:hover {
    border-color: #01ADEE;
}

/* 05-12-2025 */
.home footer {
    display: none;
}