/* new Styles */
.header {
    height: 100px;
}
.header .site-branding {
    display: flex;
    align-items: center;
    height: 100px;
}
.header .site-branding a {
    height: 40px;
    overflow: hidden;
}

.header .header-btn {
    display: flex;
    align-items: center;
}
.header .header-btn * {
    flex-grow: 0;
}
* {
    scroll-behavior: smooth;
}

@media (max-width: 1200px) {
    .header .site-branding {
        display: block;
        align-items: center;
        height: unset;
    }
    .header .header-btn {
        display: none !important;
    }
}

i {
    font-weight: 900 !important;
}
.ttm-header-wrap {
    background: #fff !important ;
}
.ttm-header-wrap * {
    color: #444 !important;
}

.logo-image {
    display: flex;
    width: 150px;
    height: 50px !important;
    overflow: visible !important;
}
.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1199px) {
    .ttm-stickable-header-w {
        background-color: #fff !important;
    }
    .site-branding {
        height: 80px !important;
    }
}
.toggle-block {
    background-color: #222 !important;
}
.site-branding {
    display: flex !important;
    justify-content: center;
}
.home-first-image {
    height: calc(100vh - 40px);
}
.home-first-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Home Slider */
.home-slider-outer {
    padding: 20px;
}
.home-slider-outer .home-slider-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px;
}
.home-slider-outer .home-slider-item {
    position: relative;
    width: 280px;
    height: 300px;
    transition: 0.5s;
}
.home-slider-outer .home-slider-item::before {
    content: "";
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    right: -20px;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.2s;
    width: 0;
    position: absolute;
    opacity: 0;
    z-index: -1;
    box-shadow: 0 10px 10px #00000052;
}

.home-slider-outer .home-slider-item .item-title {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: fit-content;
    word-break: keep-all;
    white-space: nowrap;
    translate: -50% -50%;
    transition: 0.2s;
    border-radius: 5px;
    font-size: 20px !important;
    padding: 0 20px;
    font-size: 15px;
}
.home-slider-outer .home-slider-item:hover::before {
    width: calc(100% + 40px);
    opacity: 1;
}
.home-slider-outer .home-slider-item .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.home-slider-outer .home-slider-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}