/* CSS Index
============================
1. Theme default css
2. header
3. slider
4. about-area
5. features-box
6. department
7. team
8. video-area
9. counter
10. footer
============================
*/


/*=============================
	1. Google Fonts
===============================*/


@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');



/*** 
====================================================================
	Css Files
====================================================================
***/
/* Module Css */
/*=============================
	Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--thm-white);
    margin-right: 30px;
    top: 15px;
}



.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    border-radius: 0px;
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    z-index: 9999999;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.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(--thm-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;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-white);
    font-size: 20px;
    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);
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    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.8);
    z-index: 9999;
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}



.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu-visible {
    overflow: hidden;
}




.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu .nav-logo a {
    position: relative;
    display: inline-block;
}

.mobile-menu .nav-logo a img {
    width: auto;
}



.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation ul {
    padding: 0;
    margin: 0;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--thm-black);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu .navigation li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li ul li ul li a {
    margin-left: 40px;
}

.mobile-menu .navigation li ul li ul li ul li a {
    margin-left: 60px;
}

.mobile-menu .navigation li.active>a,
.mobile-menu .navigation li:hover>a {
    color: var(--thm-primary);
}


.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 6px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--thm-black);
    font-size: 16px;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn span {
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--thm-primary);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}



.mobile-menu .social-links {
    position: relative;
    display: block;
    margin-top: 40px;
}

.mobile-menu .social-links ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: block;
    float: left;
}

.mobile-menu .social-links li+li {
    margin-left: 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 400;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: var(--thm-secondary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.mobile-menu .social-links li a:hover {
    color: var(--thm-white);
}

.mobile-menu .social-links li a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    border-radius: 50%;
    background-color: var(--thm-primary);
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.mobile-menu .social-links li a:hover::before {
    opacity: 1;
    transform: scale(1);
}



.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--thm-primary);
    display: none;
    padding: 34px 0 35px;
    z-index: 5;
}




@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: auto;
    background: var(--thm-white);
    -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: 33px 0;
}






/*=============================
	Main Header Css
===============================*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    z-index: 99;
}

.menu-area__inner {
    position: relative;
    display: block;
}

.menu-wrap {
    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: 35px;
}

.navbar-wrap ul li a {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-body-font);
    padding: 38px 0px 38px;
    transition: none;
    z-index: 1;
}

.navbar-wrap>ul>li.active>a,
.navbar-wrap>ul>li:hover>a {
    color: var(--thm-secondary);
}

.navbar-wrap>ul>li.menu-item-has-children>a {
    margin-right: 20px;
}

.navbar-wrap>ul>li.menu-item-has-children>a::after {
    position: absolute;
    top: 50%;
    right: -20px;
    content: "\e963";
    font-weight: 400;
    font-family: 'icomoon' !important;
    font-size: 18px;
    line-height: 18px;
    transition: .3s linear;
    transform: translateY(-50%);
}

.navbar-wrap>ul>li.menu-item-has-children.active>a::after {
    color: #062547;
}


.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    background: var(--thm-white);
    margin: 0 0;
    padding: 18px 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.navbar-wrap ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.navbar-wrap ul li .sub-menu .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
}

.navbar-wrap ul li .sub-menu li {
    display: block;
    margin-left: 0;
    text-align: left;
}

.navbar-wrap>ul>li>.sub-menu>li>a {
    padding: 9px 25px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--thm-black);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-wrap>ul>li>.sub-menu>li.active>a,
.navbar-wrap>ul>li>.sub-menu>li:hover>a {
    color: var(--thm-secondary);
}

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}




/*=============================
	Main Header One Css
===============================*/
.main-header-one {
    position: relative;
    display: block;
    z-index: 11;
}

.main-header-one__inner {
    position: relative;
    display: block;
    padding-left: 220px;
}

.main-header-one__inner-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
}

.logo-box-one {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 155px;
    background-color: var(--thm-white);
}

.logo-box-one a {
    position: relative;
    display: inline-block;
}

.main-header-one__inner-right {
    position: relative;
    display: block;
    padding-left: 80px;
}

.main-header-one__inner-right__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0px 13px;
}

.main-header-one__inner-right__top::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100000px;
    right: -100000px;
    bottom: 0;
    background-color: var(--thm-secondary);
    z-index: -1;
}

.header-contact-info-one {
    position: relative;
    display: block;
}

.header-contact-info-one ul {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-contact-info-one ul li {
    position: relative;
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info-one ul li+li {
    margin-left: 40px;
}

.header-contact-info-one ul li .icon {
    position: relative;
    display: block;
    top: -1px;
    line-height: 0;
    margin-right: 8px;
}

.header-contact-info-one ul li .icon span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.header-contact-info-one ul li p {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.header-contact-info-one ul li p a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info-one ul li p a:hover {
    color: var(--thm-primary);
}



/*******/
.header-social-link-one {
    position: relative;
    display: block;
}

.header-social-link-one ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-social-link-one ul li {
    position: relative;
    display: block;
}

.header-social-link-one ul li+li {
    margin-left: 25px;
}

.header-social-link-one ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 18px;
    font-weight: 900;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.header-social-link-one ul li a:hover {
    color: var(--thm-black);
}






.main-header-one__inner-right__bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-right-box-one {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box-one {
    position: relative;
    display: block;
}

.search-box-one a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 900;
    transition: all 500ms ease;
}

.search-box-one a:hover {
    color: var(--thm-primary);
}

.side-content-button-one {
    position: relative;
    display: block;
    margin-left: 40px;
}

.side-content-button-one a {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--thm-black);
    background-color: transparent;
    padding-right: 17px;
    transition: all 500ms ease;
}

.side-content-button-one a:hover {
    border-color: var(--thm-secondary);
    background-color: var(--thm-secondary);
}

.side-content-button-one a .line {
    position: relative;
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--thm-black);
    margin: 3px 0;
    transition: all 500ms ease;
}

.side-content-button-one a:hover .line {
    background-color: var(--thm-white);
}

.side-content-button-one a .line.two {
    width: 20px;
    transition: all 300ms ease;
}

.side-content-button-one a:hover .line {
    width: 20px;
}


.sticky-menu .main-header-one__inner-right__top {
    display: none;
}

.sticky-menu .logo-box-one {
    height: 90px;
    background-color: var(--thm-white);
}



/*=============================
	Main Header Two Css
===============================*/
.main-header-two {
    position: relative;
    display: block;
    z-index: 11;
}

.main-header-two__top {
    position: relative;
    display: block;
    padding: 20px 0;
    z-index: 1;
}

.main-header-two__top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -30px;
    right: 0;
    background-color: var(--thm-secondary);
    z-index: -1;
}

.main-header-two__top-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-two__top-left {
    position: relative;
    display: block;
}



.main-header-two__top-right {
    position: relative;
    display: block;
}





.main-header-two__bottom {
    position: relative;
    display: block;
    z-index: 3;
    margin-bottom: -70px;
}

.main-header-two__bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--thm-white);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5px;
}

.main-header-two__bottom-left {
    position: relative;
    display: block;
}

.logo-box-two {
    position: relative;
    display: block;
}

.logo-box-two a {
    position: relative;
    display: inline-block;
}

.main-header-two__bottom-right {
    position: relative;
    display: block;
}

.main-header-two__bottom-right .phone-number-box {
    position: relative;
    display: flex;
    align-items: center;
}






.main-header-two__bottom-right .phone-number-box .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.main-header-two__bottom-right .phone-number-box .icon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 900;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--thm-primary);
}

.main-header-two__bottom-right .phone-number-box .text {
    position: relative;
    display: block;
    padding-left: 15px;
}

.main-header-two__bottom-right .phone-number-box .text p {
    color: var(--thm-body-font-color);
    line-height: 26px;
}

.main-header-two__bottom-right .phone-number-box .text p a {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 27px;
    font-family: var(--thm-heading-font);
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-two__bottom-right .phone-number-box .text p a:hover {
    color: var(--thm-primary);
}







/*=============================
	Main Header THree Css
===============================*/
.main-header-three {
    position: relative;
    display: block;
    z-index: 11;
}

.main-header-three__inner {
    position: relative;
    display: block;
    padding-left: 465px;
    padding-right: 310px;
}

.main-header-three__left {
    position: absolute;
    top: 0;
    left: 0;
    width: 465px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.main-header-three__left:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-secondary);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    z-index: -1;
}






.main-header-three__middle {
    position: relative;
    display: block;
    padding-left: 60px;
    padding-right: 35px;
}

.main-header-three__middle-top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

.main-header-three__middle-top__left {
    position: relative;
    display: block;
}

.welcome-text-one {
    position: relative;
    display: block;
}

.welcome-text-one a {
    color: var(--thm-primary);
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.welcome-text-one a:hover {
    color: var(--thm-secondary);
}


.main-header-three__middle-top__right {
    position: relative;
    display: block;
}

.main-header-three__middle-top__right .header-contact-info-one ul li .icon span {
    color: var(--thm-primary);
}

.main-header-three__middle-top__right .header-contact-info-one ul li p {
    color: var(--thm-body-font-color);
}

.main-header-three__middle-top__right .header-contact-info-one ul li p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-header-three__middle-top__right .header-contact-info-one ul li p a:hover {
    color: var(--thm-primary);
}






.main-header-three__middle-bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
}

.main-header-three__middle-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: -10000px;
    bottom: 0;
    right: -10000px;
    background-color: var(--thm-white);
    z-index: -1;
}

.main-header-three__middle-bottom__left {
    position: relative;
    display: block;
}

.navbar-wrap--two ul li a {
    padding: 18px 0px 18px;
}

.main-header-three__middle-bottom__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__middle-bottom__right .search-box-one a {
    top: 3px;
}

.main-header-three__middle-bottom__right .side-content-button-one {
    margin-left: 35px;
}

.main-header-three__middle-bottom__right .side-content-button-one a {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--thm-secondary);
    padding-right: 9px;
}

.main-header-three__middle-bottom__right .side-content-button-one a:hover {
    border: none;
    background-color: var(--thm-primary);
}

.main-header-three__middle-bottom__right .side-content-button-one a .line {
    background-color: var(--thm-white);
}

.main-header-three__right {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    height: 110px;
    width: 310px;
    background-color: var(--thm-primary);
    z-index: 3;
    align-items: center;
    justify-content: center;
}





/*******/
.header-social-link-three {
    position: relative;
    display: block;
}

.header-social-link-three ul {
    position: relative;
    display: flex;
    align-items: center;
}

.header-social-link-three ul li {
    position: relative;
    display: block;
}

.header-social-link-three ul li+li {
    margin-left: 25px;
}

.header-social-link-three ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 18px;
    font-weight: 900;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.header-social-link-three ul li a:hover {
    color: var(--thm-black);
}



.sticky-menu .main-header-three__inner {
    padding-left: 250px;
    padding-right: 250px;
}

.main-header-three__sticky-logo {
    position: relative;
    display: none;
}

.sticky-menu .main-header-three__sticky-logo {
    display: block;
}

.sticky-menu .main-header-three__middle {
    padding-left: 0;
    padding-right: 0;
}

.sticky-menu .main-header-three__left {
    display: none;
}

.sticky-menu .main-header-three__middle-top {
    display: none;
}

.sticky-menu .main-header-three__right {
    display: none;
}



/*=============================
	Main Header Four Css
===============================*/
.main-header-one.style4 {
    position: relative;
    display: block;
    background: var(--thm-white);
}

.main-header-one.style4 .container {
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

.main-header-one.style4 .main-header-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
}

.main-header-style4__left {
    position: relative;
    display: block;
}

.main-header-style4__left .logo-box-one {
    width: 345px;
    height: 130px;
    background-color: var(--thm-body-background);
}

.main-header-style4__middle {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-style4__middle .main-menu-right-box-one {
    margin-left: 60px;
}

.main-header-style4__middle .search-box-one {
    line-height: 0;
}

.main-header-style4__middle .search-box-one a {
    color: var(--thm-secondary);
}

.main-header-style4__middle .search-box-one a:hover {
    color: var(--thm-primary);
}

.main-header-style4__middle .side-content-button-one a {
    border: 1px solid var(--thm-secondary);
}

.main-header-style4__middle .side-content-button-one a .line {
    background-color: var(--thm-secondary);
}

.main-header-style4__middle .side-content-button-one a:hover .line {
    background-color: var(--thm-white);
}

.main-header-style4__right {
    position: relative;
    display: block;
}

.main-header-style4__right .contact-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 80px 0px;
    z-index: 1;
}

.main-header-style4__right .contact-box::before {
    position: absolute;
    top: -39px;
    left: 0;
    bottom: -39px;
    right: 0;
    background: var(--thm-primary);
    content: "";
    z-index: -1;
}

.main-header-style4__right .contact-box .icon {
    position: relative;
    display: block;
}

.main-header-style4__right .contact-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 40px;
    line-height: 40px;
}

.main-header-style4__right .contact-box .text-box {
    position: relative;
    display: block;
    margin-left: 25px;
    flex: 1;
}

.main-header-style4__right .contact-box .text-box p {
    color: var(--thm-white);
    line-height: 26px;
}

.main-header-style4__right .contact-box .text-box h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

.main-header-style4__right .contact-box .text-box h4 a {
    color: var(--thm-white);
}

.main-header-style4__right .contact-box .text-box h4 a:hover {
    color: var(--thm-secondary);
}


.sticky-menu .main-header-style4__left .logo-box-one {
    height: 90px;
}

.sticky-menu .main-header-style4__right .contact-box::before {
    top: -19px;
    bottom: -19px;
}


/*** 
=============================================
    Footer One Css
=============================================
***/
.footer-one {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.footer-main {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    padding: 100px 0px 80px;
    z-index: 1;
}

.footer-main__inner {
    position: relative;
    display: block;
}

.single-footer-widget {
    position: relative;
    display: block;

}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -7px;
}

.single-footer-widget .title h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 30px;
}

.footer-widget__links-box {
    position: relative;
    display: block;
    padding-top: 36px;
}

.footer-widget__links-box ul {
    position: relative;
    display: block;
}

.footer-widget__links-box ul li {
    position: relative;
    display: block;
}

.footer-widget__links-box ul li+li {
    margin-top: 16px;
}

.footer-widget__links-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 25px;
    font-family: var(--thm-body-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget__links-box ul li a:hover {
    color: var(--thm-white);
    padding-left: 5px;
}

.footer-widget__links-box ul li a span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    margin-right: 8px;
}

.single-footer-widget.ml-52 {
    margin-left: -52px;
}

.single-footer-widget__contact-info {
    position: relative;
    display: block;
    padding-top: 33px;
}

.single-footer-widget__contact-info .text {
    position: relative;
    display: block;
    max-width: 280px;
}

.single-footer-widget__contact-info .text p {
    color: rgb(255, 255, 255, 0.72);
}

.single-footer-widget__contact-info ul {
    position: relative;
    display: block;
    padding-top: 12px;
}

.single-footer-widget__contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-footer-widget__contact-info ul li+li {
    margin-top: 12px;
}

.single-footer-widget__contact-info ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.single-footer-widget__contact-info ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 16px;
    font-weight: 900;
}

.single-footer-widget__contact-info ul li p {
    color: rgb(255, 255, 255, 0.72);
}

.single-footer-widget__contact-info ul li p a {
    color: rgb(255, 255, 255, 0.72);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-footer-widget__contact-info ul li p a:hover {
    color: var(--thm-white);
}

.single-footer-widget.ml-7 {
    margin-left: -7px;
}

.single-footer-widget__recent-blog-list {
    position: relative;
    display: block;
    padding-top: 42px;
}

.single-footer-widget__recent-blog-list ul {
    position: relative;
    display: block;
}

.single-footer-widget__recent-blog-list ul li {
    position: relative;
    display: block;
    min-height: 80px;
    padding-left: 95px;
}

.single-footer-widget__recent-blog-list ul li+li {
    margin-top: 23px;
}

.single-footer-widget__recent-blog-list ul li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    overflow: hidden;
}

.single-footer-widget__recent-blog-list ul li .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-secondary);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-30deg);
    -ms-transform: perspective(400px) rotateX(-30deg);
    transform: perspective(400px) rotateX(-30deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.single-footer-widget__recent-blog-list ul li:hover .img-box::before {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.single-footer-widget__recent-blog-list ul li .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-footer-widget__recent-blog-list ul li:hover .img-box img {
    transform: scale(1.05) rotate(1deg);
}

.single-footer-widget__recent-blog-list ul li .img-box a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    color: var(--thm-white);
    font-size: 16px;
    transform: translateY(100px);
    transition: all 700ms ease;
    z-index: 2;
}

.single-footer-widget__recent-blog-list ul li:hover .img-box a {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.3s;
}

.single-footer-widget__recent-blog-list ul li .img-box a:hover {
    color: var(--thm-primary);
}


.single-footer-widget__recent-blog-list ul li .title-box {
    position: relative;
    display: block;
}

.single-footer-widget__recent-blog-list ul li .title-box .date-box {
    position: relative;
    display: flex;
    align-items: center;
}

.single-footer-widget__recent-blog-list ul li .title-box .date-box .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.single-footer-widget__recent-blog-list ul li .title-box .date-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 16px;
    font-weight: 400;
}

.single-footer-widget__recent-blog-list ul li .title-box .date-box .text {
    position: relative;
    display: block;
}

.single-footer-widget__recent-blog-list ul li .title-box .date-box .text p {
    color: rgb(255, 255, 255, 0.72);
}

.single-footer-widget__recent-blog-list ul li .title-box h5 {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-body-font);
    font-weight: 400;
    text-transform: capitalize;
}

.single-footer-widget__recent-blog-list ul li .title-box h5 a {
    color: rgb(255, 255, 255, 0.72);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-footer-widget__recent-blog-list ul li .title-box h5 a:hover {
    color: var(--thm-white);
}

.single-footer-widget.pl40 {
    padding-left: 40px;
}

.single-footer-widget__photo-gallery-list {
    position: relative;
    display: block;
    padding-top: 42px;
}

.single-footer-widget__photo-gallery-list ul {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.single-footer-widget__photo-gallery-list ul li {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.footer-widget__photo-gallery-img {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.footer-widget__photo-gallery-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-secondary);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-30deg);
    -ms-transform: perspective(400px) rotateX(-30deg);
    transform: perspective(400px) rotateX(-30deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.single-footer-widget__photo-gallery-list ul li:hover .footer-widget__photo-gallery-img::before {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.footer-widget__photo-gallery-img img {
    width: 100%;
    transform: scale(1.0);
}

.single-footer-widget__photo-gallery-list ul li:hover .footer-widget__photo-gallery-img img {
    transform: scale(1.05) rotate(1deg);
}

.footer-widget__photo-gallery-img a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    color: var(--thm-white);
    font-size: 14px;
    transform: translateY(100px);
    transition: all 700ms ease;
    z-index: 2;
}

.single-footer-widget__photo-gallery-list ul li:hover .footer-widget__photo-gallery-img a {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.3s;
}

.footer-widget__photo-gallery-img a:hover {
    color: var(--thm-primary);
}




/*===Middle Footer===*/
.footer-middle {
    position: relative;
    display: block;
    background-color: var(--thm-secondary);
}

.footer-middle__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 17px;
}

.footer-logo-box {
    position: relative;
    display: block;
}

.footer-logo-box img {
    width: auto;
}

.phone-number-box {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-number-box .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.phone-number-box .icon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 900;
    width: 55px;
    height: 55px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255, 0.1);
}

.phone-number-box .text {
    position: relative;
    display: block;
    padding-left: 15px;
}

.phone-number-box .text p {
    color: var(--thm-white);
}

.phone-number-box .text p a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box .text p a:hover {
    color: var(--thm-primary);
}

.socel-link-box {
    position: relative;
    display: flex;
    align-items: center;
}

.socel-link-box .text {
    position: relative;
    display: block;
    margin-right: 40px;
}

.socel-link-box .text p {
    color: var(--thm-white);
}

.socel-link-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.socel-link-box ul li {
    position: relative;
    display: block;
}

.socel-link-box ul li+li {
    margin-left: 10px;
}

.socel-link-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 900;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    background: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.socel-link-box ul li a:hover {
    background: transparent;
    color: var(--thm-white);
}

.socel-link-box ul li a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    background-color: var(--thm-white);
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.socel-link-box ul li:hover a::before {
    opacity: 0.1;
    border-radius: 5px;
    transform: scale(1);
}


/*===Bottom Footer===*/
.footer-bottom {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
}

.footer-bottom__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 31px 0px 30px;
}

.copyright-text {
    position: relative;
    display: block;
}

.copyright-text p {
    color: rgb(255, 255, 255, 0.72);
}

.copyright-text p a {
    color: rgb(255, 255, 255, 0.72);
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.copyright-text p a:hover {
    color: var(--thm-white);
}

.copyright-menu {
    position: relative;
    display: block;
}

.copyright-menu ul {
    position: relative;
    display: flex;
    align-items: center;
}

.copyright-menu ul li {
    position: relative;
    display: block;
}

.copyright-menu ul li+li {
    margin-left: 34px;
}

.copyright-menu ul li p {
    color: rgb(255, 255, 255, 0.72);
}

.copyright-menu ul li p a {
    color: rgb(255, 255, 255, 0.72);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.copyright-menu ul li p a:hover {
    color: var(--thm-white);
}





.footer-main--white-bg {
    background-color: #ffffff;
}

.single-footer-widget--two .title h3 {
    color: var(--thm-black);
}

.single-footer-widget--two .footer-widget__links-box ul li a {
    color: #616670;
}

.single-footer-widget--two .single-footer-widget__contact-info .text p {
    color: #616670;
}

.single-footer-widget--two .single-footer-widget__contact-info ul li p a {
    color: #616670;
}

.single-footer-widget--two .single-footer-widget__contact-info ul li p a:hover {
    color: var(--thm-primary);
}

.single-footer-widget--two .single-footer-widget__contact-info ul li p {
    color: #616670;
}

.single-footer-widget--two .single-footer-widget__recent-blog-list ul li .title-box .date-box .text p {
    color: #616670;
}

.single-footer-widget--two .single-footer-widget__recent-blog-list ul li .title-box h5 a {
    color: #616670;
}

.single-footer-widget--two .single-footer-widget__recent-blog-list ul li .title-box h5 a:hover {
    color: var(--thm-primary);
}



.footer-middle--two {
    background-color: #f4f4f4;
}


.phone-number-box--style2 .icon span {
    color: var(--thm-black);
    border-radius: 50%;
    background-color: rgba(var(--thm-primary-rgb), 0.30);
}


.phone-number-box--style2 .text p {
    color: var(--thm-black);
}

.phone-number-box--style2 .text p a {
    color: var(--thm-black);
}


.socel-link-box--two .text p {
    color: var(--thm-black);
}

.socel-link-box--two ul li a {
    background: #E3E3E3;
}

.socel-link-box--two ul li a::before {
    background-color: var(--thm-secondary);
}

.socel-link-box--two ul li:hover a::before {
    opacity: 1;
}

/*====Start Footer Bottom====*/
.footer-bottom--two {
    background-color: var(--thm-white);
}

.copyright-text--two p {
    color: var(--thm-body-font-color);
}

.copyright-text--two p a {
    color: var(--thm-body-font-color);
}

.copyright-text--two p a:hover {
    color: var(--thm-primary);
}



.copyright-menu--two ul li p {
    color: var(--thm-body-font-color);
}

.copyright-menu--two ul li p a {
    color: var(--thm-body-font-color);
}

.copyright-menu--two ul li p a:hover {
    color: var(--thm-primary);
}









/*** 
=============================================
    Footer two Css
=============================================
***/
.footer-two {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.footer-main__two {
    background-color: #f2f6f9;
    padding: 125px 0px 76px;
}

.single-footer-widget--2 {
    position: relative;
    display: block;
}

.single-footer-widget--2.mr10 {
    margin-right: -10px;
}

.single-footer-widget--2 .title {
    position: relative;
    display: block;
}

.single-footer-widget--2 .title h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 30px;
}

.single-footer-widget__about {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-footer-widget__about .text {
    position: relative;
    display: block;
}

.single-footer-widget__about .text p {
    margin: 0;
}

.single-footer-widget__about .form-group {
    position: relative;
    display: block;
    margin: 30px 0px 0px;
}

.single-footer-widget__about .form-group input[type='email'] {
    position: relative;
    display: block;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-family: var(--thm-body-font);
    font-weight: 400;
    width: 100%;
    height: 65px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--thm-secondary);
    padding-right: 80px;
}

.single-footer-widget__about .form-group button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 55px;
    height: 55px;
    line-height: 0;
    border-radius: 5PX;
    border: 2PX solid #E3E3E3;
    background: transparent;
    transition: all 300ms ease 100ms;
    padding: 0;
}

.single-footer-widget__about .form-group button:hover {
    border-color: var(--thm-secondary);
    background: var(--thm-secondary);
}

.single-footer-widget__about .form-group button i {
    color: var(--thm-secondary);
    font-size: 16px;
    font-weight: 900;
    transition: all 300ms ease 100ms;
}

.single-footer-widget__about .form-group button:hover i {
    color: var(--thm-white);
}

.single-footer-widget--2.mlr8090 {
    padding-left: 80px;
    margin-right: -90px;
}

.single-footer-widget--2 .text {
    max-width: 310px;
    width: 100%;
}

.single-footer-widget__contact--2 {
    padding-top: 23px;
}

.single-footer-widget__contact--2 .text p {
    color: var(--thm-body-font-color);
}

.single-footer-widget__contact--2 ul li p {
    color: var(--thm-body-font-color);
}

.single-footer-widget__contact--2 ul li p a {
    color: var(--thm-body-font-color);
}

.single-footer-widget__contact--2 ul li p a:hover {
    color: var(--thm-secondary);
}

.single-footer-widget--2.ml160 {
    padding-left: 160px;
}

.footer-widget__links-box--2 {
    padding-top: 25px;
}

.footer-widget__links-box--2 ul li a {
    color: var(--thm-body-font-color);
}

.footer-widget__links-box--2 ul li a:hover {
    color: var(--thm-secondary);
}

.single-footer-widget--2.pl125 {
    padding-left: 125px;
}




/*===Bottom Footer Two===*/
.footer-bottom-two {
    background-color: #f2f6f9;
}

.footer-bottom__inner-two {
    border: 1px solid #E3E3E3;
    padding: 31px 30px 30px;
}

.footer-bottom__inner-two .copyright-text p {
    color: var(--thm-body-font-color);
}

.footer-bottom__inner-two .copyright-text p a {
    color: var(--thm-body-font-color);
}

.footer-bottom__inner-two .copyright-text p a:hover {
    color: var(--thm-secondary);
}

.footer-bottom__inner-two .copyright-menu ul li p {
    color: var(--thm-body-font-color);
}

.footer-bottom__inner-two .copyright-menu ul li p a {
    color: var(--thm-body-font-color);
}

.footer-bottom__inner-two .copyright-menu ul li p a:hover {
    color: var(--thm-secondary);
}







/*** 
=============================================
    Footer Three Css
=============================================
***/
.footer-three {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.footer-main__three {
    background-color: var(--thm-black);
    padding: 110px 0px 76px;
}

.footer-main__inner {
    position: relative;
    display: block;
}

.single-footer-widget--3 {
    position: relative;
    display: block;
}

.foother-three__logo {
    position: relative;
    display: block;
}

.foother-three__logo a {
    position: relative;
    display: block;
}

.single-footer-widget__socel-link {
    position: relative;
    display: block;
}

.single-footer-widget__socel-link--3 {
    position: relative;
    display: block;
    padding-top: 0;
}

.single-footer-widget__socel-link {
    position: relative;
    display: block;
    padding-top: 20px;
}

.single-footer-widget__socel-link .text p {
    color: var(--thm-white);
}

.single-footer-widget__socel-link .socel-link-box {
    position: relative;
    display: block;
    padding-top: 30px;
}

.single-footer-widget__socel-link .socel-link-box ul li a {
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 900;
    background: #333F4D;
}

.single-footer-widget__socel-link .socel-link-box ul li a:hover {
    color: var(--thm-secondary);
    font-weight: 900;
}

.single-footer-widget__socel-link .socel-link-box ul li a::before {
    background-color: var(--thm-white);
}

.single-footer-widget__socel-link .socel-link-box ul li:hover a::before {
    opacity: 1;
}

.single-footer-widget-contact--3 {
    margin-left: 35px;
    margin-right: -10px;
}

.single-footer-widget__contact--3 {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-footer-widget__contact--3 .text p {
    color: var(--thm-white);
}

.single-footer-widget__contact--3 ul li p {
    color: var(--thm-white);
}

.single-footer-widget__contact--3 ul li p a {
    color: var(--thm-white);
}

.single-footer-widget__contact--3 ul li p a:hover {
    color: var(--thm-primary);
}

.single-footer-widget-links--3 {
    margin-left: 67px;
}

.footer-widget__links-box--3 {
    padding-top: 26px;
}

.footer-widget__links-box--3 ul li a {
    color: var(--thm-white);
}

.footer-widget__links-box ul li a:hover {
    color: var(--thm-primary);
}

.single-footer-widget__newsletter {
    position: relative;
    display: block;
}

.single-footer-widget__newsletter .text {
    position: relative;
    display: block;
}

.single-footer-widget__newsletter .text p {
    color: var(--thm-white);
}

.single-footer-widget__newsletter .form-group {
    position: relative;
    display: block;
}

.single-footer-widget__newsletter .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
    border: none;
    color: var(--thm-white);
    font-size: 17px;
    font-weight: 400;
    border-radius: 5px;
    background-color: #333F4D;
    padding-left: 20px;
    padding-right: 71px;
}

.single-footer-widget__newsletter form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="text"]:-moz-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="text"]::-moz-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="email"]:-moz-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="email"]::-moz-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-white);
}


.single-footer-widget__newsletter form textarea::-webkit-input-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form textarea:-moz-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form textarea::-moz-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter form textarea:-ms-input-placeholder {
    color: var(--thm-white);
}

.single-footer-widget__newsletter {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-footer-widget__newsletter .form-group {
    position: relative;
    display: block;
    padding-top: 30px;
}

.single-footer-widget__newsletter .form-group button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0px;
    bottom: 0px;
    width: 55px;
    height: 55px;
    line-height: 0;
    border-radius: 5PX;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background: var(--thm-secondary);
    transition: all 300ms ease 100ms;
    padding: 0;
}

.single-footer-widget__newsletter .form-group button:hover {
    background: var(--thm-primary);
}

.single-footer-widget__newsletter .form-group button i {
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 900;
    transition: all 300ms ease 100ms;
}

.single-footer-widget__newsletter .form-group button:hover i {
    color: var(--thm-white);
}



/*===========
bottom footer
===========*/
.footer-bottom-three {
    background-color: var(--thm-black);
}

.footer-bottom__inner-three {
    border-top: 1px solid #333F4D;
    padding: 30px 30px 29px;
}

.footer-bottom__inner-three .copyright-text p {
    color: var(--thm-white);
}

.footer-bottom__inner-three .copyright-text p a {
    color: var(--thm-white);
}

.footer-bottom__inner-three .copyright-text p a:hover {
    color: var(--thm-primary);
}

.footer-bottom__inner-three .copyright-menu ul li p {
    color: var(--thm-white);
}

.footer-bottom__inner-three .copyright-menu ul li p a {
    color: var(--thm-white);
}

.footer-bottom__inner-three .copyright-menu ul li p a:hover {
    color: var(--thm-primary);
}


/*=============================
	Services One CSS
===============================*/
.service-one {
    padding: 140px 0 100px;
    background-color: var(--thm-body-background);
    z-index: 10;
}

.service-one__single {
    position: relative;
    display: block;
    border-radius: 5px;
    background-color: var(--thm-white);
    padding: 42px 40px 40px;
    margin-bottom: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single:hover {
    transform: translateY(-5px);
}

.service-one__single-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-one__single-icon-box .left-icon-box {
    position: relative;
    display: block;
    line-height: 0;
}

.service-one__single-icon-box .left-icon-box span {
    color: var(--thm-black);
    font-size: 70px;
}

.service-one__single-icon-box .right-icon-box {
    position: relative;
    display: block;
}

.service-one__single-icon-box .right-icon-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-secondary);
    font-size: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(var(--thm-secondary-rgb), 0.2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single:hover .service-one__single-icon-box .right-icon-box a {
    color: var(--thm-white);
    border-color: var(--thm-secondary-rgb);
    background-color: var(--thm-secondary);
}

.service-one__single-content {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-secondary);
    padding-top: 35px;
    margin-top: 32px;
}

.service-one__single-content h3 {
    font-size: 32px;
    line-height: 1.1em;
    padding-bottom: 13px;
}

.service-one__single-content h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-one__single-content h3 a:hover {
    color: var(--thm-secondary);
}

.service-one__single-content p {
    margin: 0;
}




/*=============================
	Services Two CSS
===============================*/
.service-two {
    position: relative;
    display: block;
    padding: 110px 0 85px;
    z-index: 1;
}

.service-two__single {
    position: relative;
    display: block;
    border-bottom: 2px solid #333F4D;
    padding: 0 0 20px;
    margin-bottom: 55px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-two__single:hover {
    transform: translateY(-5px);
}

.service-two__single::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--thm-secondary);
    transition: all 600ms ease 100ms;
    z-index: 1;
}

.service-two__single:hover::before {
    width: 100%;
}

.service-two__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 5px;
    border: 1px solid #E3E3E3;
    background-color: transparent;
    line-height: 0;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-two__single-icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-two__single:hover .service-two__single-icon span {
    color: var(--thm-primary);
    transform: scale(1.05) rotateY(180deg);
}

.service-two__single:hover .service-two__single-icon {
    border-color: transparent;
}

.service-two__single-icon::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 1px;
    right: 0px;
    opacity: 0;
    border-radius: 5px;
    border: 1px solid var(--thm-primary);
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    z-index: -1;
}

.service-two__single:hover .service-two__single-icon::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.service-two__single-text {
    position: relative;
    display: block;
    padding: 11px 0px 8px;
}

.service-two__single-text p {
    margin: 0;
}

.service-two__single-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-two__single-content .title-box {
    position: relative;
    display: block;
}

.service-two__single-content .title-box h3 {
    font-size: 32px;
    line-height: 1.2em;
}

.service-two__single-content .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-two__single-content .title-box h3 a:hover {
    color: var(--thm-primary);
}

.service-two__single-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    top: 3px;
}

.service-two__single-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 25px;
    font-family: var(--thm-heading-font);
    font-weight: 700;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-two__single-content .btn-box a:hover {
    color: var(--thm-primary);
    letter-spacing: 1.15px;
}

.service-two__single-content .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 16px;
    font-weight: 900;
    top: -1px;
    margin-left: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-two__single-content .btn-box a:hover span {
    color: var(--thm-primary);
}



/*=============================
	Services Three CSS
===============================*/
.service-three {
    position: relative;
    display: block;
    padding: 140px 0 100px;
    z-index: 1;
}

.service-three__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-three__single:hover {
    transform: translateY(-5px);
}

.service-three__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.service-three__single-img img {
    width: 100%;
    transform: scale(1.0);
}

.service-three__single:hover .service-three__single-img img {
    transform: scale(1.05) rotate(1deg);
}

.service-three__single-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-secondary);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: 5px;
    z-index: 1;
}

.service-three__single:hover .service-three__single-img-bg {
    opacity: 0.70;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.service-three__single-content {
    position: relative;
    display: block;
    margin-right: 40px;
    margin-top: -70px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border: 1px solid #E3E3E3;
    background-color: var(--thm-white);
    padding: 30px 30px 30px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 3;
}

.service-three__single:hover .service-three__single-content {
    border-color: transparent;
}

.service-three__single-content::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    opacity: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border: 1px solid var(--thm-primary);
    transition-delay: .2s;
    transition-timing-function: ease-in-out;
    transition-duration: .4s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0.9);
    z-index: -1;
}

.service-three__single:hover .service-three__single-content::before {
    opacity: 1.0;
    transform: scaleY(1.0);
}

.service-three__single-content .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background-color: #F4F4F4;
    line-height: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-three__single:hover .service-three__single-content .icon {
    background-color: transparent;
}

.service-three__single-content .icon::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    border-radius: 5px;
    background-color: var(--thm-primary);
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-three__single:hover .service-three__single-content .icon::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.service-three__single-content .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 55px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-three__single:hover .service-three__single-content .icon span {
    color: var(--thm-white);
    transform: scale(1.0) rotateY(180deg);
}

.service-three__single-content .title {
    position: relative;
    display: block;
    padding-top: 20px;
}

.service-three__single-content .title h3 {
    font-size: 24px;
    line-height: 30px;
}

.service-three__single-content .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-three__single-content .title h3 a:hover {
    color: var(--thm-primary);
}

.service-three__single-content .text {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-black);
    padding-top: 21px;
    margin-top: 22px;
}

.service-three__single-content .text p {
    margin: 0;
}

/*=============================
	Service Details CSS
===============================*/
.service-details {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 90px;
    z-index: 1;
}

.service-details__content {
    position: relative;
    display: block;
}

.service-details__content-img1 {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.service-details__content-img1::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;
}

.service-details__content-img1:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.service-details__content-img1 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.service-details__content-img1:hover img {
    transform: scale(1);
}

.service-details__content-text1 {
    position: relative;
    display: block;
    margin-top: 30px;
}

.service-details__content-text1 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 9px;
}

.service-details__content-text1 .text1 {
    position: relative;
    margin: 0;
}

.service-details__content-text1-list-box {
    position: relative;
    display: block;
    margin-top: 31px;
    margin-bottom: 21px;
}

.service-details__content-text1-list-box ul {
    position: relative;
    display: block;
}

.service-details__content-text1-list-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.service-details__content-text1-list-box ul li:last-child {
    margin-bottom: 0;
}

.service-details__content-text1-list-box ul li .round-box {
    position: relative;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--thm-secondary);
}

.service-details__content-text1-list-box ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 25px;
}

.service-details__content-text1-list-box ul li .text-box p {
    margin: 0;
}

.service-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 60px;
}

.service-details__content-text2 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.service-details__content-text2 p {
    margin: 0;
}

.service-details__content-text2 p+p {
    margin-top: 21px;
}

.service-details__content-text3 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.service-details__content-text3-single {
    position: relative;
    display: block;
    background: var(--thm-white);
    border-radius: 5px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 42px 30px 40px;
    margin-bottom: 20px;
}

.service-details__content-text3-single::before {
    position: absolute;
    top: 40px;
    left: 0;
    width: 1px;
    height: 40px;
    background: var(--thm-secondary);
    content: "";
}

.service-details__content-text3-single .inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.service-details__content-text3-single .inner .icon {
    position: absolute;
    top: 5px;
    left: 0;
}

.service-details__content-text3-single .inner .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 40px;
    line-height: 40px;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.service-details__content-text3-single:hover .inner .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.service-details__content-text3-single .inner .content-box {
    position: relative;
    display: block;
}

.service-details__content-text3-single .inner .content-box h3 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 7px;
}

.service-details__content-text3-single .inner .content-box h3 a {
    color: var(--thm-black);
}

.service-details__content-text3-single .inner .content-box h3 a:hover {
    color: var(--thm-primary);
}

.service-details__content-text3-single .inner .content-box p {
    margin: 0;
}

.service-details__content-text3 .text-box {
    position: relative;
    display: block;
    margin-top: 11px;
}

.service-details__content-text3 .text-box p {
    margin: 0;
}

.service-details__content-img2 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.service-details__content-img2-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.service-details__content-img2-single .img-box {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.service-details__content-img2-single .img-box::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;
}

.service-details__content-img2-single:hover .img-box::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.service-details__content-img2-single .img-box img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.service-details__content-img2-single:hover .img-box img {
    transform: scale(1);
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-single {
    position: relative;
    display: block;
}

.service-details__sidebar-single,
.service-details__sidebar-single {
    margin-bottom: 60px;
}

.service-details__sidebar-single .title-box {
    position: relative;
    display: block;
    margin-top: -9px;
}

.service-details__sidebar-single .title-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.service-details__sidebar-services {
    position: relative;
    display: block;
    background: var(--thm-body-background);
    padding: 45px 40px 40px;
}

.service-details__sidebar-services ul {
    position: relative;
    display: block;
    margin-top: 30px;
}

.service-details__sidebar-services ul li {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.service-details__sidebar-services ul li:last-child {
    margin-bottom: 0;
}

.service-details__sidebar-services ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--thm-white);
    border-radius: 5px;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 13px 20px 12px;
    z-index: 1;
}

.service-details__sidebar-services ul li a:hover,
.service-details__sidebar-services ul li a.active {
    color: var(--thm-white);
}

.service-details__sidebar-services ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 5px;
    background-color: var(--thm-secondary);
    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;
}

.service-details__sidebar-services ul li a:hover::before,
.service-details__sidebar-services ul li a.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__sidebar-services ul li a span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.service-details__sidebar-services ul li a:hover span,
.service-details__sidebar-services ul li a.active span {
    color: var(--thm-white);
}







.service-details__sidebar-brochure {
    position: relative;
    display: block;
    background: var(--thm-body-background);
    padding: 45px 40px 40px;
}

.service-details__sidebar-brochure ul {
    position: relative;
    display: block;
    margin-top: 22px;
}

.service-details__sidebar-brochure ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-details__sidebar-brochure ul li+li {
    margin-top: 22px;
}

.service-details__sidebar-brochure ul li .content-box {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__sidebar-brochure ul li .content-box .icon {
    position: relative;
    display: block;
}

.service-details__sidebar-brochure ul li .content-box .icon span {
    position: relative;
    display: inline-block;
    color: #626671;
    font-size: 30px;
    line-height: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.service-details__sidebar-brochure ul li:hover .content-box .icon span {
    color: var(--thm-secondary);
}

.service-details__sidebar-brochure ul li .content-box .text {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.service-details__sidebar-brochure ul li .content-box .text h4 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
}

.service-details__sidebar-brochure ul li .content-box .text p {
    margin: 0;
}

.service-details__sidebar-brochure ul li .btn-box {
    position: relative;
    display: block;
}

.service-details__sidebar-brochure ul li .btn-box a {
    position: relative;
    display: block;
    color: #e3e3e3;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.service-details__sidebar-brochure ul li:hover .btn-box a {
    color: var(--thm-secondary);
}

.service-details__sidebar-brochure ul li .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
}



/*=============================
	About One Css
===============================*/
.about-one {
    padding: 17px 0px 140px;
    z-index: 10;
}

.about-one__img-box {
    position: relative;
    display: block;
    max-width: 500px;
    width: 100%;
}

.about-one__img-box::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 110px;
    right: -17px;
    bottom: 40px;
    border-radius: 5px;
    background-color: var(--thm-primary);
    z-index: -2;
}

.about-one__img-box-overlay-bg {
    position: absolute;
    top: -17px;
    left: 110px;
    bottom: 40px;
    right: -17px;
    border-radius: 4px;
    background-color: var(--thm-secondary);
    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: -1;
}

.about-one__img-box:hover .about-one__img-box-overlay-bg {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.about-one__img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-one__img-box .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-one__img-box:hover .inner img {
    transform: scale(1.05) rotate(1deg);
}

.about-one__overlay-box {
    position: absolute;
    right: -102px;
    bottom: 40px;
    background-color: var(--thm-white);
    border-radius: 5px;
    padding: 31px 40px 25px;
}

.about-one__overlay-box .outer-box {
    position: relative;
    display: block;
}

.about-one__overlay-box .outer-box .count-outer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 13px;
}

.about-one__overlay-box .outer-box .count-outer h2 {
    font-size: 48px;
    line-height: 1.1em;
    font-family: var(--thm-heading-font);
}

.about-one__overlay-box .outer-box .count-outer i {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 30px;
    line-height: 30px;
    font-family: var(--thm-heading-font);
    top: -2px;
}

.about-one__overlay-box .text {
    position: relative;
    display: block;
}

.about-one__overlay-box .text p {
    margin: 0;
}


.about-one__content-box {
    position: relative;
    display: block;
}

.about-one__content-box .sec-title {
    padding-bottom: 20px;
}

.about-one__content-box .text {
    position: relative;
    display: block;
}

.about-one__content-box .text p {
    margin: 0;
}

.about-one__content-box ul {
    position: relative;
    display: block;
    padding-top: 40px;
}

.about-one__content-box ul li {
    position: relative;
    display: block;
    padding-left: 45px;
}

.about-one__content-box ul li+li {
    margin-top: 30px;
}

.about-one__content-box ul li .icon {
    position: absolute;
    top: 3px;
    left: 0;
    line-height: 0;
}

.about-one__content-box ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 24px;
    font-weight: 900;
}

.about-one__content-box ul li .text-box {
    position: relative;
    display: block;
}

.about-one__content-box ul li .text-box h3 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 13px;
}

.about-one__content-box ul li .text-box p {
    margin: 0;
}


/*=============================
	About Two Css
===============================*/
.about-two {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0px 0px;
    z-index: 10;
}

.about-two__img {
    position: relative;
    display: block;
    max-width: 795px;
    width: 100%;
    margin-left: -103px;
}

.about-two__img ul {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-right: -15px;
    margin-left: -15px;
}

.about-two__img ul li {
    position: relative;
    display: block;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.about-two__img ul li .single-about-two__img-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
}

.about-two__img ul li:first-child .single-about-two__img-box {
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
}

.about-two__img ul li .single-about-two__img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.about-two__img ul li .single-about-two__img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.about-two__img ul li .single-about-two__img-box:hover::before {
    opacity: 0.50;
}

.about-two__img ul li .single-about-two__img-box img {
    width: 100%;
    transform: scale(1.0);
}

.about-two__img ul li .single-about-two__img-box:hover img {
    transform: scale(1.05) rotate(0deg);
}

.about-two__img .overlay-box {
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    left: 50%;
    width: 232px;
    height: 232px;
    border-radius: 5px;
    border: 5px solid var(--thm-primary);
    background-color: #f2f6f9;
    z-index: 5;
    transform: translateY(-50%) translateX(-50%);
}

.about-two__img .overlay-box .outer-box {
    position: relative;
    display: block;
    padding-left: 30px;
}

.about-two__img .overlay-box .outer-box .count-outer {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 13px;
}

.about-two__img .overlay-box .count-outer h2 {
    color: var(--thm-black);
    font-size: 48px;
    line-height: 1.1em;
    font-family: var(--thm-heading-font);
}

.about-two__img .overlay-box .outer-box .count-outer i {
    color: var(--thm-black);
    font-size: 48px;
    line-height: 48px;
    font-family: var(--thm-heading-font);
}

.about-two__img .overlay-box .outer-box .title {
    position: relative;
    display: block;
    padding-bottom: 13px;
}

.about-two__img .overlay-box .outer-box .title h4 {
    font-size: 18px;
    line-height: 27px;
}

.about-two__img .overlay-box .outer-box .text {
    position: relative;
    display: block;
}

.about-two__img .overlay-box .outer-box .text p {
    margin: 0;
}


.about-two__contant-box {
    position: relative;
    display: block;
    padding-top: 100px;
    margin-right: -100px;
    margin-left: -5px;
}

.about-two__contant-box .sec-title {
    padding-bottom: 20px;
}

.about-two__contant-box .text {
    position: relative;
    display: block;
}

.about-two__contant-box .text p {
    margin: 0;
}

.about-one__futures1 {
    position: relative;
    display: block;
    padding-top: 28px;
}

.about-one__futures1 ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-one__futures1 ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #333f4d;
    padding-bottom: 10px;
}

.about-one__futures1 ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 20px;
}

.about-one__futures1 ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 55px;
}

.about-one__futures1 ul li h3 {
    font-size: 24px;
    line-height: 30px;
}

.about-one__list-item {
    position: relative;
    display: block;
    padding-top: 31px;
}

.about-one__list-item ul {
    position: relative;
    display: block;
}

.about-one__list-item ul li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.about-one__list-item ul li+li {
    margin-top: 16px;
}

.about-one__list-item ul li .icon {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    line-height: 0;
}

.about-one__list-item ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 22px;
}

.about-one__list-item ul li p {
    margin: 0;
}


/*=============================
	About Two Css
===============================*/
.about-three {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 140px 0px 140px;
    z-index: 1;
}

.about-three__big-title {
    position: absolute;
    top: 52px;
    left: 43px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(255, 255, 255, 0.2);
    font-size: 150px;
    line-height: 1.2em;
    font-family: var(--thm-heading-font);
    font-weight: 700;
    text-transform: capitalize;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 1;
}

.about-three__img {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-left: -5px;
    max-width: 605px;
    overflow: hidden;
    border-radius: 5px;
    z-index: 2;
}

.about-three__img img {
    width: 100%;
    transform: scale(1.0);
}

.about-three__img:hover img {
    transform: scale(1.05) rotate(1deg);
}

.about-three__content {
    position: relative;
    display: block;
    padding-top: 33px;
}

.about-three__content .sec-title {
    padding-bottom: 20px;
}

.about-three__content .sec-title .sub-title h4 {
    color: var(--thm-white);
}

.about-three__content .sec-title h2 {
    color: var(--thm-white);
}

.about-three__content .text {
    position: relative;
    display: block;
}

.about-three__content .text p {
    color: var(--thm-white);
}

.about-three__content-list-item {
    position: relative;
    display: block;
    padding-top: 33px;
}

.about-three__content-list-item ul {
    position: relative;
    display: block;
}

.about-three__content-list-item ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgb(255, 255, 255, 0.5);
    padding-bottom: 12px;
}

.about-three__content-list-item ul li+li {
    margin-top: 23px;
}

.about-three__content-list-item ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--thm-white);
    transition: all 600ms ease 100ms;
    z-index: 1;
}

.about-three__content-list-item ul li:hover::before {
    width: 100%;
}

.about-three__content-list-item ul li .list-item__inner {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__content-list-item ul li .list-item__inner .number {
    position: relative;
    display: block;
}

.about-three__content-list-item ul li .list-item__inner .number span {
    color: var(--thm-white);
    font-size: 32px;
    line-height: 1.1em;
    font-family: var(--thm-heading-font);
    font-weight: 700;
}

.about-three__content-list-item ul li .list-item__inner .title {
    position: relative;
    display: block;
    padding-left: 46px;
}

.about-three__content-list-item ul li .list-item__inner .title h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 30px;
}

.about-three__content-list-item ul li .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.about-three__content-list-item ul li .btn-box a {
    position: relative;
    display: inline-block;
}

.about-three__content-list-item ul li .btn-box a span {
    color: rgb(255, 255, 255, 0.5);
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.about-three__content-list-item ul li:hover .btn-box a span {
    color: var(--thm-white);
}

/*=============================
	About Two About Css
===============================*/
.about-two--about {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 140px 0px 110px;
}

/*=============================
	Who we Are About Css
===============================*/
.who-we-are-one--about {
    position: relative;
    display: block;
    background: var(--thm-white);
}


/*==================================
    Banner One
====================================*/
.banner-one {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 167px 0 180px;
    overflow: hidden;
    z-index: 10;
}

.banner-one__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% + 60px) / 2);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    z-index: 1;
}

.banner-one__bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% + 240px) / 2);
    background-color: var(--thm-primary);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    z-index: -1;
}

.banner-one__bg-shape .border-box {
    position: absolute;
    top: -35px;
    left: 3px;
    width: 30px;
    height: 190px;
    background-color: var(--thm-white);
    z-index: 3;
    transform: rotate(29deg);
}

.banner-one__shape1 {
    position: absolute;
    left: 15px;
    bottom: 2px;
    z-index: 1;
}

.banner-one__shape2 {
    position: absolute;
    left: 48%;
    bottom: 120px;
    z-index: 1;
    transform: rotate(3deg);
}

.banner-one__content {
    position: relative;
    display: block;
}

.banner-one__content .sub-title {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.banner-one__content .sub-title h5 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.banner-one__content .big-title {
    position: relative;
    display: block;
    padding-bottom: 13px;
}

.banner-one__content .big-title h2 {
    font-size: 68px;
    line-height: 1.1em;
}

.banner-one__content .text {
    position: relative;
    display: block;
}

.banner-one__content .text p {
    margin: 0;
}

.banner-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 35px;
}

.banner-one__content .btn-box .thm-btn {
    color: var(--thm-white);
    font-family: var(--thm-heading-font);
    letter-spacing: 1.28px;
    text-transform: uppercase;
    border-radius: 5px;
}

.banner-one__content .btn-box .thm-btn span i {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    top: -1px;
    margin-left: 12px;
}




/*-----------------------------------------------
# Main Slider Slider
------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-one {
    overflow: hidden;
}


.main-slider .swiper-slide {
    position: relative;
}

.main-slider .container {
    position: relative;
    padding-top: 222px;
    padding-bottom: 190px;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}

.main-slider-one .image-layer::before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    background-color: var(--thm-black);
    opacity: 0.80;
    z-index: -1;
}

.slider-one__overlay-img {
    position: absolute;
    bottom: 65px;
    right: 173px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(500px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(500px);
    transform: perspective(400px) rotateX(0deg) translateX(500px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 3;
}

.main-slider .swiper-slide-active .slider-one__overlay-img {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0px);
    transform: perspective(400px) rotateX(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.slider-one__overlay-img img {
    width: auto;
}


.slider-one__shape-right {
    position: absolute;
    top: 0;
    right: 68px;
    mix-blend-mode: soft-light;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(1000px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(1000px);
    transform: perspective(400px) rotateX(0deg) translateX(1000px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 2;
}

.main-slider .swiper-slide-active .slider-one__shape-right {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0px);
    transform: perspective(400px) rotateX(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.slider-one__shape-bottom {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-primary);
    clip-path: polygon(0 91%, 0% 100%, 100% 100%);
    z-index: 2;
}

.main-slider .main-slider-content {
    position: relative;
    display: block;
    width: 100%;
}

.main-slider .main-slider-content__inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider .main-slider-content .sub-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(-240px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(-240px);
    transform: perspective(400px) rotateX(0deg) translateX(-240px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0px);
    transform: perspective(400px) rotateX(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .sub-title h5 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.main-slider .main-slider-content .big-title {
    position: relative;
    display: block;
    margin-top: 10px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .big-title h2 {
    color: var(--thm-white);
    font-size: 68px;
    line-height: 1.2em;
    text-transform: capitalize;
}

.main-slider .main-slider-content .text {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 21px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .text p {
    color: var(--thm-white);
    text-transform: capitalize;
}



.main-slider .main-slider-content .btn-box {
    position: relative;
    display: flex;
    line-height: 0;
    padding-top: 41px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .btn-box a {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 5px;
    line-height: 40px;
}

.main-slider .main-slider-content .btn-box a::after {
    background-color: var(--thm-secondary);
}

.main-slider .main-slider-content .btn-box a::before {
    background-color: var(--thm-primary);
}

.main-slider .main-slider-content .btn-box a+a {
    margin-left: 20px;
}

.main-slider .main-slider-content .btn-box a+a::after {
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid var(--thm-white);
}





.main-slider__nav {
    position: absolute;
    top: 0;
    right: 100px;
    bottom: 0px;
    transform: translateY(0%) translateX(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background-color: var(--thm-primary);
    border-color: var(--thm-primary);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    transform: rotate(0deg);
}

.main-slider__nav .swiper-button-prev .angle-left {
    position: relative;
    transform: rotate(0deg);
}



#main-slider-pagination {
    position: absolute;
    left: 0;
    bottom: 50px;
    right: 0;
    display: block;
    max-width: 1320px;
    width: 100%;
    padding: 0 12px;
    margin: 0 auto;
    z-index: 10;
    line-height: 0;
    text-align: right;
    display: none;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    transform: scale(1.0);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet {
    margin: 0;
    opacity: 1;
    background-color: transparent;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 10px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--thm-base);
    background-color: transparent;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    transform: scale(1);
    background-color: var(--thm-base);
}




/*==================================
    Banner Two
====================================*/
.banner-two {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 166px 0 195px;
    overflow: hidden;
    z-index: 10;
}

.banner-two__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1270px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}

.banner-two__shape1 {
    position: absolute;
    top: -124px;
    left: 0;
    opacity: 0.6;
    z-index: 1;
}

.banner-two__shape2 {
    position: absolute;
    top: 140px;
    left: 255px;
    opacity: 0.5;
}

.banner-two__shape3 {
    position: absolute;
    left: 70px;
    bottom: 170px;
    opacity: 0.5;
    z-index: 1;
}

.banner-two__shape4 {
    position: absolute;
    left: 45%;
    bottom: 35px;
    opacity: 0.5;
    z-index: -3;
}

.banner-two__shape5 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}

.banner-two__shape6 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    opacity: 0.6;
}

.banner-two__shape7 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}

.banner-two__shape8 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    opacity: 0.6;
    z-index: -1;
}

.banner-two__shape9 {
    position: absolute;
    top: 230px;
    left: 100px;
    opacity: 0.6;
    z-index: 1;
}

.banner-two__content {
    position: relative;
    display: block;
    z-index: 5;
}

.banner-two__content .big-title {
    position: relative;
    display: block;
    padding-bottom: 23px;
}

.banner-two__content .big-title h2 {
    font-size: 68px;
    line-height: 1.1em;
}

.banner-two__content .text {
    position: relative;
    display: block;
}

.banner-two__content .text p {
    margin: 0;
}

.banner-two__content .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
    padding-top: 55px;
}

.banner-two__content .btn-box .thm-btn {
    line-height: 40px;
    border-radius: 0px;
}

.banner-two__phone-number {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.banner-two__phone-number .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 5px solid var(--thm-primary);
    background-color: var(--thm-white);
    line-height: 0;
}

.banner-two__phone-number .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 20px;
}

.banner-two__phone-number .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.banner-two__phone-number .text p {
    margin: 0;
    line-height: 28px;
}

.banner-two__phone-number .text h6 {
    font-size: 18px;
    line-height: 27px;
}

.banner-two__phone-number .text h6 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.banner-two__phone-number .text h6 a:hover {
    color: var(--thm-primary);
}



/*=============================
	Blog One CSS
===============================*/
.blog-one {
    position: relative;
    display: block;
    padding: 140px 0 140px;
}

.blog-one__left-box {
    position: relative;
    display: block;
}

.blog-one__left-box-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    max-width: 660px;
    margin-right: -30px;
}

.blog-one__left-box-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: linear-gradient(0deg, #ff9205 -1.22%, rgba(var(--thm-secondary-rgb), 0.70) 60.99%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.blog-one__left-box:hover .blog-one__left-box-img::before {
    opacity: 0.70;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.blog-one__left-box-img img {
    width: 100%;
    transform: scale(1.0);
}

.blog-one__left-box:hover .blog-one__left-box-img img {
    transform: scale(1.05) rotate(1deg);
}

.blog-one__left-box-content {
    position: relative;
    display: block;
    padding: 25px 0 0;
}

.blog-one__left-box-content .meta-box {
    position: relative;
    display: block;
}

.blog-one__left-box-content .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__left-box-content .meta-box .meta-info li {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__left-box-content .meta-box .meta-info li+li {
    margin-left: 30px;
}

.blog-one__left-box-content .meta-box .meta-info li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.blog-one__left-box-content .meta-box .meta-info li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    font-weight: 900;
}

.blog-one__left-box-content .meta-box .meta-info li p {
    margin: 0;
}

.blog-one__left-box-content .meta-box .meta-info li p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__left-box-content .meta-box .meta-info li p a:hover {
    color: var(--thm-secondary);
}

.blog-one__left-box-content .title-box {
    position: relative;
    display: block;
    padding-top: 9px;
}

.blog-one__left-box-content .title-box h3 {
    font-size: 32px;
    line-height: 1.2em;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.blog-one__left-box-content .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__left-box-content .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.blog-one__left-box-content .title-box p {
    margin: 0;
}

.blog-one__left-box-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 50px;
}

.blog-one__left-box-content .btn-box .thm-btn {
    color: var(--thm-black);
    line-height: 40px;
    font-family: var(--thm-heading-font);
    border-radius: 5px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__left-box-content .btn-box .thm-btn::after {
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid var(--thm-secondary);
}

.blog-one__left-box-content .btn-box .thm-btn:hover {
    color: var(--thm-white);
}

.blog-one__left-box-content .btn-box .thm-btn i {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 900;
    top: -1px;
}

.blog-one__sidebar-box {
    position: relative;
    display: block;
    padding-left: 83px;
}

.blog-one__sidebar-box ul {
    position: relative;
    display: block;
}

.blog-one__sidebar-box ul .blog-one__sidebar-box__inner {
    position: relative;
    display: block;
    padding-left: 160px;
    border-bottom: 1px solid var(--thm-secondary);
    padding-bottom: 31px;
    margin-bottom: 30px;
}

.blog-one__sidebar-box ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.blog-one__sidebar-box ul li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 5px;
}

.blog-one__sidebar-box ul li .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: linear-gradient(0deg, #ff9205 -1.22%, rgba(var(--thm-secondary-rgb), 0.70) 60.99%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.blog-one__sidebar-box ul li:hover .img-box::before {
    opacity: 0.70;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.blog-one__sidebar-box ul li .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.blog-one__sidebar-box ul li:hover .img-box img {
    transform: scale(1.05) rotate(1deg);
}

.blog-one__sidebar-box ul li .content-box {
    position: relative;
    display: block;
}

.blog-one__sidebar-box ul li .content-box .meta-box {
    position: relative;
    display: block;
    padding-bottom: 3px;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li+li {
    margin-left: 30px;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    font-weight: 900;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li p {
    margin: 0;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__sidebar-box ul li .content-box .meta-box .meta-info li p a:hover {
    color: var(--thm-secondary);
}

.blog-one__sidebar-box ul li .content-box .title-box {
    position: relative;
    display: block;
    padding-top: 9px;
}

.blog-one__sidebar-box ul li .content-box .title-box h3 {
    font-size: 32px;
    line-height: 1.2em;
    text-transform: capitalize;
}

.blog-one__sidebar-box ul li .content-box .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__sidebar-box ul li .content-box .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.blog-one__sidebar-box ul li .content-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 21px;
}

.blog-one__sidebar-box ul li .content-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-one__sidebar-box ul li .content-box .btn-box a span {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 30px;
    font-family: var(--thm-heading-font);
    font-weight: 700;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__sidebar-box ul li .content-box .btn-box a:hover span {
    color: var(--thm-secondary);
    letter-spacing: 1.15px;
}

.blog-one__sidebar-box ul li .content-box .btn-box a i {
    color: var(--thm-black);
    font-size: 15px;
    line-height: 15px;
    font-weight: 900;
    margin-top: -1px;
    margin-left: 8px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-one__sidebar-box ul li .content-box .btn-box a:hover i {
    color: var(--thm-secondary);
}




/*=============================
	Blog Two CSS
===============================*/
.blog-two {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 0px 0 100px;
    z-index: 1;
}

.blog-two__single {
    position: relative;
    display: block;
    border-bottom: 2px solid #E3E3E3;
    margin-bottom: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single:hover {
    transform: translateY(-5px);
}

.blog-two__single::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--thm-secondary);
    transition: all 600ms ease 100ms;
    z-index: 1;
}

.blog-two__single:hover::before {
    width: 100%;
}

.blog-two__single-img {
    position: relative;
    display: block;
}

.blog-two__single-img .inner {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.blog-two__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-primary);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.blog-two__single:hover .blog-two__single-img .inner::before {
    opacity: 0.60;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.blog-two__single-img .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-two__single:hover .blog-two__single-img .inner img {
    transform: scale(1.05) rotate(0deg);
}

.blog-two__single-img .date-box {
    position: absolute;
    left: 30px;
    bottom: -30px;
    border-radius: 5px;
    border: 1px solid var(--thm-primary);
    background-color: var(--thm-white);
    padding: 0px 45px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 3;
}

.blog-two__single:hover .blog-two__single-img .date-box {
    border-color: var(--thm-primary);
    background-color: var(--thm-primary);
}

.blog-two__single-img .date-box h5 {
    font-size: 18px;
    line-height: 58px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single:hover .blog-two__single-img .date-box h5 {
    color: var(--thm-white);
}

.blog-two__single-content {
    position: relative;
    display: block;
    padding: 52px 30px 32px;
}

.blog-two__single-content .meta-box {
    position: relative;
    display: block;
}

.blog-two__single-content .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-two__single-content .meta-box .meta-info li {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-two__single-content .meta-box .meta-info li+li {
    margin-left: 30px;
}

.blog-two__single-content .meta-box .meta-info li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.blog-two__single-content .meta-box .meta-info li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
    font-weight: 900;
}

.blog-two__single-content .meta-box .meta-info li p {
    margin: 0;
}

.blog-two__single-content .meta-box .meta-info li p a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-content .meta-box .meta-info li p a:hover {
    color: var(--thm-primary);
}

.blog-two__single-content .title {
    position: relative;
    display: block;
    padding-top: 15px;
}

.blog-two__single-content .title h3 {
    font-size: 24px;
    line-height: 30px;
}

.blog-two__single-content .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-two__single-content .title h3 a:hover {
    color: var(--thm-primary);
}




/*=============================
	Blog Three CSS
===============================*/
.blog-three {
    position: relative;
    display: block;
    padding: 140px 0 100px;
    z-index: 1;
}

.blog-three__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-three__single:hover {
    transform: translateY(-5px);
}

.blog-three__single-img {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.blog-three__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: var(--thm-secondary);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-three__single:hover .blog-three__single-img::before {
    opacity: 0.6;
}

.blog-three__single-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-three__single:hover .blog-three__single-img img {
    transform: scale(1);
}

.blog-three__single-content {
    position: relative;
    display: block;
    padding-top: 22px;
}

.blog-three__single-content .meta-box {
    position: relative;
    display: block;
}

.blog-three__single-content .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-three__single-content .meta-box .meta-info li {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-three__single-content .meta-box .meta-info li+li {
    margin-left: 30px;
}

.blog-three__single-content .meta-box .meta-info li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.blog-three__single-content .meta-box .meta-info li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    font-weight: 900;
}

.blog-three__single-content .meta-box .meta-info li p {
    margin: 0;
}

.blog-three__single-content .meta-box .meta-info li p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-three__single-content .meta-box .meta-info li p a:hover {
    color: var(--thm-secondary);
}

.blog-three__single-content .title-box {
    position: relative;
    display: block;
    border-top: 2px solid var(--thm-black);
    padding-top: 23px;
    margin-top: 21px;
}

.blog-three__single-content .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
}

.blog-three__single-content .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-three__single-content .title-box h3 a:hover {
    color: var(--thm-secondary);
}






/*=============================
	Start Blog Page1 CSS
===============================*/
.blog-page1 {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 140px 0 140px;
    z-index: 1;
}

.blog-page__single {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.blog-page1__img {
    border-radius: 0px;
    max-width: none;
    margin-right: 0;
}

.blog-page1__content {
    background: var(--thm-white);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 21px 40px 40px;
}

.blog-page1__content .meta-box .meta-info li p a {
    color: var(--thm-body-font-color);
}

.blog-page1__content .title-box {
    padding-top: 22px;
}



.blog-page1__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 30px;
}

.blog-page1__content .btn-box .thm-btn {
    color: var(--thm-white);
}

.blog-page1__content .btn-box .thm-btn::after {
    background-color: var(--thm-secondary);
    border: none;
}

.blog-page1__content .btn-box .thm-btn::before {
    background-color: var(--thm-primary);
}





/*=============================
	Blog Details CSS
===============================*/
.blog-details {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.blog-details__content {
    position: relative;
    display: block;
}

.blog-details__content-img1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    z-index: 1;
}

.blog-details__content-img1: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-secondary-rgb), 0.50);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-details__content-img1:hover:before {
    opacity: 0.5;
}

.blog-details__content-img1 .date-box {
    position: absolute;
    top: 30px;
    left: 0;
    background: var(--thm-white);
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 13px 20px 12px;
    z-index: 5;
}

.blog-details__content-img1 img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.03);
}

.blog-details__content-img1:hover img {
    transform: scale(1);
}

.blog-details__content-text1 {
    position: relative;
    display: block;
    margin-top: 21px;
}

.blog-details__content-text1 .meta-info {
    position: relative;
    display: block;
}

.blog-details__content-text1 .meta-info ul {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__content-text1 .meta-info ul li {
    position: relative;
    display: block;
    margin-right: 30px;
}

.blog-details__content-text1 .meta-info ul li:last-child {
    margin-right: 0;
}

.blog-details__content-text1 .meta-info ul li span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    font-family: var(--thm-heading-font);
}

.blog-details__content-text1 .meta-info ul li p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.blog-details__content-text1 .meta-info ul li p a {
    color: var(--thm-body-font-color);
}

.blog-details__content-text1 .meta-info ul li p a:hover {
    color: var(--thm-secondary);
}

.blog-details__content-text1 .meta-info ul li p i {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    padding-right: 3px;
    top: 1px;
}

.blog-details__content-text1 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 19px;
}

.blog-details__content-text1 .text1 {
    margin: 0;
    margin-bottom: 28px;
}

.blog-details__content-text1 .text2 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    font-family: var(--thm-heading-font);
    margin: 0;
    margin-bottom: 23px;
}

.blog-details__content-text1 .text3 {
    margin: 0;
    margin-bottom: 28px;
}

.blog-details__content-text1-list {
    position: relative;
    display: block;
}

.blog-details__content-text1-list-single {
    position: relative;
    display: block;
}

.blog-details__content-text1-list-single ul {
    position: relative;
    display: block;
}

.blog-details__content-text1-list-single ul li {
    position: relative;
    display: block;
    padding-left: 15px;
    margin-bottom: 9px;
}

.blog-details__content-text1-list-single ul li::before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--thm-secondary);
    content: "";
}

.blog-details__content-text1-list-single ul li p {
    margin: 0;
}

.blog-details__content-text1 .text4 {
    margin: 0;
    margin-top: 25px;
}

.blog-details__content-text2 {
    position: relative;
    display: block;
    margin-top: 60px;
}

.blog-details__content-text2 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.blog-details__content-text2 p {
    margin: 0;
}

.blog-details__content-text2 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 30px;
}

.blog-details__content-text2 .img-box img {
    width: 100%;
}

.blog-details__content-text3 {
    position: relative;
    display: block;
    margin-top: 60px;
}

.blog-details__content-text3 h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.blog-details__content-text3 p {
    margin: 0;
}

.blog-details__content-text3-img-box {
    position: relative;
    display: block;
    margin-top: 40px;
}

.blog-details__content-text3-img-box-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-details__content-text3-img-box-single .img-box {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.blog-details__content-text3-img-box-single .img-box img {
    width: 100%;
}

.blog-details__content-text4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e3e3e3;
    padding: 30px 40px 30px;
    border-radius: 5px;
    margin-top: 50px;
}

.blog-details__content-text4 .text-box {
    position: relative;
    display: block;
}

.blog-details__content-text4 .text-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.blog-details__content-text4 .tag-box {
    position: relative;
    display: block;
}

.blog-details__content-text4 .tag-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.blog-details__content-text4 .tag-box a+a {
    margin-left: 9px;
}

.blog-details__content-text4 .tag-box a::before {
    position: absolute;
    left: 0;
    bottom: 4px;
    right: 0;
    height: 1px;
    background: var(--thm-secondary);
    transform: scaleX(0.7) rotateX(0deg);
    transition: all 0.6s linear;
    opacity: 0;
    content: "";
}

.blog-details__content-text4 .tag-box a:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.6s linear;
    opacity: 1;
}

.blog-details__content-text4 .tag-box a:hover {
    color: var(--thm-secondary);
}

.blog-details__content-text4 .social-links {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__content-text4 .social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 40px;
    color: #4775ed;
    border: 1px solid #dae5fb;
    border-radius: 5px;
}

.blog-details__content-text4 .social-links a.clr2 {
    color: #c40026;
    border: 1px solid #f4ccd4;
}

.blog-details__content-text4 .social-links a.clr3 {
    color: #4567ae;
    border: 1px solid #dae2ef;
}

.blog-details__content-text4 .social-links a+a {
    margin-left: 5px;
}

.blog-details__content-text4 .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
}

.comment-one {
    position: relative;
    display: block;
    margin-top: 80px;
}

.comment-one .title-box {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.comment-one .title-box h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
}

.comment-one__single {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.comment-one__single.mb0 {
    margin-bottom: 0;
}

.comment-one__single-inner {
    position: relative;
    display: block;
    padding-left: 125px;
}

.comment-one__single-img {
    position: absolute;
    top: 8px;
    left: 0;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-one__single-img img {
    width: 100%;
}

.comment-one__single-content {
    position: relative;
    display: block;
}

.comment-one__single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.comment-one__single-top .text-box {
    position: relative;
    display: block;
}

.comment-one__single-top .text-box h4 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
}

.comment-one__single-top .date-box {
    position: relative;
    display: block;
    margin-left: 35px;
}

.comment-one__single-top .date-box p {
    margin: 0;
}

.comment-one__single-top .social-links {
    position: relative;
    display: block;
    margin-left: 30px;
}

.comment-one__single-top .social-links a {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    line-height: 12px;
}

.comment-one__single-top .social-links a+a {
    margin-left: 10px;
}

.comment-one__single-top .social-links a:hover {
    color: var(--thm-primary);
}

.comment-one__single-bottom {
    position: relative;
    display: block;
}

.comment-one__single-bottom p {
    margin: 0;
}

.comment-one__single-bottom .btn-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.comment-one__single-bottom .btn-box a {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
}

.comment-one__single-bottom .btn-box a:hover {
    color: var(--thm-secondary);
}

.blog-details__form-box {
    position: relative;
    display: block;
    margin-top: 119px;
}

.blog-details__form-box .title-box {
    position: relative;
    display: block;
    margin-bottom: 41px;
}

.blog-details__form-box .title-box h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 19px;
}

.blog-details__form-box .title-box p {
    margin: 0;
}


.blog-details__form {
    position: relative;
    display: block;
}

.blog-details__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 11px;
}

.blog-details__form input[type="text"],
.blog-details__form input[type="email"] {
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 70px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--thm-black);
    padding: 0px 0px;
    border-radius: 0px;
    font-family: var(--thm-body-font);
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-details__form textarea {
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 119px;
    border: none;
    border-bottom: 1px solid var(--thm-black);
    background: transparent;
    padding: 20px 0px 0px;
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-radius: 0px;
}

.blog-details__form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="text"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="text"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="email"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="email"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form textarea::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form textarea:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form textarea::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.blog-details__form textarea:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}


/***
=============================================
Checked Box
=============================================
***/
.checked-box {
    position: relative;
    display: block;
    min-height: 30px;
}

.checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-body-font);
}

.checked-box input[type="checkbox"] {
    display: none;
}

.checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background-color: #f4f4f4;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box label span:before {
    font-family: 'icomoon' !important;
    content: "\e945";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    margin: 0px;
    color: var(--thm-primary);
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    font-weight: 700;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box input[type="checkbox"]:checked+label span {
    border-color: #e3e3e3;
}

.checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.blog-details__form-btn {
    position: relative;
    display: block;
    margin-top: 43px;
}

.blog-details__form-btn button.thm-btn::after {
    background: var(--thm-secondary);
}

.blog-details__form-btn button.thm-btn::before {
    background: var(--thm-primary);
}



/***
=============================================
Sidebar
=============================================
***/

.sidebar {
    position: relative;
    display: block;
}

.sidebar__single {
    position: relative;
    display: block;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__single .title-box {
    position: relative;
    display: block;
    margin-top: -8px;
    margin-bottom: 32px;
    padding-left: 15px;
}

.sidebar__single .title-box::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--thm-black);
    content: "";
}

.sidebar__single .title-box h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}


.sidebar__search {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 46px 40px 40px;
    z-index: 1;
}

.sidebar__search-form {
    position: relative;
    display: block;
}

.sidebar__search-form input[type="search"] {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    outline: none;
    background-color: var(--thm-white);
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    height: 60px;
    width: 100%;
    padding-right: 60px;
    border-radius: 5px;
}

.sidebar__search-form::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.sidebar__search-form::-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.sidebar__search-form::-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.sidebar__search-form::placeholder {
    color: var(--thm-body-font-color);
}

.sidebar__search-form::-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.sidebar__search-form::-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.sidebar__search-form button[type="submit"] {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 55px;
    background-color: transparent;
    color: var(--thm-secondary);
    font-size: 15px;
    font-weight: 700;
    outline: none;
    border: none;
    border-radius: 0px;
    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(--thm-primary);
}

.sidebar__about {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 46px 40px 31px;
    z-index: 1;
}

.sidebar__about-box {
    position: relative;
    display: block;
}

.sidebar__about-box .img-box {
    position: relative;
    display: block;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 17px;
}

.sidebar__about-box .img-box img {
    width: 100%;
}

.sidebar__about-box .content-box {
    position: relative;
    display: block;
}

.sidebar__about-box .content-box h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 13px;
}

.sidebar__about-box .content-box p {
    margin: 0;
}

.sidebar__about-box .social-links {
    position: relative;
    display: block;
    margin-top: 17px;
}

.sidebar__about-box .social-links a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
}

.sidebar__about-box .social-links a+a {
    margin-left: 7px;
}

.sidebar__about-box .social-links a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
}

.sidebar__about-box .social-links a:hover {
    color: var(--thm-secondary);
}


.sidebar__category {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 46px 40px 32px;
    z-index: 1;
}

.sidebar__category-list {
    position: relative;
    display: block;
    margin-top: -7px;
}

.sidebar__category-list li {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sidebar__category-list li:last-child {
    margin-bottom: 0;
}

.sidebar__category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.sidebar__category-list li a:hover {
    padding-left: 20px;
}

.sidebar__category-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-black);
    font-size: 15px;
    content: "\e96a";
    font-family: 'icomoon' !important;
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.sidebar__category-list li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}

.sidebar__category-list li a span {
    position: relative;
    display: inline-block;
}


.sidebar__latest-blog {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 46px 40px 35px;
    z-index: 1;
}

.sidebar__latest-blog-list {
    position: relative;
    display: block;
}

.sidebar__latest-blog-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.sidebar__latest-blog-list li:last-child {
    margin-bottom: 0;
}

.sidebar__latest-blog-list li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__latest-blog-list li .img-box: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-secondary-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
}

.sidebar__latest-blog-list li:hover .img-box:before {
    opacity: 1;
}

.sidebar__latest-blog-list li .img-box img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.sidebar__latest-blog-list li:hover .img-box img {
    transform: scale(1);
}

.sidebar__latest-blog-list li .content-box {
    position: relative;
    display: block;
    margin-left: 20px;
    flex: 1;
}

.sidebar__latest-blog-list li .content-box p {
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 10px;
}

.sidebar__latest-blog-list li .content-box p span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 17px;
    line-height: 17px;
    padding-right: 4px;
    top: 1px;
}

.sidebar__latest-blog-list li .content-box h4 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
}

.sidebar__latest-blog-list li .content-box h4 a {
    color: var(--thm-black);
}

.sidebar__latest-blog-list li .content-box h4 a:hover {
    color: var(--thm-secondary);
}


.sidebar__archive {
    position: relative;
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 46px 40px 37px;
    z-index: 1;
}

.sidebar__archive-list {
    position: relative;
    display: block;
    margin-top: -7px;
}

.sidebar__archive-list li {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sidebar__archive-list li:last-child {
    margin-bottom: 0;
}

.sidebar__archive-list li a {
    position: relative;
    display: block;
    color: var(--thm-body-font-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.sidebar__archive-list li a:hover {
    padding-left: 20px;
}

.sidebar__archive-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-black);
    font-size: 15px;
    content: "\e96a";
    font-family: 'icomoon' !important;
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.sidebar__archive-list li a:hover::before {
    transform: scale(1.0);
    opacity: 1;
}



/***
=============================================
  Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 198px 0px 194px;
    background: var(--thm-black);
    overflow: hidden;
    z-index: 1;
}

.page-header__img {
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    opacity: 0.2;
    text-align: center;
    z-index: 1;
}

.page-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    z-index: 5;
}

.page-header__inner h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb {
    position: relative;
    display: block;
}

.page-header__inner .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-left: 10px;
}

.page-header__inner .thm-breadcrumb li span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 15px;
    line-height: 15px;
    transform: rotate(180deg);
    font-weight: 700;
    top: 1px;
}

.page-header__inner .thm-breadcrumb li:first-child {
    padding-left: 0;
}

.page-header__inner .thm-breadcrumb li a {
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-heading-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
    color: var(--thm-primary);
}




/*======================================
    Contact One Css
========================================*/
.contact-one {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 140px 0px 140px;
    z-index: 1;
}

.contact-one__list-item {
    position: relative;
    display: block;
}

.contact-one__list-item ul {
    position: relative;
    display: block;
}

.contact-one__list-item ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-one__list-item ul li+li {
    margin-top: 60px;
}

.contact-one__list-item ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background-color: rgba(var(--thm-secondary-rgb), 0.05);
    line-height: 0;
}

.contact-one__list-item ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 40px;
    font-weight: 900;
}

.contact-one__list-item ul li .text {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 30px;
}

.contact-one__list-item ul li .text h4 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 13px;
}

.contact-one__list-item ul li .text p {
    margin: 0;
}

.contact-one__list-item ul li .text p a {
    color: var(--thm-body-font-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-one__list-item ul li .text p a:hover {
    color: var(--thm-primary);
}




.contact-one__form {
    position: relative;
    display: block;
    border-radius: 5px;
    background: var(--thm-white);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 47px 40px 60px;
    z-index: 1;
}

.contact-one__form .contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 37px;
}

.contact-one__form .contact-one__input-box.text-message-box {
    line-height: 10px;
    margin-top: 3px;
}

.contact-one__form .contact-one__input-box input[type="text"],
.contact-one__form .contact-one__input-box input[type="email"],
.contact-one__form .contact-one__input-box input[type="number"],
.contact-one__form .contact-one__input-box textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #E3E3E3;
    background-color: transparent;
    color: var(--thm-pragraph-color);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-body-font);
    font-style: normal;
    padding-left: 0px;
    padding-right: 20px;
    padding-bottom: 18px;
    transition: all 500ms ease;
    outline: none;
}

.contact-one__form .contact-one__input-box textarea {
    width: 100%;
    height: 115px;
    padding-top: 0;
    outline: none;
    resize: none;
}

.contact-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form input[type="text"]:-moz-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form input[type="text"]::-moz-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-pragraph-color);
}



.contact-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form input[type="email"]:-moz-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form input[type="email"]::-moz-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-pragraph-color);
}



.contact-one__form form textarea::-webkit-input-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form textarea:-moz-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form textarea::-moz-placeholder {
    color: var(--thm-pragraph-color);
}

.contact-one__form form textarea:-ms-input-placeholder {
    color: var(--thm-pragraph-color);
}


.contact-one__btn-box {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 3px;
    line-height: 0;
}

.contact-one__btn-box .thm-btn::after {
    background: var(--thm-secondary);
}

.contact-one__btn-box .thm-btn::before {
    background: var(--thm-primary);
}




.contact-one__socel-link {
    position: relative;
    display: block;
}

.contact-one__socel-link-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 159px 0px 159px;
}

.contact-one__socel-link-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 129px;
    margin: 0 auto;
    background-color: #E3E3E3;
    z-index: 1;
}

.contact-one__socel-link-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 129px;
    margin: 0 auto;
    background-color: #E3E3E3;
    z-index: 1;
}

.contact-one__socel-link-inner ul {
    position: relative;
    display: block;
}

.contact-one__socel-link-inner ul li {
    position: relative;
    display: block;
}

.contact-one__socel-link-inner ul li+li {
    margin-top: 15px;
}

.contact-one__socel-link-inner ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #48BDE9;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.contact-one__socel-link-inner ul li a.color1 {
    background-color: #4F5FBF;
}

.contact-one__socel-link-inner ul li a.color2 {
    background-color: #8F00FF;
}

.contact-one__socel-link-inner ul li a:hover {
    color: var(--thm-white);
}

.contact-one__socel-link-inner ul li a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    background-color: var(--thm-primary);
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.contact-one__socel-link-inner ul li:hover a::before {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
}





/*======================================
Google Map One Css
========================================*/
.google-map-one {
    position: relative;
    display: block;
    z-index: 1;
}

.google-map-one__map {
    position: relative;
    display: block;
    border: none;
    height: 570px;
    width: 100%;
}




/*=============================
	Fact Counter One Css
===============================*/
.fact-counter-one {
    position: relative;
    display: block;
    padding: 0px 0px 0px;
    z-index: 1;
}

.fact-counter_box {
    position: relative;
    display: block;
}

.fact-counter_box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fact-counter_box ul .single-fact-counter {
    position: relative;
    display: flex;
    align-items: center;
}

.fact-counter_box ul li+li {}

.fact-counter_box ul .single-fact-counter .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65.5px;
    border-radius: 5px;
    background-color: var(--thm-secondary);
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.fact-counter_box ul .single-fact-counter:hover .icon {
    background-color: var(--thm-primary);
}

.fact-counter_box ul .single-fact-counter .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.fact-counter_box ul .single-fact-counter:hover .icon span {
    transform: scale(1.05) rotateY(180deg);
}


.fact-counter_box ul .single-fact-counter .outer-box {
    position: relative;
    display: block;
    padding-left: 25px;
}

.fact-counter_box ul .single-fact-counter .outer-box .count-outer {
    position: relative;
    display: flex;
    align-items: center;
}

.fact-counter_box ul .single-fact-counter .outer-box .count-outer h2 {
    font-size: 48px;
    line-height: 1.0em;
    font-family: var(--thm-heading-font);
}

.fact-counter_box ul .single-fact-counter .outer-box .count-outer i {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 30px;
    font-family: var(--thm-heading-font);
    font-weight: 900;
    margin-top: -7px;
}

.fact-counter_box ul .single-fact-counter .outer-box .count-outer i.k {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    font-family: var(--thm-heading-font);
}

.fact-counter_box ul .single-fact-counter .outer-box .title {
    position: relative;
    display: block;
}

.fact-counter_box ul .single-fact-counter .outer-box .title p {
    line-height: 15px;
}















/*=============================
	Fact Counter Two Css
===============================*/
.fact-counter-two {
    position: relative;
    display: block;
    background-color: #f2f6f9;
    padding: 0px 0px 120px;
    z-index: 1;
}

.single-fact-counter-two {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-black);
    padding-bottom: 20px;
}

.single-fact-counter-two .outer-box {
    position: relative;
    display: block;
}

.single-fact-counter-two .outer-box .count-outer {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 12px;
}

.single-fact-counter-two .outer-box .count-outer h2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-black);
    font-size: 68px;
    line-height: 1.1em;
    font-family: var(--thm-heading-font);
}

.single-fact-counter-two .outer-box .count-outer i {
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-black);
    font-size: 60px;
    line-height: 60px;
    font-family: var(--thm-heading-font);
}

.single-fact-counter-two .outer-box .count-outer i.k {
    font-style: normal;
    font-weight: 700;
}

.single-fact-counter-two .outer-box .text {
    position: relative;
    display: block;
}

.single-fact-counter-two .outer-box .text p {
    margin: 0;
}









/*=============================
	Fact Counter Three Css
===============================*/
.fact-counter-three {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-secondary);
    padding: 80px 0px 82px;
    z-index: 1;
}

.fact-counter-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.05;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.fact-counter-three ul li {
    position: relative;
    display: block;
}

.fact-counter-three ul li+li {
    border-left: 1px solid var(--thm-white);
}

.single-fact-counter-three {
    position: relative;
    display: block;
}

.single-fact-counter-three .outer-box {
    position: relative;
    display: block;
}

.single-fact-counter-three .outer-box .icon {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 21px;
}

.single-fact-counter-three .outer-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-fact-counter-three:hover .outer-box .icon span {
    color: var(--thm-primary);
    transform: scale(1.05) rotateY(180deg);
}

.single-fact-counter-three .outer-box .text {
    position: relative;
    display: block;
}

.single-fact-counter-three .outer-box .text p {
    color: var(--thm-white);
    margin: 0;
}

.single-fact-counter-three .outer-box .count-outer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 14px;
}

.single-fact-counter-three .outer-box .count-outer h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 1.1em;
}

.single-fact-counter-three .outer-box .count-outer i {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 1.1em;
    font-family: var(--thm-heading-font);
    margin-top: -3px;
    margin-left: 4px;
}

.single-fact-counter-three .outer-box .count-outer i.k {
    font-style: normal;
    font-weight: 700;
}



/*** 
=============================================
    Partner Style1 Css
=============================================
***/
.partner-style1 {
    position: relative;
    display: block;
    padding-bottom: 80px;
    z-index: 10;
}

.partner-style1 .container {
    max-width: 1770px;
}

.brand-content {
    position: relative;
}

.single-partner-logo-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-partner-logo-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 180px;
    height: 70px;
    background: transparent;
    margin: 0 auto;
}

.single-partner-logo-box a img {
    position: relative;
    display: inline-block !important;
    opacity: 0.5;
    width: auto !important;
    transition: all 0.2s ease-in-out 0.1s;
    border-radius: 8px;
    filter: grayscale(70%);
}

.single-partner-logo-box:hover a img {
    opacity: 1.0;
    filter: grayscale(0%);
    transition: all 0.8s ease-in-out 0.1s;
}




/*=============================
	Testimonials One Css
===============================*/
.testimonials-one {
    padding: 140px 0px 110px;
    z-index: 10;
}

.testimonials-one__single {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 2px solid #E3E3E3;
    padding: 40px 40px 40px;
    margin-bottom: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-one__single-img {
    position: relative;
    display: block;
    max-width: 220px;
    width: 100%;
}

.testimonials-one__single-img__inner {
    position: relative;
    display: block;
    max-width: 95px;
    width: 100%;
}

.testimonials-one__single-img__inner .inner {
    position: relative;
    display: block;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-one__single-img__inner .inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.9;
    background: linear-gradient(0deg, #000000 -1.22%, rgba(255, 255, 255, 0.00) 80.99%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.testimonials-one__single:hover .testimonials-one__single-img__inner .inner:before {
    transform: scaleY(1.0);
}

.testimonials-one__single-img__inner .inner img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-one:hover .testimonials-one__single-img__inner .inner img {
    transform: scale(1.0);
}

.testimonials-one__single-img__inner .overlay-box {
    position: absolute;
    right: 2px;
    bottom: -2px;
    z-index: 3;
}

.testimonials-one__single-img__inner .overlay-box span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--thm-white);
    color: var(--thm-secondary);
    font-size: 20px;
    line-height: 20px;
}

.testimonials-one__single-img .title-box {
    position: relative;
    display: block;
    padding-top: 23px;
}

.testimonials-one__single-img .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 3px;
}

.testimonials-one__single-img .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-one__single-img .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.testimonials-one__single-img .title-box p {
    margin: 0;
}

.testimonials-one__single-content {
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%;
    border-left: 1px solid #E3E3E3;
    padding-left: 40px;
}

.testimonials-one__single-content .ster-icon {
    position: relative;
    display: block;
    padding-bottom: 21px;
}

.testimonials-one__single-content .ster-icon ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.testimonials-one__single-content .ster-icon ul li {
    position: relative;
    display: block;
}

.testimonials-one__single-content .ster-icon ul li+li {
    margin-left: 4px;
}

.testimonials-one__single-content .ster-icon ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.testimonials-one__single-content .ster-icon ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
    font-weight: 900;
}

.testimonials-one__single-content .ster-icon p {
    margin: 0;
}

.testimonials-one__single-content .text {
    position: relative;
    display: block;
}

.testimonials-one__single-content .text p {
    margin: 0;
}




/*=============================
	Testimonials Two Css
===============================*/
.testimonials-two {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 140px 0px 140px;
    z-index: 1;
}

.testimonials-two__pattern {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: -75px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.testimonials-two__single {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-two__single-img {
    position: relative;
    display: block;
}

.testimonials-two__single-img .inner {
    position: relative;
    display: block;
    width: 245px;
    height: 235px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
}

.testimonials-two__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.9;
    background: linear-gradient(0deg, #000000 -1.22%, rgba(255, 255, 255, 0.00) 80.99%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.testimonials-two__single:hover .testimonials-two__single-img .inner::before {
    transform: scaleY(1.0);
}

.testimonials-two__single-img .inner img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-two__single:hover .testimonials-two__single-img .inner img {
    transform: scale(1.0);
}

.testimonials-two__single-img .overlay-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: -25px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--thm-white);
    background-color: var(--thm-black-bg);
    margin: 0 auto;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 3;
}

.testimonials-two__single:hover .testimonials-two__single-img .overlay-icon {
    border-color: var(--thm-primary);
    background-color: var(--thm-white);
}

.testimonials-two__single-img .overlay-icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-two__single:hover .testimonials-two__single-img .overlay-icon span {
    color: var(--thm-primary);
}

.testimonials-two__single-content {
    position: relative;
    display: block;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--thm-white);
    padding: 22px 25px 10px;
    padding-right: 0;
}

.testimonials-two__single-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 5px;
    border: 1px solid #E3E3E3;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 1;
}

.testimonials-two__single-content .text {
    position: relative;
    display: block;
    z-index: 2;
}

.testimonials-two__single-content .text p {
    margin: 0;
}

.testimonials-two__single-content .customer-info {
    position: relative;
    display: block;
    border-top: 1px solid #E3E3E3;
    padding-top: 15px;
    margin-top: 15px;
}

.testimonials-two__single-content .title {
    position: relative;
    display: block;
    z-index: 2;
}

.testimonials-two__single-content .title h3 {
    font-size: 24px;
    line-height: 30px;
}

.testimonials-two__single-content .title p {
    margin: 0;
}

.testimonials-two__single-content .ster-icon {
    position: relative;
    display: block;
    padding-top: 7px;
    z-index: 2;
}

.testimonials-two__single-content .ster-icon ul {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-two__single-content .ster-icon ul li {
    position: relative;
    display: block;
}

.testimonials-two__single-content .ster-icon ul li+li {
    margin-left: 3px;
}

.testimonials-two__single-content .ster-icon ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.testimonials-two__single-content .ster-icon ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 15px;
}




/*=============================
	Testimonials Three Css
===============================*/
.testimonials-three {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 140px 0px 140px;
    z-index: 1;
}

.testimonials-three__content {
    position: relative;
    display: block;
}

.testimonials-three__content .sec-title {
    padding-bottom: 21px;
}

.testimonials-three__content .text {
    position: relative;
    display: block;
}

.testimonials-three__content .text p {
    margin: 0;
}



.testimonials-three__inner {
    position: relative;
    display: block;
    padding-left: 110px;
}

.testimonials-three__single {
    position: relative;
    display: block;
    overflow: hidden;
}

.testimonials-three__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 20px;
    right: 30px;
    border-radius: 5px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: 1;
}

.testimonials-three__single-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0px;
    background-color: rgb(202, 31, 39, 0.50);
    z-index: -1;
}

.testimonials-three__single-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background-color: var(--thm-body-background);
    padding: 40px 40px 40px;
    margin-top: 40px;
    margin-left: 30px;
    z-index: 3;
}

.testimonials-three__single-inner .overlay-icon {
    position: absolute;
    top: 60px;
    right: 40px;
    line-height: 0;
}

.testimonials-three__single-inner .overlay-icon span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--thm-secondary-rgb), 0.5);
    font-size: 40px;
    font-weight: 900;
}

.testimonials-three__single-content {
    position: relative;
    display: block;
}

.testimonials-three__single-content-inner {
    position: relative;
    display: block;
}

.testimonials-three__single-content-inner .customer-info {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-three__single-content-inner .customer-info .img-box {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-three__single-content-inner .customer-info .img-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    opacity: 0.8;
    height: 100%;
    background-color: var(--thm-secondary);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top center;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: 1;
}

.testimonials-three__single-inner:hover .testimonials-three__single-content-inner .customer-info .img-box::before {
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: bottom center;
}

.testimonials-three__single-content-inner .customer-info .img-box img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.testimonials-three__single-inner:hover .testimonials-three__single-content-inner .customer-info .img-box img {
    transform: scale(1.0);
}

.testimonials-three__single-content-inner .customer-info-inner {
    position: relative;
    display: block;
    padding-left: 20px;
}

.testimonials-three__single-content-inner .customer-info-inner .title-box {
    position: relative;
    display: block;
}

.testimonials-three__single-content-inner .customer-info-inner .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

.testimonials-three__single-content-inner .customer-info-inner .title-box p {
    margin: 0;
}

.testimonials-three__single-content-inner .customer-info-inner .ster-icon {
    position: relative;
    display: block;
    padding-top: 9px;
    z-index: 2;
}

.testimonials-three__single-content-inner .customer-info-inner .ster-icon ul {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-three__single-content-inner .customer-info-inner .ster-icon ul li {
    position: relative;
    display: block;
}

.testimonials-three__single-content-inner .customer-info-inner .ster-icon ul li+li {
    margin-left: 3px;
}

.testimonials-three__single-content-inner .customer-info-inner .ster-icon ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.testimonials-three__single-content-inner .customer-info-inner .ster-icon ul li .icon span {
    position: relative;
    display: inline-block;
    color: #f6ba28;
    font-size: 15px;
}

.testimonials-three__single-content .text {
    position: relative;
    display: block;
    padding-top: 31px;
}

.testimonials-three__single-content .text p {
    margin: 0;
}


.swiper-nav-style2 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 52px;
    z-index: 100;
}

.swiper-nav-style2 .swiper-button-next,
.swiper-nav-style2 .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--thm-secondary);
    background: #e3e7f3;
    border: 0px solid #ffffff;
    border-radius: 50%;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.swiper-nav-style2 .swiper-button-next:hover,
.swiper-nav-style2 .swiper-button-prev:hover {
    color: #ffffff;
    background-color: var(--thm-secondary);
}

.swiper-nav-style2 .swiper-button-next::after,
.swiper-nav-style2 .swiper-button-prev::after {
    display: none;
}

.swiper-nav-style2 .swiper-button-prev {
    transform: rotate(0deg);
    margin-right: 20px;
}

.swiper-nav-style2 .swiper-button-next i,
.swiper-nav-style2 .swiper-button-prev i {
    position: relative;
    display: inline-block;
    font-weight: 700;
}


.swiper-nav-style2 .swiper-button-prev i {
    position: relative;
    transform: rotate(-180deg);
}




/*=============================
	Testimonials Page One Css
===============================*/
.testimonials-page-one {
    padding: 140px 0px 110px;
    z-index: 10;
}




/*======================================
 Team One Css
========================================*/
.team-one {
    position: relative;
    display: block;
    padding: 140px 0px 129px;
    z-index: 1;
}

.team-one .container {
    max-width: 1760px;
}

.team-one__single {
    position: relative;
    display: block;
    border-bottom: 2px solid var(--thm-black);
    margin-bottom: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single:hover {
    transform: translateY(-5px);
}

.team-one__single::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--thm-secondary);
    transition: all 600ms ease 100ms;
    z-index: 1;
}

.team-one__single:hover::before {
    width: 100%;
}

.team-one__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background-color: rgba(var(--thm-primary-rgb), 0.10);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-one__single:hover .team-one__single-img {
    background-color: rgba(var(--thm-primary-rgb), 0.03);
}

.team-one__single-img img {
    width: 100%;
}

.team-one__single-img .social-share-box {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.team-one__single-img .social-share-box span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-secondary);
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-white);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.team-one__single-img .social-share-box:hover span {
    color: var(--thm-white);
    background-color: var(--thm-secondary);
}

.team-one__single-img .social-share-box ul {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0px;
    left: 0;
    opacity: 0;
    padding-left: 60px;
    white-space: nowrap;
    transform: translateX(-70px);
    visibility: hidden;
    transition: all 0.3s;
}

.team-one__single-img .social-share-box:hover ul {
    opacity: 1;
    transform: translateX(0px);
    visibility: visible;
}

.team-one__single-img .social-share-box ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.team-one__single-img .social-share-box ul li+li {
    margin-left: 5px;
}

.team-one__single-img .social-share-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 18px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.team-one__single-img .social-share-box ul li a:hover {
    color: var(--thm-white);
}

.team-one__single-img .social-share-box ul li a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    border-radius: 50%;
    background-color: var(--thm-secondary);
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.team-one__single-img .social-share-box ul li:hover a::before {
    opacity: 1;
    transform: scale(1);
}

.team-one__single-content {
    position: relative;
    display: block;
    padding: 28px 0px 20px;
}

.team-one__single-content .title-box {
    position: relative;
    display: block;
}

.team-one__single-content .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
}

.team-one__single-content .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s
}

.team-one__single-content .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.team-one__single-content .title-box p {
    margin: 0;
}

.team-one__dot-style1 {
    margin-top: 47px;
}












/*======================================
 Team Two Css
========================================*/
.team-two {
    position: relative;
    display: block;
    padding: 140px 0px 110px;
    z-index: 1;
}

.team-two__single {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    padding: 40px 40px 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single:hover {
    transform: translateY(-5px);
}

.team-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-color: rgba(var(--thm-primary-rgb), 0.10);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single:hover .team-two__single-img {
    background-color: rgba(var(--thm-primary-rgb), 0.70);
}

.team-two__single-content {
    position: relative;
    display: block;
    padding-left: 30px;
    flex: 1;
}

.team-two__single-content .title {
    position: relative;
    display: block;
}

.team-two__single-content .title h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

.team-two__single-content .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single-content .title h3 a:hover {
    color: var(--thm-primary);
}

.team-two__single-content .title p {
    margin: 0;
}

.team-two__single-content .social-link {
    position: relative;
    display: block;
    padding-top: 20px;
    width: 145px;
}

.team-two__single-content .social-link ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    padding: 15px 0px 15px;
}

.team-two__single-content .social-link ul li {
    position: relative;
    display: block;
    line-height: 0;
    border-right: 1px solid #e3e3e3;
    padding-right: 17px;
    margin-right: 17px;
}

.team-two__single-content .social-link ul li:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.team-two__single-content .social-link ul li a {
    position: relative;
    display: inline-block;
}

.team-two__single-content .social-link ul li a i {
    color: var(--thm-black);
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.team-two__single-content .social-link ul li a:hover i {
    color: var(--thm-primary);
}


/*=============================
	1. Variable CSS
===============================*/
:root {
    --thm-body-font: 'Rubik', sans-serif;
    --thm-heading-font: 'Rajdhani', sans-serif;
    --thm-primary: #F68B21;
    --thm-primary-rgb: 246, 139, 33;
    --thm-secondary: #1037B6;
    --thm-secondary-rgb: 16, 55, 182;

    --thm-body-font-color: #616670;
    --thm-body-font-size: 16px;
    --thm-body-font-line-height: 30px;
    --thm-body-font-weight: 400;

    --thm-heading-font-color: #121212;
    --thm-heading-font-weight: 700;

    --thm-body-background: #F4F4F4;
    --thm-black-bg: #212121;

    --thm-white: #ffffff;
    --thm-black: #121212;

    --thm-blue: #0d6efd;
    --thm-indigo: #6610f2;
    --thm-purple: #6f42c1;
    --thm-pink: #d63384;
    --thm-red: #dc3545;
    --thm-orange: #fd7e14;
    --thm-yellow: #ffc107;
    --thm-green: #198754;
    --thm-teal: #20c997;
    --thm-cyan: #0dcaf0;
}


.body-gray-bg {
    background-color: var(--thm-body-background);
}


body {
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-font-line-height);
    font-weight: var(--thm-body-font-weight);
    font-family: var(--thm-body-font);
    font-style: normal;
}

p {
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    line-height: var(--thm-body-font-line-height);
    font-weight: var(--thm-body-font-weight);
    font-family: var(--thm-body-font);
    margin-bottom: 0;
}

.auto-container {
    position: static;
    max-width: 1320px;
    width: 100%;
    padding: 0px 15px;
    margin: 0 auto;
}


.container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

section {
    position: relative;
    display: block;
    z-index: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}


button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

a,
button {
    color: var(--thm-primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
    outline: medium none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover {
    color: var(--thm-primary);
    text-decoration: none;
}


ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}


img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-heading-font);
    color: var(--thm-heading-font-color);
    margin-top: 0px;
    margin-bottom: 0;
    font-style: normal;
    line-height: 1.2em;
    font-weight: var(--thm-heading-font-weight);
    text-transform: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}





/*== Swiper Nav Style1 Css ======*/
.swiper-nav-style1 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    top: 162px;
    left: 0;
    right: 0;
    max-width: 1320px;
    width: 100%;
    padding: 0px 15px 0px;
    margin: 0 auto;
    height: 40px;
}

.swiper-nav-style1 .swiper-button-next,
.swiper-nav-style1 .swiper-button-prev {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    border-radius: 20px;
    background-color: transparent;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 400;
    border: 1px solid var(--thm-white);
    outline: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.swiper-nav-style1 .swiper-button-next {
    margin-left: 10px;
}

.swiper-nav-style1 .swiper-button-next i,
.swiper-nav-style1 .swiper-button-prev i {
    font-weight: 400;
}

.swiper-nav-style1 .swiper-button-next:hover,
.swiper-nav-style1 .swiper-button-prev:hover {
    background: var(--thm-primary);
    border-color: var(--thm-primary);
    color: #ffffff;
}

.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;
}

.swiper-nav-style1 .swiper-button-next::after,
.swiper-nav-style1 .swiper-button-prev::after {
    display: none;
}


/*== Swiper Nav Style1 Css ======*/
#swiper-dot-style1 {
    position: relative;
    z-index: 55;
    line-height: 0;
    background-color: transparent;
    bottom: 0;
    padding-bottom: 17px;
}

#swiper-dot-style1 .swiper-pagination-bullet {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0px 10px;
    background: var(--thm-secondary);
    border-radius: 50%;
    opacity: 0.50;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

#swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1.0;
}

#swiper-dot-style1 .swiper-pagination-bullet::before {
    position: absolute;
    top: -7px;
    left: -7px;
    bottom: -7px;
    right: -7px;
    border: 2px solid var(--thm-secondary);
    border-radius: 50%;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

#swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#swiper-dot-style1 .swiper-pagination-bullet:hover {
    transform: scale(1.0);
}


/*== Swiper Scroll pagination progressbar Css ======*/
.scroll-pagination {
    position: relative;
    height: 6px;
    width: 300px;
    margin: 85px auto 0;
}

.scroll-pagination .swiper-pagination {
    position: absolute;
    top: 0;
    left: 0;
    background: #e3e3e3;
    height: 6px;
    width: 100%;
    border-radius: 3px;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.scroll-pagination .swiper-pagination-progressbar-fill {
    background: #ff9600 !important;
    border-radius: 10px;
    cursor: pointer;
}




/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.styled-pagination li {
    position: relative;
    display: block;
    float: left;
    margin-right: 20px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    border: 1px solid #E3E3E3;
    background: transparent;
    color: var(--thm-black);
    font-size: 24px;
    line-height: 60px;
    font-weight: 700;
    font-family: var(--thm-heading-font);
    transition: all 500ms ease;
    z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: var(--thm-black);
    background: var(--thm-primary);
    border-color: var(--thm-primary);
}

.styled-pagination li a:hover,
.styled-pagination li.active a {
    color: var(--thm-white);
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
    color: var(--thm-white);
}





/*=============================
	Sec Title CSS
===============================*/
.sec-title {
    position: relative;
    display: block;
    margin-top: -7px;
    padding-bottom: 55px;
}

.sec-title .sub-title {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.sec-title .sub-title h4 {
    color: var(--thm-secondary);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.sec-title h2 {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}



/*=============================
	Thm Btn
===============================*/
.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    background-color: transparent;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    font-family: var(--thm-heading-font);
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 2;
}

.thm-btn:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    transform: scaleY(1);
    background-color: var(--thm-primary);
    transition-duration: 500ms;
    z-index: -1;
}

.thm-btn:hover:after {
    transform: scaleY(0);
    transition-duration: 900ms;
}

.thm-btn:before {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0px;
    content: "";
    background: var(--thm-secondary);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition-duration: 700ms;
    z-index: 1;
    bottom: 0;
}

.thm-btn:hover:before {
    top: -30px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.thm-btn .txt {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.thm-btn:hover,
.thm-btn:focus {
    color: var(--thm-white);
    -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
}

.thm-btn i {
    position: relative;
    top: 0px;
    display: inline-block;
    margin-left: 7px;
    font-size: 16px;
    z-index: 1;
}





.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none
}


hr {
    border-bottom: 1px solid var(--thm-primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--thm-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--thm-primary);
    color: var(--thm-black);
    text-shadow: none;
}

::-moz-selection {
    background: var(--thm-primary);
    color: var(--thm-black);
    text-shadow: none;
}

::selection {
    background: var(--thm-primary);
    color: var(--thm-black);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--thm-body-font-color);
    font-size: var(--thm-body-font-size);
    opacity: 1;
}






/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background-color: var(--thm-black);
    opacity: 1.0;
    cursor: pointer;
}

.search-close-btn {
    position: absolute;
    top: 10px;
    right: 27px;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transform: inherit;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    width: 60px;
    height: 60px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    background-color: var(--thm-primary);
}

.search-close-btn i {
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
}




.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: var(--thm-white);
    border-radius: 10px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: var(--thm-white);
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
    padding-right: 75px;
}

.search-popup__content .btn-one {
    padding: 0;
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0px;
    border-radius: 0;
    background-color: var(--thm-primary);
    border: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.search-popup__content .btn-one::before {
    border-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--thm-black);
}

.search-popup__content .btn-one i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    margin-left: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.search-popup__content .btn-one:hover i::before {
    color: var(--thm-white);
}

.search-popup__content .btn-one i {
    margin-left: 0px;
}






/*=============================
	Extra Info Css
===============================*/
.extra-info {
    background: var(--thm-secondary) none repeat scroll 0 0;
    height: 100%;
    padding: 50px;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.7s ease 0s;
    width: 450px;
    z-index: 999;
    overflow-y: scroll;
    transform: translateX(100%);
}

.extra-info.active {
    transform: translateX(0);
}

.offcanvas-overly {
    position: fixed;
    background: #000000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.offcanvas-overly.active {
    opacity: .9;
    visibility: visible;
}


.close-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.close-icon:hover {
    background-color: #fff;
}

.close-icon>button {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    cursor: pointer;
    font-size: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.close-icon>button:hover {
    color: var(--thm-primary);
}


.logo-side {
    position: relative;
    display: block;
}

.logo-side a {
    position: relative;
    display: inline-block;
}

.logo-side img {
    width: auto;
}

.side-info {
    border-top: 2px solid rgba(255, 255, 255, .10);
    padding-top: 25px;
    margin-top: 25px;
}

.side-info .content-box {
    position: relative;
    display: block;
}

.side-info .content-box h3 {
    color: var(--thm-white);
    font-size: 30px;
    line-height: 40px;
}

.side-info .content-box .text {
    position: relative;
    display: block;
    padding-top: 20px;
}

.side-info .content-box .text p {
    color: rgba(255, 255, 255, .9);
}



.sidebar-contact-info {
    position: relative;
    display: block;
}

.sidebar-contact-info h3 {
    color: var(--thm-white);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    padding-left: 25px;
}

.sidebar-contact-info ul li+li {
    margin-top: 11px;
}

.sidebar-contact-info ul li .icon {
    position: absolute;
    top: 6px;
    left: 0;
    line-height: 0;
}

.sidebar-contact-info ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 16px;
}

.sidebar-contact-info ul li .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .text p {
    color: rgba(255, 255, 255, .9);
}

.sidebar-contact-info ul li .text p a {
    color: rgba(255, 255, 255, .9);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-contact-info ul li .text p a:hover {
    color: var(--thm-primary);
}



.side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 29px;
}

.side-content-newsletter-box h3 {
    color: var(--thm-white);
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group {
    position: relative;
    display: block;
}

.side-content-newsletter-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-family: var(--thm-body-font);
    font-weight: 400;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .10);
    padding-left: 25px;
    padding-right: 70px;
}

.side-content-newsletter-box .form-group input[type="email"]:focus {
    color: var(--thm-white);
}

.side-content-newsletter-box .form-group input[type="email"]::-webkit-input-placeholder {
    color: #ffffff;
}

.side-content-newsletter-box .form-group input[type="email"]:-moz-placeholder {
    color: #ffffff;
}

.side-content-newsletter-box .form-group input[type="email"]::-moz-placeholder {
    color: #ffffff;
}

.side-content-newsletter-box .form-group input[type="email"]:-ms-input-placeholder {
    color: #ffffff;
}


.side-content-newsletter-box .form-group button {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-content-newsletter-box .form-group .thm-btn {
    color: var(--thm-white);
    font-size: 20px;
    border-radius: 5px;
    border: none;
}

.side-content-newsletter-box .form-group .thm-btn i {
    margin-left: 0px;
    font-size: 20px;
}

.side-content-newsletter-box .form-group .thm-btn:before {
    background: var(--thm-black);
}



.side-social-links {
    position: relative;
    display: block;
    padding-top: 40px;
}

.side-social-links ul {
    position: relative;
    display: flex;
    align-items: center;
}

.side-social-links ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.side-social-links ul li+li {
    margin-left: 10px;
}

.side-social-links ul li a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 900;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.side-social-links ul li a:hover {
    color: var(--thm-white);
}

.side-social-links ul li a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    border-radius: 50%;
    background-color: var(--thm-primary);
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.side-social-links ul li:hover a::before {
    opacity: 1;
    transform: scale(1);
}





/*== Accordion Box Style 1 Css ======*/
.accordion-box-one {
    position: relative;
    display: block;
}

.accordion-box-one .accordion {
    position: relative;
    display: block;
}

.accordion-box-one .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    padding-top: 28px;
    padding-bottom: 27px;
    border-bottom: 2px solid #333F4D;
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box-one .accordion .accord-btn::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--thm-primary);
    transition: all 600ms ease 100ms;
    z-index: 1;
}

.accordion-box-one .accordion .accord-btn.active::before {
    width: 100%;
}

.accordion-box-one .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e963";
    top: 50%;
    right: 0;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    font-weight: 900;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box-one .accordion .accord-btn.active {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.accordion-box-one .accordion .accord-btn.active:after {
    color: var(--thm-primary);
    font-size: 20px;
    content: "\e965";
}

.accordion-box-one .accordion .accord-btn h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 34px;
    font-family: var(--thm-heading-font);
    transition: all 500ms ease;
}

.accordion-box-one .accordion .accord-btn.active h3 {
    color: var(--thm-primary);
}

.accordion-box-one .accordion .accord-btn h3 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-black);
    font-size: 32px;
    font-weight: 700;
    margin-right: 8px;
}

.accordion-box-one .accordion .accord-content {
    position: relative;
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 3px;
    padding-right: 0px;
    display: none;
    margin-top: 21px;
}

.accordion-box-one .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-one .accordion .accord-content p {
    margin: 0;
}












/*=============================
	25. Preloader
===============================*/
#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

.loader .loader-outter {
    position: absolute;
    border: 4px solid var(--thm-primary);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.loader .loader-inner {
    position: absolute;
    border: 4px solid var(--thm-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}




.preloader-two .loader .loader-outter {
    position: absolute;
    border: 4px solid var(--thm-primary-color-two);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.preloader-two .loader .loader-inner {
    position: absolute;
    border: 4px solid var(--thm-primary-color-two);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.preloader-three .loader .loader-outter {
    position: absolute;
    border: 4px solid var(--thm-primary-color-three);
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
}

.preloader-three .loader .loader-inner {
    position: absolute;
    border: 4px solid var(--thm-primary-color-three);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
    animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
}


/* scrollUp */
.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: var(--thm-body-font-size);
    border-radius: 6px;
    z-index: 99;
    color: var(--thm-white);
    text-align: center;
    cursor: pointer;
    background: var(--thm-primary);
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
    background: var(--thm-secondary);
}

.custom-container {
    max-width: 1320px;
}

.body-dark-bg {
    background-color: var(--thm-body-background);
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
    position: relative;
    display: block;
}

.rating-box a {
    position: relative;
    color: #fcaf3b;
    font-size: 15px;
    line-height: 15px;
}

/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: url(../img/icon/cross-out.png), pointer;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .6;
    visibility: visible;
    transition-delay: 0.0s;
    right: 100%;
    background-color: #000000;
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 365px;
    background-color: #000000;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    left: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: -150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 600ms ease 800ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border: 2px solid var(--thm-white);
    border-radius: 50%;
    color: var(--thm-white);
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-white);
    border-color: var(--thm-white);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: var(--thm-white);
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--thm-white);
}

.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
    padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: var(--thm-body-font-color);
    transition: all 500ms ease;
    outline: none;
    border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: transparent;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
    position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn button {
    border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .btn-one {
    position: relative;
}

.sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: var(--thm-body-font-color);
    line-height: 30px;
}

.sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
}

.sidebar-contact-info ul li span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.sidebar-contact-info ul li a {
    color: var(--thm-body-font-color);
}

.sidebar-contact-info ul li a:hover {
    color: var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
}

.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0;
}

.thm-social-link1 ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-white);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-primary-color);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
    transform: scale(1);
    opacity: 1;
}

.thm-social-link1 ul li a:hover {
    color: var(--thm-white);
}




/*=============================
	Project One CSS
===============================*/
.project-one {
    position: relative;
    display: block;
    padding: 140px 0 110px;
    z-index: 1;
}

.project-one__content-box {
    position: relative;
    display: block;
}

.project-one__content-box .sec-title {
    padding-bottom: 20px;
}

.project-one__content-box .text {
    position: relative;
    display: block;
}

.project-one__content-box .text p {
    margin: 0;
}

.project-one__single {
    position: relative;
    display: block;
    border-bottom: 3px solid var(--thm-black);
    border-radius: 5px;
    margin-bottom: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-one__single:hover {
    border-color: var(--thm-secondary);
    transform: translateY(-5px);
}

.project-one__single-img {
    position: relative;
    display: block;
}

.project-one__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.project-one__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    opacity: 0;
    border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    background: linear-gradient(0deg, #000000 40%, rgba(var(--thm-secondary-rgb), 0.90) 70%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.project-one__single:hover .project-one__single-img .inner::before {
    opacity: 0.70;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.project-one__single-img .inner img {
    width: 100%;
    transform: scale(1.0);
}

.project-one__single:hover .project-one__single-img .inner img {
    transform: scale(1.05) rotate(1deg);
}

.project-one__single-img .overlay-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-50px);
    transform-origin: top;
    transition: all 500ms ease;
    z-index: 5;
}

.project-one__single:hover .project-one__single-img .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 200ms;
}

.project-one__single .project-one__single-img .overlay-icon a {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-one__single .project-one__single-img .overlay-icon a:hover {
    color: var(--thm-primary);
}

.project-one__single-content {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 23px 64px 32px;
}

.project-one__single-content .title-box {
    position: relative;
    display: block;
}

.project-one__single-content .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 13px;
}

.project-one__single-content .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-one__single-content .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.project-one__single-content .title-box p {
    margin: 0;
}

.project-one__single-content .btn-box {
    position: relative;
    display: block;
    padding-top: 23px;
    line-height: 0;
}

.project-one__single-content .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 25px;
    font-family: var(--thm-heading-font);
    font-weight: 700;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-one__single-content .btn-box a:hover {
    color: var(--thm-secondary);
    letter-spacing: 1.15px;
}

.project-one__single-content .btn-box a span {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-secondary);
    font-size: 16px;
    font-weight: 900;
    margin-left: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-one__single-content .btn-box a:hover span {
    color: var(--thm-primary);
}




/*=============================
	Project Two CSS
===============================*/
.project-two {
    position: relative;
    display: block;
    background-color: #f2f6f9;
    padding: 140px 0 110px;
    z-index: 1;
}

.project-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-two__single-img {
    position: relative;
    display: block;
}

.project-two__single-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.project-two__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: linear-gradient(0deg, #000000 -1.22%, rgba(0, 0, 0, 0.70) 60.99%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.project-two__single:hover .project-two__single-img .inner::before {
    left: 30px;
    border-top-left-radius: 5px;
    opacity: 1.0;
}


.project-two__single-img .inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 108px;
    right: 0;
    height: 50px;
    background-color: var(--thm-primary);
    border-top-left-radius: 5px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.1s ease-in-out 0.2s;
    z-index: -1;
}

.project-two__single:hover .project-two__single-img .inner::after {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}



.project-two__single .project-two__single-img .inner img {
    width: 100%;
    transform: scale(1.0) rotate(0deg) translateX(0px);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.project-two__single:hover .project-two__single-img .inner img {
    transform: scale(1.0) rotate(0deg) translateX(30px);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.project-two__single-overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--thm-primary);
    padding: 23px 30px 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.1s ease-in-out 0.2s;
    z-index: 3;
}

.project-two__single:hover .project-two__single-overlay-content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.5s ease-in-out 0.5s;
}

.project-two__single-overlay-content-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-two__single-overlay-content-inner .title-box {
    position: relative;
    display: block;
}

.project-two__single-overlay-content-inner .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
}

.project-two__single-overlay-content-inner .title-box h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-two__single-overlay-content-inner .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.project-two__single-overlay-content-inner .title-box p {
    color: var(--thm-white);
}

.project-two__single-overlay-content-inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.project-two__single-overlay-content-inner .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: var(--thm-secondary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-two__single-overlay-content-inner .btn-box a:hover {
    background-color: var(--thm-black);
}

.project-two__single-overlay-content-inner .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-two__single-overlay-content-inner .btn-box a:hover span {
    color: var(--thm-white);
}



/*=============================
	Project Three CSS
===============================*/
.project-three {
    position: relative;
    display: block;
    background-color: var(--thm-black);
    padding: 130px 0 94px;
    z-index: 1;
}

.project-three__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 60px;
}

.project-three__top .sec-title {
    max-width: 650px;
    width: 100%;
    padding-bottom: 0;
}

.project-three__top .sub-title h4 {
    color: var(--thm-primary);
}

.project-three__top .sec-title h2 {
    color: var(--thm-white);
}

.project-three__top .btn-box {
    position: relative;
    display: inline-block;
    line-height: 0;
    top: -15px;
}

.project-three__top .btn-box .thm-btn {
    color: var(--thm-white);
    font-family: var(--thm-heading-font);
    letter-spacing: 1.28px;
    text-transform: uppercase;
    border-radius: 5px;
}

.project-three__top .btn-box .thm-btn::after {
    border-radius: 5px;
    border: 1px solid var(--thm-primary);
    background-color: transparent;
}

.project-three__top .btn-box .thm-btn::before {
    background-color: var(--thm-primary);
}

.project-three__top .btn-box .thm-btn i {
    font-size: 16px;
    font-weight: 700;
    top: -1px;
}

.project-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-three__single-img {
    position: relative;
    display: block;
}

.project-three__single-img .inner {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.project-three__single-img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.9;
    background: linear-gradient(0deg, #000000 1.22%, rgba(255, 255, 255, 0.00) 80.99%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
}

.project-three__single:hover .project-three__single-img .inner::before {
    transform: scaleY(1.0);
}

.project-three__single .project-three__single-img .inner img {
    width: 100%;
}


.project-three__single-overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--thm-primary);
    padding: 30px 30px 30px;
    opacity: 0;
    transform: translateY(-30px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.project-three__single:hover .project-three__single-overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.project-three__single-overlay-content-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-three__single-overlay-content-inner .title-box {
    position: relative;
    display: block;
}

.project-three__single-overlay-content-inner .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

.project-three__single-overlay-content-inner .title-box h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-three__single-overlay-content-inner .title-box h3 a:hover {
    color: var(--thm-secondary);
}

.project-three__single-overlay-content-inner .title-box p {
    color: var(--thm-white);
}

.project-three__single-overlay-content-inner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.project-three__single-overlay-content-inner .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: var(--thm-secondary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-three__single-overlay-content-inner .btn-box a:hover {
    background-color: var(--thm-black);
}

.project-three__single-overlay-content-inner .btn-box a span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-three__single-overlay-content-inner .btn-box a:hover span {
    color: var(--thm-white);
}




/*=============================
	Video One Css
===============================*/
.video-one {
    position: relative;
    display: block;
    padding: 245px 0px 245px;
    z-index: 3;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.video-one__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(16, 55, 182, 0.65) 0%, rgba(16, 55, 182, 0.00) 100%);
    z-index: 1;
}

.video-one .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 160px;
    height: 160px;
    background: var(--thm-primary);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-one .icon:hover {
    background-color: var(--thm-secondary);
}

.video-one .icon:after,
.video-one .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-one .icon:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-one .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-one .icon .video-popup span::before {
    position: relative;
    color: var(--thm-white);
    font-size: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-one .icon:hover .video-popup span::before {
    color: var(--thm-primary);
}



/*=============================
	Video two Css
===============================*/
.video-two {
    position: relative;
    display: block;
    padding: 312px 0px 312px;
    z-index: 3;
}

.video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: -1;
}

.video-two__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(18, 18, 18, 0.4);
    z-index: 1;
}

.video-two .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: var(--thm-primary);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-two .icon:hover {
    background-color: var(--thm-secondary);
}

.video-two .icon:after,
.video-two .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-two .icon:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-two .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-two .icon .video-popup span::before {
    position: relative;
    color: var(--thm-white);
    font-size: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-two .icon:hover .video-popup span::before {
    color: var(--thm-white);
}




/*=============================
	Cta One Css
===============================*/
.cta-one {
    background-color: var(--thm-secondary);
    padding: 80px 0px 80px;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
}

.cta-one__inner-box {
    position: relative;
    display: block;
    max-width: 610px;
    width: 100%;
}

.cta-one__inner-box .title-box {
    position: relative;
    display: block;
}

.cta-one__inner-box .title-box h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.cta-one__inner-box .title-box p {
    color: var(--thm-white);
}

.cta-one__newsletter-box {
    position: relative;
    display: block;
    top: 10px;
}

.cta-one__newsletter-box .cta-one__form-group {
    position: relative;
    display: block;
    width: 590px;
    margin-left: 89px;
}

.cta-one__newsletter-box .cta-one__form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
    border: none;
    color: var(--thm-white);
    font-size: 17px;
    font-weight: 400;
    border-radius: 5px;
    background-color: rgb(255, 255, 255, 0.10);
    padding-left: 40px;
    padding-right: 250px;
}

.cta-one__newsletter-box form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="text"]:-moz-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="text"]::-moz-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="email"]:-moz-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="email"]::-moz-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-white);
}


.cta-one__newsletter-box form textarea::-webkit-input-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form textarea:-moz-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form textarea::-moz-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box form textarea:-ms-input-placeholder {
    color: var(--thm-white);
}

.cta-one__newsletter-box .cta-one__form-group button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border: none;
    color: var(--thm-white);
    font-family: var(--thm-heading-font);
    letter-spacing: 1.28px;
    text-transform: uppercase;
    background: var(--thm-base);
    line-height: 60px;
    border-radius: 5px;
    transition: all 300ms ease 100ms;
}

.cta-one__newsletter-box .cta-one__form-group button i {
    color: #ffffff;
    margin-right: 12px;
}







.cta-one--style2 {
    background-color: var(--thm-primary);
    padding: 73px 0px 65px;
}

.cta-one__inner--style2 {
    justify-content: space-between;
}

.cta-one__inner-box--style2 {
    max-width: 750px;
}

.cta-one__inner-box--style2 .title-box h2 {
    line-height: 1.3em;
    margin-bottom: 0;
}

.cta-one__btn--style2 .thm-btn {
    color: var(--thm-black);
}

.cta-one__btn--style2 .thm-btn:hover {
    color: var(--thm-white);
}

.cta-one__btn--style2 .thm-btn::after {
    background-color: var(--thm-white);
}







/*=============================
	Cta Two Css
===============================*/
.cta-two {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    z-index: 11;
}

.cta-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 82px;
    padding-left: 275px;
    padding-bottom: 80px;
}


.cta-two__img {
    position: absolute;
    top: -50px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.cta-two__img:before {
    content: "";
    position: absolute;
    top: 50px;
    left: -130px;
    bottom: 0;
    width: 392px;
    background-color: var(--thm-secondary);
    clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
    z-index: -1;
}


.cta-two__inner-box {
    position: relative;
    display: block;
}

.cta-two__inner-box .title-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.cta-two__inner-box .title-box h2 {
    font-size: 48px;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.cta-two__inner-box .title-box p {
    margin: 0;
}

.cta-two__newsletter-box {
    position: relative;
    display: block;
    max-width: 510px;
    width: 100%;
}

.cta-two__form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.cta-two__form-group input[type='email'] {
    position: relative;
    display: block;
    width: 300px;
    height: 65px;
    border: 1px solid #E3E3E3;
    color: var(--thm-body-font-color);
    font-size: 16px;
    font-family: var(--thm-body-font);
    font-weight: 400;
    border-radius: 5px;
    background-color: transparent;
    padding-left: 20px;
    padding-right: 0px;
}

.cta-two__form-group form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="text"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="text"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="email"]:-moz-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="email"]::-moz-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.cta-two__form-group button {
    position: relative;
    display: block;
    border: none;
    color: var(--thm-white);
    line-height: 45px;
    font-family: var(--thm-heading-font);
    letter-spacing: 1.28px;
    text-transform: uppercase;
    border-radius: 5px;
    background: var(--thm-base);
    margin-left: 20px;
    transition: all 300ms ease 100ms;
}

.cta-two__form-group button.thm-btn:before {
    background: var(--thm-primary);
}

.cta-two__form-group button.thm-btn::after {
    background: var(--thm-secondary);
}



/*=============================
	Cta Three Css
===============================*/
.cta-three {
    position: relative;
    display: block;
    background-color: transparent;
    overflow: hidden;
    z-index: 5;
}

.cta-three::before {
    content: "";
    position: absolute;
    top: 137px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
}

.cta-three__bg {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0;
    border-radius: 5px;
    max-width: 1290px;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cta-three__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0;
    border-radius: 5px;
    background-color: var(--thm-secondary);
    mix-blend-mode: hard-light;
}

.cta-three__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 84px 81px 64px;
    z-index: 8;
}

.cta-three__content .title {
    position: relative;
    display: block;
    max-width: 470px;
}

.cta-three__content .title h2 {
    color: var(--thm-white);
    font-size: 48px;
    line-height: 1.2em;
}

.cta-three__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.cta-three__content .btn-box .thm-btn {
    line-height: 40px;
}



/*==========================================
	Scrolling Text One Css
==========================================*/
.scrolling-text-one {
    position: relative;
    display: block;
}

.scrolling-text-one .inner {
    position: relative;
    display: block;
}

.scrolling-text-one .inner ul {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
}

.scrolling-text-one .inner ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
    float: left;
    color: var(--thm-black);
    font-size: 48px;
    line-height: 1.2em;
    font-family: var(--thm-heading-font);
    font-weight: 700;
    text-transform: capitalize;
    margin-left: 40px;
}

.scrolling-text-one .inner ul li .stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-black);
    margin-right: 40px;
}


.scrolling-text-one .inner ul li .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 40px;
}

.scrolling-text-one .inner ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 64px;
}



/*==========================================
	Scrolling Text Two Css
==========================================*/
.scrolling-text-two {
    padding-top: 130px;
}

.scrolling-text-two .inner ul+ul {
    margin-top: 21px;
}



/*==========================================
	Scrolling Text Three Css
==========================================*/
.scrolling-text-three {
    padding-top: 60px;
}

.scrolling-text-three .inner ul li {
    color: var(--thm-white);
}

.scrolling-text-three .inner ul li .stroke {
    -webkit-text-stroke: 1px var(--thm-white);
}




/*=============================
	Who we Are Css
===============================*/
.who-we-are-one {
    position: relative;
    display: block;
    background-color: #f2f6f9;
    padding: 120px 0px 83px;
    z-index: 1;
}

.who-we-are-one__content-box {
    position: relative;
    display: block;
}

.who-we-are-one .sec-title {
    padding-bottom: 20px;
}

.who-we-are-one__content-box .text {
    position: relative;
    display: block;
}

.who-we-are-one__content-box .text p {
    margin: 0;
}

.who-we-are-one__img-box {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 33px;
}

.who-we-are-one__img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.who-we-are-one__img-box:hover::before {
    opacity: .70;
    transition: all 500ms linear;
}

.who-we-are-one__img-box img {
    width: 100%;
}



/*=============================
	FAQ One Css
===============================*/
.faq-one {
    position: relative;
    display: block;
    padding: 97px 0px 0px;
    z-index: 1;
}

.faq-one__bg {
    position: absolute;
    left: 0;
    bottom: -117px;
    opacity: 0.07;
}

.faq-one__title {
    position: relative;
    display: block;
    padding-top: 58px;
}

.faq-one__title .sec-title {
    padding-bottom: 31px;
}

.faq-one__title .text {
    position: relative;
    display: block;
}

.faq-one__title .text p {
    margin: 0;
}

.faq-one__content {
    position: relative;
    display: block;
}



/*==========================================
	Project Details Page Css
==========================================*/
.project-details-page {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    padding: 140px 0px 140px;
    z-index: 1;
}

.project-details-page__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-details-page__img img {
    width: 100%;
}

.project-details__info-box {
    position: relative;
    display: block;
}

.project-details__info-box-inner {
    position: relative;
    display: block;
    border: 1px solid #E3E3E3;
    padding: 32px 40px 29px;
}

.project-details__info-box-inner .title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 23px;
}

.project-details__info-box-inner .title h3 {
    font-size: 24px;
    line-height: 30px;
}

.project-details__info-box-inner .title .line {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--thm-secondary);
    top: 1px;
}

.project-details__info-box-inner .text {
    position: relative;
    display: block;
}

.project-details__info-box-inner .text p {
    margin: 0;
}

.project-details__info-box-inner .list-info-box {
    position: relative;
    display: block;
    padding-top: 31px;
}

.project-details__info-box-inner .list-info-box>ul {
    position: relative;
    display: block;
}

.project-details__info-box-inner .list-info-box>ul>li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 20px;
    margin-bottom: 21px;
}

.project-details__info-box-inner .list-info-box>ul>li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.project-details__info-box-inner .list-info-box>ul>li h4 {
    font-size: 18px;
    line-height: 30px;
}

.project-details__info-box-inner .list-info-box>ul>li p {
    margin-left: 25px;
}

.project-details__info-box-inner .list-info-box>ul>li .reting-box {
    position: relative;
    display: block;
    margin-left: 25px;
}

.project-details__info-box-inner .list-info-box>ul>li .reting-box>ul {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details__info-box-inner .list-info-box>ul>li .reting-box>ul>li {
    position: relative;
    display: block;
}

.project-details__info-box-inner .list-info-box>ul>li .reting-box>ul>li+li {
    margin-left: 5px;
}

.project-details__info-box-inner .list-info-box>ul>li .reting-box>ul>li .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.project-details__info-box-inner .list-info-box>ul>li .reting-box>ul>li .icon span {
    position: relative;
    display: inline-block;
    color: #f68b21;
    font-size: 14px;
}

.project-details__info-box .social-links {
    position: relative;
    display: block;
    padding-top: 40px;
}

.project-details__info-box .social-links ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-details__info-box .social-links ul li {
    position: relative;
    display: block;
}

.project-details__info-box .social-links ul li+li {
    margin-left: 10px;
}

.project-details__info-box .social-links ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3c59ff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.project-details__info-box .social-links ul li a.color2 {
    background-color: #2d3fad;
}

.project-details__info-box .social-links ul li a.color3 {
    background-color: #9727ef;
}

.project-details__info-box .social-links ul li a.color3 {
    background-color: #17c1ff;
}


.project-details__info-box .social-links ul li a:hover {
    color: var(--thm-white);
}

.project-details__info-box .social-links ul li a::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    background-color: var(--thm-primary);
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.project-details__info-box .social-links ul li:hover a::before {
    opacity: 1;
    transform: scale(1);
    border-radius: 50%;
}

.project-details__content {
    position: relative;
    display: block;
    padding-top: 33px;
}

.project-details__content .title {
    position: relative;
    display: block;
}

.project-details__content .title h3 {
    font-size: 32px;
    line-height: 1.1em;
}

.project-details__content .text {
    position: relative;
    display: block;
    padding-top: 22px;
}

.project-details__content .text p {
    margin: 0;
}

.project-details__content .text p+p {
    margin-top: 21px;
}

.project-details-inner {
    position: relative;
    display: block;
    padding-top: 60px;
}

.project-details-inner-list-item {
    position: relative;
    display: block;
}

.project-details-inner__list-item ul {
    position: relative;
    display: block;
}

.project-details-inner__list-item ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details-inner__list-item ul li+li {
    margin-top: 10px;
}

.project-details-inner__list-item ul li .circle {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--thm-secondary);
    background-color: transparent;
    margin-right: 20px;
}

.project-details-inner__list-item ul li p {
    margin: 0;
}

.project-details-inner__img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-details-inner__img-box img {
    width: 100%;
}

.project-details-inner__img-box-video {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.project-details-inner__img-box-video .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--thm-white);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.project-details-inner__img-box-video .icon:hover {
    background-color: var(--thm-secondary);
}

.project-details-inner__img-box-video .icon:after,
.project-details-inner__img-box-video .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.project-details-inner__img-box-video .icon:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.project-details-inner__img-box-video .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.project-details-inner__img-box-video .icon .video-popup span::before {
    position: relative;
    color: var(--thm-secondary);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-details-inner__img-box-video .icon:hover .video-popup span::before {
    color: var(--thm-primary);
}




/*=============================
	Who we Are About Css
===============================*/
.who-we-are-one--about {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 0px 0px 128px;
}




/*=============================
	Fact Counter Two About Css
===============================*/
.fact-counter-two--about {
    position: relative;
    display: block;
    background: var(--thm-white);
}




/*=============================
	Scrolling Text One About Css
===============================*/
.scrolling-text-one.about {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding-top: 20px;
}




/*=============================
	Testimonials Two About Css
===============================*/
.testimonials-two--about {
    position: relative;
    display: block;
}

.testimonials-two--about .scroll-pagination .swiper-pagination-progressbar-fill {
    background: var(--thm-secondary) !important;
}




/*=============================
	Service Two Service Css
===============================*/
.service-two--service {
    position: relative;
    display: block;
    padding: 140px 0 52px;
}




/*=============================
	FAQ One Service Css
===============================*/
.faq-one--service {
    position: relative;
    display: block;
    padding: 0px 0px 140px;
}




/*=============================
	Project Three Project Css
===============================*/
.project-three--project {
    position: relative;
    display: block;
    padding: 140px 0px 140px;
    background: var(--thm-white);
}

.project-three--project .project-three__top .sub-title h4 {
    color: var(--thm-secondary);
}

.project-three--project .project-three__top .sec-title h2 {
    color: var(--thm-black);
}

.project-three--project .project-three__top .btn-box .thm-btn {
    color: var(--thm-secondary);
}

.project-three--project .project-three__top .btn-box .thm-btn:hover {
    color: var(--thm-white);
}

.project-three--project .project-three__top .btn-box .thm-btn::before {
    background-color: var(--thm-primary);
}

.project-three--project .project-three__top .btn-box .thm-btn::after {
    border: 1px solid var(--thm-secondary);
}

.project-three--project .scrolling-text-three .inner ul li .stroke {
    -webkit-text-stroke: 1px var(--thm-black);
}

.project-three--project .scrolling-text-three .inner ul li {
    color: var(--thm-black);
}

.project-three--project .scrolling-text-three {
    padding-top: 110px;
}

.project-three--project .project-three__single-overlay-content {
    background-color: var(--thm-body-background);
}

.project-three--project .project-three__single-overlay-content-inner .title-box h3 a {
    color: var(--thm-black);
}

.project-three--project .project-three__single-overlay-content-inner .title-box p {
    color: var(--thm-body-font-color);
}




/*=============================
	Faq One Faq Css
===============================*/
.faq-one--faq {
    position: relative;
    display: block;
    padding: 140px 0px 140px;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--thm-heading-font);
    transition: all 500ms ease;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn {
    padding-top: 17px;
    padding-bottom: 16px;
    border-top: 1px solid #e3e3e3;
    border-bottom: none;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn.bdrb {
    border-bottom: 1px solid #e3e3e3;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn::before {
    display: none;
}

.faq-one--faq .accordion-box-one .accordion .accord-content {
    padding-bottom: 30px;
    margin-top: 1px;
    padding-right: 45px;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn::after {
    content: "\e94d";
    color: var(--thm-secondary);
    font-size: 15px;
    line-height: 15px;
    font-weight: 900;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn.active:after {
    color: var(--thm-secondary);
    content: "\e94f";
}

.termscond ul {
	padding-top: 10px;
	list-style: disc !important;
}
.termscond ul li {
	position: relative;
}
.termscond ul li::before {
	position: absolute;
  content: "\e95e";
font-size: 14px;
  font-weight: 900;
font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
left: 21px;
  top: 9px;
}