/*=============================
	Mobile Menu CSS
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--td-common-white);
    margin-right: 30px;
    top: 15px;
}

.nav-logo img {
    width: 150px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu #menu-header-menu li.current>a:before, .mobile-menu #menu-all-pages li.current>a:before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--td-common-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu #menu-header-menu, .mobile-menu #menu-all-pages {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu #menu-header-menu li, .mobile-menu #menu-all-pages li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu #menu-header-menu ul, .mobile-menu #menu-all-pages ul {
    padding: 0;
    margin: 0;
}

.mobile-menu #menu-header-menu:last-child, .mobile-menu #menu-all-pages:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu #menu-header-menu li>ul>li:first-child, .mobile-menu #menu-all-pages li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu #menu-header-menu li>a, .mobile-menu #menu-all-pages li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--td-theme-primary);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu #menu-header-menu li ul li>a, .mobile-menu #menu-all-pages li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu #menu-header-menu li ul li ul li a, .mobile-menu #menu-all-pages li ul li ul li a {
    margin-left: 40px;
}

.mobile-menu #menu-header-menu li ul li ul li ul li a, .mobile-menu #menu-all-pages li ul li ul li ul li a {
    margin-left: 60px;
}

.mobile-menu #menu-header-menu li>a:before, .mobile-menu #menu-all-pages li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}

.mobile-menu #menu-header-menu li.menu-item-has-children .dropdown-btn, .mobile-menu #menu-all-pages li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--td-common-white);
    background: var(--td-theme-primary);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}
.main-header-two__outer .mobile-menu #menu-header-menu li.menu-item-has-children .dropdown-btn {
    background: #FF5E14;
}

.mobile-menu #menu-header-menu li.menu-item-has-children .dropdown-btn i, .mobile-menu #menu-all-pages li.menu-item-has-children .dropdown-btn i {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu #menu-header-menu li.menu-item-has-children .dropdown-btn.open i, .mobile-menu #menu-all-pages li.menu-item-has-children .dropdown-btn.open i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--td-theme-primary);
}

.mobile-menu #menu-header-menu li>ul,
.mobile-menu #menu-all-pages li>ul,
.mobile-menu #menu-header-menu li>ul>li>ul,
.mobile-menu #menu-all-pages li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}

.mobile-menu .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: var(--thm-heading-font-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--thm-body-font-color);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mobile-menu .social-links li a:hover {
    border-color: var(--td-theme-primary);
    background: var(--td-theme-primary);
    color: var(--td-theme-primary);
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--td-theme-primary);
    display: none;
    padding: 29px 0 30px;
    z-index: 5;
}
.main-header-two__outer .mobile-nav-toggler {
    color: #FF5E14;
}

.mobile-menu .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 25px 0px;
}

.mobile-menu .contact-info .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--td-theme-primary);
    border-radius: 50%;
}

.mobile-menu .contact-info .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--td-theme-primary);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
}
.main-header-two__outer .mobile-menu .contact-info .icon-box {
    background: #FF5E14;
}
.main-header-two__outer .mobile-menu .social-links li a:hover {
    border-color: #FF5E14;
    background: #FF5E14;
}


.mobile-menu .contact-info p {
    margin: 0;
    margin-left: 15px;
    font-weight: 600;
}

.mobile-menu .contact-info p a {
    color: var(--td-theme-primary);
}

.mobile-menu .contact-info p a:hover {
    color: var(--td-theme-primary);
}




@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -50px;
    }

    100% {
        margin-top: 0;
    }
}
.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    background: #011C39;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
    z-index: 99;
    animation-name: menu_sticky;
    animation-duration: 0.60s;
    animation-timing-function: ease-out;
    transition: all .25s ease-in-out;
}

.sticky-menu .navbar-wrap ul li a {
    padding: 35px 0;
}


/*=============================
	Main Header Css
===============================*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    z-index: 99;
}

.menu-wrap {
    position: relative;
    display: block;
}

.menu-area__inner {
    position: relative;
    display: block;
}

.menu-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navbar-wrap {
    position: relative;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0 0 auto;
}

.navbar-wrap ul li {
    position: relative;
    display: block;
    list-style: none;
}

.navbar-wrap ul li+li {
    margin-left: 37px;
}

.navbar-wrap>ul>li::after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--thm-secondary);
    border-radius: 5px 5px 0px 0px;
    transition: transform 700ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    content: "";
}

.navbar-wrap>ul>li.active:after,
.navbar-wrap>ul>li:hover:after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.main-menu #menu-header-menu li.menu-item-has-children .dropdown-btn {
    display: none;
}

.navbar-wrap>ul>li.menu-item-has-children.active>a::after {
    color: #062547;
}



/*=============================
	Blog One CSS
===============================*/
.blog-one {
    position: relative;
    display: block;
    padding: 120px 0 117px;
    z-index: 1;
}

.blog-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.05;
    z-index: -1;
}

.blog-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 58px;
}

.blog-one__top .sec-title {
    padding-bottom: 0px;
}

.blog-one__top .btn-box {
    position: relative;
    display: block;
    top: -13px;
}

.blog-one__bottom {
    position: relative;
    display: block;
}

.blog-one__single {
    position: relative;
    display: block;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 45px;
    z-index: 1;
}

.blog-one__single::before {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-secondary-rgb), 0.06);
    border-radius: 4px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: -1;
}

.blog-one__single:hover::before {
    background: var(--thm-secondary);
}

.blog-one__single::after {
    position: absolute;
    top: 30px;
    left: 0;
    bottom: 20px;
    right: 30px;
    border: 1px solid var(--td-theme-primary);
    border-radius: 4px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: -2;
}

.blog-one__single:hover::after {
    border-color: var(--thm-secondary);
}

.blog-one__single-img {
    position: relative;
    display: block;
    z-index: 5;
}

.blog-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px 4px 0px 0px;
}

.blog-one__single-img .inner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: var(--thm-heading-font-color);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-one__single:hover .blog-one__single-img .inner:before {
    opacity: 0.5;
}

.blog-one__single-img .inner .text-box {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--td-theme-primary);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    background: var(--thm-secondary);
    border-radius: 4px;
    font-family: var(--thm-heading-font);
    padding: 4px 10px 2px;
    z-index: 7;
}

.blog-one__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__single-img .inner img {
    transform: scale(1);
}

.blog-one__single-content {
    position: relative;
    display: block;
    padding: 31px 50px 31px;
    padding-right: 30px;
    z-index: 1;
}

.blog-one__single-content::before {
    position: absolute;
    top: 0;
    left: 19px;
    bottom: 0;
    right: 0;
    background: var(--td-common-white);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    content: "";
    z-index: -1;
}

.blog-one__single-content h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-transform: capitalize;
}

.blog-one__single-content h2 a {
    color: var(--thm-heading-color);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.blog-one__single-content h2 a:hover {
    background-size: 100% 1px;
}

.blog-one__single-content .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 17px;
}

.blog-one__single-content .meta-box li {
    position: relative;
    display: block;
    float: left;
    color: #93999F;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-one__single-content .meta-box li+li {
    margin-left: 5px;
}

.blog-one__single-content .meta-box li a {
    color: var(--thm-heading-font-color);
}

.blog-one__single-content .meta-box li a:hover {
    color: var(--td-theme-primary);
}

.blog-one .swiper-container {
    padding-left: 1px;
}

#blog-one__pagination {
    position: relative;
    padding-top: 0px;
    z-index: 55;
}

#blog-one__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#blog-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-secondary);
}

#blog-one__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#blog-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#blog-one__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}

/*=============================
	Blog Two Css
===============================*/
.blog-two {
    position: relative;
    display: block;
    padding: 120px 0px 240px;
    margin-bottom: -150px;
    z-index: 1;
}

.blog-two__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.blog-two__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 58px;
}

.blog-two__top .sec-title-two {
    padding-bottom: 0;
}

.blog-two__top .btn-box {
    position: relative;
    display: block;
    top: -12px;
}

.blog-two__top .btn-box .thm-btn {
    color: var(--td-common-white);
}

.blog-two__top .btn-box .thm-btn::before {
    background: var(--td-theme-primary);
}

.blog-two__single {
    position: relative;
    display: block;
    border-radius: 4px;
    box-shadow: 0px 10px 50px -28px rgba(2, 2, 49, 0.50);
    background: var(--thm-gray-bg);
    margin-bottom: 30px;
}

.blog-two__single-content {
    position: relative;
    display: block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 31px 30px 1px;
}

.blog-two__single-content h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-transform: capitalize;
}

.blog-two__single-content h2 a {
    color: var(--td-theme-primary);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.blog-two__single-content h2 a:hover {
    background-size: 100% 1px;
}

.blog-two__single-content .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 17px;
}

.blog-two__single-content .meta-box li {
    position: relative;
    display: block;
    float: left;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-two__single-content .meta-box li+li {
    margin-left: 5px;
}

.blog-two__single-content .meta-box li a {
    color: var(--thm-heading-font-color);
    font-weight: 500;
}

.blog-two__single-content .meta-box li a:hover {
    color: var(--td-theme-primary);
}


.blog-two__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 23px;
}

.blog-two__single-content .btn-box a {
    color: var(--td-theme-primary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
}

.blog-two__single-content .btn-box a:hover {
    color: #FF5E14;
}
.blog-three__single-content .btn-box a:hover {
    color: var(--td-theme-primary);
}

.blog-two__single-content .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    top: 4px;
    padding-left: 8px;
}

.blog-two__single-img {
    position: relative;
    display: block;
    padding-top: 30px;
}

.blog-two__single-img .overlay-img {
    position: absolute;
    top: 0;
    right: 20px;
    border: 2px solid var(--td-common-white);
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
}

.blog-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    z-index: 1;
}

.blog-two__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-two__single:hover .blog-two__single-img .inner img {
    transform: scale(1);
}

.blog-two__single-img .inner:before,
.blog-two__single-img .inner:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    z-index: 1;
}

.blog-two__single:hover .blog-two__single-img .inner:before {
    background-color: rgba(255, 255, 255, 0.2);
    right: 50%;
    left: 50%;
}

.blog-two__single:hover .blog-two__single-img .inner::after {
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    bottom: 50%;
}


/*=============================
	Blog Three Css
===============================*/
.blog-two--three {
    position: relative;
    display: block;
    margin-bottom: 0px;
    z-index: 1;
}

.blog-two--three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 531px;
    z-index: -1;
}

.blog-two--three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.9);
    content: "";
    z-index: -2;
}

.blog-two--three .sec-title-style3 h2 {
    color: var(--td-common-white);
}

.blog-two--three .sec-title-style3 .sub-title h5 {
    color: var(--td-theme-primary);
}

.blog-two--three .blog-two__single {
    box-shadow: 0px 4px 4px 0px rgba(18, 18, 20, 0.06);
    background: var(--td-common-white);
}

.blog-two--three .blog-two__single-img {
    padding-top: 0px;
}

.blog-two--three .blog-two__single-img .inner {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.blog-two--three .blog-two__single-img .overlay-img {
    position: relative;
    top: auto;
    right: auto;
    border: 0px solid var(--td-common-white);
}

.blog-two--three .blog-two__single-content {
    padding: 31px 30px 26px;
}

.blog-two--three .blog-two__single-img .overlay-img__outer {
    position: absolute;
    right: 20px;
    bottom: 2px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.blog-two--three .blog-two__single-img .overlay-img__outer .name {
    position: relative;
    display: inline-block;
    background: var(--td-common-white);
    padding: 5px 15px 5px;
    padding-right: 30px;
    border-radius: 15px;
    margin-right: -18px;
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.blog-two--three .blog-two__single:hover .blog-two__single-img .overlay-img__outer .name {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.blog-two--three .blog-two__single-img .overlay-img__outer .name p {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
}

#blog-two--three__pagination {
    position: relative;
    padding-top: 15px;
    z-index: 55;
}

#blog-two--three__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#blog-two--three__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--td-theme-primary);
}

#blog-two--three__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--td-theme-primary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#blog-two--three__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#blog-two--three__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}


/***
=====================================================
Sidebar Css 
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
    margin-left: 65px;
}

.sidebar__single {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 30px;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__single .title-box {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-bottom: 25px;
}

.sidebar__single .title-box h2 {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #121213;
    font-weight: 500;
    
}
.wp-block-search .wp-block-search__label {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #121213;
    font-weight: 600;
}
.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    position: relative;
    display: block;
    border: none;
    outline: none;
    background-color: var(--td-common-white);
    color: #6F7174;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    height: 55px;
    width: 100%;
    padding-right: 60px;
    border-radius: 4px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: #6F7174;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #6F7174;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #6F7174;
}

.sidebar__search-form ::placeholder {
    color: #6F7174;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #6F7174;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #6F7174;
}

.sidebar__search-form button[type="submit"] {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60px;
    background-color: var(--td-theme-primary);
    color: var(--td-theme-primary);
    font-size: 20px;
    outline: none;
    border: none;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form button i {
    font-weight: 700;
}

.sidebar__search-form button:hover {
    color: var(--td-common-white);
    background: var(--td-theme-primary);
}

.sidebar__services-list {
    position: relative;
    display: block;
}

.sidebar__services-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar__services-list li:last-child {
    margin-bottom: 0;
}

.sidebar__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--td-common-white);
    border-radius: 4px;
    color: #6F7174;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
    padding: 13px 20px 12px;
    font-family: var(--thm-body-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar__services-list li a:hover,
.sidebar__services-list li a.active {
    color: var(--td-theme-primary);
}

.sidebar__services-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 4px;
    background-color: var(--td-theme-primary);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.sidebar__services-list li a:hover::before,
.sidebar__services-list li a.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.sidebar__services-list li a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 26px;
    border-radius: 13px;
    color: var(--td-theme-primary);
    font-size: 15px;
    background: #f7f7f7;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__brochure {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 35px 30px 35px;
}

.sidebar__brochure-box {
    position: relative;
    display: block;
}

.sidebar__brochure-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 4px;
    padding: 10px 20px 11px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__brochure-single:hover,
.sidebar__brochure-single.active {
    background: var(--td-theme-primary);
}

.sidebar__brochure-single+.sidebar__brochure-single {
    margin-top: 10px;
}

.sidebar__brochure-single .left-content {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar__brochure-single .left-content .icon {
    position: relative;
    display: block;
}

.sidebar__brochure-single .left-content .icon img {
    width: 100%;
}

.sidebar__brochure-single .left-content .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.sidebar__brochure-single .left-content .text-box h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
}

.sidebar__brochure-single .left-content .text-box ul {
    position: relative;
    display: block;
}

.sidebar__brochure-single .left-content .text-box ul li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    padding-left: 5px;
}

.sidebar__brochure-single .left-content .text-box ul li:first-child {
    padding-left: 0;
}

.sidebar__brochure-single .left-content .text-box ul li:last-child {
    padding-right: 0px;
}

.sidebar__brochure-single .left-content .text-box ul li::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background: #d0ae43;
    content: "";
}

.sidebar__brochure-single .left-content .text-box ul li:last-child:before {
    display: none;
}

.sidebar__brochure-single .left-content .text-box ul li p {
    color: #6F7174;
    font-size: 13px;
    line-height: 23px;
    font-weight: 400;
    font-family: var(--thm-heading-font);
}

.sidebar__brochure-single .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 40px;
    background: #f7f7f7;
    border-radius: 13px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__brochure-single:hover .btn-box a,
.sidebar__brochure-single.active .btn-box a {
    background: var(--td-theme-primary);
}

.sidebar__brochure-single .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--td-theme-primary);
    font-size: 15px;
    line-height: 15px;
    transform: rotate(90deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.sidebar__contact {
    position: relative;
    display: block;
    padding: 50px 30px 44px;
    z-index: 1;
}

.sidebar__contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 4px;
    z-index: -1;
}

.sidebar__contact-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    opacity: 0.6;
    background: linear-gradient(180deg, rgba(18, 18, 19, 0.00) 35.74%, #121213 92.19%, #121213 100%);
    content: "";
    z-index: -2;
}

.sidebar__contact-box {
    position: relative;
    display: block;
}

.sidebar__contact-box .title {
    position: relative;
    display: block;
    padding-left: 10px;
    padding-top: 1px;
    z-index: 1;
    margin-bottom: 150px;
}

.sidebar__contact-box .title::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    background: var(--td-theme-primary);
    border-radius: 4px;
    content: "";
    z-index: -1;
}

.sidebar__contact-box .title h2 {
    color: var(--td-common-white);
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
}

.sidebar__contact-box-bottom {
    position: relative;
    display: block;
}

.sidebar__contact-box-bottom .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--td-common-white);
    border-radius: 50%;
    margin-bottom: 18px;
}

.sidebar__contact-box-bottom .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--td-theme-primary);
    font-size: 25px;
    line-height: 25px;
}

.sidebar__contact-box-bottom .text-box {
    position: relative;
    display: block;
}

.sidebar__contact-box-bottom .text-box p {
    color: var(--td-theme-primary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.sidebar__contact-box-bottom .text-box h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    font-family: var(--thm-body-font);
}

.sidebar__contact-box-bottom .text-box h2 a {
    color: var(--td-theme-primary);
    text-decoration: underline;
}

.sidebar__latest-post-list {
    position: relative;
    display: block;
}

.sidebar__latest-post-list li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    padding-top: 20px;
    padding-bottom: 19px;
}

.sidebar__latest-post-list li:first-child {
    padding-top: 0;
}

.sidebar__latest-post-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar__latest-post-list li .img-box {
    position: relative;
    display: block;
    width: 80px;
    border-radius: 4px;
    margin-right: 20px;
    overflow: hidden;
}

.sidebar__latest-post-list li .img-box img {
    width: 100%;
}

.sidebar__latest-post-list li .text-box {
    position: relative;
    display: block;
    flex: 1;
}

.sidebar__latest-post-list li .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.sidebar__latest-post-list li .text-box h3 a {
    color: var(--td-theme-primary);
}

.sidebar__latest-post-list li .text-box h3 a:hover {
    color: var(--td-theme-primary);
}


.sidebar__tag-list {
    position: relative;
    display: block;
    margin-left: 3px;
    margin-right: 3px;
}

.sidebar__tag-list li {
    position: relative;
    display: inline-block;
    padding: 0px 3px 0px;
    margin-bottom: 15px;
}

.sidebar__tag-list li a {
    color: #6F7174;
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--td-common-white);
    padding: 7px 15px 7px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar__tag-list li a:hover {
    background: var(--td-theme-primary);
    color: var(--td-theme-primary);
}


/*=============================
	Blog Three Blog CSS
===============================*/
.blog-two--three--blog {
    position: relative;
    display: block;
    padding-bottom: 120px;
}

.blog-two--three--blog .blog-two__single {
    margin-bottom: 50px;
}

.blog-two--three--blog .styled-pagination {
    padding-top: 0px;
}

/*=============================
	Blog Standard Page CSS
===============================*/
.blog-standard-page {
    position: relative;
    display: block;
    padding: 120px 0px;
    z-index: 1;
}

.blog-standard-page__content {
    position: relative;
    display: block;
    margin-right: -24px;
}

.blog-standard-page__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.blog-standard-page__single-img {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.blog-standard-page__single-img .video-btn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.blog-standard-page__single-img .video-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid var(--td-common-white);
    border-radius: 50%;
    color: var(--td-common-white);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
}

.blog-standard-page__single-img .video-btn a:hover {
    color: var(--td-theme-primary);
    border-color: var(--td-theme-primary);
}

.blog-standard-page__single-img .logo-box {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 5;
}

.blog-standard-page__single-img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--thm-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-standard-page__single:hover .blog-standard-page__single-img::before {
    opacity: 1;
}

.blog-standard-page__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.03);
    aspect-ratio: 10/5;
    object-fit: cover;
}

.blog-standard-page__single:hover .blog-standard-page__single-img img {
    transform: scale(1);
}

.blog-standard-page__single-content {
    position: relative;
    display: block;
    background: var(--td-common-white);
    box-shadow: 0px 4px 65px 0px rgba(18, 18, 19, 0.06);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 50px 50px 50px;
    z-index: 1;
}

.blog-standard-page__single-content .logo-box {
    position: absolute;
    bottom: 40px;
    right: 50px;
}

.blog-standard-page__single-content .meta-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 19px;
}

.blog-standard-page__single-content .meta-box.style2 {
    background: #f7f7f7;
    border-radius: 4px;
    max-width: 650px;
    width: 100%;
    padding: 13px 50px 13px;
}


.blog-standard-page__single-content .meta-box li:last-child {
    margin-right: 0px;
    display: flex;
    cursor: pointer;
}

.blog-standard-page__single-content .meta-box li a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--td-theme-primary);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 500ms ease;
}

.blog-standard-page__single-content .meta-box li a:hover {
    color: var(--td-theme-primary);
}

.blog-standard-page__single-content .meta-box li a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(var(--td-theme-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--td-theme-primary);
    font-size: 15px;
    line-height: 15px;
    margin-right: 10px;
}

.blog-standard-page__single-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 15px;
}

.blog-standard-page__single-content h2 a {
    color: var(--td-theme-primary);
}

.blog-standard-page__single-content h2 a:hover {
    color: var(--td-theme-primary);
}

.blog-standard-page__single-content p {
    font-weight: 500;
    margin-bottom: 30px;
}

.blog-standard-page__single-content .btn-box {
    position: relative;
    display: block;
    margin-top: 36px;
}

.blog-standard-page__single-content .btn-box .thm-btn::before {
    background: var(--td-theme-primary);
}

.blog-standard-page .styled-pagination {
    padding-top: 10px;
}

/*=============================
	Blog Details CSS
===============================*/
.blog-details {
    position: relative;
    display: block;
    background: var(--td-common-white);
    padding: 120px 0px 80px;
    z-index: 1;
}

.blog-details__content {
    position: relative;
    display: block;
    margin-right: -24px;
}

.blog-details__content-text1 {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 46px 50px 45px;
    margin-top: 31px;
    overflow: hidden;
    z-index: 1;
}

.blog-details__content-text1::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--td-theme-primary);
    content: "";
}

.blog-details__content-text1 .big-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.blog-details__content-text1 .big-icon span {
    position: relative;
    display: inline-block;
    color: rgba(var(--td-theme-primary-rgb), 0.1);
    font-size: 140px;
    line-height: 1em;
}

.blog-details__content-text1 p {
    color: rgba(var(--thm-black-rgb), 0.8);
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 32px;
}

.blog-details__content-text1 .author-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.blog-details__content-text1 .author-box .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ebebeb;
    border-radius: 50%;
}

.blog-details__content-text1 .author-box .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--td-theme-primary);
    font-size: 15px;
    line-height: 15px;
}

.blog-details__content-text1 .author-box .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
}

.blog-details__content-text1 .author-box .text-box p {
    color: var(--td-theme-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    font-style: normal;
}

.blog-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 39px;
}

.blog-details__content-text2 .title-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.blog-details__content-text2 .title-box>h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.blog-details__content-text2 .title-box p {
    font-weight: 500;
    margin: 0;
}

.blog-details__content-text2-img {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 42px;
    z-index: 1;
}

.blog-details__content-text2-img .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.blog-details__content-text2-img img {
    width: 100%;
}

.blog-details__content-text2-img .video-btn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.blog-details__content-text2-img .video-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid var(--td-common-white);
    border-radius: 50%;
    color: var(--td-common-white);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
}

.blog-details__content-text2-img .video-btn a:hover {
    color: var(--td-theme-primary);
    border-color: var(--td-theme-primary);
}

.blog-details__content-text2 .text1 {
    font-weight: 500;
    margin: 0;
}


.blog-details__tag-share {
    clear: both;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 36px;
    margin-bottom: 24px;
}

.blog-details__tag-share-tag {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__tag-share-tag .title {
    position: relative;
    display: block;
}

.blog-details__tag-share-tag .title h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    color: #121213;
    margin-bottom: 0;
}

.blog-details__tag-share-tag ul {
    position: relative;
    display: block;
    margin-left: 22px;
}

.blog-details__tag-share-tag ul li {
    position: relative;
    display: inline-block;
}

.blog-details__tag-share-tag ul li+li {
    margin-left: 6px;
}

.blog-details__tag-share-tag ul li a {
    position: relative;
    display: block;
    color: var(--td-theme-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    background: #f7f7f7;
    padding: 5px 15px 5px;
    border-radius: 15px;
}

.blog-details__tag-share-share {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__tag-share-share .title {
    position: relative;
    display: block;
}

.blog-details__tag-share-share .title h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--td-theme-primary);
    text-transform: capitalize;
}

.blog-details__tag-share-share .social-links {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
    margin-left: 20px;
}

.blog-details__tag-share-share .social-links a {
    position: relative;
    display: inline-block;
    color: #a0a0a0;
}

.blog-details__tag-share-share .social-links a:hover {
    color: var(--td-theme-primary);
}

.blog-details__tag-share-share .social-links a+a {
    margin-left: 15px;
}

.blog-details__tag-share-share .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}


.comment-one {
    position: relative;
    display: block;
    margin-top: 39px;
}

.comment-one .title-box {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.comment-one .title-box>h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
    margin: 0;
    color: #121213;
}

.blog-details__form {
    position: relative;
    display: block;
    border-top: 1px solid #e7e7e7;
    padding-top: 49px;
}

.blog-details__form .title-box {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.blog-details__form .title-box>h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 0;
}

.blog-details__form .contact-page__form textarea {
    height: 150px;
    margin-bottom: 11px;
}
.comment-one+.comment-respond {
    border-top: 1px solid #e7e7e7;
    margin-top: 50px;
}



/*=============================
	Breadcrumb CSS
===============================*/
/***
=============================================
  Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 152px 0px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.page-header__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(18, 18, 19, 0.00) -16.25%, #121213 100%);
    content: "";
}
.page-header__bg::after{
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
}

.page-header__inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.page-header__inner h2 {
    color: var(--td-common-white);
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: block;
}

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--td-common-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-left: 7px;
}

.page-header__inner .thm-breadcrumb li span {
    position: relative;
    display: inline-block;
    top: 1px;
}

.page-header__inner .thm-breadcrumb li:first-child {
    padding-left: 0;
}

.page-header__inner .thm-breadcrumb li a {
    color: var(--td-common-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
    color: var(--td-theme-primary);
}



/*======================================
Contact One Css
========================================*/
.contact-page {
    position: relative;
    display: block;
    background: var(--td-common-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.contact-page .shape1 {
    position: absolute;
    top: 155px;
    left: 0;
    opacity: 0.1;
    z-index: -1;
}

.contact-page .shape2 {
    position: absolute;
    bottom: 110px;
    right: 50px;
    opacity: 0.6;
    z-index: -1;
}

.contact-page__contact-info {
    position: relative;
    display: block;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 50px 40px 51px;
}

.contact-page__contact-info .sec-title-style3 {
    padding-bottom: 45px;
}

.contact-page__contact-info .sec-title-style3 h2 {
    font-size: 36px;
}

.contact-page__contact-info ul {
    position: relative;
    display: block;
}

.contact-page__contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}

.contact-page__contact-info ul li:last-child {
    margin-bottom: 0px;
}

.contact-page__contact-info ul li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    z-index: 1;
}

.contact-page__contact-info ul li .icon-box::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-bottom: 60px solid var(--td-theme-primary);
    border-left: 60px solid transparent;
    width: 60px;
    border-radius: 4px;
    content: "";
}

.contact-page__contact-info ul li .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--td-theme-primary);
    font-size: 30px;
    line-height: 30px;
    transition: all 500ms ease;
}

.contact-page__contact-info ul li:hover .icon-box span {
    transform: rotateY(180deg);
}


.contact-page__contact-info ul li .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
}

.contact-page__contact-info ul li .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.contact-page__contact-info ul li .text-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.contact-page__contact-info ul li .text-box h2 a {
    color: var(--td-theme-primary);
}

.contact-page__contact-info ul li .text-box h2 a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0%;
    height: 2px;
    background-color: var(--td-theme-primary);
    transition: all 500ms ease;
}

.contact-page__contact-info ul li .text-box h2 a:hover::before {
    width: 100%;
}


.contact-page__form-box {
    position: relative;
    display: block;
    background: #f7f7f7;
    margin-left: 46px;
    border-radius: 4px;
    padding: 49px 50px 50px;
}

.contact-page__form-box .title {
    position: relative;
    display: block;
    margin-bottom: 33px;
}

.contact-page__form-box .title h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-page__form-box #contact-form input[type="text"],
.contact-page__form-box #contact-form input[type="number"],
.contact-page__form-box #contact-form input[type="email"] {
    color: rgba(96, 102, 108, 0.6);
    background: var(--td-common-white);
}

.contact-page__form-box #contact-form textarea {
    color: rgba(96, 102, 108, 0.6);
    height: 150px;
    background: var(--td-common-white);
    margin-bottom: 11px;
}




.contact-page__form-box-text {
    position: relative;
    display: block;
    margin-top: 42px;
}

.contact-page__form-box-text p {
    font-weight: 500;
    margin: 0;
}

.contact-page__form-box-text p span {
    color: var(--td-theme-primary);
    font-weight: 600;
}

/*======================================
Google Map Two Css
========================================*/
.google-map-two {
    position: relative;
    display: block;
    z-index: 1;
}

.google-map-two__map {
    position: relative;
    display: block;
    border: none;
    height: 100%;
    height: 615px;
    width: 100%;
}




/*=============================
	Fact Counter One Css
===============================*/
.fact-counter-one {
    position: relative;
    display: block;
    padding: 0px 0px 90px;
    z-index: 1;
}

.fact-counter-one__single {
    position: relative;
    display: block;
    border: 2px solid rgba(var(--thm-secondary-rgb), 0.1);
    border-radius: 4px;
    padding: 49px 60px 53px;
    z-index: 1;
}

.fact-counter-one__single .inner {
    position: relative;
    display: block;
}

.fact-counter-one__single .inner h2 {
    font-size: 60px;
    font-weight: 600;
}

.fact-counter-one__single .inner h2 .plus {
    position: relative;
    display: inline-block;
    font-size: 40px;
}

.fact-counter-one__single .inner .text {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-top: 17px;
}

.fact-counter-one__single .inner .text::before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(94deg, #FFB629 -1.21%, #186265 116.84%);
    content: "";
}

.fact-counter-one__single .inner .text p {
    margin: 0;
    font-weight: 500;
}

/*=============================
	Fact Counter Two Css
===============================*/
.fact-counter-two {
    position: relative;
    display: block;
    background: var(--td-common-white);
    padding: 0px 0px 90px;
    z-index: 1;
}

.fact-counter-two .shape1 {
    position: absolute;
    top: -120px;
    right: 0;
    z-index: -1;
}

.fact-counter-two__single {
    position: relative;
    display: block;
    padding-top: 40px;
    margin-bottom: 30px;
}

.fact-counter-two__single .icon-box {
    position: absolute;
    top: 0;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FF5E14;
    border-radius: 50%;
    z-index: 3;
}

.fact-counter-two__single .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--td-common-white);
    font-size: 45px;
    line-height: 45px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.fact-counter-two__single:hover .icon-box span {
    transform: rotateY(180deg);
}

.fact-counter-two__single-inner {
    position: relative;
    display: block;
    border-radius: 4px;
}

.fact-counter-two__single-inner h2 {
    font-size: 50px;
    font-weight: 500;
}

.fact-counter-two__single-inner .text {
    position: relative;
    display: block;
    margin-top: 11px;
}

.fact-counter-two__single-inner .text p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--thm-heading-font);
}




/*=============================
	Partner CSS
===============================*/
/***
=============================================
Brand One
=============================================
***/
.brand-one {
    position: relative;
    display: block;
    border-top: 2px solid rgba(var(--thm-white-rgb), 0.2);
    overflow: hidden;
    z-index: 1;
}

.brand-one .shape1 {
    position: absolute;
    bottom: 0;
    right: -30px;
    z-index: -1;
}

.brand-one .big-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(var(--thm-white-rgb), 0.05);
    font-size: 190px;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: var(--thm-heading-font);
    z-index: -1;
}

.brand-one .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: .5s ease;
    overflow: hidden;
    cursor: pointer;
}

.brand-one .swiper-slide .img-box {
    position: relative;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.brand-one .swiper-slide:hover .img-box {
    transform: translateY(-100%);
}

.brand-one .swiper-slide .img-box img {
    opacity: 0.8;
    width: auto;
}

.brand-one .swiper-slide .img-box2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.brand-one .swiper-slide:hover .img-box2 {
    transform: translateY(0);
}

/***
=============================================
Brand Two
=============================================
***/
.brand-one--two {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    border-top: 0px;
    padding: 115px 0 249px;
    margin-top: 0px;
    z-index: 1;
}

.brand-one--two .big-title-box {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(var(--thm-black-rgb), 0.02);
    font-size: 220px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
}



/*=============================
	Testimonials One Css
===============================*/
.testimonials-one {
    position: relative;
    display: block;
    background: var(--td-common-white);
    z-index: 1;
}

.testimonials-one__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.06;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.testimonials-one .swiper-container {
    padding-left: 1px;
}

.testimonials-one__single {
    position: relative;
    display: block;
    padding-right: 20px;
    padding-bottom: 51px;
    margin-bottom: 50px;
    z-index: 1;
}

.testimonials-one__single .icon-box {
    position: absolute;
    right: 45px;
    bottom: 20px;
    z-index: 3;
}

.testimonials-one__single .icon-box span {
    position: relative;
    display: inline-block;
    color: rgba(var(--thm-secondary-rgb), 0.05);
    font-size: 30px;
    line-height: 30px;
}

.testimonials-one__single::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 19px;
    bottom: 0px;
    right: 20px;
    background: var(--td-common-white);
    border-radius: 4px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.testimonials-one__single::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: -20px;
    right: 0px;
    border-radius: 4px;
    background-color: rgba(var(--thm-secondary-rgb), 1.0);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -2;
}


.testimonials-one__single:hover::after {
    background-color: rgba(var(--thm-secondary-rgb), 1.0);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.testimonials-one__single .border-left {
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    right: 40px;
    border: 1px solid var(--td-theme-primary);
    border-radius: 4px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -3;
}

.testimonials-one__single:hover .border-left {
    border-color: var(--thm-secondary);
}

.testimonials-one__single-top {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.testimonials-one__single-top .img-box {
    position: relative;
    display: block;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 100px;
    overflow: hidden;
}


.testimonials-one__single-top .img-box img {
    width: 100%;
    transition: .6s ease;
    transform: scale(1.0);
}

.testimonials-one__single-top .title-box {
    position: relative;
    display: block;
    margin-left: 30px;
    flex: 1;
}

.testimonials-one__single-top .title-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-one__single-top .title-box h2 a {
    color: var(--thm-heading-font-color);
}

.testimonials-one__single-top .title-box h2 a:hover {
    color: var(--td-theme-primary);
}

.testimonials-one__single-top .title-box p {
    font-weight: 500;
}


.testimonials-one__single-inner {
    position: relative;
    display: block;
    padding: 18px 50px 0px 50px;
    z-index: 1;
}

.testimonials-one__single-inner .content-box {
    position: relative;
    display: block;
    z-index: 2;
}

.testimonials-one__single-inner .content-box-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.testimonials-one__single-inner .content-box-top .text-box {
    position: relative;
    display: block;
}

.testimonials-one__single-inner .content-box-top .text-box h3 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonials-one__single-inner .content-box-top .rating-box {
    position: relative;
    display: block;
    margin-left: 15px;
}

.testimonials-one__single-inner .content-box p {
    margin: 0;
    font-weight: 500;
}


#testimonials-one__pagination {
    position: relative;
    padding-top: 15px;
    z-index: 55;
}

#testimonials-one__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#testimonials-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-secondary);
}

#testimonials-one__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#testimonials-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#testimonials-one__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}

/*=============================
	Testimonials Two Css
===============================*/
.testimonials-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.testimonials-two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.9);
    content: "";
    z-index: -2;
}

.testimonials-two .sec-title-two .sub-title {
    background: rgba(var(--thm-white-rgb), 0.1);
}

.testimonials-two .sec-title-two h2 {
    color: var(--td-common-white);
}

.testimonials-two__single {
    position: relative;
    display: block;
    background: var(--td-common-white);
    border-radius: 4px;
    padding: 30px 30px 31px;
    z-index: 1;
}

.testimonials-two__single .quote-icon {
    position: absolute;
    top: 50px;
    right: 40px;
    z-index: -1;
}

.testimonials-two__single .quote-icon span {
    position: relative;
    display: inline-block;
    color: rgba(var(--td-theme-primary-rgb), 0.06);
    font-size: 35px;
    line-height: 35px;
    transition: all 400ms linear;
    transition-delay: 0.1s;
}

.testimonials-two__single:hover .quote-icon span {
    color: rgba(var(--td-theme-primary-rgb), 1.0);
}

.testimonials-two__single-top {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-two__single-top .img-box {
    position: relative;
    display: block;
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-two__single-top .img-box img {
    width: 100%;
}

.testimonials-two__single-top .text-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.testimonials-two__single-top .text-box p {
    color: #6F7174;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonials-two__single-top .text-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 3px;
}

.testimonials-two__single-bottom {
    position: relative;
    display: block;
    margin-top: 29px;
}

.testimonials-two__single-bottom .rating-box {
    display: block;
}

.testimonials-two__single-bottom .content-box {
    position: relative;
    display: block;
}

.testimonials-two__single-bottom .content-box h3 {
    color: #6F7174;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.testimonials-two__single-bottom .content-box p {
    margin: 0;
}

.testimonials-two .container {
    position: relative;
}

.testimonials-two .swiper-nav-style1 {
    top: 42px;
}


.testimonials-two__wrap {
    position: absolute;
    top: 55px;
    right: 190px;
    z-index: 100;
}

.testimonials-two__wrap .swiper-counter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between;
    width: 40px;
    z-index: 9;
}

.testimonials-two__wrap .swiper-counter div {
    position: relative;
    display: inline-block;
    color: var(--td-common-white);
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.testimonials-two__wrap .swiper-counter div#current3 {
    margin-right: 6px;
}

.testimonials-two__wrap .swiper-counter div#total3 {
    position: relative;
    top: 15px;
    right: -5px;
    padding-left: 0px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.testimonials-two__wrap .swiper-counter div#total3:before {
    content: '/';
    position: absolute;
    left: -16px;
    width: 0px;
    height: 0px;
    top: -5px;
}











/*=============================
	Testimonials Three Css
===============================*/
.testimonials-three {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.testimonials-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.testimonials-three__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.9);
    content: "";
    z-index: -1;
}

.testimonials-three .sec-title-style3 .sub-title h5 {
    color: var(--td-theme-primary);
}

.testimonials-three .sec-title-style3 h2 {
    color: var(--td-common-white);
}

.testimonials-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.testimonials-three__img img {
    width: 100%;
}

.testimonials-three__content-box {
    position: relative;
    display: block;
    margin-left: 70px;
    margin-top: 50px;
}

#testimonials-three__thumb {
    width: 330px;
    margin-left: 0px;
    padding: 5px 5px 5px;
}

.testimonials-three__thumb-img {
    position: relative;
    display: block;
    cursor: pointer;
    width: 60px;
}

.testimonials-three__thumb-img::before {
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--td-theme-primary);
    border-radius: 50%;
    transform: scale(0.5);
    opacity: 0;
    transition-delay: 0.5s;
    transition: .5s;
    content: "";
}

.testimonials-three__thumb-img:hover::before,
.testimonials-three__content-box .swiper-slide-thumb-active .testimonials-three__thumb-img::before {
    transform: scale(1.0);
    opacity: 1;
}

.testimonials-three__thumb-img .inner {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-three__thumb-img .inner img {
    width: 100%;
}

.testimonials-three__content {
    position: relative;
    display: block;
    margin-top: 38px;
}

.testimonials-three__content-single {
    position: relative;
    display: block;
}

.testimonials-three__content-single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonials-three__content-single-top .text {
    position: relative;
    display: block;
}

.testimonials-three__content-single-top .text h3 {
    color: var(--td-theme-primary);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-three__content-single-top .rating-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.testimonials-three__content-single-top .rating-box a {
    color: var(--td-theme-primary);
}

.testimonials-three__content-single-bottom {
    position: relative;
    display: block;
}

.testimonials-three__content-single-bottom p {
    color: rgba(234, 236, 232, 0.9);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--thm-heading-font);
    margin-bottom: 29px;
}

.testimonials-three__content-single-bottom h3 {
    color: var(--td-common-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonials-three__content-single-bottom h3 span {
    color: #EAECE8;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: var(--thm-body-font);
}


.testimonials-three__nav {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 57px;
    z-index: 100;
}

.testimonials-three__nav .swiper-button-next,
.testimonials-three__nav .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #000000;
    font-size: 20px;
    background: var(--td-common-white);
    border: none;
    margin: 0px 0px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
    z-index: 100;
}

.testimonials-three__nav .swiper-button-next {
    margin-left: 15px;
}

.testimonials-three__nav .swiper-button-next i,
.testimonials-three__nav .swiper-button-prev i {
    font-weight: 700;
}

.testimonials-three__nav .swiper-button-next:hover,
.testimonials-three__nav .swiper-button-prev:hover {
    background: var(--td-theme-primary);
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
}

.testimonials-three__nav .swiper-button-next::after,
.testimonials-three__nav .swiper-button-prev::after {
    display: none;
}



/*======================================
 Team One Css
========================================*/
.team-one {
    position: relative;
    display: block;
    padding: 120px 0px 117px;
    z-index: 1;
}

.team-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 455px;
    background: var(--td-theme-primary);
    background-blend-mode: hard-light;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.team-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--td-theme-primary-rgb), 0.9);
    content: "";
    z-index: -2;
}

.team-one__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 58px;
}

.team-one__top .sec-title {
    padding-bottom: 0px;
}

.team-one__top .btn-box {
    position: relative;
    display: block;
    top: -13px;
}

.team-one__top .btn-box .thm-btn:after {
    background-color: var(--td-common-white);
}

.team-one__top .sec-title .sub-title h5 {
    color: var(--thm-heading-font-color);
}

.team-one__bottom {
    position: relative;
    display: block;
}

.team-one__single {
    position: relative;
    display: block;
    padding-right: 20px;
    margin-bottom: 50px;
    z-index: 1;
}

.team-one__single::before {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: -20px;
    right: 0;
    background: rgba(var(--thm-secondary-rgb), 0.06);
    border-radius: 4px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    content: "";
    z-index: -1;
}

.team-one__single:hover::before {
    background: rgba(var(--thm-secondary-rgb), 1.0);
}

.team-one__single::after {
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0px;
    right: 40px;
    border: 1px solid var(--td-theme-primary);
    border-bottom-left-radius: 4px;
    content: "";
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: -2;
}

.team-one__single:hover::after {
    border-color: var(--thm-secondary);
}

.team-one__single-img {
    position: relative;
    display: block;
    z-index: 3;
}

.team-one__single-img .inner {
    position: relative;
    display: block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.team-one__single-img .inner .social-links {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px 30px 2px;
    padding-right: 35px;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    z-index: 5;
}

.team-one__single:hover .team-one__single-img .inner .social-links {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.team-one__single-img .inner .social-links::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--td-theme-primary);
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
    content: "";
    z-index: -1;
}

.team-one__single-img .inner .social-links a {
    position: relative;
    display: block;
    float: left;
    color: var(--td-common-white);
}

.team-one__single-img .inner .social-links a:hover {
    color: var(--thm-secondary);
}

.team-one__single-img .inner .social-links a+a {
    margin-left: 20px;
}

.team-one__single-img .inner .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.team-one__single-img .inner::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.team-one__single:hover .team-one__single-img .inner::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.team-one__single-img .inner img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.team-one__single:hover .team-one__single-img .inner img {
    transform: scale(1);
}

.team-one__single-content {
    position: relative;
    display: block;
    padding: 27px 50px 31px;
    padding-right: 30px;
    z-index: 1;
}

.team-one__single-content::before {
    position: absolute;
    top: 0;
    left: 19px;
    bottom: 0;
    right: 0;
    background: var(--td-common-white);
    border-radius: 4px 4px 4px 0px;
    content: "";
    z-index: -1;
}

.team-one__single-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.team-one__single-content h3 a {
    color: var(--thm-heading-font-color);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    color: inherit;
    transition: all 500ms ease;
}

.team-one__single-content h3 a:hover {
    background-size: 100% 1px;
}

.team-one__single-content p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

#team-one__pagination {
    position: relative;
    padding-top: 15px;
    z-index: 55;
}

#team-one__pagination .swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#team-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-secondary);
}

#team-one__pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#team-one__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#team-one__pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
}

/*======================================
 Team Two Css
========================================*/
.team-two {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}

.team-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 435px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.team-two__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.8);
    content: "";
    z-index: -2;
}

.team-two .sec-title-two h2 {
    color: var(--td-common-white);
}

.team-two .sec-title-two .sub-title {
    background: rgba(var(--thm-white-rgb), 0.2);
}

.team-two__single {
    position: relative;
    display: block;
    background: var(--thm-gray-bg);
    overflow: hidden;
    border-radius: 4px;
    padding: 55px 20px 30px;
    z-index: 1;
}

.team-two__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 164px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.team-two__single-img {
    position: relative;
    display: block;
}

.team-two__single-img .inner {
    position: relative;
    display: block;
    width: 275px;
    height: 275px;
    border: 5px solid var(--td-common-white);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}

.team-two__single-img .inner::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(18, 18, 19, 0.00) 38.77%, #121213 92.44%);
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    content: "";
    z-index: 1;
}

.team-two__single:hover .team-two__single-img .inner::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.team-two__single-img .inner .social-links {
    position: absolute;
    left: 0;
    bottom: 40px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleY(0);
    transform: translateY(-50%);
    overflow: hidden;
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    transform-origin: bottom center;
    z-index: 2;
}

.team-two__single:hover .team-two__single-img .inner .social-links {
    transform: scaleY(1.0, -50%);
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

.team-two__single-img .inner .social-links a {
    position: relative;
    display: inline-block;
    color: var(--td-common-white);
    font-size: 18px;
    line-height: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single-img .inner .social-links a:hover {
    color: #FF5E14;
}

.team-two__single-img .inner .social-links a+a {
    margin-left: 20px;
}

.team-two__single-img .inner .social-links a.fb {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 300ms ease;
}

.team-two__single:hover .team-two__single-img .inner .social-links a.fb {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 200ms;
}

.team-two__single-img .inner .social-links a.tw {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 400ms ease;
}

.team-two__single:hover .team-two__single-img .inner .social-links a.tw {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 300ms;
}

.team-two__single-img .inner .social-links a.ins {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 500ms ease;
}

.team-two__single:hover .team-two__single-img .inner .social-links a.ins {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 400ms;
}

.team-two__single-img .inner .social-links a.lin {
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 600ms ease;
}

.team-two__single:hover .team-two__single-img .inner .social-links a.lin {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.team-two__single-number {
    position: absolute;
    left: 14px;
    bottom: 35px;
    z-index: 1;
}

.team-two__single-number>ul {
    position: relative;
    display: block;
}

.team-two__single-number>ul>li.icon-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}

.team-two__single-number>ul>li.icon-box>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #010232;
}

.team-two__single-number>ul>li.icon-box>a::before {
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid #dfdee4;
    border-radius: 50%;
    content: "";
}

.team-two__single-number>ul>li.icon-box>a>span {
    position: relative;
    display: inline-block;
    color: #FF5E14;
    font-size: 15px;
    line-height: 15px;
}

.team-two__single-number>ul>li>ul {
    position: relative;
    display: block;
    margin-bottom: 15px;
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    transform-origin: bottom center;
}

.team-two__single-number>ul>li:hover>ul {
    transform: scaleY(1.0);
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

.team-two__single-number>ul>li>ul>li {
    position: relative;
    display: block;
}

.team-two__single-number>ul>li>ul>li>p {
    position: relative;
    display: block;
    transform: rotate(180deg) translateX(0%);
    width: max-content;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.team-two__single-number>ul>li>ul>li>p>a {
    color: #020231;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-body-font);
}

.team-two__single-number>ul>li>ul>li>p>a:hover {
    color: var(--td-theme-primary);
}

.team-two__single-img .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.team-two__single:hover .team-two__single-img .inner img {
    transform: scale(1.05) rotate(0deg);
}

.team-two__single-content {
    position: relative;
    display: block;
    padding-top: 22px;
}

.team-two__single-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.team-two__single-content h3 a {
    color: var(--td-theme-primary);
}

.team-two__single-content h3 a:hover {
    color: var(--td-theme-primary);
}

.team-two__single-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.team-two__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 4px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 30px 15px;
    padding-right: 15px;
    margin-top: 60px;
}

.team-two__bottom .text-box {
    position: relative;
    display: block;
}

.team-two__bottom .text-box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.team-two__bottom .btn-box {
    position: relative;
    display: block;
}

.team-two__bottom .btn-box .thm-btn {
    color: var(--td-common-white);
}

.team-two__bottom .btn-box .thm-btn::after {
    background: var(--td-theme-primary);
}

.team-two__bottom .btn-box .thm-btn::before {
    background: #FF5E14;
}

.team-two .container {
    position: relative;
}

.team-two .swiper-nav-style1 {
    top: 42px;
}

.team-two__wrap {
    position: absolute;
    top: 55px;
    right: 190px;
    z-index: 100;
}

.team-two__wrap .swiper-counter {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: space-between;
    width: 40px;
    z-index: 9;
}

.team-two__wrap .swiper-counter div {
    position: relative;
    display: inline-block;
    color: var(--td-common-white);
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.team-two__wrap .swiper-counter div#current4 {
    margin-right: 6px;
}

.team-two__wrap .swiper-counter div#total4 {
    position: relative;
    top: 15px;
    right: -5px;
    padding-left: 0px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
}

.team-two__wrap .swiper-counter div#total4:before {
    content: '/';
    position: absolute;
    left: -16px;
    width: 0px;
    height: 0px;
    top: -5px;
}


/*======================================
 Team Three Css
========================================*/
.team-three {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    background: var(--td-common-white);
    overflow: hidden;
    z-index: 1;
}

.team-three__shape1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0.06;
    z-index: -1;
}

.team-three__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 57px;
}

.team-three__top .sec-title-style3 {
    padding-bottom: 0px;
}

.team-three__top .btn-box {
    position: relative;
    display: block;
    top: -13px;
}

.team-three__top .btn-box .thm-btn::before {
    background-color: var(--td-theme-primary);
}

.team-three__top .btn-box .thm-btn:hover {
    color: var(--td-common-white);
}

.team-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    z-index: 1;
}

.team-three__single-img::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.team-three__single:hover .team-three__single-img::before,
.team-three__single.active .team-three__single-img::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.team-three__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.team-three__single:hover .team-three__single-img img {
    transform: scale(1);
}

.team-three__single-content {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -60px;
    border-radius: 4px;
    background: var(--td-common-white);
    box-shadow: 0px 4px 4px 0px rgba(18, 18, 20, 0.06);
    padding: 22px 10px 30px;
    transition: all 400ms linear;
    transition-delay: 0.1s;
    z-index: 3;
    overflow: hidden;
}

.team-three__single:hover .team-three__single-content,
.team-three__single.active .team-three__single-content {
    padding-bottom: 75px;
}

.team-three__single-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 2px;
}

.team-three__single-content h3 a {
    color: var(--td-theme-primary);
}

.team-three__single-content h3 a:hover {
    color: var(--td-theme-primary);
}

.team-three__single-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.team-three__single-content .social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: var(--td-theme-primary);
    max-width: 160px;
    width: 100%;
    margin: 0 auto;
    line-height: 0px;
    padding: 15px 0px 14px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    transition-delay: 0.05s;
}

.team-three__single:hover .team-three__single-content .social-links,
.team-three__single.active .team-three__single-content .social-links {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transition-delay: 0.4s;
}

.team-three__single-content .social-links a {
    position: relative;
    display: inline-block;
    color: var(--td-common-white);
    font-size: 15px;
    line-height: 15px;
}

.team-three__single-content .social-links a:hover {
    color: var(--td-theme-primary);
}

.team-three__single-content .social-links a+a {
    margin-left: 15px;
}

/*======================================
 Team Three Team Css
========================================*/
.team-three--team {
    position: relative;
    display: block;
    padding-bottom: 120px;
}

.team-three--team__bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 4px;
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 30px 15px;
    padding-right: 15px;
    margin-top: 50px;
}

.team-three--team__bottom .text-box {
    position: relative;
    display: block;
}

.team-three--team__bottom .text-box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.team-three--team__bottom .btn-box {
    position: relative;
    display: block;
}


.team-three--team__bottom .btn-box .thm-btn::after {
    background: transparent;
    border: 2px solid #dedede;
}

.team-three--team__bottom .btn-box .thm-btn::before {
    background: var(--td-theme-primary);
}

.team-three--team__bottom .btn-box .thm-btn:hover {
    color: var(--td-theme-primary);
}


/*======================================
 Team Three Team Details Css
========================================*/
.team-three--team-details {
    position: relative;
    display: block;
    padding: 120px 0px 223px;
    background: #f5f5f5;
}

/*======================================
 Team Details Css
========================================*/
.team-details {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
}

.team-details__top {
    position: relative;
    display: block;
}

.team-details__top-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    max-width: 550px;
    width: 100%;
}

.team-details__top-img img {
    width: 100%;
}

.team-details__top-content {
    position: relative;
    display: block;
    margin-left: -10px;
    margin-top: -7px;
}

.team-details__top-content-progress {
    position: relative;
    display: block;
    max-width: 575px;
    width: 100%;
}

.team-details__top-content-progress-single {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.team-details__top-content-progress-single.mb0 {
    margin-bottom: 0;
}

.team-details__top-content-progress-single .title {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.team-details__top-content-progress-single .title h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-details__top-content-progress-single .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.team-details__top-content-progress-single .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    border-radius: 5px;
    background: var(--td-theme-primary);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.team-details__top-content-progress-single .bar-inner::before {
    position: absolute;
    top: -5px;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--td-theme-primary);
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(18, 18, 19, 0.20);
    content: "";
}

.team-details__top-content-progress-single .count-text {
    position: absolute;
    right: -180px;
    bottom: -9px;
    color: #6F7174;
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--thm-body-font);
}

.team-details__top-content-progress-single .count-text.r123 {
    right: -123px;
}

.team-details__top-content-progress-single .count-text.r93 {
    right: -93px;
}


.team-details__top-content-progress-single .bar-inner.counted .count-text {
    opacity: 1;
}


.team-details__top-content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 40px 60px 37px;
    margin-left: -210px;
    margin-top: 70px;
    overflow: hidden;
    z-index: 2;
}

.team-details__top-content-contact-info {
    position: relative;
    display: flex;
    align-items: center;
}

.team-details__top-content-contact-info ul {
    position: relative;
    display: block;
}

.team-details__top-content-contact-info ul+ul {
    margin-left: 100px;
}

.team-details__top-content-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 27px;
}

.team-details__top-content-contact-info ul li:last-child {
    margin-bottom: 0;
}

.team-details__top-content-contact-info ul li .text-box {
    position: relative;
    display: block;
}

.team-details__top-content-contact-info ul li .text-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.team-details__top-content-contact-info ul li .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 7px;
}

.team-details__top-content-contact-info ul li .text-box h3 a {
    color: var(--td-theme-primary);
}

.team-details__top-content-contact-info ul li .text-box h3 a:hover {
    color: var(--td-theme-primary);
}

.team-details__top-content-social-links {
    position: relative;
    display: block;
    padding-left: 60px;
}

.team-details__top-content-social-links::before {
    position: absolute;
    top: -45px;
    left: 0;
    bottom: -45px;
    width: 1px;
    background: #e6e6e6;
    content: "";
}

.team-details__top-content-social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--td-theme-primary);
    color: var(--td-common-white);
    border-radius: 4px;
}

.team-details__top-content-social-links a+a {
    margin-top: 20px;
}

.team-details__top-content-social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.team-details__top-content-social-links a:hover {
    color: var(--td-theme-primary);
}


.team-details__bottom {
    position: relative;
    display: block;
    margin-top: 110px;
}

.team-details__bottom-content {
    position: relative;
    display: block;
    max-width: 550px;
    width: 100%;
}

.team-details__bottom-content h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.team-details__bottom-content h4 {
    color: #6F7174;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 18px;
}

.team-details__bottom-content p {
    font-weight: 500;
    margin: 0;
}


.team-details__bottom-form {
    position: relative;
    display: block;
}

.team-details__bottom-form .title-box {
    position: relative;
    display: block;
    margin-bottom: 28px;
}

.team-details__bottom-form .title-box h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    text-transform: capitalize;
}



#contact-form {
    position: relative;
    display: block;
}

#contact-form input[type="text"],
#contact-form input[type="number"],
#contact-form input[type="email"] {
    color: rgba(96, 102, 108, 0.6);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 54px;
    background: #f5f5f5;
    border: 0px solid #e4e4e4;
    padding: 0 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: var(--thm-body-font);
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#contact-form textarea {
    color: rgba(96, 102, 108, 0.6);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 120px;
    border: 0px solid #e4e4e4;
    background: #f5f5f5;
    padding: 18px 20px 0px;
    margin-bottom: 20px;
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-radius: 4px;
}


#contact-form input[type="text"]::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="text"]:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="text"]::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="text"]:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}


#contact-form input[type="email"]::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="email"]:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="email"]::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="email"]:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}


#contact-form input[type="number"]::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="number"]:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="number"]::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form input[type="number"]:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}


#contact-form textarea::-webkit-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form textarea:-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form textarea::-moz-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

#contact-form textarea:-ms-input-placeholder {
    color: rgba(96, 102, 108, 0.6);
}

.contact-page__btn {
    position: relative;
    display: block;
}
/*======= Start  Slick Sliders dots ========*/

/* Start Service slick slider dots */
.service-slider-dot-list {
    display: flex;
    justify-content: center;
}
.service-slider-dot-list li button {
    display: none;
}

.service-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.service-slider-dot-list li.slick-active {
    background-color: #186265;
}
.service-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.service-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End slick slider dots */


/* Start Project slick slider dots */
.project-slider-dot-list {
    display: flex;
    justify-content: center;
}
.project-slider-dot-list li button {
    display: none;
}

.project-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.project-slider-dot-list li.slick-active {
    background-color: #186265;
}
.project-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.project-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Project slick slider dots */

/* Start Team slick slider dots */
.team-slider-dot-list {
    display: flex;
    justify-content: center;
}
.team-slider-dot-list li button {
    display: none;
}

.team-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.team-slider-dot-list li.slick-active {
    background-color: #186265;
}
.team-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.team-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Team slick slider dots */


/* Start Testimonial slick slider dots */
.testimonial-one-slider-dot-list {
    display: flex;
    justify-content: center;
}
.testimonial-one-slider-dot-list li button {
    display: none;
}

.testimonial-one-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.testimonial-one-slider-dot-list li.slick-active {
    background-color: #186265;
}
.testimonial-one-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.testimonial-one-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Testimonial slick slider dots */


/* Start Testimonial slick slider dots */
.testimonial-two-slider-dot-list {
    display: flex;
    justify-content: center;
}
.testimonial-two-slider-dot-list li button {
    display: none;
}

.testimonial-two-slider-dot-list li {
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.testimonial-two-slider-dot-list li.slick-active {
    background-color: #186265;
}
.testimonial-two-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.testimonial-two-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Testimonial slick slider dots */



/* Start Testimonial slick slider dots */
.blog-slider-dot-list {
    display: flex;
    justify-content: center;
}
.blog-slider-dot-list li button {
    display: none;
}

.blog-slider-dot-list li {
    cursor: pointer;
    position: relative;
    border-radius: 50%; 
    margin: 0 5px; 
    width: 8px;
    height: 8px;
    margin: 0px 10px;
    background: #d0dadc;
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.blog-slider-dot-list li.slick-active {
    background-color: #186265;
}
.blog-slider-dot-list li.slick-active::before {
    transform: scaleX(1.0);
}
.blog-slider-dot-list li::before {
    position: absolute;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px;
    border: 1px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}
/* End Testimonial slick slider dots */


/* brand logo */
.brand-img img {
    height: 50px;
}

/* Recent Post */
.sidebar__latest-post-list li .img-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center center;
}



@media (max-width: 1024px) {
    .page-header {
        padding: 140px 0px 100px;
    }
    .blog-standard-page{
        padding: 80px 0 !important;
    }
    
}
@media (max-width: 767px) {
    .page-header {
        padding: 120px 0px 80px;
    }
    .blog-standard-page{
        padding: 60px 0 !important;
    }
    
}
.sidebar-info-contents .logo img {
    width: 170px;
}
.nice-select .option {
    color: #121213;
}


/* new css */
span .comment-edit-link {
    padding-left: 10px;
}
.children .comment-one__single {
    margin-left: 50px;
}
.children .children .comment-one__single {
    margin-left: 100px;
}
#cancel-comment-reply-link {
    font-size: 20px;
}
#cancel-comment-reply-link:hover {
    color: #dc3545;
}

.thm-breadcrumb li::after {
    position: absolute;
    top: 40%;
    right: -5px;
    content: ">";
    font-weight: 700;
    font-family: 'icomoon' !important;
    font-size: 15px;
    line-height: 15px;
    transition: .3s linear;
    transform: translateY(-50%);
}
.thm-breadcrumb li:last-child:after {
    content: "";
}

.adina-list-group .adina-list-group-wrapper .adina-list-group-item:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.company-benefit-one__content-list li:last-child, .request-services-one__content-list li:last-child, .about-three__content-list li:last-child {
    margin-bottom: 0 !important;
}

.fact-counter-two__single.layout-04 .icon-box .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.fact-counter-two__single.layout-04 .icon-box {
    position: relative;
    top: 0;
    left: 0px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
}
.fact-counter-two__single.layout-04 .fact-counter-two__single-inner {
    background: transparent;
    padding: 0px 0px 0px;
    margin: 24px 0 0;
}
.fact-counter-two__single.layout-04 {
    padding-top: 0;
}

.sidebar .search-form {
    position: relative;
    display: block;
}
.wp-block-categories-list li a:hover, .wp-block-categories-list li a.active {
    color: #121213;
}
.wp-block-latest-posts__list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}
.container.no-pd {
    padding: 0 !important;
}

