<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*-----------------------------------------------------------------------------------
    Template Name: Hachette India
    Version: 1.0
-----------------------------------------------------------------------------------*/
/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&amp;display=swap');

:root {
    --thm-font: 'Poppins', sans-serif;
    /* Headings */
    --thm-b-font: 'Roboto', sans-serif;
    /* Body font */
    --thm-icon-font: "Font Awesome 5 Pro";
    --thm-bs-icon-font: "bootstrap-icons !important";
    /*Icon Font*/
    --thm-color-one: #1c2a56;
    --thm-color-two: #000000;
    --thm-color-three: #3182b8;
    --thm-color-four: #435e85;
    /*Light Color*/
    --thm-color-light: #eff0ef;
    /*RGB Colors*/
    --thm-color-one-rgb: 28, 42, 86;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 49, 130, 184;
    /*Light Color*/
    --thm-color-light-rgb: 239, 240, 239;
    /*Theme Colors*/
    --thm-body-color: #797979;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    /*Border Color*/
}

/*Animations*/
@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--thm-b-font);
    overflow-x: hidden;
    color: var(--thm-body-color);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}

.section {
    position: relative;
    padding: 40px 0;
}

.section-padding {
    position: relative;
    padding: 40px 0 10px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

label&gt;a {
    font-size: 14px;
}

img {
    max-width: 100%;
    transition: 0.3s all;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 1;
}

/*section-title*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .title {
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--thm-color-one);
}

.section-header .text {
    margin-bottom: 0;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    padding: 50px;
    margin-bottom: 30px;
    border: 1px solid var(--thm-border);
    border-radius: 8px;
}

blockquote .quote_title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 15px;
}

blockquote .quote_author {
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/
.slick-arrow {
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 40px;
    height: 40px;
    color: var(--thm-border);
    background-color: var(--thm-white);
    border-radius: 50%;
    left: 0;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--thm-border);
}

.slick-arrow:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-color: inherit;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 400;
    font-size: 14px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}

.slick-arrow.slick-prev {
    left: 15px;
    right: auto;
}

.slick-arrow.slick-next {
    right: 15px;
    left: auto;
}

.slider_arrow .slick-arrow {
    width: 30px;
    height: 30px;
    border: none;
    background: no-repeat;
    color: var(--thm-color-two);
}

.slider_arrow .slick-arrow:before {
    font-size: 20px;
}

.slider_arrow .slick-arrow.slick-prev {
    left: -40px;
}

.slider_arrow .slick-arrow.slick-next {
    right: -40px;
}

/*Slick Dots*/
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 6px;
    border-radius: 10px;
    background: var(--thm-color-two);
    margin: 0 5px;
    transition: 0.6s all;
    border: 2px solid var(--thm-color-two);
}

.slick-dots li.slick-active button {
    width: 24px;
    height: 6px;
    border-radius: 50px;
    background: var(--thm-color-one);
    border: 2px solid var(--thm-color-one);
}

.slider_arrow .slick-dots {
    margin-top: 30px;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 15px;
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 0px 15px;
}

.pagination .page-item .page-link {
        border: none;
    border-radius: 0px;
    background-color: transparent;
    color: var(--thm-color-two);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    padding: 0 8px;
    line-height: normal;
}

.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: transparent;
    color: var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: bold;
    color: var(--thm-color-two);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 30px;
    line-height: 1.2;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
}

h5 {
    font-size: 22px;
    line-height: 1.3;
}

h6 {
    font-size: 16px;
    line-height: 1.7;
}

p {
    margin-bottom: 30px;
}

a {
    color: var(--thm-color-one);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-two);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}

/*Modals*/

.close-btn {
    border: 0;
    background-color: transparent;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
}

.close-btn span {
    position: absolute;
    width: 2px;
    height: 15px;
    display: block;
    background-color: var(--thm-white);
    opacity: 0.6;
    transform-origin: center;
    transform: rotate(45deg);
    transition: 0.3s;
}

.close-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

.close-btn:hover span {
    transform: rotate(90deg);
}

.close-btn:hover span:nth-child(2) {
    transform: rotate(-90deg);
}

.search-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(var(--thm-color-two-rgb), .8);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.search-form-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.search-form-wrapper .close-btn {
    position: absolute;
    top: 60px;
    right: 60px;
}

.search-form-wrapper .close-btn span {
    height: 40px;
}

.search-form-wrapper form {
    position: relative;
    max-width: 800px;
    width: 100%;
    transition-duration: .3s;
    transition-delay: .3s;
    transform: scale(.5);
    opacity: 0;
    visibility: hidden;
}

.search-form-wrapper.open form {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.search-form-wrapper form input::placeholder,
.search-form-wrapper form input {
    background-color: transparent;
    font-size: 30px;
    width: 100%;
    outline: none;
    color: var(--thm-white);
    line-height: normal;
}

.search-form-wrapper form input {
    border: 0;
    border-bottom: 2px solid var(--thm-white);
    padding: 10px 0;
}

.search-form-wrapper .search-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: transparent;
    border: 0;
    color: #fff;
    font-size: 25px;
    outline: none;
    transition: .3s;
    cursor: pointer;
    padding: 0;
}

/*Forms*/
.form-control-custom {
    border-radius: 8px;
    border: 1px solid var(--thm-border);
    background-color: transparent;
    padding: 10px 20px;
    height: auto;
    transition: 0.3s all;
}

.form-control-custom,
.form-control-custom:focus,
.form-control-custom::placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-body-color);
    font-family: var(--thm-font);
}

.form-control-custom:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: var(--thm-color-one);
}

.form-control-custom+i {
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    pointer-events: none;
}

textarea.form-control-custom+i {
    top: 23px;
    transform: none;
}

.custom-control-label::before {
    background-color: transparent;
    border-color: var(--thm-border);
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--thm-color-one);
    border-color: var(--thm-color-one);
}

/*Buttons*/
.thm-btn {
    font-size: 18px;
    color: var(--thm-white);
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
    padding: 8px 35px;
    transition: 0.5s all;
    font-weight: 500;
    background-color: var(--thm-color-one);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}

.thm-btn:hover,
.thm-btn:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
    border-color: transparent;
}

.thm-btn i {
    font-size: 14px;
    line-height: normal;
    margin-left: 10px;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 8px 21px;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}
.thm-color-three {
    color: var(--thm-color-three);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-light {
    background-color: var(--thm-color-light);
}

.brands-bg {
    background-color: #e6f2fb;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Accordion*/
.custom-accordion .accordion-item {
        border: none;
    border-bottom: 1px solid var(--thm-color-two);
    background-color: var(--thm-white);
    margin-bottom: 10px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.custom-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.custom-accordion .accordion-button {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0px;
    padding-left: 50px;
    background-color: var(--thm-white);
    color: var(--thm-color-two);
    box-shadow: none;
    position: relative;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}
.custom-accordion .accordion-button:after{
    display: none;
}
.custom-accordion .accordion-button::before {
    color: var(--thm-color-two);
    content: "\f068";
    font-family: var(--thm-icon-font);
    background-image: none;
    position: absolute;
    left: 0;
    font-size: 26px;
}

.custom-accordion .accordion-button.collapsed {
    color: var(--thm-color-two);
    background-color: var(--thm-white);
}

.custom-accordion .accordion-button.collapsed::before {
    color: var(--thm-color-two);
    content: "\f067";
}

.custom-accordion .accordion-body {
    padding: 0;
    padding-left: 50px;
    padding-bottom: calc(1rem - 15px);
}

.custom-accordion .accordion-body p {
    margin-bottom: 15px;
    color: var(--thm-color-two);
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    background-size: cover;
    background-repeat: no-repeat;
}

.preloader img {
    width: 150px;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/*header*/
.header{
    position: relative;
    box-shadow: 0 0 8px rgb(var(--thm-color-two-rgb), 10%);
}
.header .logo {
    text-align: center;
    padding: 30px 0;
    max-width: 80px;
    margin: 0 auto;
}

.header .navigation_inner,
.header .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navigation .main-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header .navigation .main-menu&gt;.menu-item&gt;a {
    color: var(--thm-body-color);
    font-size: 16px;
    padding: 15px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.header .navigation .main-menu&gt;.menu-item&gt;a.active,
.header .navigation .main-menu&gt;.menu-item:hover&gt;a {
    color: var(--thm-color-one);
}

.header .navigation .menu-item-has-children {
    position: relative;
}

.header .navigation .menu-item-has-children&gt;a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
    font-size: 10px;
}

.header .navigation .menu-item-has-children .sub-menu {
    z-index: 10;
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 180px;
    visibility: hidden;
    opacity: 0;
}

.header .navigation .menu-item-has-children:hover&gt;.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item&gt;a {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
    width: 100%;
    display: flex;
    padding: 8px 15px;
    align-items: center;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item:hover&gt;a {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children&gt;a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children&gt;.sub-menu {
    left: 100%;
    top: 0;
}

.header .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--thm-color-one);
    cursor: pointer;
}

.header .hamburger .hamburger_btn span {
    display: flex;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    background-color: var(--thm-white);
    transition: 0.5s all;
    position: relative;
}

.header .hamburger .hamburger_btn span:last-child {
    margin-bottom: 0;
}

.header .hamburger .hamburger_btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}

.header .hamburger .hamburger_btn.active span:nth-child(2) {
    display: none;
}

.header .hamburger .hamburger_btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}

.header .header_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header_actions li {
    margin-left: 20px;
}

.header .header_actions li:first-child {
    margin-left: 0;
}

.header .header_actions li .search_btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*banner*/
.banner {
    position: relative;
    overflow: hidden;
}

.banner .slide_item {
    padding: 120px 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: bottom center;
}

.banner .banner_text .title {
    margin: 0 0 18px;
    color: var(--thm-white);
    font-weight: 500;
    font-size: 40px;
}

.banner .banner_text .subtitle {
    font-size: 24px;
    font-weight: 600;
}

.banner .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: var(--thm-color-two);
}

.banner .slick-arrow:hover {
    background-color: var(--thm-color-one);
    border-color: var(--thm-white);
    color: var(--thm-white);
}

.banner .slick-arrow.slick-prev {
    left: 15px;
    right: auto;
}

.banner .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 30px;
}

.banner .slick-dots li button {
    background-color: var(--thm-white);
    border-color: var(--thm-white);
}

.banner .slick-dots li.slick-active button {
    background-color: var(--thm-color-one);
    border-color: var(--thm-white);
}

/*item_box*/
.animated_image {
    position: relative;
    overflow: hidden;
    transition: 0.3s all;
    transform: scale(1);
}

.animated_image:hover img {
    transform: scale(1.1);
}

.item_box {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.slide_item .item_box {
    margin-bottom: 0;
}

.item_box .item_image {
    height: 280px;
    width: 100%;
}

.item_box .hvr_action {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
}

.item_box .hvr_action:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-color-two);
    opacity: 0.2;
}

.item_box .hvr_action .thm-btn {
    position: relative;
    z-index: 1;
    font-size: 14px;
    padding: 4px 15px;
    background-color: var(--thm-white);
    color: var(--thm-color-one);
}

.item_box .hvr_action .thm-btn:hover {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
}

.item_box:hover .hvr_action {
    opacity: 1;
    visibility: visible;
}

.item_box .item_text {
    text-align: center;
    border: 1px solid var(--thm-border);
    border-top: 0;
    padding-bottom: 10px;
}

.item_box .item_text .title {
    padding: 10px 0 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
}

.item_box .item_text .subtitle {
    color: var(--thm-color-two);
    font-size: 18px;
    line-height: normal;
    margin-top: 3px;
}

/*rounded_sec*/
.rounded_sec {
    border-radius: 55px;
    position: relative;
    overflow: hidden;
}

/*category_box*/
.category_box {
    position: relative;
    margin-bottom: 30px;
}
.button-link,
.category_box .title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 15px;
    color: var(--thm-white);
    font-size: 18px;
    background-color: var(--thm-color-four);
    width: max-content;
    margin: 0 auto;
    padding: 0 25px;
    border-radius: 50px;
}
/*.button-link:hover,*/
.category_box .title:hover {
    background-color: var(--thm-white);
    color: var(--thm-color-one);
}
.button-link {
    position: relative;
    bottom: 0;
    margin: 0;
    /*text-transform: capitalize;*/
    display: inline-block;
    line-height: 1.7;
    padding: 8px 25px; /* if anchor activated delete this*/
}
/*news_events*/
.news_events {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news_events .title a {
    padding-left: 40px;
    color: var(--thm-white);
    font-weight: 500;
    font-size: 36px;
    white-space: nowrap;
    margin-right: 25px;
}

.news_events img {
    max-width: 450px;
}

/*footer*/
.ft_top .ft_top_logo {
    max-width: 190px;
    margin: 0 auto;
}

.footer .ft_widgets {
    position: relative;
    margin-bottom: 30px;
}

.footer .ft_widgets .ft_title {
    color: var(--thm-white);
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
}

.footer .ft_menu li {
    margin-bottom: 5px;
    line-height: 1.8;
}

.footer .ft_menu li&gt;a {
    display: flex;
    align-items: center;
    color: var(--thm-white);
}

.footer .ft_menu li&gt;a:hover {
    color: var(--thm-color-two);
}

.footer .ft_menu li&gt;a:before {
    content: "\f054";
    font-family: var(--thm-icon-font);
    font-size: 12px;
    margin-right: 8px;
}

.footer .ft_menu li:last-child {
    margin-bottom: 0;
}

/*back to top*/
.back-to-top {
    width: 40px;
    height: 40px;
    border: 2px solid var(--thm-color-two);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    color: var(--thm-white);
    font-size: 22px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--thm-color-two);
    transition: 0.3s all;
    z-index: 100;
}

.back-to-top:hover {
    color: var(--thm-color-two);
    background-color: var(--thm-white);
    border-color: var(--thm-white);
}

/*about*/
.welcome_box {
    background-position: bottom center;
    padding: 140px 0;
}

.welcome_box .title {
    color: var(--thm-white);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.8;
}
.page_text .title{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--thm-color-one);
}
.page_text p {
    color: var(--thm-color-two);
    font-size: 18px;
}
.page_text ol{
    padding-left: 15px;
    margin-bottom: 30px;
}
.page_text ul li,
.page_text ol li{
    font-size: 18px;
    color: var(--thm-color-two);
}
.page_text ul {
    padding-left: 20px;
}
.page_text ul li{
    list-style-type: disc;
}
/*brand_item*/
.brand_item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.search-form {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 300px;
    width: 100%;
}

.search-form .input-group .input-group-prepend {
    width: 38px;
    border: 1px solid var(--thm-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
}

.search-form .input-group .form-control::placeholder,
.search-form .input-group .form-control {
    font-size: 16px;
    font-weight: 400;
    color: var(--thm-body-color);
}

.search-form .input-group .form-control {
    border-radius: 50px;
    border-left: 0;
    border-color: var(--thm-border);
}

.search-form .input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--thm-border);
}

.author_big_img {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.author_big_img.style_two {
    border-radius: 0;
}

.author_info {
    color: var(--thm-color-two);
    font-weight: 500;
    font-size: 18px;
}

.author_info .title {
    font-weight: 500;
    color: var(--thm-color-one);
    margin-bottom: 15px;
}
/*subheader*/
.subheader .page_title{
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 500;
    color: var(--thm-color-one);
}
/*news*/
.post.post_list .post_caption,
.post.post_list .post_image{
    position: relative;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}
.post.post_list .post_title{
    color: var(--thm-color-one);
    margin-bottom: 15px;
    font-size: 36px;
}
.post.post_list .post_desc{
        margin-bottom: 0;
    color: var(--thm-color-two);
    line-height: 1.4;
}
/*contact*/
.contact_box{
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
    background-color: var(--thm-color-light);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding-top: 30px;
}
.contact_box .box_inner .title{
    line-height: normal;
    font-size: 30px;
    font-weight: 600;
    color: var(--thm-color-three);
    margin-bottom: 20px;
}
.contact_box .box_inner .text{
    color: var(--thm-color-two);
    font-weight: 400;
    font-size: 18px;
    max-width: 80%;
    margin: 0 auto 30px;
}
.contact_box .box_footer .action{
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
}
/*book*/
.book_info{
    margin-bottom: 30px;
}
.book_info li{
    color: var(--thm-color-two);
}

.bg-light-yellow{
    background-color: #f1e9d2;
}
.white-box-area{
    margin-top: 30px;
}
.white-box-area h3{
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 28px;
}
.white-box-area p{
    margin-bottom: 0;
    font-weight: 500;
}
.white-box-area.style_two p{
    font-size: 26px;
}
.number-text-box h4{
    margin-bottom: 0;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.number-text-box p{
    margin-bottom: 0;
    color: #000;
}
.man-box{
    display: flex;
    align-items: center;
}
.linktext,
.man-box .linktext{
    position: absolute;
    top: 27%;
    right: 0;
    width: 280px;
    font-size: 32px;
    font-weight: 500;
}
.man-box &gt; .text-box{
    width: calc(100% - 300px);
}
.man-box &gt; .text-box .text{
    font-weight: 600;
    font-size: 32px;
    position: absolute;
    top: 2%;
    left: 8%;
    filter: drop-shadow(0px 0px 5px #fff);
    text-shadow: 1px 2px black;
    color: #136575;
}
.man-box .logo-layer{
    width: 300px;
    text-align: center;
}
.man-box .logo-layer&gt;img{
    width: 180px;
    margin-bottom: -100px;
}
.man-box .logo-layer .bottom-layer{
    display: flex;
    align-items: center;
    background-color: #fed200;
    justify-content: center;
    padding: 100px 0 10px;
    color: #000;
    font-size: 36px;

}
.man-box .logo-layer .bottom-layer&gt;img{
    width: 35px;
    margin-right: 10px;
}
.mans_slider .slide-item{
    padding: 0 15px;
    height: 300px;
}
.text-sm-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -70px;
}

.image-box .text-box {
    max-width: calc(95% - 33%);
    margin-left: 4%;
    font-size: 11px;
}

.image-box .over-text {
    position: absolute;
    top: 10px;
    left: 3%;
    z-index: 1;
    font-size: 16px;
}

.image-box .small-img {
    max-width: 33%;
}</pre></body></html>