/***********************
* Topbar
***********************/
.header{
    /* min-width: 400px;  - Removed to fix mobile overflow */
}
@media(max-width: 991px){
    .topbar{
        display: none;
    }
}
.topbar-inner{
    display: flex;
    justify-content: space-between;
    background-color: var(--thm-black);
    padding-right: 60px;
}
.topbar-left{
    display: flex;
}
.topbar-socials{
    background-color: var(--thm-primary);
    padding: 10px;
    min-width: 200px; /* Reduced to fix mobile overflow */
    text-align: center;
}
.topbar-socials a{
    color:var(--thm-white);
    font-size: 14px;
}
.topbar-socials a + a {
    margin-left: 25px;
}
.topbar-info{
    padding: 10px 10px 10px 40px;
    color: var(--thm-secondary);
}
.topbar-one-middle .topbar-info {
    padding-left: 0;
}
@media(max-width: 1399px){
    .topbar-one-middle .topbar-info{
        display: none;
    }
}
.topbar-info ul{
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
}
@media(max-width: 991px){
    .topbar-info ul{
        display: block;
    }
}
.topbar-info ul li {
    display: flex;
    align-items: center;
}
@media(max-width: 991px){
    .topbar-info ul li{
        margin-bottom: 10px;
    }
}
.topbar-info ul li + li {
    margin-left: 35px;
}
@media(max-width: 991px){
    .topbar-info ul li + li{
        margin-left: 0px;
    }
}
.topbar-icon i{
    color: var(--thm-primary);
    font-size: 14px;
}
.topbar-text a{
    margin-left: 5px;
    font-size: 13px;
}
.topbar-text a:hover{
    color: var(--thm-white);
}
.topbar-text{
    margin-left: 5px;
    font-family: var(--thm-font);
    font-size: 13px;
}
.topbar-text span{
    color: var(--thm-secondary);
    font-size: 13px;
}
.topbar-right{
    padding: 10px 0px;
}
@media(max-width: 1399px){
    .topbar-right{
        display: none;
    }
}
.topbar-right ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.menu-two .topbar-right ul {
    padding: 20px 0px 15px;
}
.topbar-right li{
    display: inline-block;
    color: var(--thm-secondary);
    font-size: 13px;
}
.topbar-right li a:hover{
    color: var(--thm-white);
}
.topbar-right li + li:before {
    content: '/';
    margin: 0px 10px;
}
.topbar-one{
    display: flex;
    background-color: var(--thm-black);
}
@media(max-width: 991px){
    .topbar-one{
        display: flex;
        justify-content: space-between;
    }
}
@media(max-width: 575px){
    .topbar-one{
        display: flex;
        justify-content: space-between;
    }
}
.topbar-one-middle{
    display: flex;
    justify-content: space-between;
    padding: 8px 0px;
    align-items: center;
}
@media(max-width: 1199px){
    .topbar-one-middle{
        display: block;
    }
}
/***********************
* Header
***********************/
.sticky-header--cloned {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: var(--thm-white);
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    box-shadow: 0px 10px 40px 0px rgb(0 0 0 / 15%);
}
@media (max-width: 1199px) {
    .sticky-header--cloned {
        display: none !important;
    }
}
.sticky-header--cloned.sticky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease, opacity 500ms ease;
    visibility: visible;
}
/***********************
* Menu
***********************/
.main-menu{
    background-color: var(--thm-light-bg);
    height: 80px;
}
.main-menu.menu-two {
    padding-right: 0;
    z-index: 9;
    background-color: transparent;
    margin-bottom: -40px;
}
@media(max-width: 1199px){
    .main-menu.menu-two{
        margin-top: 10px
    }
}
@media(max-width: 575px){
    .main-menu.menu-two{
        margin-top: -17px
    }
}
.main-menu-inner{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu-left{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.main-menu-logo{
    min-width: 100px; /* Reduced to fix mobile overflow */
    height: 80px;
    justify-content: start;
    display: flex;
    align-items: center;
    padding: 33px 20px;
}
@media (max-width: 399px) {
    .main-menu-logo {
        width: 100%;
        max-width: 200px;
        padding: 33px 20px;
    }
}
.menu-logo{
    padding: 40px 60px;
    max-width: 250px;
    align-items: center;
    color: var(--thm-white);
    display: inline-block;
    background-color: var(--thm-dark-black);
}
.navigation {
    padding-left: 50px;
    padding-right: 40px;
}
.menu-two .navigation {
    padding-left: 20px;
}
@media (max-width: 1499px) {
    .navigation{
        padding-left: 50px;
    }
}
@media (max-width: 991px) {
    .navigation{
        display: none;
    }
}
.main-menu .main-menu-list {
    display: flex;
    margin: 0;
    padding: 0;
}
@media(max-width: 991px){
    .main-menu .main-menu-list{
        display: none;
    }
}
.main-menu .main-menu-list > li {
    position: relative;
}
.main-menu .main-menu-list > li > a{
    padding: 38px 0;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    color: var(--thm-gray);
}
.main-menu .main-menu-list > li > a:before{
    position: absolute;
    content: '';
    height: 5px;
    left: 0;
    top: calc(50% + 3px);
    width: 100%;
    opacity: 0.3;
    transform: scale(0,1);
    transition: transform 500ms ease;
    transform-origin: right;
}
.main-menu .main-menu-list >li.active > a:before,
.main-menu .main-menu-list >li:hover > a:before{
    transform: scale(1,1);
    transform-origin: left;
}
.main-menu .main-menu-list > li.active > a,
.main-menu .main-menu-list > li > a:hover{
    color: var(--thm-black);
}
.main-menu .main-menu-list > li.has-dropdown > a:after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    margin-left: 10px;
}
.main-menu.menu-two .main-menu-list > li > a {
    padding: 23px 0;
}
.main-menu .main-menu-list > li + li {
    margin-left: 25px;
}
@media (max-width: 1520px) {
    .main-menu .main-menu-list > li + li {
        margin-left: 30px;
    }
}
.main-menu .main-menu-list > li ul {
    opacity: 0;
    position: absolute;
    width: 220px;
    left: -15px;
    top: 100%;
    transform: translateY(30px);
    visibility: hidden;
    transition: all 500ms ease;
    z-index: 999;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
}
.main-menu .main-menu-list > li:hover > a + ul{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-menu .main-menu-list > li ul > li {
    position: relative;
}
.main-menu .main-menu-list > li ul > li > a {
    padding: 12px 20px;
    display: block;
    background-color: #fff;
    color: var(--thm-gray);
    border-bottom: 1px solid var(--thm-border);
}
.main-menu .main-menu-list > li ul > li:last-child > a {
    border-bottom: 0;
}
.main-menu .main-menu-list > li ul > li > a:hover {
    background-color: var(--thm-primary);
    color: #fff;
}
.main-menu .main-menu-list > li > ul li > ul {
    left: 100%;
    top: 0;
}
.main-menu .main-menu-list > li:hover > ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile-menu-button  span{
    background-color: var(--thm-black);
}
.mobile-menu-button {
    display: none;
    margin-left: 30px;
    margin-right: 30px;
}
@media (max-width: 991px) {
    .mobile-menu-button{
        display: block;
        margin-left: auto; /* Push to right */
    }
}
@media (max-width: 575px) {
    .mobile-menu-button{
        margin-left: auto; /* Ensure it stays on right */
        margin-right: 0px; /* Bring closer to edge */
    }
}
.mobile-menu-button span {
    height: 2px;
    width: 20px;
    background-color: var(--thm-black);
    display: block;
}
.mobile-menu-button span + span {
    margin-top: 4px;
}
.main-menu-right{
    display: flex;
    align-items: center;
    margin-left: 10px;
}
@media (max-width:575px) {
    .main-menu-right{
        margin-right: 20px;
    }
}
@media (max-width: 250px) {
    .main-menu-right{
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
    }
}
a.search-toggler{
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--thm-white);
    line-height: 55px;
    text-align: center;
}
.search-box{
    margin-right: 30px;
}
.search-box i{
    color: var(--thm-black);
    font-size: 20px;
    line-height: 2.5;
}
.main-menu-right-button .btn-primary {
    margin-right: 40px;
    padding: 12px 20px;
}
@media (max-width: 991px) {
    .main-menu-right-button{
        display: none;
    }
}
.main-menu-right-button .btn-primary a{
    color: var(--thm-white);
    padding: 10px 0px;
}
@media (max-width: 991px) {
    .main-menu-right-button .btn-primary{
        padding: 13px 20px;
    }
}
.main-menu-one-inner{
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0 30px;
    position: relative;
    z-index: 99;
}
@media (max-width: 991px) {
    .main-menu-one-inner {
        background-color: inherit;
        justify-content: end;
        padding: 0px;
        margin-top: 15px;
    }
}
@media (max-width: 575px) {
    .main-menu-one-inner {
        margin-top: 30px;
    }
}
.topbar-one-button{
    margin-top: 25px;
    margin-bottom: 25px;
    margin-right: 60px;
    display: flex;
}
@media(max-width: 991px){
    .topbar-one-button{
        display: none;
    }
}
@media(max-width: 767px){
    .topbar-one-button{
        margin-left: 105px;
    }
}
@media(max-width: 575px){
    .topbar-one-button{
        margin-left: 0px;
    }
}
.topbar-one-button .btn-primary{
    padding: 14px 24px;
    margin-left: 15px;
    background-color: var(--thm-primary);
}
@media(max-width: 991px){
    .topbar-one-button .btn-primary{
        display: none;
    }
}
@media(max-width: 991px){
    .topbar-one-button .btn-primary{
        padding: 14px 49px;
    }
}
.topbar-one-button .btn-primary:hover,.topbar-one-button .btn-primary:focus,.topbar-one-button .btn-primary.active {
    background-color: var(--thm-primary);;
}
.topbar-one-button a {
    flex-shrink: 0;
}
.menu-logo{
    padding: 35px 20px;
    min-width: 250px;
    align-items: center;
    color: var(--thm-white);
    display: flex;
    background-color: var(--thm-black);
    justify-content: center;
}
@media(max-width: 575px){
    .menu-logo{
        min-width: 170px;
    }
}
.main-slider,
.main-slider-two {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.main-slider-swiper .item,
.main-slider-two-swiper .item {
    min-height: 600px;
    height: 100vh;
    max-height: 850px;
    position: relative;           /* required for overlay & img positioning */
    display: flex;
    align-items: center;
}

@media (min-width: 1600px) {
    .main-slider-swiper .item,
    .main-slider-two-swiper .item {
        max-height: 630px;
    }
}

/* The image fills the entire slide */
.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Dark overlay - this creates the shade */
.slide-item::before {
    content: '';
    position: absolute;
    inset: 0; /* ← main control: 0.45–0.65 works well */
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);/* above image, below text */
    pointer-events: none;              /* doesn't block clicks */
}

/* Text/content stays above the overlay */
.slider-content {
    position: relative;
    z-index: 3;                        /* above overlay */
    color: white;                      /* already white – now clearly visible */
    /* Add these if not already present – improves readability */
}

.section-title {
    font-weight: 700;                  /* usually helps too */
}

/* Optional: slightly stronger overlay on mobile if text still struggles */
@media (max-width: 768px) {
    .item::before {
        background: rgba(0, 0, 0, 0.65);   /* darker on small screens */
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* zoom in */
    }
    100% {
        transform: scale(1);
    }
}

/* Apply animation ONLY to active slide image */
.main-slider-swiper .owl-item.active .slide-img {
    animation: zoomInOut 12s ease-in-out infinite;
}

/* =====================================
   SLIDER BACKGROUND
===================================== */

.item-slider-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    z-index: 1;
    will-change: transform;
}

.item-slider-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(var(--thm-black-rgb), 0.5);
}

.main-slider .owl-item.active .item-slider-bg {
    transform: scale(1.15);
    background-position: left center;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
}

/* =====================================
   CONTENT LAYER
===================================== */

.main-slider .container,
.main-slider-two .container {
    position: relative;
    z-index: 3;
}

.slider-content,
.slider-content-two {
    padding-block: clamp(80px, 18vw, 200px);
}

/* =====================================
   TAGLINES
===================================== */

.slider-tagline,
.slider-tagline-two {
    font-size: 18px;
    color: var(--thm-white);
    transform: translateY(-40px);
    opacity: 0;
    transition: all 1500ms ease;
}

.slider-tagline-two {
    background-color: rgba(255,255,255,0.1);
    padding: 10px 30px;
    text-transform: uppercase;
    display: inline-block;
}

.owl-item.active .slider-tagline,
.owl-item.active .slider-tagline-two {
    transform: translateY(0);
    opacity: 1;
}

/* =====================================
   TITLES
===================================== */

.slider-content .section-title {
    font-size: 75px;
    font-weight: 800;
    color: var(--thm-white);
    line-height: 1.1;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1500ms ease;
}

.slider-content-two .section-title {
    font-size: 70px;
    font-weight: 800;
    color: var(--thm-white);
    line-height: 1.1;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1500ms ease;
}

.owl-item.active .section-title {
    transform: translateY(0);
    opacity: 1;
}

/* =====================================
   PARAGRAPHS
===================================== */

.slider-content p,
.slider-content-two p {
    font-size: 20px;
    color: var(--thm-white);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 35px;
}

/* =====================================
   BUTTONS
===================================== */

.slider-content .btn-primary,
.slider-content-two .btn-primary {
    transform: translateY(50px);
    opacity: 0;
    transition: all 1500ms ease;
    font-size: 16px;
    padding: 14px 32px;
}

.owl-item.active .btn-primary {
    transform: translateY(0);
    opacity: 1;
}

/* =====================================
   NAVIGATION
===================================== */

.main-slider .owl-nav,
.main-slider-two .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.main-slider .owl-nav button,
.main-slider-two .owl-nav button {
    height: 60px;
    width: 50px;
    line-height: 60px;
    border-radius: 4px;
    background-color: var(--thm-primary) !important;
    color: var(--thm-white) !important;
    opacity: 1;
    transition: all 500ms ease;
    pointer-events: auto;
}

.main-slider .owl-nav button:hover,
.main-slider-two .owl-nav button:hover {
    background-color: var(--thm-black) !important;
    opacity: 1;
}

/* =====================================
   TABLET (≤ 991px)
===================================== */

@media (max-width: 991px) {

    .main-slider-swiper .item,
    .main-slider-two-swiper .item {
        min-height: 400px;
        height: 60vh;
        max-height: 600px;
    }

    .slider-content,
    .slider-content-two {
        text-align: center;
        padding-block: 60px;
    }

    .slider-tagline,
    .slider-tagline-two {
        font-size: 14px;
    }

    .slider-content .section-title,
    .slider-content-two .section-title {
        font-size: 48px;
    }

    .slider-content p,
    .slider-content-two p {
        font-size: 15px;
        margin-inline: auto;
    }

    .slider-content .btn-primary,
    .slider-content-two .btn-primary {
        font-size: 14px;
        padding: 10px 22px;
    }

    .main-slider .owl-nav,
    .main-slider-two .owl-nav {
        padding: 0;
    }
}

/* =====================================
   MOBILE (≤ 767px)
===================================== */

@media (max-width: 767px) {

    .main-slider-swiper .item,
    .main-slider-two-swiper .item {
        min-height: 350px;
        height: 45vh;
        max-height: 500px;
    }

    .slider-tagline,
    .slider-tagline-two {
        font-size: 12px;
    }

    .slider-content .section-title,
    .slider-content-two .section-title {
        font-size: 34px;
    }

    .slider-content p,
    .slider-content-two p {
        font-size: 14px;
    }

    .slider-content .btn-primary,
    .slider-content-two .btn-primary {
        font-size: 13px;
        padding: 9px 18px;
    }

    .main-slider .owl-nav,
    .main-slider-two .owl-nav {
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        justify-content: center;
        gap: 12px;
    }

    .main-slider .owl-nav button,
    .main-slider-two .owl-nav button {
        height: 50px;
        width: 44px;
        line-height: 50px;
    }
}

/* =====================================
   SMALL PHONES (≤ 480px)
===================================== */

@media (max-width: 480px) {

    .main-slider-swiper .item,
    .main-slider-two-swiper .item {
        min-height: 300px;
        height: 40vh;
        max-height: 450px;
    }

    .slider-content,
    .slider-content-two {
        padding-block: 40px;
    }

    .slider-tagline,
    .slider-tagline-two {
        font-size: 11px;
    }

    .slider-content .section-title,
    .slider-content-two .section-title {
        font-size: 24px;
    }

    .slider-content p,
    .slider-content-two p {
        font-size: 13px;
    }

    .slider-content .btn-primary,
    .slider-content-two .btn-primary {
        font-size: 12px;
        padding: 8px 16px;
    }

    .main-slider .owl-nav,
    .main-slider-two .owl-nav {
        display: none;
    }
}

/* About Section Responsive Styles */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image-inner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 161, 82, 0.15);
}

.about-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-inner:hover img {
    transform: scale(1.05);
}

.about-inner {
    padding-left: 20px;
}

.section-title-box {
    margin-bottom: 40px;
}

.section-tagline {
    font-size: 16px;
    color: #00A152;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #00A152;
}

.section-title-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.about-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.about-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 161, 82, 0.15);
    transform: translateY(-5px);
    border-left-color: #00A152;
}

.about-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #00A152;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-title i {
    color: #00A152;
    font-size: 18px;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .about-inner {
        padding-left: 40px;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .about-inner {
        padding-left: 15px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
    }

    .about-inner {
        padding-left: 0;
        margin-top: 30px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-title-box {
        margin-bottom: 30px;
    }

    .about-card {
        padding: 20px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
    .about-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .section-tagline {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .section-title-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-image {
        margin-bottom: 25px;
    }

    .about-inner {
        margin-top: 0;
    }

    .about-card {
        padding: 18px;
        margin-bottom: 15px;
    }

    .about-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-text {
        font-size: 14px;
    }
}

/* Mobile Landscape (480px to 575px) */
@media (max-width: 575px) {
    .about-section {
        padding: 35px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-tagline {
        font-size: 13px;
    }

    .section-title-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-title-box {
        margin-bottom: 25px;
    }

    .about-card {
        padding: 15px;
    }

    .about-title {
        font-size: 17px;
        gap: 8px;
    }

    .about-title i {
        font-size: 16px;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Mobile Portrait (375px to 479px) */
@media (max-width: 479px) {
    .about-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .section-tagline {
        font-size: 12px;
    }

    .section-title-box p {
        font-size: 13px;
    }

    .about-card {
        padding: 12px;
    }

    .about-title {
        font-size: 16px;
        flex-wrap: wrap;
    }
}

/* Extra Small Devices (320px to 374px) */
@media (max-width: 374px) {
    .about-section {
        padding: 25px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-title-box p {
        font-size: 12px;
    }

    .about-card {
        padding: 10px;
        margin-bottom: 12px;
    }

    .about-title {
        font-size: 15px;
    }

    .about-text {
        font-size: 12px;
    }
}

/* Responsive Column Adjustments */
@media (max-width: 991px) {
    .row.justify-content-between {
        justify-content: center !important;
    }
}

.service-section{
    padding-top: 120px;
    background-image: url("../image/bg/service-bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--thm-dark-black);
}

@media(max-width: 991px){
    .service-section{
        padding-top: 80px;
    }
}

@media(max-width: 575px){
    .service-section{
        padding-top: 50px;
    }
}

.service-section .section-title-box{
    margin-bottom: 40px;
    margin-top: 13px;
}

@media(max-width: 575px){
    .service-section .section-title-box{
        margin-bottom: 25px;
    }
}

.service-section h2{
    margin-bottom: 32px;
    letter-spacing: -0.4px;
}

@media(max-width: 575px){
    .service-section h2{
        font-size: 26px;
        margin-bottom: 20px;
    }
}

.service-section .section-text p{
    color: var(--thm-secondary);
    margin-bottom: 110px;
}

@media(max-width: 575px){
    .service-section .section-text p{
        font-size: 14px;
        margin-bottom: 40px;
    }
}

/* =====================================================
   SERVICE ARROW IMAGE
===================================================== */
.service-arrow-image{
    position: relative;
}

@media (max-width: 1199px){
    .service-arrow-image{
        display: none;
    }
}

.service-arrow-image img{
    position: absolute;
    bottom: 250px;
    right: -60px;
    animation: UpDown 2s linear infinite;
}

/* =====================================================
   SERVICE CARD (LEFT)
===================================================== */
.service-card{
    background-image: url("../image/bg/service-3.jpg");
    position: relative;
    z-index: 1;
    background-position: bottom center;
    padding: 60px;
    margin-bottom: -60px;
}

@media(max-width: 1199px){
    .service-card{
        padding: 40px;
        margin-top: -30px;
    }
}

@media(max-width: 575px){
    .service-card{
        padding: 20px;
        margin-bottom: 0;
    }
}

.service-card li{
    font-size: 18px;
}

@media(max-width: 575px){
    .service-card li{
        font-size: 15px;
    }
}

.service-card li + li{
    border-top: 1px solid var(--thm-border);
}

.service-card li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 18px;
    color: var(--thm-gray);
}

@media(max-width: 575px){
    .service-card li a{
        padding: 12px 15px;
        font-size: 15px;
    }
}

.service-card li a:hover{
    background-color: var(--thm-light-bg);
    color: var(--thm-primary);
}

/* =====================================================
   SERVICE VIDEO BUTTON
===================================================== */
.service-card-video{
    padding: 20px;
    background-color: var(--thm-white);
    display: inline-block;
    position: absolute;
    right: 100%;
    top: 0;
}

@media (max-width: 1199px){
    .service-card-video{
        display: none;
    }
}

/* =====================================================
   SERVICE BUTTON
===================================================== */
.service-button{
    text-align: right;
    margin-top: 20px;
}

@media(max-width: 575px){
    .service-button{
        text-align: left;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* =====================================================
   SERVICE ONE SECTION
===================================================== */
.service-one-section{
    padding: 120px 0;
}

@media(max-width: 1199px){
    .service-one-section{
        padding: 70px 0;
    }
}

@media(max-width: 575px){
    .service-one-section{
        padding: 50px 0;
    }
}

.service-one-card{
    padding: 40px;
    border: 1px solid var(--thm-border);
    min-height: 310px;
}

@media(max-width: 575px){
    .service-one-card{
        padding: 25px;
        min-height: auto;
    }
}

.service-one-icon > i{
    font-size: 60px;
    color: var(--thm-primary);
}

@media(max-width: 575px){
    .service-one-icon > i{
        font-size: 40px;
    }
}

.service-one-card-content > h3 > a{
    font-size: 23px;
    color: var(--thm-black);
}

@media(max-width: 575px){
    .service-one-card-content > h3 > a{
        font-size: 18px;
    }
}

/* =====================================================
   SERVICE TWO SECTION
===================================================== */
.service-two-section{
    position: relative;
    padding: 120px 0;
}

@media(max-width: 1199px){
    .service-two-section{
        padding: 70px 0;
    }
}

@media(max-width: 575px){
    .service-two-section{
        padding: 50px 0;
    }
}

.service-two-card{
    margin-bottom: 30px;
}

.service-two-card-content{
    padding: 30px 50px 15px;
    margin: -35px 20px 0;
    background-color: var(--thm-white);
    text-align: center;
}

@media(max-width: 575px){
    .service-two-card-content{
        padding: 20px;
        margin: -25px 10px 0;
    }
}

.service-two-card-content h4{
    font-size: 22px;
}

@media(max-width: 575px){
    .service-two-card-content h4{
        font-size: 18px;
    }
}

.service-two-card-content p{
    font-size: 15px;
    line-height: 1.5;
}

@media(max-width: 575px){
    .service-two-card-content p{
        font-size: 14px;
    }
}

/* =====================================================
   SERVICE LINK BOX
===================================================== */
.service-link-box{
    background-image: url("../image/bg/service-link-1.png");
    background-color: var(--thm-black);
    padding: 49px 50px;
}

@media(max-width: 1199px){
    .service-link-box{
        padding: 40px;
    }
}

@media(max-width: 575px){
    .service-link-box{
        padding: 30px;
    }
}

.service-link-box h4{
    font-size: 30px;
    color: var(--thm-white);
}

@media(max-width: 575px){
    .service-link-box h4{
        font-size: 22px;
    }
}

.service-link-box li{
    font-size: 18px;
}

@media(max-width: 575px){
    .service-link-box li{
        font-size: 15px;
    }
}

/* =====================================================
   SERVICE DETAILS SECTION
===================================================== */
.service-details-section{
    padding: 120px 0;
}

@media(max-width: 1199px){
    .service-details-section{
        padding: 70px 0;
    }
}

@media(max-width: 575px){
    .service-details-section{
        padding: 50px 0;
    }
}

.service-details-content-box h3{
    font-size: 34px;
}

@media(max-width: 575px){
    .service-details-content-box h3{
        font-size: 26px;
    }
}

.service-details-box{
    padding: 60px;
}

@media(max-width: 575px){
    .service-details-box{
        padding: 30px;
    }
}

/* =====================================================
   SERVICE THREE SECTION
===================================================== */
.service-three-section{
    padding: 120px 0;
}

@media(max-width: 1199px){
    .service-three-section{
        padding: 70px 0;
    }
}

@media(max-width: 575px){
    .service-three-section{
        padding: 50px 0;
    }
}

.service-three-card{
    padding: 45px;
    border: 1px solid var(--thm-border);
    min-height: 188px;
}

@media(max-width: 575px){
    .service-three-card{
        padding: 25px;
        min-height: auto;
    }
}

.service-three-icon > i{
    font-size: 60px;
    color: var(--thm-primary);
}

@media(max-width: 575px){
    .service-three-icon > i{
        font-size: 40px;
    }
}

.service-three-card-content > h3 > a{
    font-size: 23px;
}

@media(max-width: 575px){
    .service-three-card-content > h3 > a{
        font-size: 18px;
    }
}

/* =========================
   Funfact Section Base
========================= */
.funfact-section{
    padding-top: 120px;
    padding-bottom: 111px;
    background-color: var(--thm-primary);
    background-image: url(../image/bg/funfact-bg-1.png);
    background-position: top center;
    background-repeat: no-repeat;
}

/* =========================
   Section Padding Responsive
========================= */
@media (max-width: 991px){
    .funfact-section{
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 575px){
    .funfact-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* =========================
   Counter Item Spacing
========================= */
@media (max-width: 991px){
    .funfact-counter-item{
        margin-bottom: 30px;
    }
}

@media (max-width: 575px){
    .funfact-counter-item{
        margin-bottom: 20px;
    }
}

/* =========================
   Counter Box
========================= */
.funfact-counter-box{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

@media (max-width: 575px){
    .funfact-counter-box{
        align-items: flex-start;
    }
}

/* =========================
   Icon Box
========================= */
.funfact-counter-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 102px;
    height: 102px;
    background-color: #fff;
    color: var(--thm-primary);
    font-size: 54px;
    flex-shrink: 0;
    margin-right: 25px;
}

.funfact-counter-icon:after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 100%;
    border-style: solid;
    border-width: 10px 15px 0 0;
    border-color: #fff transparent transparent transparent;
}

/* Tablet scaling */
@media (max-width: 991px){
    .funfact-counter-icon{
        width: 85px;
        height: 85px;
        font-size: 44px;
        margin-right: 20px;
    }
}

/* Mobile scaling */
@media (max-width: 575px){
    .funfact-counter-icon{
        width: 65px;
        height: 65px;
        font-size: 32px;
        margin-right: 15px;
    }

    .funfact-counter-icon:after{
        border-width: 8px 12px 0 0;
    }
}

/* =========================
   Counter Number
========================= */
.funfact-counter-number{
    font-size: 60px;
    color: var(--thm-white);
    display: flex;
    align-items: center;
}

.funfact-counter-number h3{
    font-size: 60px;
    color: var(--thm-white);
    font-weight: 500;
    display: contents;
}

/* Tablet scaling */
@media (max-width: 991px){
    .funfact-counter-number,
    .funfact-counter-number h3{
        font-size: 48px;
    }
}

/* Mobile scaling */
@media (max-width: 575px){
    .funfact-counter-number,
    .funfact-counter-number h3{
        font-size: 36px;
        line-height: 1.1;
    }
}

/* =========================
   Counter Text
========================= */
.funfact-text{
    font-size: 18px;
    color: var(--thm-white);
    display: inline-block;
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px){
    .funfact-text{
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 575px){
    .funfact-text{
        font-size: 14px;
        line-height: 1.4;
    }
}

/* =========================
   Extra Small Devices
========================= */
@media (max-width: 360px){
    .funfact-counter-icon{
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .funfact-counter-number,
    .funfact-counter-number h3{
        font-size: 30px;
    }

    .funfact-text{
        font-size: 13px;
    }
}
/* =========================
   Mayor Section Base
========================= */
.mayor-section{
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* =========================
   Large Tablets / Small Laptops
========================= */
@media (max-width: 1199px){
    .mayor-section{
        padding-top: 70px;
        padding-bottom: 0;
    }
}

/* =========================
   Tablets
========================= */
@media (max-width: 991px){
    .mayor-section{
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* =========================
   Small Phones
========================= */
@media (max-width: 575px){
    .mayor-section{
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* =========================
   Mayor Text Box
========================= */
.mayor-box{
    padding-right: 90px;
    padding-top: 14px;
}

@media (max-width: 991px){
    .mayor-box{
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 575px){
    .mayor-box{
        display: block;
    }
}

/* =========================
   Section Title
========================= */
.mayor-box .section-title-box{
    margin-bottom: 30px;
}

@media (max-width: 575px){
    .mayor-box .section-title-box{
        margin-bottom: 20px;
    }
}

.mayor-box p{
    margin-bottom: 0;
}

/* =========================
   Icon Boxes
========================= */
.mayor-icon-box{
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

@media (max-width: 575px){
    .mayor-icon-box{
        margin-bottom: 15px;
    }
}

.mayor-icon{
    margin-right: 20px;
    position: relative;
}

/* Icon background */
.mayor-icon:before{
    position: absolute;
    content: '';
    height: 44px;
    width: 44px;
    left: 0;
    top: 0;
    background-color: var(--thm-light-bg);
}

@media (max-width: 575px){
    .mayor-icon:before{
        height: 34px;
        width: 34px;
    }
}

/* Icon */
.mayor-icon i{
    font-size: 64px;
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
}

@media (max-width: 575px){
    .mayor-icon i{
        font-size: 44px;
    }
}

/* =========================
   Icon Title
========================= */
.mayor-icon-title{
    margin: 0;
    font-weight: 700;
    line-height: 1.7;
    font-size: 20px;
}

@media (max-width: 575px){
    .mayor-icon-title{
        font-size: 16px;
        line-height: 1.5;
    }
}

.mayor-icon-title a{
    color: inherit;
}

/* =========================
   Mayor Image Area
========================= */
.mayor-img{
    position: relative;
}

/* Background strip */
.mayor-img:before{
    content: '';
    position: absolute;
    top: -120px;
    bottom: -120px;
    width: 40000px;
    left: 120px;
    background-color: var(--thm-light-bg);
}

@media (max-width: 991px){
    .mayor-img:before{
        position: relative;
        width: auto;
        left: 0;
        top: 0;
        bottom: 0;
    }
}

/* Floating image */
.mayor-img .floated-image-one{
    position: absolute;
    color: var(--thm-white);
    left: -160px;
    bottom: -120px;
    transition: all 500ms ease;
    animation: fadeInRight 3s ease-in-out;
}

@media (max-width: 991px){
    .mayor-img .floated-image-one{
        display: none;
    }
}

/* Main Image */
.mayor-img img{
    position: relative;
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px){
    .mayor-img img{
        margin-right: 30px;
    }
}

@media (max-width: 575px){
    .mayor-img img{
        margin-right: 0;
    }
}

/* =========================
   Mayor Name Badge
========================= */
.mayor-name{
    position: absolute;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    top: 40px;
    background-color: #fff;
    color: var(--thm-black);
    writing-mode: vertical-rl;
    transform: translateX(-50%) rotate(180deg);
    padding: 60px 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.17);
}

@media (max-width: 991px){
    .mayor-name{
        padding: 50px 18px;
        font-size: 14px;
        left: 0;
        transform: rotate(180deg);
    }

    .mayor-img{
        margin-left: 30px;
    }
}

@media (max-width: 575px){
    .mayor-name{
        position: relative;
        writing-mode: horizontal-tb;
        transform: none;
        margin-top: 15px;
        padding: 12px 20px;
        font-size: 13px;
        letter-spacing: 1px;
        box-shadow: none;
    }

    .mayor-img{
        margin-left: 0;
        text-align: center;
    }
}

/* =========================
   Extra Small Devices
========================= */
@media (max-width: 360px){
    .mayor-icon i{
        font-size: 38px;
    }

    .mayor-icon-title{
        font-size: 15px;
    }

    .mayor-name{
        font-size: 12px;
        padding: 10px 16px;
    }
}

/***********************
* Page banner
***********************/
.page-banner{
    background-repeat: no-repeat;
    background-color: var(--thm-black);
    background-size: cover;
    padding-top: 122px;
    padding-bottom: 122px;
}
.page-breadcrumbs ul {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.page-breadcrumbs li{
    color: var(--thm-white);
    font-size: 14px;
}
.page-breadcrumbs li + li:before{
    content: '/';
    position: relative;
    margin: 10px;
}
.page-breadcrumbs a{
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 500;
}
.page-banner-title h3{
    font-size: 60px;
    text-align: center;
    margin-bottom: 0px;
    color: var(--thm-white);
}
@media(max-width: 1199px){
    .page-banner-title h3{
        font-size: 50px;
    }
}
@media(max-width: 991px){
    .page-banner-title h3{
        font-size: 30px;
    }
}
/***********************
* Portfolio
***********************/
.portfolio-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    .portfolio-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .portfolio-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    width: 300px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 2560px) {
    .portfolio-card {
        width: 500px;
        height: 400px;
    }
}

@media (min-width: 1600px) and (max-width: 2559px) {
    .portfolio-card {
        width: 380px;
        height: 320px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-card {
        width: 340px;
        height: 280px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .portfolio-card {
        width: 280px;
        height: 240px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-card {
        width: 260px;
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-card {
        width: 320px;
        height: 260px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .portfolio-card {
        width: 280px;
        height: 230px;
    }
}

@media (max-width: 575px) {
    .portfolio-card {
        width: 100%;
        max-width: 350px;
        height: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 479px) {
    .portfolio-card {
        height: 260px;
    }
}

@media (max-width: 374px) {
    .portfolio-card {
        height: 240px;
    }
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

/* Portfolio Card Meta */
.portfolio-card-meta {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 20px;
    right: 20px;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 500ms;
}

.portfolio-card:hover .portfolio-card-meta {
    transform: scale(1.0);
}

@media (max-width: 575px) {
    .portfolio-card-meta {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }
}

.portfolio-card-text {
    display: inline-block;
    padding: 8px 25px;
    background-color: #00A152;
    border-radius: 4px;
}

.portfolio-card-text a {
    font-size: 14px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .portfolio-card-text {
        padding: 6px 20px;
    }

    .portfolio-card-text a {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .portfolio-card-text {
        padding: 5px 15px;
    }

    .portfolio-card-text a {
        font-size: 11px;
    }
}

.portfolio-card-title {
    color: #00A152;
    padding: 12px 25px;
    font-size: 20px;
    background-color: #fff;
    font-weight: 700;
    margin-top: 5px;
    border-radius: 4px;
}

.portfolio-card-title a {
    color: inherit;
    text-decoration: none;
}

.portfolio-card-title a:hover {
    color: #333;
}

@media (max-width: 1199px) {
    .portfolio-card-title {
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-card-title {
        font-size: 16px;
        padding: 8px 15px;
    }
}

@media (max-width: 479px) {
    .portfolio-card-title {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Portfolio Content */
.portfolio-content {
    padding: 0px 100px;
}

@media (max-width: 1399px) {
    .portfolio-content {
        padding: 0px 50px;
    }
}

@media (max-width: 1199px) {
    .portfolio-content {
        padding: 0px 15px;
    }
}

/* Section Title Customization */
.portfolio-section .section-title-box {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .portfolio-section .section-title-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .portfolio-section .section-title-box {
        margin-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .portfolio-section .section-title-box {
        margin-bottom: 30px;
    }
}

.portfolio-section .section-tagline {
    font-size: 16px;
    color: #00A152;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .portfolio-section .section-tagline {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .portfolio-section .section-tagline {
        font-size: 12px;
    }
}

.portfolio-section .section-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 700;
    color: #333;
}

@media (max-width: 1199px) {
    .portfolio-section .section-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .portfolio-section .section-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .portfolio-section .section-title {
        font-size: 30px;
    }

    .portfolio-section .section-title br {
        display: none;
    }
}

@media (max-width: 575px) {
    .portfolio-section .section-title {
        font-size: 26px;
    }
}

@media (max-width: 479px) {
    .portfolio-section .section-title {
        font-size: 24px;
    }
}

@media (max-width: 374px) {
    .portfolio-section .section-title {
        font-size: 22px;
    }
}

/* See More Button */
.see-more-btn {
    background: #00A152;
    color: #fff;
    border: 2px solid #00A152;
    padding: 15px 50px;
    /*border-radius: 50px;*/
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

.see-more-btn:hover {
    background: transparent;
    color: #00A152;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(10, 88, 28, 0.2);
}

@media (max-width: 991px) {
    .see-more-btn {
        padding: 13px 40px;
        font-size: 15px;
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .see-more-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .see-more-btn {
        padding: 11px 30px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 479px) {
    .see-more-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}

@media (max-width: 374px) {
    .see-more-btn {
        padding: 9px 20px;
        font-size: 11px;
    }
}

/* Owl Carousel Navigation */
.portfolio-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.portfolio-carousel .owl-nav button.owl-prev,
.portfolio-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: #00A152 !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0;
    box-shadow: 0 5px 15px rgba(10, 88, 28, 0.3);
    border: none;
    outline: none;
}

.portfolio-carousel:hover .owl-nav button {
    opacity: 1;
}

.portfolio-carousel .owl-nav button:hover {
    background: #00A152 !important;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(10, 88, 28, 0.4);
}

.portfolio-carousel .owl-nav button span {
    line-height: 1;
    font-size: 20px;
}

@media (max-width: 1399px) {
    .portfolio-carousel .owl-nav {
        left: -50px;
        right: -50px;
    }
}

@media (max-width: 1199px) {
    .portfolio-carousel .owl-nav {
        left: -40px;
        right: -40px;
    }

    .portfolio-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {
    .portfolio-carousel .owl-nav {
        left: -30px;
        right: -30px;
    }

    .portfolio-carousel .owl-nav button {
        width: 42px;
        height: 42px;
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .portfolio-carousel .owl-nav {
        left: -20px;
        right: -20px;
    }

    .portfolio-carousel .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 14px !important;
    }
}

@media (max-width: 575px) {
    .portfolio-carousel .owl-nav button {
        display: none !important;
    }
}

/* Owl Carousel Dots */
.portfolio-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .portfolio-carousel .owl-dots {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .portfolio-carousel .owl-dots {
        margin-top: 25px;
    }
}

.portfolio-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.portfolio-carousel .owl-dot.active {
    background: #00A152 !important;
    width: 30px;
    border-radius: 10px;
}

.portfolio-carousel .owl-dot:hover {
    background: #00A152 !important;
}

@media (max-width: 479px) {
    .portfolio-carousel .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .portfolio-carousel .owl-dot.active {
        width: 25px;
    }
}

/* Owl Stage Outer */
.portfolio-carousel .owl-stage-outer {
    padding: 10px 0 20px;
    margin: -10px 0 -20px;
}
/***********************
* Testimonial
***********************/
.testimonial-section {
    background-image: url("../image/bg/testimonial-bg-1.jpg");
    background-color: #00A152;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 1199px) {
    .testimonial-section {
        padding-top: 100px;
        padding-bottom: 250px;
    }
}

@media (max-width: 991px) {
    .testimonial-section {
        padding-top: 80px;
        padding-bottom: 200px;
    }
}

@media (max-width: 767px) {
    .testimonial-section {
        padding-top: 60px;
        padding-bottom: 150px;
    }
}

@media (max-width: 575px) {
    .testimonial-section {
        padding-top: 50px;
        padding-bottom: 120px;
    }
}

.testimonial-section .container {
    position: relative;
}

/* Testimonial Name */
.testimonial-name {
    position: absolute;
    left: -20px;
    bottom: 31%;
    letter-spacing: 2px;
    color: #00A152;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 991px) {
    .testimonial-name {
        display: none;
    }
}

/* Testimonial Slider */
.testimonial-slider {
    margin-top: -50px;
}

@media (max-width: 767px) {
    .testimonial-slider {
        margin-top: -30px;
    }
}

/* Testimonial Box One */
.testimonial-section .testimonial-box-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.testimonial-box-one {
    padding-top: 130px;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    .testimonial-section .testimonial-box-one,
    .testimonial-box-one {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-box-one,
    .testimonial-box-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .testimonial-section .testimonial-box-one,
    .testimonial-box-one {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .testimonial-section .testimonial-box-one,
    .testimonial-box-one {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Testimonial Reviews */
.testimonial-reviews .testimonial-content {
    text-align: center;
    margin: 0px auto;
    max-width: 900px;
}

@media (max-width: 991px) {
    .testimonial-reviews .testimonial-content {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .testimonial-reviews .testimonial-content {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Testimonial Ratings */
.testimonial-reviews .testimonial-ratings {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #ffd700;
    background-color: rgba(0, 0, 0, 0.8);
    display: inline-block;
    padding: 10px 40px;
    line-height: 1;
    border-radius: 4px;
}

.testimonial-reviews .testimonial-ratings:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 22px 0 22px;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

@media (max-width: 767px) {
    .testimonial-reviews .testimonial-ratings {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 8px 30px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonial-reviews .testimonial-ratings {
        margin-top: 25px;
        margin-bottom: 25px;
        padding: 6px 25px;
        font-size: 12px;
    }
}

/* Testimonial Text */
.testimonial-reviews .testimonial-text {
    color: #fff;
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 42px;
}

@media (max-width: 1199px) {
    .testimonial-reviews .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .testimonial-reviews .testimonial-text {
        font-size: 18px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .testimonial-reviews .testimonial-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-reviews .testimonial-text {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

/* Testimonial Slider Content Box */
.testimonial-slider-content-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .testimonial-slider-content-box {
        flex-direction: column;
    }
}

/* Testimonial Thumb */
.testimonial-thumb {
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 767px) {
    .testimonial-thumb {
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .testimonial-thumb {
        max-width: 180px;
    }
}

.testimonial-thumb-image {
    display: inline-block;
}

.testimonial-thumb-card {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .testimonial-thumb-card {
        margin-bottom: 20px;
    }
}

.testimonial-thumb-card span {
    color: #00A152;
    font-size: 14px;
}

@media (max-width: 575px) {
    .testimonial-thumb-card span {
        font-size: 12px;
    }
}

.testimonial-thumb-card h5 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;
}

@media (max-width: 767px) {
    .testimonial-thumb-card h5 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .testimonial-thumb-card h5 {
        font-size: 16px;
    }
}

/* Testimonial Reviews Images */
.testimonial-reviews img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid #fff;
    line-height: 100px;
    padding: 5px 5px;
    position: relative;
    transition: all 0.3s ease;
    background-color: #fff;
}

.testimonial-reviews img:hover {
    background-color: #00A152;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .testimonial-reviews img {
        height: 80px;
        width: 80px;
    }
}

@media (max-width: 575px) {
    .testimonial-reviews img {
        height: 70px;
        width: 70px;
    }
}

/* Swiper Pagination */
.testimonial-reviews .swiper-pagination {
    display: inline-flex;
    flex-direction: column;
    width: auto;
    left: auto;
    bottom: auto;
    top: 68%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .testimonial-reviews .swiper-pagination {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .testimonial-reviews .swiper-pagination {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
}

.testimonial-reviews .swiper-pagination-bullet {
    margin: 0;
    width: 13px;
    height: 13px;
    opacity: 0.3;
    background-color: #fff;
}

.testimonial-reviews .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #00A152;
}

.testimonial-reviews .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .testimonial-reviews .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .testimonial-reviews .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin-top: 0;
        margin-left: 8px;
    }
}

/* Testimonial Thumb Wrapper */
.testimonial-thumb .swiper-wrapper {
    justify-content: center;
}

.testimonial-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transform: scale(0.8);
    border-radius: 50%;
    border: 5px solid #fff;
    transition: all 500ms ease;
    background-color: #333;
}

@media (max-width: 767px) {
    .testimonial-thumb img {
        width: 70px;
        height: 70px;
        border: 4px solid #fff;
    }
}

@media (max-width: 575px) {
    .testimonial-thumb img {
        width: 60px;
        height: 60px;
        border: 3px solid #fff;
    }
}

.testimonial-thumb .swiper-slide-thumb-active img {
    overflow: hidden;
    transform: scale(1);
    border-color: #00A152;
}

.testimonial-thumb i {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 28px;
    width: 28px;
    color: #fff;
    background-color: #00A152;
    text-align: center;
    border-radius: 50%;
    line-height: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
}

@media (max-width: 575px) {
    .testimonial-thumb i {
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 12px;
    }
}

.testimonial-thumb .swiper-slide-thumb-active i {
    opacity: 1;
    visibility: visible;
}

/* Testimonial Two Section */
.testimonial-two-inner {
    background-image: url("../image/bg/testimonial-two-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (min-width: 1200px) {
    .testimonial-two-inner {
        padding-top: 100px;
        padding-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .testimonial-two-inner {
        padding: 70px 0px;
    }
}

@media (max-width: 991px) {
    .testimonial-two-inner {
        padding: 60px 0px;
    }
}

@media (max-width: 767px) {
    .testimonial-two-inner {
        padding: 50px 0px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-inner {
        padding: 40px 0px;
    }
}

/* Testimonial Author Thumb */
.testimonial-author-thumb {
    width: 270px;
}

@media (max-width: 991px) {
    .testimonial-author-thumb {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
    }
}

.testimonial-author-review {
    position: relative;
    top: -40px;
}

@media (max-width: 991px) {
    .testimonial-author-review {
        top: 0;
    }
}

@media (max-width: 575px) {
    .testimonial-author-review {
        left: 0;
    }
}

/* Testimonial Two Card */
.testimonial-two-card {
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    padding: 20px 20px;
    position: relative;
    z-index: 1;
    margin: 30px 40px 50px 50px;
}

@media (max-width: 991px) {
    .testimonial-two-card {
        left: inherit;
        margin-top: 80px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card {
        margin-top: 60px;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
    }
}

.testimonial-two-card:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50px;
    width: 100px;
    height: 50px;
    transform: translateY(-40px) rotate(22deg) skewX(40deg);
    background-color: #fff;
    z-index: -1;
}

@media (max-width: 575px) {
    .testimonial-two-card:before {
        left: 30px;
        width: 80px;
        height: 40px;
    }
}

/* Testimonial Two Card Content */
.testimonial-two-card-content {
    border: 1px solid #e0e0e0;
    padding: 30px 20px;
    position: relative;
}

@media (max-width: 767px) {
    .testimonial-two-card-content {
        padding: 25px 15px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card-content {
        padding: 20px 10px;
    }
}

/* Testimonial Two Card Text */
.testimonial-two-card-text {
    margin-left: 45px;
}

@media (max-width: 767px) {
    .testimonial-two-card-text {
        margin-left: 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card-text {
        margin-left: 20px;
    }
}

.testimonial-two-card-text p {
    line-height: 30px;
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 20px;
}

@media (max-width: 991px) {
    .testimonial-two-card-text p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-two-card-text p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Testimonial Two Card Outer */
.testimonial-two-card-outer {
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .testimonial-two-card-outer {
        display: block;
    }
}

.testimonial-two-card-outer-title h5 {
    margin-left: 50px;
    transition: all 500ms ease;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 800;
}

.testimonial-two-card-outer-title h5:hover {
    color: #00A152;
}

@media (max-width: 767px) {
    .testimonial-two-card-outer-title h5 {
        margin-left: 35px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card-outer-title h5 {
        margin-left: 50px;
        font-size: 15px;
    }
}

.testimonial-two-card-outer-title span {
    color: #00A152;
    margin-left: 30px;
    font-size: 14px;
    position: relative;
}

@media (max-width: 767px) {
    .testimonial-two-card-outer-title span {
        margin-left: 20px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card-outer-title span {
        margin-left: 50px;
        font-size: 12px;
    }
}

/* Testimonial Two Card Outer Icon */
.testimonial-two-card-outer-icon {
    position: absolute;
    top: -45px;
    left: -50px;
    height: 100px;
    width: 100px;
    line-height: 115px;
    text-align: center;
    border-radius: 50%;
    background-color: #00A152;
}

@media (max-width: 767px) {
    .testimonial-two-card-outer-icon {
        height: 80px;
        width: 80px;
        line-height: 95px;
        top: -35px;
        left: -40px;
    }
}

@media (max-width: 575px) {
    .testimonial-two-card-outer-icon {
        display: none;
    }
}

.testimonial-two-card-outer-icon i {
    color: #fff;
    font-size: 50px;
}

@media (max-width: 767px) {
    .testimonial-two-card-outer-icon i {
        font-size: 40px;
    }
}

/* Testimonial Two Image */
.testimonial-two-img {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

@media (max-width: 991px) {
    .testimonial-two-img {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
}

.testimonial-two-img img {
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 575px) {
    .testimonial-two-img img {
        display: flex;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }
}

/* Testimonial Two Slider */
.testimonial-two-slider {
    text-align: left;
}

.testimonial-two-thumb .swiper-slide-thumb-active i {
    opacity: 1;
    visibility: visible;
}

.testimonial-two-thumb i {
    position: absolute;
    bottom: 30px;
    right: 50%;
    height: 28px;
    width: 28px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    transform: translate(-50%);
    background-color: #00A152;
}

@media (max-width: 575px) {
    .testimonial-two-thumb i {
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 12px;
    }
}

.testimonial-two-card-img {
    position: absolute;
}

/* Author Thumb Carousel */
.author-thumb-carousel .owl-stage-outer {
    overflow: visible;
}

.author-thumb-image {
    width: 90px;
    height: 90px;
    display: inline-block;
    border: 5px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 500ms ease;
}

@media (max-width: 767px) {
    .author-thumb-image {
        width: 75px;
        height: 75px;
        border: 4px solid #fff;
    }
}

@media (max-width: 575px) {
    .author-thumb-image {
        width: 65px;
        height: 65px;
        border: 3px solid #fff;
    }
}

.author-thumb-carousel .swiper-slide-thumb-active .author-thumb-image {
    transform: scale(1);
    border: 5px solid #00A152;
}

@media (max-width: 767px) {
    .author-thumb-carousel .swiper-slide-thumb-active .author-thumb-image {
        border: 4px solid #00A152;
    }
}

@media (max-width: 575px) {
    .author-thumb-carousel .swiper-slide-thumb-active .author-thumb-image {
        border: 3px solid #00A152;
    }
}

.author-thumb-carousel .owl-nav button.owl-prev,
.author-thumb-carousel .owl-nav button.owl-next {
    position: absolute;
    left: 0;
    color: #fff;
    height: 62px;
    width: 62px;
    background-color: rgba(10, 88, 28, 0.5);
    border-radius: 50%;
    top: 0;
    left: -90px;
    transition: all 0.3s ease;
}

.author-thumb-carousel .owl-nav button.owl-prev:hover,
.author-thumb-carousel .owl-nav button.owl-next:hover {
    background-color: #00A152;
}

.author-thumb-carousel .owl-nav button.owl-next {
    left: auto;
    right: -62px;
}

@media (max-width: 991px) {
    .author-thumb-carousel .owl-nav button.owl-prev {
        left: -50px;
        width: 50px;
        height: 50px;
    }

    .author-thumb-carousel .owl-nav button.owl-next {
        right: -50px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .author-thumb-carousel .owl-nav button.owl-prev,
    .author-thumb-carousel .owl-nav button.owl-next {
        display: none;
    }
}

.author-thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/***********************
* Causes
***********************/
.causes-section{
    padding-top: 120px;
    padding-bottom: 120px;
}
@media(max-width: 1199px){
    .causes-section{
        padding: 70px 0px;
    }
}
@media(max-width: 1399px){
    .causes-card-imgbox img{
        width: 100%;
    }
}
@media(max-width: 991px){
    .causes-card-imgbox img{
        width: 100%;
    }
}
.causes-section-two{
    padding-top: 90px;
    padding-bottom: 50px;
    background-color: var(--thm-light-bg);
}
.causes-content{
    padding: 0 40px 40px;
    background-color: var(--thm-white);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.causes-card-funding {
    position: relative;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin-top: -32px;
}
.causes-card-progressbar	{
    position: relative;
    margin-bottom: 10px;
    height: 6px;
    background-color: var(--thm-light-bg);
}
.causes-card-progressbar-inner {
    background-color: var(--thm-primary);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    transition: all 1000ms ease;
}
.causes-card-progressbar-text {
    position: absolute;
    right: 0;
    top: 0;
    height: 26px;
    width: 26px;
    background-color: var(--thm-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(50%,calc(-50% + 2px));
}
.causes-card-funding-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media(max-width: 575px){
    .causes-card-funding-list{
        flex-wrap: wrap;
    }
}
.causes-card-funding-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.causes-card-funding-amount {
    color: var(--thm-black);
    font-weight: 700;
}
.causes-card-funding-text {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 600;
}
.causes-content h4{
    margin-top: 25px;
    margin-bottom: 13px;
}
.causes-content h4 > a{
    color: inherit;
    transition: all 500ms ease;
}
.causes-content h4>a:hover{
    color: var(--thm-primary);
}
.causes-content p{
    margin-bottom: 10px;
}
.causes-content .btn-primary{
    padding: 11px 27px;
    font-size: 13px;
    font-weight: 600;
}
.causes-details-section{
    padding-top: 120px;
    padding-bottom: 120px;
}
@media(max-width: 1199px){
    .causes-details-section{
        padding: 70px 0px;
    }
}
.causes-details-content-box{
    margin-bottom: 50px;
}
.causes-details-funding {
    position: relative;
    padding: 20px 20px 12px 20px;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin-top: -32px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
}
.causes-details-progressbar	{
    position: relative;
    margin-bottom: 10px;
    height: 6px;
    background-color: var(--thm-light-bg);
}
.causes-details-progressbar-inner {
    background-color: var(--thm-primary);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    transition: all 1000ms ease;
}
.causes-details-progressbar-text {
    position: absolute;
    right: 0;
    top: 0;
    height: 26px;
    width: 26px;
    background-color: var(--thm-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(50%,calc(-50% + 2px));
}
.causes-details-funding-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.causes-details-funding-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.causes-details-funding-amount {
    color: var(--thm-black);
    font-weight: 700;
}
.causes-details-funding-text {
    margin-left: 5px;
}
.causes-details-imgbox{
    margin-bottom: 40px;
}
@media(max-width: 991px){
    .causes-details-img img{
        width: 100%;
    }
}
.causes-details-content-box h4{
    font-size: 34px;
}
.causes-details-summary-box{
    margin-bottom: 45px;
}
.causes-details-summary-box h3{
    font-size: 34px;
    margin-bottom: 20px;
}
.causes-details-text p{
    margin-top: 30px;
    margin-bottom: 53px;
}
.causes-details-button{
    display: inline-block;
}
.causes-details-button .btn-primary{
    padding: 18px 49px;
}
.causes-two-box > h3{
    font-size: 40px;
    margin-bottom: 0px;
}
.cause-two-box-button{
    display: flex;
    justify-content: center;
}
@media(max-width: 1399px){
    .cause-two-box-button{
        justify-content: left;
    }
}
@media(max-width: 991px){
    .cause-two-box-button{
        justify-content: left;
    }
}
/***********************
* News
***********************/
.blog-section{
    padding-top: 120px;
    padding-bottom: 120px;
}
@media(max-width: 1199px) {
    .blog-section{
        padding-top:70px;
        padding-bottom: 70px;
    }
}
.blog-section.blog-section-two {
    padding-top: 230px;
}
.blog-box h2{
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 170px;
}
.blog-card{
    background-color: var(--thm-light-bg);
    position: relative;
}
.blog-card-image{
    position: relative;
    margin: 0px 30px;
}
.blog-card-image img {
    margin-top: -121px;
}
@media(max-width: 991px){
    .blog-card-image img{
        width: 100%;
    }
}
.blog-card:hover .blog-card-image img{
    background-color: var(--thm-primary);
}
.blog-card-image a{
    position: absolute;
    inset: 0;
    top: -121px;
    background-color: rgba(var(--thm-primary-rgb), 0.5);
    transition: transform 500ms ease-out;
    transform: scale(1,0);
    transform-origin: bottom center;
}
.blog-card-date{
    position: absolute;
    top: -85px;
    right: 20px;
    padding: 3px 11px;
    background-color: var(--thm-primary);
    font-size: 12px;
    font-weight: 800;
}
.blog-card-date a{
    color: var(--thm-white);
}
.blog-card-date a:hover{
    color: var(--thm-white);
}
.blog-card-date a:after{
    position: absolute;
    content: '';
    bottom: -10px;
    right: 0;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--thm-primary);
}
.blog-card-content{
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    padding-bottom: 35px;
}
.blog-card-content h4{
    line-height: 36px;
}
.blog-card-content h4 > a{
    font-size: 24px;
    color:inherit;
    transition: all 500ms ease;
}
.blog-card-content h4 > a:hover{
    color: var(--thm-primary);
}
.blog-card-content p{
    font-size: 16px;
    margin-bottom: 0;
}
.blog-card-meta{
    display: inline-block;
    transform: translateY(-50%);
    background-color: var(--thm-white);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 3px 40px;
    margin: 0px 25px;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1199px) {
    .blog-card-meta {
        margin: 0;
        padding: 3px 25px;
    }
}
@media (max-width: 991px) {
    .blog-card-meta {
        display: inline-flex;
        padding: 0 40px;
    }
}
@media (max-width: 575px) {
    .blog-card-meta {
        padding: 0 15px;
    }
}
.blog-card-meta a>i{
    color: var(--thm-primary);
}
.blog-card-meta span{
    margin-left: 10px;
}
.blog-card-meta .author:before{
    content: "\f2bd";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 12px;
    color: var(--thm-primary);
}
.blog-card-meta span a{
    color: var(--thm-gray);
    display: inline-block;
}
.blog-card-meta span a:hover{
    color: var(--thm-primary);
}
.blog-card-meta .comment{
    color: var(--thm-primary);
    margin-left: 10px;
}
.blog-card-meta .comment:before{
    content: "\f086";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 12px;
}
.blog-card-image > a:before,
.blog-card-image > a:after{
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--thm-white);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.blog-card-image > a:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card-image a {
    transform: scale(1,1);
    transform-origin: top center;
}
/***********************
* News-details
***********************/
.news-details-section{
    padding-top: 120px;
    padding-bottom: 120px;
}
@media(max-width: 991px){
    .news-details-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.news-details-box-image {
    position: relative;
    padding: 0px 30px;
}
.news-details-box-image img{
    width: 100%;
}
.news-details-box-image:before{
    content: '';
    position:absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 110px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(var(--thm-light-bg-rgb),1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(var(--thm-light-bg-rgb),1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(var(--thm-light-bg-rgb),1) 0%, rgba(255,255,255,1) 100%);
}
.news-details-box-image-inner {
    position: relative;
}
.news-details-box-image-inner a{
    color: var(--thm-white);
}
.news-details-meta-box{
    padding-top: 30px;
    padding-bottom: 12px;
    line-height: 12px;
    margin-left: 5px;
}
@media (max-width: 1199px) {
    .news-details-meta-box {
        margin: 0
    }
}
@media (max-width: 991px) {
    .news-details-meta-box {
        display: inline-flex;
        padding: 10px 40px;
    }
}
.news-details-meta-box-inner{
    font-size: 14px;
}
.news-details-meta-box-inner .author:before{
    content: "\f2bd";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 12px;
    color: var(--thm-primary);
}
.news-details-meta-box-inner .comment{
    color: var(--thm-primary);
    margin-left: 3px;
}
.news-details-meta-box-inner .comment:before{
    content: "\f086";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 12px;
}
.news-details-meta-box-inner span a{
    color: var(--thm-gray);
    margin-left: 3px;
}
.news-details-meta-box-inner span a:hover{
    color: var(--thm-primary);
}
.news-details-content-box{
    border-bottom: 1px solid var(--thm-border);
}
.news-details-content-box h4{
    font-size: 34px;
    margin-bottom: 22px;
}
.news-details-content-box p+p{
    margin-bottom: 30px;
}
.news-details-box-date{
    position: absolute;
    top: 20px;
    right: -10px;
    padding: 10px 15px;
    background-color: var(--thm-primary);
    color: var(--thm-white);
    font-size: 12px;
    font-weight: 800;
}
.news-details-box-date:after{
    position: absolute;
    content: '';
    bottom: -10px;
    right: 0;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--thm-primary);
}
.news-details-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0px;
}
.news-details-list{
    display: flex;
    align-items: center;
}
@media(max-width: 767px){
    .news-details-list{
        margin-bottom: 20px;
    }
}
.news-details-list-title h4{
    font-size: 20px;
    margin-bottom: 0;
}
.news-details-list-button{
    margin-left: 10px;
}
.news-details-list-button a{
    font-size: 12px;
    color:var(--thm-white);
    font-weight: 800;
}
.news-details-list-button .btn-primary{
    padding: 10px 20px;
}
@media(max-width: 575px){
    .news-details-list-button .btn-primary {
        padding: 10px 14px;
    }
}
.news-details-list-button .btn-primary + .btn-primary{
    margin-left: 10px;
    padding: 10px 20px;
}
.news-details-socials a{
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-left:10px;
    text-align: center;
    display: inline-block;
    background-color: var(--thm-light-bg);
    color: var(--thm-black);
}
.news-details-socials a:hover{
    background-color: var(--thm-primary);
    color: var(--thm-white);
}
.news-details-author-box{
    display: flex;
    padding: 50px 50px;
    background-color: var(--thm-light-bg);
}
@media(max-width: 575px){
    .news-details-author-box{
        padding: 50px 20px;
        display: block;
    }
}
.news-details-author-image img{
    border-radius: 50%;
}
@media(max-width: 575px){
    .news-details-author-image{
        margin-bottom: 20px;
    }
}
.news-details-author-content{
    margin-left: 30px;
}
@media(max-width: 575px){
    .news-details-author-content{
        margin-left: 0px;
    }
}
.news-details-author-content h4{
    line-height: 1;
}
.news-details-author-box p{
    margin-bottom: 0px;
}
.news-details-comment-list-box{
    margin-top: 53px;
}
.news-details-comment-list-box h3{
    font-size:30px;
    margin-bottom: 51px;
}
.news-details-comment-image{
    display: flex;
    border-bottom: 1px solid var(--thm-border);
    padding-bottom: 55px;
}
@media(max-width: 991px){
    .news-details-comment-image{
        flex-wrap: wrap;
    }
}
@media(max-width: 991px){
    .news-details-comment-image img{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
}
.news-details-comment-image + .news-details-comment-image{
    margin: 50px 0px;
}
.news-details-comment-content{
    margin-left: 30px;
}
@media(max-width: 991px){
    .news-details-comment-content{
        margin-left: 0px;
    }
}
.news-details-meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
@media(max-width: 991px){
    .news-details-meta{
        margin-bottom: 10px;
    }
}
@media(max-width: 575px){
    .news-details-meta{
        margin-bottom: 10px;
        display: block;
    }
}
.news-details-meta-number h5{
    margin-bottom: 0;
}
.news-details-meta-date span{
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-primary);
}
@media(max-width: 575px){
    .news-details-meta-date span{
        margin: 20px 0px;
    }
}
.news-details-comment-text p{
    margin-bottom: 0px;
}
@media(max-width: 991px){
    .news-details-comment-text p{
        margin-bottom: 20px;
    }
}
.news-details-comment-button .btn-primary{
    padding: 11px 23px;
}
.news-details-comment-form h3{
    margin-top: 60px;
}
/***********************
* Contact
***********************/
.contact-section{
    padding-top: 120px;
    padding-bottom: 120px;
}
@media(max-width: 1199px){
    .contact-section{
        padding: 70px 0px;
    }
}
.contact-box{
    margin-top: 15px;
}
@media(max-width: 991px){
    .contact-box{
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
.contact-box h1{
    margin-bottom: 30px;
}
.contact-form .input-text{
    display: block;
    outline: none;
    border: none;
    background-color:var(--thm-light-bg);
    width: 100%;
    padding:0px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-gray);
    height: 60px;
    border-radius: 0;
    margin-bottom: 20px;
}
.contact-form textarea.input-text{
    height: 190px;
    padding-top: 30px;
}
@media (max-width: 991px) {
    .contact-form .btn-primary{
        margin-bottom: 40px;
        width: 100%;
    }
}
.responsive-map{
    height:440px;
}
.responsive-map iframe{
    width: 100%;
    height: 100%;
}
.error-title{
    font-size: 90px;
    padding-bottom: 80px;
}
.error-box-section{
    padding: 90px 0px;
}
.error-box-image{
    margin-bottom: 20px;
}
.error-box-content > p{
    color: var(--thm-dark-gray);
}
.error-box-inner .error-form{
    margin: 0 auto;
    max-width: 450px;

}
.error-box-inner .cta-two-form-group {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
/***********************
* Mobile-Nav
***********************/
.mobile-nav-toggler span{
    background-color: var(--thm-black);
}
@media(max-width: 1399px){
    .menu-two .mobile-nav-toggler span{
        background-color: var(--thm-white);
    }
}
.mobile-nav-wrapper {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1111111;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 500ms ease 500ms;
}
.mobile-nav-wrapper.expanded {
    transform: translateX(0);
    opacity: 1;
    transition: all 500ms ease 0ms;
}
.mobile-nav-overlay {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: var(--thm-dark-black);
    opacity: 0.9;
}
.mobile-nav-content {
    position: absolute;
    max-width: 300px;
    display: inline-block;
    width: 100%;
    padding: 30px 15px;
    z-index: 1;
    background: var(--thm-black);
    height: 100vh;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 500ms ease 0ms;
    overflow-y: scroll;
}
.mobile-nav-wrapper.expanded .mobile-nav-content{
    transform: translateX(0);
    opacity: 1;
    transition: all 500ms ease 500ms;
}
.mobile-nav-close {
    position: absolute;
    height: 25px;
    width: 25px;
    right: 15px;
    top: 20px;
}
.mobile-nav-close span {
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    background-color: #fff;
}
.mobile-nav-close span:nth-child(2) {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.mobile-nav-buttons {
    margin: 20px;
}

.mobile-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.primary-btn {
    background: var(--thm-primary);
    color: #fff;
}

.outline-btn {
    background: #f8f9fa;
    color: #333;
}

.mobile-btn:hover {
    transform: translateY(-2px);
}
.mobile-nav-container {
    position: relative;
    margin-top: 20px;
}
.mobile-nav-container > ul {
    margin-bottom: 0;
}
.mobile-nav-container > ul li {
    line-height: 45px;
}
.mobile-nav-container > ul li + li {
    border-top: 1px solid rgba(var(--thm-border-rgb),0.17);
}
.mobile-nav-container > ul li > a,
.mobile-nav-container .main-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff !important;
    font-weight: 600;
}
.main-menu-list li.has-dropdown > a button {
    border: 0;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-menu-list li.has-dropdown > a button i{
    transition: all 500ms;
    font-size: 14px;
}
.main-menu-list li.has-dropdown > a button.expanded i{
    transform: rotate(90deg);
}
.mobile-nav-container > ul > li ul {
    display: none;
    margin-left: 15px;
    border-top: 1px solid rgba(var(--thm-border-rgb),0.15);
}
.mobile-nav-contact {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mobile-nav-contact li{
    display: flex;
    align-items: center;
    color: #fff;
}
.mobile-nav-contact li + li {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mobile-nav-contact li i {
    color: var(--thm-primary);
    margin-right: 15px;
    display: inline-block;
}
.mobile-nav-contact li a {
    color: inherit;
}
.mobile-nav-social {
    display: flex;
    align-items: center;
}
.mobile-nav-social li + li{
    margin-left: 15px;
}
.mobile-nav-social li a {
    height: 36px;
    width: 36px;
    background-color: var(--thm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.mobile-nav-social li a:hover {
    background-color: #fff;
    color: var(--thm-black);
}
/***********************
* CTA
***********************/
.cta-one{
    background-image: url("../image/bg/cta-bg-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 100px;
}
@media (max-width: 991px) {
    .cta-one {
        padding-top: 80px;
        padding-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .cta-one {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}
@media (max-width: 575px) {
    .cta-one {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}
.cta-one-content h2{
    font-size: 50px;
}
@media (max-width: 991px) {
    .cta-one-content h2 {
        font-size: 85%;
    }
}
@media (max-width: 767px) {
    .cta-one-content h2 {
        font-size: 75%;
    }
}
@media (max-width: 575px) {
    .cta-one-content h2 {
        font-size: 65%;
    }
}
@media (max-width: 479px) {
    .cta-one-content h2 {
        font-size: 60%;
    }
}
.cta-one-content .btn-primary{
    background-color: var(--thm-black);
    padding: 18px 49px;
}
@media (max-width: 767px) {
    .cta-one-content .btn-primary {
        padding: 15px 40px;
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-one-content .btn-primary {
        padding: 12px 30px;
        font-size: 75%;
    }
}
@media (max-width: 479px) {
    .cta-one-content .btn-primary {
        padding: 10px 25px;
        font-size: 65%;
    }
}
.cta-one-content .btn-primary:hover{
    background-color: var(--thm-dark-black);
}
.cta-one-form .btn-primary{
    margin-right:10px;
}
@media (max-width: 575px) {
    .cta-one-form .btn-primary {
        margin-right: 5px;
    }
}
.error-box-inner .cta-two-form-group{
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.07);
}

.cta-two-section .cta-two-section-inner{
    background-position: left top;
    background-repeat: no-repeat;
    padding: 60px 60px;
    padding-right: 0;
    position: relative;
    background-color: var(--thm-primary);
}
@media (max-width: 767px) {
    .cta-two-section .cta-two-section-inner {
        padding: 50px 40px;
        padding-right: 40px;
    }
}
@media (max-width: 575px) {
    .cta-two-section .cta-two-section-inner {
        padding: 40px 30px;
    }
}
@media (max-width: 479px) {
    .cta-two-section .cta-two-section-inner {
        padding: 30px 20px;
    }
}
.cta-two-section .cta-two-section-inner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-image: url("../image/bg/cta-two-bg-1.png");
    background-position: left top;
    background-repeat: no-repeat;
    padding: 60px;
    padding-right: 0;
    background-color: var(--thm-primary);
}
.cta-two-title {
    display: flex;
    position: relative;
    align-items: center;
}
@media (max-width: 575px) {
    .cta-two-title {
        flex-direction: column;
        align-items: flex-start;
    }
}
.cta-two-card-icon i{
    color: var(--thm-white);
    font-size: 60px;
}
@media (max-width: 767px) {
    .cta-two-card-icon i {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-two-card-icon i {
        font-size: 75%;
    }
}
@media(max-width: 575px) {
    .cta-two-card-icon {
        text-align: left;
        margin-bottom: 10px;
    }
}
.cta-two-card-content{
    margin-left: 35px;
}
@media (max-width: 767px) {
    .cta-two-card-content {
        margin-left: 25px;
    }
}
@media(max-width: 575px) {
    .cta-two-card-content {
        margin-left: 0;
    }
}
.cta-two-card-content p{
    font-size: 16px;
    color:var(--thm-white);
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .cta-two-card-content p {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-two-card-content p {
        font-size: 75%;
    }
}
.cta-two-card-content h3{
    font-size: 34px;
    line-height: 40px;
    color: var(--thm-white);
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .cta-two-card-content h3 {
        font-size: 85%;
        line-height: 1.3;
    }
}
@media (max-width: 767px) {
    .cta-two-card-content h3 {
        font-size: 75%;
    }
}
@media (max-width: 575px) {
    .cta-two-card-content h3 {
        font-size: 65%;
    }
}
@media(max-width: 1199px) {
    .cta-two-form-outer {
        width: 100%;
    }
}
.cta-two-form {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: end;
}
@media(max-width: 1199px) {
    .cta-two-form {
        margin-top: 30px;
        justify-content: start;
    }
}
@media (max-width: 575px) {
    .cta-two-form{
        display: block;
        margin-left: 0;
    }
}
.cta-two-form-group {
    flex-grow: 1;
    max-width: 400px;
}
.cta-two-form-group input{
    width: 100%;
    font-size: 16px;
    height: 60px;
    color: var(--thm-gray);
    padding: 0px 25px;
    outline: none;
    border: none;
    font-weight: 600;
}
@media (max-width: 767px) {
    .cta-two-form-group input {
        font-size: 85%;
        height: 50px;
        padding: 0px 20px;
    }
}
@media (max-width: 575px) {
    .cta-two-form-group input {
        font-size: 75%;
        height: 45px;
        padding: 0px 15px;
    }
}
@media only screen and (max-width: 1199px) {
    .cta-two-form-group{
        max-width: 100%;
    }
}
@media only screen and (max-width: 991px) {
    .cta-two-form-group{
        width:100%
    }
}
.cta-two-form-group .btn-primary{
    background-color: var(--thm-black);
    height: 60px;
    padding: 18px 49px;
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .cta-two-form-group .btn-primary {
        height: 50px;
        padding: 15px 40px;
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-two-form-group .btn-primary {
        height: 45px;
        padding: 12px 30px;
        font-size: 75%;
    }
}

.cta-two-form .btn-primary{
    background-color: var(--thm-black);
    height: 60px;
    padding: 18px 49px;
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .cta-two-form .btn-primary {
        height: 50px;
        padding: 15px 40px;
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-two-form .btn-primary {
        height: 45px;
        padding: 12px 30px;
        font-size: 75%;
        width: 100%;
        margin: 15px 0px;
        justify-content: center;
    }
}
.cta-two-card-button .btn-primary >a{
    color: var(--thm-white);
}
.cta-two-card-button .btn-primary:hover{
    background-color: var(--thm-dark-black);
}
@media only screen and (max-width: 575px) {
    .cta-two-card-button .btn-primary{
        display: block;
        max-width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
}
@media only screen and (max-width: 400px) {
    .cta-two-card-button .btn-primary{
        min-width: 190px;
    }
}
.cta-three-inner{
    background-image: url("../image/bg/cta-bg-3.png");
    background-color: var(--thm-black);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 991px) {
    .cta-three-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .cta-three-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (max-width: 575px) {
    .cta-three-inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.cta-three-content h2{
    font-size: 50px;
    margin-bottom: 35px;
}
@media (max-width: 991px) {
    .cta-three-content h2 {
        font-size: 85%;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .cta-three-content h2 {
        font-size: 75%;
        margin-bottom: 25px;
    }
}
@media (max-width: 575px) {
    .cta-three-content h2 {
        font-size: 65%;
        margin-bottom: 20px;
    }
}
@media (max-width: 479px) {
    .cta-three-content h2 {
        font-size: 60%;
    }
}
.cta-three-inner .btn-primary {
    padding: 19px 50px;
}
@media (max-width: 767px) {
    .cta-three-inner .btn-primary {
        padding: 15px 40px;
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-three-inner .btn-primary {
        padding: 12px 30px;
        font-size: 75%;
    }
}
@media (max-width: 479px) {
    .cta-three-inner .btn-primary {
        padding: 10px 25px;
        font-size: 65%;
    }
}
.cta-four-section .container .row{
    z-index: 3;
    position: relative;
    align-items: center;
}
.cta-four-inner{
    background-color: var(--thm-primary);
    position: relative;
    padding: 55px 60px;
}
@media (max-width: 991px) {
    .cta-four-inner {
        padding: 45px 40px;
    }
}
@media (max-width: 767px) {
    .cta-four-inner {
        padding: 35px 30px;
    }
}
@media (max-width: 575px) {
    .cta-four-inner {
        padding: 30px 20px;
    }
}
.cta-four-inner:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4500px;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 60px;
    padding-right: 0;
    background-color: var(--thm-primary);
}
.cta-four-content{
    display: flex;
}
@media (max-width: 575px) {
    .cta-four-content {
        flex-direction: column;
        text-align: center;
    }
}
.cta-four-content i{
    color: var(--thm-white);
    font-size: 35px;
}
@media (max-width: 767px) {
    .cta-four-content i {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-four-content i {
        font-size: 75%;
    }
}
.cta-four-content-box{
    margin-left: 15px;
}
@media(max-width: 575px){
    .cta-four-content-box{
        margin-left: 0;
        margin-top: 10px;
    }
}
.cta-four-content-box span{
    color: var(--thm-white);
    font-weight: 600;
}
@media (max-width: 767px) {
    .cta-four-content-box span {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-four-content-box span {
        font-size: 75%;
    }
}
.cta-four-content-box p{
    color: var(--thm-white);
    margin-bottom: 0px;
}
@media (max-width: 767px) {
    .cta-four-content-box p {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-four-content-box p {
        font-size: 75%;
    }
}
.cta-four-widget-socials {
    display: flex;
}
@media (max-width: 575px) {
    .cta-four-widget-socials {
        justify-content: center;
        margin-top: 20px;
    }
}
.cta-four-widget-socials a{
    height: 40px;
    display: inline-block;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--thm-dark-black);
    color: var(--thm-white);
}
@media (max-width: 575px) {
    .cta-four-widget-socials a {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }
}
.cta-four-widget-socials a > i{
    font-size: 16px;
}
@media (max-width: 575px) {
    .cta-four-widget-socials a > i {
        font-size: 75%;
    }
}
.cta-four-widget-socials a + a {
    margin-left: 10px;
}
@media (min-width: 1200px) {
    .cta-section .cotainer{
        max-width: 1200px;
    }
}
.cta-five-card{
    display: flex;
    background-color: #fff;
    padding: 60px 80px;
    align-items: center;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: relative;
}
@media (max-width: 1399px) {
    .cta-five-card {
        display: block;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .cta-five-card {
        padding: 50px 60px;
    }
}
@media (max-width: 767px) {
    .cta-five-card {
        padding: 40px 40px;
    }
}
@media (max-width: 575px) {
    .cta-five-card {
        padding: 30px 25px;
    }
}
.cta-five-card-icon{
    position: relative;
    width: 140px;
    background-color: var(--thm-primary);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}
@media (max-width: 1399px) {
    .cta-five-card-icon {
        margin: 0 auto;
        margin-bottom: 35px;
    }
}
@media (max-width: 575px) {
    .cta-five-card-icon {
        width: 110px;
        height: 90px;
        margin-bottom: 25px;
    }
}
.cta-five-card-icon:before{
    position: absolute;
    content: '';
    top: 0px;
    right: -20px;
    bottom: 0px;
    height: 100%;
    width: 10px;
    background-color: var(--thm-light-bg);
}
@media (max-width: 1399px) {
    .cta-five-card-icon:before {
        display: none;
    }
}
.cta-five-card-icon i{
    font-size: 65px;
    color: var(--thm-white);
}
@media (max-width: 767px) {
    .cta-five-card-icon i {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-five-card-icon i {
        font-size: 75%;
    }
}
@media (max-width: 1399px) {
    .cta-five-content {
        margin-bottom: 30px
    }
}
.cta-five-content h4{
    font-size: 30px;
    margin-bottom: 14px;
}
@media (max-width: 991px) {
    .cta-five-content h4 {
        font-size: 85%;
    }
}
@media (max-width: 767px) {
    .cta-five-content h4 {
        font-size: 75%;
    }
}
@media (max-width: 575px) {
    .cta-five-content h4 {
        font-size: 65%;
        margin-bottom: 10px;
    }
}
.cta-five-content p{
    margin-bottom: 0;
    line-height: 30px;
}
@media (max-width: 767px) {
    .cta-five-content p {
        font-size: 85%;
        line-height: 1.6;
    }
}
@media (max-width: 575px) {
    .cta-five-content p {
        font-size: 75%;
    }
}
.cta-five-button{
    z-index: 1;
    margin-left: auto;
}
@media (max-width:575px) {
    .cta-five-button{
        padding: 0px;
        text-align: center;
    }
}
.cta-five-button .btn-primary{
    background-color: var(--thm-black);
    padding: 18px 38px;
    font-size: 14px;
    font-weight: 800;
}
@media (max-width: 767px) {
    .cta-five-button .btn-primary {
        padding: 15px 35px;
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-five-button .btn-primary {
        padding: 12px 30px;
        font-size: 75%;
    }
}
@media (max-width: 479px) {
    .cta-five-button .btn-primary {
        padding: 10px 25px;
        font-size: 65%;
    }
}
.cta-five-button .btn-primary:hover{
    background-color: var(--thm-primary);
}
.cta-five-img{
    position: absolute;
    right: -20px;
    top: -20px;
    opacity: 0.12;
    transform: rotate(-25deg);
    font-size: 240px;
    line-height: 1;
}
@media (max-width: 767px) {
    .cta-five-img {
        display: none;
    }
}
.cta-six-section{
    padding: 100px 0px;
}
@media(max-width: 1199px){
    .cta-six-section{
        padding: 70px 0px;
    }
}
@media(max-width: 767px){
    .cta-six-section{
        padding: 50px 0px;
    }
}
@media(max-width: 575px){
    .cta-six-section{
        padding: 40px 0px;
    }
}
.cta-six-box span{
    color: var(--thm-primary);
    font-weight: 700;
}
@media (max-width: 767px) {
    .cta-six-box span {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-six-box span {
        font-size: 75%;
    }
}
.cta-six-box > h3{
    margin-top: 30px;
    font-size: 40px;
}
@media (max-width: 991px) {
    .cta-six-box > h3 {
        font-size: 85%;
        margin-top: 25px;
    }
}
@media (max-width: 767px) {
    .cta-six-box > h3 {
        font-size: 75%;
        margin-top: 20px;
    }
}
@media (max-width: 575px) {
    .cta-six-box > h3 {
        font-size: 65%;
        margin-top: 15px;
    }
}
@media (max-width: 479px) {
    .cta-six-box > h3 {
        font-size: 60%;
    }
}
.cta-six-box .btn-primary{
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 767px) {
    .cta-six-box .btn-primary {
        font-size: 85%;
    }
}
@media (max-width: 575px) {
    .cta-six-box .btn-primary {
        font-size: 75%;
    }
}
@media (max-width: 479px) {
    .cta-six-box .btn-primary {
        font-size: 65%;
    }
}
/***********************
* Footer
***********************/
/* =========================
   Footer Base
========================= */
.footer{
    background-image: url("../image/bg/footer-bg-1.png");
    background-repeat: no-repeat;
    background-color: var(--thm-black);
    background-size: auto;
    background-position: left 20px bottom 90px;
    overflow-x: hidden;
}

.footer-inner{
    padding-bottom: 98px;
}

/* =========================
   Responsive Padding
========================= */
@media (max-width: 1199px) {
    .footer-inner{
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-inner{
        padding-bottom: 30px;
    }
}

/* =========================
   Footer Logo Box
========================= */
.footer-widget-logo{
    padding: 45px 60px;
    max-width: 250px;
    align-items: center;
    color: var(--thm-white);
    display: inline-block;
    background-color: #01313C;
}

@media (max-width: 575px){
    .footer-widget-logo{
        padding: 30px 40px;
        max-width: 100%;
    }
}

/* =========================
   Footer Text
========================= */
.footer-widget-text{
    margin-top: 32px;
    margin-bottom: 22px;
    max-width: 370px;
}

.footer-widget-text p{
    font-size: 15px;
    line-height: 32px;
    font-weight: 600;
    color: var(--thm-white);
}

/* =========================
   Social Icons
========================= */
.footer-widget-socials{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-widget-socials a{
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--thm-dark-black);
    color: var(--thm-white);
    display: inline-block;
}

.footer-widget-socials a + a{
    margin-left: 10px;
}

.footer-widget-socials a:hover{
    background-color: var(--thm-primary);
}

@media (max-width: 991px){
    .footer{
        background-position: left 20px bottom 70px;
    }

    .footer-widget-socials{
        margin-bottom: 30px;
    }
}

/* =========================
   Footer Widgets
========================= */
.footer-widget{
    margin-top: 120px;
}

@media (max-width: 991px){
    .footer-widget{
        margin-top: 0;
        padding-bottom: 40px;
    }
}

@media (max-width: 575px){
    .footer-widget{
        padding-bottom: 30px;
    }
}

/* =========================
   Widget Titles
========================= */
.footer-widget-title{
    font-size: 18px;
    color: var(--thm-white);
    margin-bottom: 35px;
}

@media (max-width: 991px){
    .footer-widget-title{
        margin-bottom: 15px;
    }
}

/* =========================
   Explore Links
========================= */
.footer-widget-explore{
    margin-left: 40px;
}

@media (max-width: 991px){
    .footer-widget-explore{
        margin-left: 0;
        margin-top: 10px;
    }
}

.footer-widget-explore ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-explore li{
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--thm-secondary);
    font-family: var(--thm-font);
}

.footer-widget-explore li a{
    color: var(--thm-secondary);
}

.footer-widget-explore li a:hover{
    color: var(--thm-white);
}

/* =========================
   Department Links
========================= */
.footer-widget-department ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-department li{
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--thm-secondary);
    font-family: var(--thm-font);
    font-weight: 500;
}

.footer-widget-department li a{
    color: var(--thm-secondary);
}

.footer-widget-department li a:hover{
    color: var(--thm-white);
}

/* =========================
   Contact Section
========================= */
.footer-widget-contact{
    margin-bottom: 40px;
}

.footer-widget-contact p{
    font-size: 15px;
    margin-bottom: -8px;
    color: var(--thm-secondary);
    font-family: var(--thm-font);
    font-weight: 500;
}

.footer-widget-contact-list{
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    margin-bottom: 10px;
}

.footer-widget-contact-list i{
    color: var(--thm-primary);
    min-width: 20px;
}

.footer-widget-contact-item{
    margin-bottom: 5px;
}

.footer-widget-contact-item a{
    margin-left: 10px;
    font-size: 15px;
    color: var(--thm-white);
    font-family: var(--thm-font);
    font-weight: 700;
    word-break: break-word;
}

.footer-widget-contact-item a:hover{
    color: var(--thm-white);
}

/* =========================
   Bottom Footer
========================= */
.bottom-footer{
    background-color: var(--thm-dark-black);
    text-align: center;
    padding: 40px 0;
    font-weight: 600;
}

.bottom-footer p{
    margin-bottom: 0;
    font-weight: 500;
    color: var(--thm-secondary);
    line-height: 1.4;
}

/* =========================
   Small Devices (Mobiles)
========================= */
@media (max-width: 575px){

    /* Logo / Image scaling */
    .footer-widget-logo img{
        max-width: 140px;
        height: auto;
    }

    /* Reduce logo box size */
    .footer-widget-logo{
        padding: 25px 30px;
    }

    /* Text scaling */
    .footer-widget-text p{
        font-size: 13px;
        line-height: 24px;
    }

    .footer-widget-title{
        font-size: 15px;
    }

    .footer-widget-explore li,
    .footer-widget-department li{
        font-size: 13px;
    }

    /* Contact text */
    .footer-widget-contact p{
        font-size: 13px;
    }

    .footer-widget-contact-item a{
        font-size: 13px;
    }

    /* Social icons smaller */
    .footer-widget-socials a{
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 14px;
    }

    /* Bottom footer text */
    .bottom-footer p{
        font-size: 13px;
        line-height: 1.4;
    }
}

/* =========================
   Extra Small Devices
========================= */
@media (max-width: 360px){

    .footer-widget-logo img{
        max-width: 120px;
    }

    .footer-widget-text p{
        font-size: 12px;
        line-height: 22px;
    }

    .footer-widget-title{
        font-size: 14px;
    }

    .footer-widget-explore li,
    .footer-widget-department li,
    .footer-widget-contact-item a{
        font-size: 12px;
    }
}
