@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Prompt:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --body-font: 'Prompt', sans-serif;
    --heading-font: 'Montserrat', serif;
    --primary-color: #121111;
    --secondary-color: #ff001e;
    --blu-color:#373482;
    --text-color: #454749;
    --border-color: #3D3D3D;
    --border-gray: #DEDEDE;
    --border-dark: #242424;
    --light-stroke: #E8E8E8;
    --white-color: #ffffff;
    --light-color: #F6F6F6;
    --gray-color: #EDEDED;
    --gray-200: #EFEFEF;
    --gray-100: #F1F1F1;
    --primary-overlay: rgba(18, 17, 17, 0.9);
    --primary-light-overlay: rgba(18, 17, 17, 0.6);
    --shadow-light: 0px 30px 23px rgba(0, 0, 0, 0.07);
    --box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.04);
    --transition-base: all 0.3s;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--light-color);
}

input {
    outline: 0;
}

select {
    outline: 0;
    border: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--text-color);
}

a:hover {
    color: var(--secondary-color);
}


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

button {
    border: 0;
    background-color: transparent;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--primary-color);
}

h1,
.h1,
h2,
.h2 {
    font-family: var(--heading-font);
}

.h1,
h1 {
    font-size: 48px;
}

@media (max-width: 991.98px) {

    .h1,
    h1 {
        font-size: 42px;
    }
}

.h2,
h2 {
    font-size: 40px;
}

@media (max-width: 991.98px) {

    .h2,
    h2 {
        font-size: 32px;
    }
}

.h3,
h3 {
    font-size: 32px;
}

@media (max-width: 991.98px) {

    .h3,
    h3 {
        font-size: 28px;
    }
}

.pt-120 {
    padding-top: 100px;
}

@media (max-width: 767.98px) {
    .pt-120 {
        padding-top: 70px;
    }
}

.ptb-120 {
    padding: 100px 0;
}

@media (max-width: 767.98px) {
    .ptb-120 {
        padding: 70px 0;
    }
}

.ptb-60 {
    padding: 60px 0;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-120 {
    padding-bottom: 100px;
}

@media (max-width: 767.98px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}

.mt-15 {
    margin-top: 15px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

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

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

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

/******************************* Theme css **********************************/
.container-large {
    max-width: 1704px;
    margin: 0 auto;
    padding: 0 12px;
}

.primary-text-color {
    color: var(--primary-color);
}

.text-color {
    color: var(--text-color);
}

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

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

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

.secondary-text-color {
    color: var(--secondary-color);
}

.gap-48 {
    gap: 48px;
}

.bottom-border {
    border-bottom: 1px solid var(--border-color);
}

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

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

.fs-sm {
    font-size: 14px;
}

.fs-xs {
    font-size: 12px;
}

.theme-input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 14px 24px;
    background-color: var(--light-color);
    font-weight: 300;
}

.theme-divider {
    width: 100%;
    height: 1px;
    background-color: var(--gray-200);
    display: block;
}

.gray-border-bottom {
    border: 1px solid var(--gray-200);
}

.mx-340 {
    max-width: 340px;
}

.text-font-family {
    font-family: var(--body-font);
}

.hover-secondary:hover {
    color: var(--secondary-color);
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@-webkit-keyframes theme_fadeInUp {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes theme_fadeInUp {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes theme_fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes theme_fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes product-hover {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes product-hover {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@-webkit-keyframes flipimage {
    0% {
        -webkit-transform: scale(1) rotateY(0deg);
        transform: scale(1) rotateY(0deg);
    }

    50% {
        -webkit-transform: scale(0.8) rotateY(90deg);
        transform: scale(0.8) rotateY(90deg);
    }

    100% {
        -webkit-transform: scale(1) rotateY(0);
        transform: scale(1) rotateY(0);
    }
}

@keyframes flipimage {
    0% {
        -webkit-transform: scale(1) rotateY(0deg);
        transform: scale(1) rotateY(0deg);
    }

    50% {
        -webkit-transform: scale(0.8) rotateY(90deg);
        transform: scale(0.8) rotateY(90deg);
    }

    100% {
        -webkit-transform: scale(1) rotateY(0);
        transform: scale(1) rotateY(0);
    }
}

@-webkit-keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.main-content{
    color: var(--text-color);
}

.main-content h5{
    margin-top:5px;
    margin-bottom:25px;
}

.content-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
}

.content-gallery li {
    width: calc(33% - 15px);
    position: relative;
    overflow: hidden;
}

.content-gallery li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.content-gallery li img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.content-gallery li a {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.content-gallery li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.content-gallery li:hover::before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.content-gallery li:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.content-gallery li:hover a {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.content-tags span {
    color: var(--primary-color);
    text-transform: uppercase;
}

.content-tags .tags-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}

.content-tags .tags-list a {
    padding: 10px 20px;
    border: 1px solid var(--light-stroke);
    color: var(--primary-color);
    font-size: 15px;
}

.content-tags .tags-list a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/************** Header ****************/
.topbar-info {
    gap: 48px;
}

.topbar-info .item-single+.item-single {
    position: relative;
}

.topbar-info .item-single+.item-single::before {
    content: '';
    position: absolute;
    left: -24px;
    top: -8px;
    width: 1px;
    height: calc(100% + 16px);
    background-color: var(--border-color);
}

.topbar-info span {
    font-size: 14px;
}

.topbar-info a {
    font-size: 14px;
}

.topbar-info>a {
    color: var(--white-color);
}

.topbar-info>a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1399.98px) {
    .topbar-info {
        gap: 24px;
    }

    .topbar-info .item-single+.item-single::before {
        left: -12px;
    }
}

@media (max-width: 1199.98px) {
    .header-wrapper {
        padding-top:10px;
        padding-bottom:10px;
    }
}

.tpl-header-right {
    gap: 48px;
}

@media (max-width: 1700px) {
    .tpl-header-right {
        gap: 32px;
    }
}

@media (max-width: 1460px) {
    .tpl-header-right {
        gap: 14px;
    }

    .tpl-header-right .btn-text {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .tpl-header-right {
        gap: 1px;
    }
}

.tpl-header-select select {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
}

.tpl-navmenu {
    text-align: center;
}

.tpl-navmenu>ul {
    display: inline-block;
}

.tpl-navmenu>ul>li>a {
    text-transform: uppercase;
}

.tpl-navmenu ul {
    text-align: left;
}

.tpl-navmenu ul li {
    display: inline-block;
}

.tpl-navmenu ul li a {
    display: block;
    padding: 30px 25px;
    color: var(--white-color);
    font-size: 14px;
}

.tpl-navmenu ul li.has-submenu {
    position: relative;
}

.tpl-navmenu ul li.has-submenu::after {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    right: 10px;
    top: 32px;
    font-size: 13px;
    color: var(--white-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 350px;
    background-color: var(--white-color);
    z-index: 10;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper li {
    display: block;
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper li a {
    color: var(--primary-color);
    padding: 10px 24px;
    font-size: 16px;
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper li:hover>a {
    padding-left: 30px;
    color: var(--secondary-color);
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper li.has-submenu::after {
    content: '\f105';
    top: 10px;
    color: var(--primary-color);
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper li.has-submenu>.submenu-wrapper {
    content: '\f105';
    position: absolute;
    left: 100%;
    top: 10px;
}

.tpl-navmenu ul li.has-submenu>.submenu-wrapper li.has-submenu:hover>.submenu-wrapper {
    top: 0;
}

.tpl-navmenu ul li.has-submenu:hover>.submenu-wrapper {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.tpl-navmenu ul li.has-submenu:hover>.tpl-megamenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.tpl-navmenu ul li:hover>a {
    color: var(--secondary-color);
}

.tpl-navmenu ul li:hover::after {
    color: var(--secondary-color);
}

.tpl-megamenu {
    position: absolute;
    background-color: var(--white-color);
    top: calc(100% + 10px);
    left: -500px;
    z-index: 10;
    width: 1320px;
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.tpl-megamenu .megamenu-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tpl-megamenu .megamenu-row .megamenu-column {
    width: 15%;
}

.tpl-megamenu .megamenu-row .megamenu-column.border-r {
    position: relative;
}

.tpl-megamenu .megamenu-row .megamenu-column.border-r::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--light-stroke);
}

.tpl-megamenu .megamenu-row .megamenu-column.banner {
    width: 20%;
}

.tpl-megamenu .megamenu-row .megamenu-column .column-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tpl-megamenu .megamenu-row .megamenu-column .pages-list li {
    display: block;
}

.tpl-megamenu .megamenu-row .megamenu-column .pages-list li a {
    padding: 9px 0;
    color: var(--primary-color);
    font-weight: 300;
    font-size: 15px;
}

.tpl-megamenu .megamenu-row .megamenu-column .pages-list li a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

@media (max-width: 1460px) {
    .tpl-megamenu {
        left: -450px;
    }
}

@media (max-width: 1399.98px) {
    .tpl-megamenu {
        width: 1160px;
        padding: 45px;
        left: -430px;
    }
}

.header-toggle button span {
    background-color: var(--white-color);
}

.tpl-header-right>div+div {
    position: relative;
}

.tpl-header-right>div+div::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
}

@media (max-width: 1460px) {
    .tpl-header-right>div+div::before {
        left: -7px;
    }
}

/*************** Header style *****************/
.header-style .navmenu>ul>li>a {
    color: var(--primary-color);
}

.header-style .navmenu>ul>li.has-submenu::after {
    color: var(--primary-color);
}

.header-style .navmenu>ul>li:hover>a {
    color: var(--secondary-color);
}

.header-style .navmenu>ul>li:hover::after {
    color: var(--secondary-color);
}

.header-style .tpl-user-links .user-btn {
    color: var(--primary-color);
}

.header-style .tpl-user-links .user-btn:hover {
    color: var(--secondary-color);
}

.header-style .header-link {
    color: var(--primary-color);
}

.header-style .header-link:hover {
    color: var(--secondary-color);
}

.header-style .header-toggle button span {
    background-color: var(--primary-color);
}

.header-style .tpl-header-right>div+div::before {
    background-color: var(--light-stroke);
}

/**************** header style 3 ****************/
.header-middle {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-color);
    position: relative;
}

.header-btns a {
    color: var(--primary-color);
}

.header-btns a svg path {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.header-btns a:hover {
    color: var(--secondary-color);
}

.header-btns a:hover svg path {
    fill: var(--secondary-color);
}

.header-btns a+a {
    position: relative;
}

.header-btns a+a::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    width: 1px;
    height: 15px;
    background-color: #CACACA;
}

@media (max-width: 575.98px) {
    .header-btns a+a::before {
        left: -10px;
        top: 4px;
    }
}

.header-toggle {
    width: 40px;
    display: inline-block;
}

.header-toggle span {
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    display: block;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.header-toggle span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.header-toggle span+span {
    margin-top: 6px;
}

.header-toggle span:nth-child(1)::before,
.header-toggle span:nth-child(3)::before {
    right: 0;
    left: auto;
}

.header-toggle:hover span::before {
    right: 0;
    left: auto;
    width: 100%;
}

.header-toggle:hover span:nth-child(1)::before,
.header-toggle:hover span:nth-child(3)::before {
    left: 0;
    right: auto;
}

/************ Sticky header ***********/
.header-sticky {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.header-sticky.sticky-on {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
    -webkit-animation: 0.3s theme_fadeInDown;
    animation: 0.3s theme_fadeInDown;
}

.header-sticky.sticky-on .topbar {
    display: none !important;
}

.header-sticky.sticky-on .header-style-2 {
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.header-sticky.sticky-on .header-middle {
    display: none;
}

/******************** Preloader ******************/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.preloader h1 {
    font-family: var(--heading-font);
}

.preloader .preload-progress {
    width: 250px;
    height: 8px;
    border-radius: 30px;
}

.preloader .preload-progress span {
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 30px;
    background-color: var(--primary-color);
    -webkit-animation: 6s loading;
    animation: 6s loading;
}

/**************** Scroll top button ***************/
.scroll-top-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 3px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    font-size: 15px;
}

.template-btn {
    display: inline-block;
    font-weight: 500;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    padding: 0;
}

.template-btn.primary-btn {
    background-color: var(--blu-color);
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.template-btn.primary-btn::before,
.template-btn.primary-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.template-btn.primary-btn::before {
    height: 0;
    width: 2px;
}

.template-btn.primary-btn::after {
    width: 0;
    height: 2px;
}

.template-btn.primary-btn span {
    padding: 14px 36px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.template-btn.primary-btn span::before,
.template-btn.primary-btn span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.template-btn.primary-btn span::before {
    width: 2px;
    height: 0;
}

.template-btn.primary-btn span::after {
    width: 0;
    height: 2px;
}

.template-btn.primary-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.template-btn.primary-btn:hover::before {
    height: 100%;
}

.template-btn.primary-btn:hover::after {
    width: 100%;
}

.template-btn.primary-btn:hover span::before {
    height: 100%;
}

.template-btn.primary-btn:hover span::after {
    width: 100%;
}

.template-btn.outline-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    position: relative;
}

.template-btn.outline-btn::before,
.template-btn.outline-btn::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    left: 0;
    top: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.template-btn.outline-btn::before {
    width: 2px;
    height: 0;
}

.template-btn.outline-btn::after {
    width: 0;
    height: 2px;
}

.template-btn.outline-btn span {
    padding: 14px 36px;
    display: inline-block;
    position: relative;
}

.template-btn.outline-btn span::before,
.template-btn.outline-btn span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.template-btn.outline-btn span::before {
    width: 0;
    height: 2px;
}

.template-btn.outline-btn span::after {
    width: 2px;
    height: 0;
}

.template-btn.outline-btn:hover {
    color: var(--secondary-color);
    border-color: transparent;
}

.template-btn.outline-btn:hover::before {
    height: 100%;
}

.template-btn.outline-btn:hover::after {
    width: 100%;
}

.template-btn.outline-btn:hover span::before {
    width: 100%;
}

.template-btn.outline-btn:hover span::after {
    height: 100%;
}

.template-btn.outline-btn-white {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    background-color: transparent;
    position: relative;
}

.template-btn.outline-btn-white::before,
.template-btn.outline-btn-white::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    left: 0;
    top: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.template-btn.outline-btn-white::before {
    width: 2px;
    height: 0;
}

.template-btn.outline-btn-white::after {
    width: 0;
    height: 2px;
}

.template-btn.outline-btn-white span {
    padding: 14px 36px;
    display: inline-block;
    position: relative;
}

.template-btn.outline-btn-white span::before,
.template-btn.outline-btn-white span::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--secondary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.template-btn.outline-btn-white span::before {
    width: 0;
    height: 2px;
}

.template-btn.outline-btn-white span::after {
    width: 2px;
    height: 0;
}

.template-btn.outline-btn-white:hover {
    color: var(--secondary-color);
    border-color: transparent;
}

.template-btn.outline-btn-white:hover::before {
    height: 100%;
}

.template-btn.outline-btn-white:hover::after {
    width: 100%;
}

.template-btn.outline-btn-white:hover span::before {
    width: 100%;
}

.template-btn.outline-btn-white:hover span::after {
    height: 100%;
}

.template-btn.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.template-btn.secondary-btn::before,
.template-btn.secondary-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.template-btn.secondary-btn::before {
    height: 0;
    width: 2px;
}

.template-btn.secondary-btn::after {
    width: 0;
    height: 2px;
}

.template-btn.secondary-btn span {
    padding: 14px 36px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.template-btn.secondary-btn span::before,
.template-btn.secondary-btn span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.template-btn.secondary-btn span::before {
    width: 2px;
    height: 0;
}

.template-btn.secondary-btn span::after {
    width: 0;
    height: 2px;
}

.template-btn.secondary-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.template-btn.secondary-btn:hover::before {
    height: 100%;
}

.template-btn.secondary-btn:hover::after {
    width: 100%;
}

.template-btn.secondary-btn:hover span::before {
    height: 100%;
}

.template-btn.secondary-btn:hover span::after {
    width: 100%;
}

.template-video-btn {
    width: 120px;
    height: 120px;
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
}

/*************** Footer *****************/
.footer-widget {
    margin-bottom: 40px;
}

.footer-widget p {
    color: var(--light-color);
}

.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: inline-block;
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    color: var(--light-color);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.footer-links li+li {
    margin-top: 10px;
}

.footer-links li a {
    font-weight: 300;
    color: var(--light-color);
    position: relative;
}

.footer-links li a::before {
    content: '//';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    opacity: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

.footer-contact-list li {
    font-weight: 300;
    color: var(--text-color);
}

.footer-contact-list li+li {
    margin-top: 16px;
}

.footer-copyright {
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-copyright .copyright-links li {
    display: inline-block;
}

.footer-copyright p.text-white a {
    color: #fff;
}

.footer-copyright p.text-white a:hover {
    color: var(--secondary-color);
}

.footer-social-style a {
    color: var(--text-color);
    margin-right: 18px;
}

.footer-social-style a:hover {
    color: var(--secondary-color);
}

.footer-social-style a:hover i {
    -webkit-animation: 0.4s toTopFromBottom forwards;
    animation: 0.4s toTopFromBottom forwards;
}

/****************** Offcanvus **************/
.offcanvus-box {
    width: 425px;
    z-index: 100;
    top: 0;
    right: -430px;
    height: 100vh;
    overflow-y: scroll;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.offcanvus-box.active {
    right: 0;
}

.offcanvus-box .offcanvus-close {
    position: absolute;
    left: 30px;
    top: 30px;
    color: var(--primary-color);
}

.offcanvus-box .offcanvus-close:hover {
    color: var(--secondary-color);
}

.offcanvus-box .content-top {
    text-align: center;
    padding: 120px 60px 100px;
}

.offcanvus-box .content-top p {
    line-height: 26px;
}

.offcanvus-box .offcanvus-gallery {
    padding: 0 40px;
    gap: 10px;
}

.offcanvus-box .offcanvus-gallery a {
    width: calc(33% - 6px);
    overflow: hidden;
}

.offcanvus-box .offcanvus-gallery a img {
    max-width: 100%;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.offcanvus-box .offcanvus-gallery a img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.offcanvus-box .offcanvus-newsletter {
    padding: 100px 40px;
}

.offcanvus-box .offcanvus-bottom {
    border-top: 1px solid var(--gray-color);
    padding: 20px 40px;
}

.offcanvus-box .user-links a {
    color: var(--primary-color);
}

.offcanvus-box .user-links a:hover {
    color: var(--secondary-color);
}

.language-switcher button {
    font-size: 15px;
}

.language-switcher button img {
    margin-right: 8px;
}

.language-switcher .dropdown-menu {
    border-radius: 0;
    border-color: var(--gray-color);
}

.language-switcher .dropdown-menu li+li {
    border-top: 1px solid var(--light-color);
}

.language-switcher .dropdown-menu li a {
    padding: 4px 12px;
    display: block;
    color: var(--primary-color);
    font-size: 15px;
}

.language-switcher .dropdown-menu li a img {
    margin-right: 8px;
    max-width: 29px;
}

/************************ Mobile menu ****************/
.mobile-menu {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -310px;
    background-color: var(--white-color);
    z-index: 60;
    padding: 60px 24px;
    overflow-y: scroll;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.mobile-menu .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--primary-color);
}

.mobile-menu .close:hover {
    color: var(--secondary-color);
}

.mobile-menu .logo {
    width: 100%;
    display: block;
    background-color: var(--primary-color);
    text-align: center;
}

.mobile-menu .mobile-nav-menu {
    margin-top: 32px;
}

.mobile-menu .mobile-nav-menu li {
    display: block;
}

.mobile-menu .mobile-nav-menu li+li {
    border-top: 1px solid var(--light-stroke);
}

.mobile-menu .mobile-nav-menu li a {
    display: block;
    color: var(--primary-color);
    padding: 10px 0;
}

.mobile-menu .mobile-nav-menu li.has-submenu {
    position: relative;
}

.mobile-menu .mobile-nav-menu li.has-submenu>i {
    position: absolute;
    right: 0;
    top: 6px;
    padding: 8px;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.mobile-menu .mobile-nav-menu li.has-submenu>i.icon-rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-menu .mobile-nav-menu li.has-submenu>.submenu-wrapper {
    padding-left: 15px;
    display: none;
}

.mobile-menu.active {
    left: 0;
}

/****************** Breadcrumb e sidebar ****************/
.breadcrumb-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
}

.breadcrumb-text a {
    margin-right: 4px;
    color: var(--text-color);
    display: inline-block;
}

.breadcrumb-text a:hover {
    color: var(--secondary-color);
}

.breadcrumb-text span {
    margin-left: 4px;
}

.sidebar-widget .widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
}

.sidebar-widget .sidebar-check-fields li {
    display: block;
}

.sidebar-widget .sidebar-check-fields li label {
    position: relative;
    display: block;
}

.sidebar-widget .sidebar-check-fields li label>span {
    padding-left: 32px;
    display: block;
    position: relative;
    font-weight: 300;
}

.sidebar-widget .sidebar-check-fields li label>span::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 12px;
    text-align: center;
    line-height: 17px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-gray);
    color: transparent;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.sidebar-widget .sidebar-check-fields li label>span span {
    float: right;
}

.sidebar-widget .sidebar-check-fields li label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.sidebar-widget .sidebar-check-fields li label input:checked~span::before {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.sidebar-widget .sidebar-check-fields li+li {
    margin-top: 18px;
}

.sidebar-widget .color-select li label {
    position: relative;
    display: block;
}

.sidebar-widget .color-select li label>span {
    padding-left: 32px;
    display: block;
    font-weight: 300;
    position: relative;
}

.sidebar-widget .color-select li label>span::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: transparent;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.sidebar-widget .color-select li label>span span {
    float: right;
}

.sidebar-widget .color-select li label>span.bg-soft-gold::before {
    background-color: #EB9A3C;
}

.sidebar-widget .color-select li label>span.bg-light-pink::before {
    background-color: #FAA9D9;
}

.sidebar-widget .color-select li label>span.bg-green-touch::before {
    background-color: #99C88D;
}

.sidebar-widget .color-select li label>span.bg-navy-blue::before {
    background-color: #A9BFFA;
}

.sidebar-widget .color-select li label>span.bg-gray-white::before {
    background-color: #EEEACA;
}

.sidebar-widget .color-select li label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.sidebar-widget .color-select li label input:checked~span::before {
    color: var(--white-color);
}

.sidebar-widget .color-select li+li {
    margin-top: 18px;
}

/****************** Pagination ****************/
.template-pagination li a {
    display: inline-block;
    background-color: var(--light-color);
    padding: 9px 12px;
    color: var(--primary-color);
    font-size: 14px;
}

.template-pagination li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.template-pagination li a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/********************** Hero section **********************/
.tpl-hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 40px;
}

.tpl-hero-section .circle-white {
    width: 1090px;
    height: 1090px;
    background-color: var(--white-color);
    right: -60px;
    bottom: -380px;
}

@media (max-width: 1399.98px) {
    .tpl-hero-section .circle-white {
        width: 900px;
        height: 900px;
    }

    .tpl-hero-section .circle-color {
        max-width: 750px;
    }
}

@media (max-width: 1199.98px) {
    .tpl-hero-section {
        padding-top: 100px;
    }
}

@media (max-width: 460px) {
    .tpl-hero-section .circle-color {
        display: none;
    }
}

.hero-title {
    font-size: 70px;
    line-height: 80px;
}

@media (max-width: 1399.98px) {
    .hero-title {
        font-size: 80px;
        line-height: 1.2em;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 70px;
    }
}

@media (max-width: 460px) {
    .hero-title {
        font-size: 50px;
    }
}

.tpl-hero-slider {
    width: 1400px;
}

.tpl-hero-slider .slick-slide.slick-active .hero-subtitle {
    -webkit-animation: 1s theme_fadeInUp;
    animation: 1s theme_fadeInUp;
}

.tpl-hero-slider .slick-slide.slick-active .hero-title {
    -webkit-animation: 1.2s theme_fadeInUp;
    animation: 1.2s theme_fadeInUp;
}

.tpl-hero-slider .slick-slide.slick-active .template-btn {
    -webkit-animation: 1.5s theme_fadeInUp;
    animation: 1.5s theme_fadeInUp;
}

.tpl-hero-slider .slick-dots {
    text-align: center;
    width: 40px;
    position: absolute;
    left: -140px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.tpl-hero-slider .slick-dots li {
    display: block;
    line-height: 0;
}

.tpl-hero-slider .slick-dots li+li {
    margin-top: 20px;
}

.tpl-hero-slider .slick-dots li button {
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.2;
    font-size: 0;
    padding: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.tpl-hero-slider .slick-dots li.slick-active button {
    opacity: 1;
    width: 40px;
}

.tpl-hero-slider .prev-arrow,
.tpl-hero-slider .next-arrow {
    position: absolute;
    left: -132px;
    font-size: 15px;
}

.tpl-hero-slider .prev-arrow {
    top: 43%;
}

.tpl-hero-slider .next-arrow {
    bottom: 43%;
}

@media (max-width: 1600px) {
    .tpl-hero-slider .slick-dots {
        left: -70px;
    }

    .tpl-hero-slider .prev-arrow,
    .tpl-hero-slider .next-arrow {
        left: -64px;
    }
}

@media (max-width: 1399.98px) {
    .tpl-hero-slider {
        width: 100%;
    }
}

@media (max-width: 1260px) {
    .tpl-hero-slider .slick-dots {
        display: none;
    }

    .tpl-hero-slider .prev-arrow,
    .tpl-hero-slider .next-arrow {
        display: none;
    }
}

/************************** Slider spacing **************************/
.slider-spacing .slick-list {
    margin: 0 -12px;
}

.slider-spacing .slick-list .slick-slide {
    margin: 0 12px;
}

/*********************** Ticker ******************/
.tpl-ticker-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    padding-left: 100%;
    background-color: var(--blu-color);
}

.tpl-ticker-wrapper .tpl-ticker {
    display: inline-block;
    white-space: nowrap;
    padding: 26px 0;
    -webkit-animation: 30s ticker linear infinite;
    animation: 30s ticker linear infinite;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding-right: 100%;
}

.tpl-ticker-wrapper .tpl-ticker span {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.tpl-ticker-wrapper .tpl-ticker span+span {
    margin-left: 120px;
}

.tpl-ticker-wrapper .tpl-ticker span+span::before {
    content: '';
    position: absolute;
    left: -80px;
    width: 40px;
    height: 1px;
    background-color: var(--white-color);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.tpl-ticker-wrapper .tpl-ticker span:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.tpl-ticker-wrapper .tpl-ticker span:hover::before {
    top: calc(50% + 6px);
}

.tpl-ticker-wrapper .tpl-ticker:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

/************** Hero section *****************/
.hero-section {
    background-size: 0;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light-overlay);
    z-index: -1;
    display: none;
}

.hero-section .banner-1 {
    -webkit-animation: 1.1s theme_fadeInUp;
    animation: 1.1s theme_fadeInUp;
}

.hero-section .banner-2 {
    -webkit-animation: 1.2s theme_fadeInUp;
    animation: 1.2s theme_fadeInUp;
}

.hero-section .banner-3 {
    -webkit-animation: 1.5s theme_fadeInUp;
    animation: 1.5s theme_fadeInUp;
}

@media (max-width: 1199.98px) {
    .hero-section {
        background-size: cover;
        padding: 350px 0;
    }

    .hero-section::before {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 225px 0 250px 0;
    }
}

.hero-content {
    gap: 140px;
}

.hero-social {
    position: absolute;
    left: 12px;
    bottom: 80px;
    gap: 24px;
}

.hero-social a {
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
}

.hero-social a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.hero-social a:hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

@media (max-width: 1199.98px) {
    .hero-social {
        bottom: -200px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .hero-social a {
        color: var(--white-color);
    }
}

@media (max-width: 767.98px) {
    .hero-social {
        bottom: -170px;
    }
}

.hero-text {
    position: absolute;
    left: 0;
    top: 54%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.hero-text h1 {
    font-size: 120px;
    text-align: right;
}

.hero-text h1 span {
    color: var(--white-color);
    margin: 0 100px;
}

.hero-text>.title {
    position: relative;
    color: var(--white-color);
    text-transform: capitalize;
    display: inline-block;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-text>.title::before {
    content: '';
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 253px;
    height: 1px;
    background-color: var(--white-color);
}

.hero-text>.title::after {
    content: '';
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 253px;
    height: 1px;
    background-color: var(--white-color);
}

@media (max-width: 1600px) {
    .hero-text h1 {
        font-size: 110px;
    }
}

@media (max-width: 1460px) {
    .hero-text h1 {
        font-size: 100px;
    }
}

@media (max-width: 1399.98px) {
    .hero-text h1 span {
        margin: 0 50px;
    }
}

@media (max-width: 1260px) {
    .hero-text h1 span {
        margin: 0;
    }
}

@media (max-width: 1199.98px) {
    .hero-text h1 {
        text-align: center;
        color: var(--white-color);
    }
}

@media (max-width: 767.98px) {
    .hero-text h1 {
        font-size: 60px;
    }

    .hero-text>.title::before {
        width: 60px;
    }

    .hero-text>.title::after {
        width: 60px;
    }
}

@media (max-width: 460px) {
    .hero-text h1 {
        font-size: 50px;
    }
}



/**************** Content blog **************/
.blog-card {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.blog-card .blog-author {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 4px 20px;
}

.blog-card .feature-image {
    position: relative;
}

.blog-card .feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -76%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.blog-card .feature-image img {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.blog-card h4 {
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
}

.blog-card h4:hover {
    color: var(--secondary-color);
}

.blog-card p {
    color: var(--text-color);
}

.blog-card .explore-btn {
    color: var(--primary-color);
    text-decoration: underline;
    text-transform: uppercase;
}

.blog-card .explore-btn:hover {
    color: var(--secondary-color);
}

.blog-card:hover .feature-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-card:hover .feature-image::before {
    -webkit-animation: 0.75s shine;
    animation: 0.75s shine;
}

/******************* 404 page ***************/
.not-found-area {
    padding: 265px 0;
    min-height: 100vh;
}

.not-found-area .overlay-bg {
    background-size: cover;
    background-repeat: no-repeat;
}

.not-found-area .content-404 h1 {
    font-size: 300px;
    font-weight: 500;
    line-height: 260px;
}

.not-found-area .content-404 p {
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .not-found-area .content-404 h1 {
        font-size: 250px;
    }
}

@media (max-width: 767.98px) {
    .not-found-area .content-404 h1 {
        font-size: 200px;
        line-height: 200px;
    }
}

@media (max-width: 575.98px) {
    .not-found-area .content-404 h1 {
        font-size: 150px;
    }
}

@media (max-width: 575.98px) {
    .not-found-area {
        padding: 150px 0;
    }
}

/*************** Contact page *************/
.contact-form-box {
    padding: 60px;
}

@media (max-width: 767.98px) {
    .contact-form-box {
        padding: 32px;
    }
}

.location-map {
    opacity: 0.8;
}

.location-map iframe {
    width: 100%;
    height: 500px;
}

.contact-box {
    padding: 70px 60px;
}

.contact-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    border: 1px solid var(--secondary-color);
    left: 0;
    top: 0;
    -webkit-transition: var(--transition-base);
    -o-transition: var(--transition-base);
    transition: var(--transition-base);
    opacity: 0;
}

.contact-box h3 {
    position: relative;
}

.contact-box h3::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
}

.contact-box:hover::before {
    opacity: 1;
}


/******************************* Video **********************************/
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    opacity:1;
}
.video-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:1;
}

/******************************* CTA section home **********************************/
.cta-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}