@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --color-primary: #17214b;
    --color-primary-light: #f4f9ff;
    --color-black: #27272f;
    --color-gray: #6c6e6f;
    --pbmit-global-color: var(--color-primary);
    --pbmit-secondary-color: var(--color-primary);

    --primary-font: "Raleway", sans-serif;

    --section-padding: 100px;
}

::selection {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* * {
    background-color: rgba(48, 245, 48, 0.144);
} */

*:not(i, span) {
    font-family: var(--primary-font) !important;
}

.pbmit-btn {
    &:hover {
        * {
            color: var(--color-black) !important;
        }
    }
}

.pbmit-btn-blackish {
    * {
        color: white !important;
    }

    &:hover {
        * {
            color: white !important;
        }
    }
}

.pbmit-heading-subheading-style-2 {
    max-width: 800px;
    margin-inline: auto;

    .pbmit-title {
        color: var(--color-primary) !important;
    }

    .pbmit-subtitle {
        color: var(--color-black) !important;

        &::after,
        &::before {
            background-color: var(--color-primary) !important;
        }
    }

    p {
        margin-top: 2rem;
        text-wrap: pretty;
    }
}

.pbmit-title {
    font-weight: 600 !important;
    font-size: 52px !important;
}

.pbmit-subtitle {
    font-weight: 600 !important;
}

@media (max-width: 994px) {
    .pbmit-heading-subheading {
        text-align: center;
    }

    .pbmit-heading-subheading-style-2 {
        text-align: center;

        .pbmit-subtitle {
            width: 100%;
            text-align: center;
            justify-content: center;

            &::before,
            &::after {
                display: none;
            }
        }
    }
}

@media (max-width: 600px) {
    .pbmit-title {
        font-size: 45px !important;
    }
}

section {
    background-color: white;
    padding-block: var(--section-padding) !important;

    * {
        color: var(--color-black) !important;
    }
}

header {
    .site-header-menu {
        position: fixed !important;
        z-index: 1000 !important;
        transition: all 0.4s ease;

        .site-branding img {
            max-height: 34px !important;
        }

        &.fixed {
            background-color: white;
            box-shadow: 1px 1px 5px 5px rgb(0 0 0 / 2%);

            *,
            *::before,
            *::after {
                color: var(--color-black) !important;
            }

            .pbmit-btn:hover {
                background-color: var(--color-gray);

                svg {
                    filter: brightness(0) invert(1);
                }
            }

            .pbmit-btn * {
                color: white !important;
            }

            .logo-img {
                transition: all 0.4s ease;
            }
        }

        &:not(.fixed) {
            .logo-img {
                filter: brightness(0) invert(1);
            }
        }

        .megamenu {
            .row {
                margin-inline: 0;
                flex-wrap: wrap;

                .col {
                    width: 25%;

                    @media (max-width: 1400px) {
                        width: 50%;
                        min-width: 50%;
                    }
                }
            }

            >ul {
                width: 1000px;
                transform: translateX(-50%);

                @media (max-width: 1400px) {
                    width: 450px;
                }

                li {
                    padding-inline: 0.5rem;
                    padding-block: 0.5rem;

                    a:focus,
                    a:hover {
                        color: var(--color-primary);
                    }
                }
            }
        }
    }

    .navigation {
        margin-inline: auto;
    }

    .site-navigation ul.navigation>li>a {
        margin: 0px 15px;
    }

    .site-branding {
        padding-right: 50px !important;
    }

    .site-navigation ul.navigation>li>a {
        height: 80px !important;
        line-height: 81px !important;
    }
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>ul>li>ul {
    min-width: fit-content;
    width: max-content;
    max-width: 319px;
}

.main-menu .navigation li ul li {
    padding: 6px 25px;

    a {
        font-size: 14px;
        line-height: calc(14px * 1.5);
    }
}

#home {
    height: 100vh;
    overflow: hidden !important;

    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(23, 33, 75);
            background: radial-gradient(circle, var(--color-primary) 25%, rgba(0, 0, 0, 1) 100%);
            opacity: 0.6;
            z-index: 10;
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .img-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden !important;

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(23, 33, 75);
            background: radial-gradient(circle, var(--color-primary) 25%, rgba(0, 0, 0, 1) 100%);
            opacity: 0.6;
            z-index: 10;
            overflow: hidden;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
            animation: scaleUpDown 10s infinite;
        }
    }

    .content {
        position: relative;
        z-index: 20;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        max-width: 900px;
        margin-inline: auto;
        container: hero-container / inline-size;

        * {
            color: white !important;
        }

        h1 {
            font-size: max(3.2rem, 8.7cqw);
            line-height: max(calc(2.8rem * 1.3), calc(8.7cqw * 1.3));
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
        }

        p {
            font-size: max(1rem, 2.8cqw);
            line-height: max(calc(1rem * 1.3), calc(2.8cqw * 1.3));
            text-align: center;
            text-wrap: balance;
            margin-bottom: 3rem;
        }

        .pbmit-btn:hover {
            * {
                color: var(--color-black) !important;
            }
        }
    }
}

@keyframes scaleUpDown {

    0%,
    100% {
        transform: scale(1);
        /* Original size */
    }

    50% {
        transform: scale(1.1);
        /* Scales up */
    }
}

#about {
    .pbmit-element-title {
        color: var(--color-primary) !important;
    }

    .pbmit-tween-effect-style-1.pbmit-tween-efect .pbmit-element-title {
        font-size: 78px;
        line-height: calc(78px * 1.3);
    }

    .pbmit-heading-subheading {
        display: none;
    }

    @media (max-width: 774px) {
        .pbmit-heading-subheading {
            display: block;
        }

        .pbmit-tween-efect {
            display: none;
        }

        .pbmit-fid-inner {
            text-align: center;
        }

        .pbmit-fid-title {
            text-align: center;
            justify-content: center;
        }
    }
}

#separator {
    background: url(./../img/banners/parallax1.webp);
    background-size: cover;
    background-attachment: fixed;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.5;
    }

    * {
        color: white !important;
    }

    .container {
        position: relative;
        z-index: 20;
    }

    .pbmit-btn {
        &:hover {
            * {
                color: var(--color-black) !important;
            }
        }
    }

    .menu-right-box {
        position: relative;
        right: unset;
        top: unset;
    }
}

#services {
    background-color: var(--color-primary-light);
    padding-bottom: 0 !important;

    .pbmit-service-style-2 {
        position: relative;
        padding-block: 8px;
        border-bottom: 1px solid rgb(255, 255, 255, 0.2);
    }

    .pbmit-titlebox {
        * {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 774px) {
        .pbmit-titlebox {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;

            .pbminfotech-box-number {
                margin-bottom: 0;
            }

            * {
                font-size: 1.5rem;
                line-height: calc(1.5rem * 1.3);
                width: fit-content;
            }
        }
    }

    .pbmit-hover-img {
        display: none;
    }

    .pbminfotech-author-wrapper {

        &::before,
        &::after {
            display: none;
        }
    }

    .pbmit-ihbox {
        position: relative;
        height: unset;
        aspect-ratio: 2;
        width: 100%;
        border: solid 1px white;
        border-style: solid solid none none;

        .pbmit-mainih-box {
            position: relative;
            transition: all 0.4s ease;
            z-index: 5 !important;

            * {
                color: white !important;
            }
        }

        &:hover {
            .img-container {
                opacity: 1;
            }

            .pbmit-mainih-box {
                * {
                    color: white !important;
                }
            }

            .pbmit-ihbox-box {
                background-color: rgba(0, 0, 0, 0.5);
            }
        }

        .img-container {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: all 0.4s ease;
            opacity: 0;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .pbmit-mainih-box {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 2.5rem;
        gap: 1.2rem;

        * {
            position: static;
        }

        .pbmit-ihbox-contents {
            padding: 0;
        }

        .pbmit-icon-wrapper {
            padding: 0;
        }
    }

    .pbmit-ihbox-box {
        height: unset;
        aspect-ratio: 2;
        background: var(--color-primary);
    }
}

#podcasts {
    /* background-color: var(--color-primary-light); */

    .pbmit-blog-style-2 {
        height: 398px;

        * {
            color: white !important;
        }
    }
}

#news {
    background-color: var(--color-primary-light);

    .pbmit-blog-style-1 .pbminfotech-box-content {
        padding: 1.6rem;
    }

    .pbmit-blog-style-1 .pbmit-post-title {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .pbmit-featured-wrapper {
        height: 300px;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

    .pbmit-meta-container :is(span, a) {
        font-size: 0.8rem;
    }

    .pbmit-post-title {
        font-size: 1.3rem;
        line-height: calc(1.3rem * 1.5);
        border-bottom: none;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 63px;

        a {
            display: block;
            height: 100%;
        }
    }

    .swiper-wrapper {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: start;
    }
}

#team {
    .pbmit-team-style-1 .pbminfotech-box-content {
        margin-top: 1rem;

        * {
            text-align: start;
        }

        .pbmit-social-li {
            color: white !important;

            * {
                color: white !important;
            }
        }
    }

    .pbmit-team-style-1 ul li {
        * {
            color: white !important;
        }
    }

    .pbmit-team-title {
        margin-bottom: 0;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 25px;
    }

    .pbminfotech-box-email {
        margin-bottom: 0;
    }

    .pbmit-team-style-2 {
        margin-bottom: 50px !important;
        margin-top: 0 !important;
    }

    .pbminfotech-titlebox {
        margin-top: 0.8rem;
    }

    .pbmit-team-style-2:hover .pbmit-featured-wrapper img {
        opacity: 1 !important;
        transform: scale(1.05) !important;
        filter: brightness(0.6);
    }

    .pbmit-social-li {
        color: white !important;
    }
}

#testimonials {
    position: relative;
    background-color: var(--color-primary-light);

    .pbmit-testimonial-style-2 .pbminfotech-author-wrapper::after {
        display: none;
    }

    .pbmit-testimonial-style-2 .pbminfotech-author-wrapper::after,
    .pbmit-testimonial-style-2 .pbminfotech-author-wrapper::before {
        display: none;
    }

    .pbminfotech-author-wrapper {
        margin: 0;
        padding-top: 0;
    }

    .testimonial-swiper {
        overflow-x: hidden;
    }

    .pbminfotech-testimonial-text p {
        font-size: 1.2rem;
        line-height: calc(1.2rem * 1.5);
        padding-right: 3rem;

        @media (max-width: 766px) {
            padding-inline: 1rem;
        }
    }

    .testimonial-swiper {
        position: relative;
    }

    .pbmit-testimonial-style-2 {
        position: relative;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px !important;
        height: 50px !important;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1 !important;
        cursor: pointer;
        margin: 0 !important;
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 100;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: white;
    }

    .swiper-button-prev {
        left: 0;
        transform: translateY(-50%) rotate(180deg);
    }

    .swiper-button-next {
        right: 0;
    }

    .swiper-pagination {
        display: none;
    }
}

#brands {
    padding-block: var(--section-padding) !important;
}

#brochure {
    position: relative;
    background: url(./../img/banners/brochure.jpg);
    background-size: cover;
    background-position: center;

    * {
        color: white !important;
        position: relative;
        z-index: 5;
    }

    .pbmit-svg-btn {
        .pbmit-btn:hover {
            background-color: white !important;
        }

        a span {
            color: var(--color-primary) !important;
        }
    }
}

#contact-form {
    * {
        color: var(--color-primary) !important;
    }

    .pbmit-btn {
        background-color: var(--color-primary);

        &:hover {
            background-color: var(--color-gray);
        }
    }

    .pbmit-header-button2-text {
        color: white !important;
    }
}

#contact-info {
    padding-block: 0 !important;

    * {
        color: white !important;
    }

    .container-fluid {
        padding-inline: 0;
    }

    .pbmit-element-heading {
        margin-bottom: 5px;
    }

    .pbmit-ihbox-style-19 {
        border-style: solid;
        border-width: 1px 0px 1px 1px;
        border-color: #d1d1d1;
        background-color: var(--color-primary);
        padding: 80px !important;

        .pbmit-box-content {
            position: relative;
            padding-bottom: 0;
            margin-bottom: 0;
        }
    }

    .pbmit-ihbox {
        position: relative;
        transition: all 0.1s ease;
        border: none !important;

        &:hover {
            img {
                opacity: 0;
            }
        }

        h2 {
            position: relative;
            z-index: 50;
        }

        /* &:hover {
      background-color: var(--color-primary-light);
    } */
    }

    .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: brightness(0.5);
        transition: all 0.1s ease;
    }
}

#map {
    padding-block: 0 !important;

    iframe {
        filter: unset !important;
    }
}

footer {
    .pbmit-footer-text-area {
        padding: 0.7rem 1rem !important;
    }

    .pbmit-footer-text-area {
        background-color: var(--color-primary) !important;
    }

    .pbmit-footer-section.pbmit-footer-text-area a:hover {
        color: var(--color-gray) !important;
    }
}

.social-media {
    position: fixed;
    top: 50%;
    right: 0.25rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    mix-blend-mode: difference;
    z-index: 900;

    a,
    a:is(:hover, :visited, :active) {
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 10px;
    }

    img {
        width: 14px;
        height: 14px;
        /* mix-blend-mode: difference */
        filter: brightness(0) invert(1);
    }
}

.what-we-offer-tag,
.pbmit-title>* {
    color: var(--color-primary) !important;
}

#about .pbmit-btn:hover {
    background-color: #939393;
}

/* #team {
  .pbmit-team-style-2 {
    margin-bottom: 94px !important;
    margin-top: 0 !important;
  }
} */

.pbmit-team-style-2 .pbmit-team-social-links li a {
    color: var(--color-primary-light) !important;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 1px; */
    margin: 0;
    background: url(./../img/exp.webp);
    background-size: cover;
}

@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-grid .expertise-item {
    border-radius: 0;
    overflow: hidden;
    border: none;

    &.blank {
        background-color: var(--color-primary-light);
    }

    .pbmit-ihbox-icon {
        display: none;
    }
}

.expertise-grid .pbmit-ihbox-style-7 {
    padding: 0;
    text-align: center;
}

.expertise-grid .img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.expertise-grid .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-grid .pbmit-ihbox-style-7 .pbmit-element-title {
    font-size: 18px;
    font-weight: 600;
}

.news-section {
    display: grid;
    grid-template-areas:
        "one one two"
        "one one three";
    gap: 20px;
    max-height: 500px;
    overflow: hidden;
}

.news-item {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.news-item.one {
    grid-area: one;
}

.news-item.two {
    grid-area: two;
}

.news-item.three {
    grid-area: three;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Centers the image */
}

.news-content {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 10;
}

.news-content h3 {
    font-size: 22px;
    line-height: calc(22px * 1.5);
    font-weight: bold;
    color: white !important;
    margin-bottom: 0.1rem;
}

.news-content p {
    font-size: 16px;
    color: white !important;
    z-index: 10;
    margin: 0;
}

/* .news-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #27272f82;
  z-index: 1;
} */

#team {
    background: var(--color-primary-light);
}

#newsletterPopup {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#newsletterPopup.hidden {
    opacity: 0;
    visibility: hidden;
}

#insight .swiper-slide {
    height: 477px !important;
}

.pbmit-blog-style-1 .pbmit-featured-wrapper img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: left;
}

.pbmit-blog-style-1 .pbmit-featured-container .pbmit-featured-img-wrapper {
    border-radius: 8px;
}

.pbmit-blog-style-1 .pbminfotech-box-content {
    margin-left: 15px;
    margin-right: 15px;
    box-shadow: 0 5px 20px -15px;
}

.pbmit-post-title a {
    width: 100%;
    display: block;
}

.pbmit-blog-style-1 .pbmit-meta-line a {
    font-size: 13px;
}

/* .hero-text {
  width: 60vw;
} */

#services {
    height: 1450px;
}

@media (max-width: 1020px) {
    #services {
        height: 1733px;
    }
}

@media (max-width: 782px) {
    #services {
        height: 2419px;
    }
}

@media (max-width: 588px) {
    #services {
        height: 3558px;
    }
}

@media (max-width: 480px) {
    #services {
        height: 4472px;
    }
}

#newsletter .pbmit-btn-hover-black:hover,
.pbmit-btn-global:hover {
    background-color: white;
}

/* .form-newsletter * {
  height: 79px;
} */

#awards {
    background-color: var(--color-primary-light);
}

#awards .pbmit-service-style-2 .pbmit-service-title {
    position: relative;
    z-index: 0;
    font-size: 36px;
    line-height: 53px;
    margin: 0;
}

#awards .pbmit-btn:hover {
    background-color: gray;
}

.img-back {
    z-index: 100000;
    position: absolute;
    width: 54px;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    filter: invert(1);
}

.honeycomb-cell:hover .honeycomb-cell__title {
    opacity: 1 !important;
}

.honeycomb-cell:hover::before {
    background: #17214b !important;
}

.pbmit-service-style-2 .pbmit-hover-img img {
    border-radius: 0%;
}

.honeycomb-cell:hover {
    transform: scale(1.02);
}

.honeycomb-cell {
    transition: all 0.2s linear;
}

.single-blog-authorbox img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0 -34px;
}

.awards-list-container {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.awards-list-container ul li {
    list-style-type: disc;
    /* list-style-position: inside; */
    /* font-size: 20px; */
    font-size: 17px;
    line-height: 2.4rem;
}

.awards-list-container ul h6 {
    margin-top: 1rem;
}

.award-seperation {
    padding-bottom: 48px !important;
    border-bottom: 1px solid var(--color-black);
}

#awards .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#awards .image-container img {
    width: 60%;
}

.contact-form {
    padding-right: 0;
}

@media screen and (max-width: 568px) {
    .awards-list-container {
        margin-top: 48px;
        justify-content: center;
    }

    .form-newsletter {
        flex-direction: column;
        gap: 20px !important;
    }

    .popup-verfication {
        margin-top: 20px !important;
    }

    #newsletterPopup button#subscribe {
        margin: 20px 0;
    }

    #home .content {
        padding: 0 10px;
    }

    #home .content .hero-text {
        margin-bottom: 2rem;
    }

    .lawyer-about-us .heading-desc {
        text-align: center;
    }

    #about .about-img {
        display: none;
    }

    #about .lawyer-about-us {
        padding: 0;
    }

    .img-about {
        margin-top: 0;
    }

    #news .news-section {
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    #testimonials .pbminfotech-testimonial-text p {
        font-size: 17px;
    }

    #brands {
        padding-block: 50px !important;
    }

    .pbmit-element-posts-wrapper .pbmit-blog-style-4:last-child {
        margin-bottom: 0 !important;
    }

    #team .pbmit-team-style-2 .pbminfotech-post-item {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .pbmit-ihbox-style-15 .pbmit-element-title {
        font-size: 35px;
        line-height: 40px;
    }

    .contact-form {
        padding-bottom: 0;
    }

    #home .content {
        margin-top: 50px;
    }

    .pbmit-blog-style-1 .pbmit-featured-wrapper img {
        height: 300px;
    }

    #testimonials .row {
        justify-content: center;
    }

    .brochure-section .text-end {
        text-align: center !important;
    }

    #brochure .pbmit-ihbox-box {
        justify-content: center;
    }
}

@media (min-width: 569px) and (max-width: 768px) {

    .pbmit-element-posts-wrapper .pbmit-blog-style-4:nth-last-child(1),
    .pbmit-element-posts-wrapper .pbmit-blog-style-4:nth-last-child(2),
    .pbmit-element-posts-wrapper .pbmit-blog-style-4:nth-last-child(3) {
        margin-bottom: 0 !important;
    }
}

#insight .pbmit-blog-style-1 .pbmit-post-title {
    font-size: 22px;
    line-height: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--color-primary);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: white !important;
}

.swiper-button-prev {
    left: 10px !important;
}

.pbmit-team-style-2 .pbmit-image-wrapper,
.pbmit-team-style-2 .pbminfotech-titlebox {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
}

.pbmit-team-style-2 .pbminfotech-social-box {
    top: 45%;
}

#team .pbmit-team-style-2 .pbminfotech-box-content {
    text-align: center;
}

@media (max-width: 1199px) {

    .main-menu .navigation>li.dropdown>ul.open,
    .main-menu .navigation>li.dropdown>ul.open li.dropdown>ul.open {
        height: 100%;
    }
}

#newsletter input:focus {
    color: white !important;
}

.popup-verfication {
    margin-top: 10px;
}