/********************************************************** */
/********************  Landio Lnading ******************** */
/********************************************************* */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

:root {
    --base-color: rgba(17, 17, 17, 0.7);
    --heading-color: #111111;
    --primary-color: #FC5546;
    --base-font: 'Inter', serif;
    --heading-font: 'Hanken Grotesk', serif;
}

body {
    color: var(--base-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--base-font);
}

a {
    color: var(--base-color);
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--heading-color);
}

.text-white p,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white h1 a,
.text-white h2 a,
.text-white h3 a,
.text-white h4 a,
.text-white h5 a,
.text-white h6 a,
.text-white a:not(:hover) {
    color: white;
}

h1 {
    font-size: 75px;
    line-height: 1.12;
}

h2 {
    font-size: 65px;
    font-weight: 600;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

h5 {
    font-size: 20px;
    line-height: 1.4;
}

h6 {
    font-size: 16px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

header:after,
section:after,
footer:after {
    display: block;
    clear: both;
    content: "";
}

hr {
    height: 2px;
    opacity: 0.1;
}

/* Slick Dots */
.slick-dots {
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

.slick-dots li {
    margin: 10px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #ddd;
}

.slick-dots li button {
    overflow: hidden;
    text-indent: 100px;
}

.slick-dots li:after {
    content: '';
    height: 0;
    width: 0;
    left: 50%;
    top: 50%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border: 1px solid var(--primary-color);
}

.slick-dots li.slick-active {
    background: var(--primary-color);
}

.slick-dots li.slick-active:after {
    opacity: 1;
    height: 30px;
    width: 30px;
}

.slick-dots li button {
    text-indent: -900px;
}

/****************************************************** */
/****************** 02. Common Class ****************** */
/****************************************************** */
.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

/** Section Title style */
.section-title {
    position: relative;
}

.section-title .sub-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title .headline {
    font-size: 300px;
    line-height: 1;
    left: 50%;
    top: 0;
    width: max-content;
    position: absolute;
    padding-bottom: 50px;
    background-clip: text;
    letter-spacing: -0.03em;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    transform: translate(-50%, -20%);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(180deg, rgba(94, 92, 250, 0.01) 0%, rgba(94, 92, 250, 0.07) 100%);
}

.text-white .headline {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.07) 100%);
}

.text-white .sub-title {
    color: white;
}

/** Button styles */
.theme-btn,
a.theme-btn {
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: 0.5s;
    font-weight: 600;
    text-align: center;
    padding: 10px 30px;
    border-radius: 30px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background: var(--primary-color);
}

.theme-btn i,
a.theme-btn i {
    font-size: 12px;
    margin-left: 8px;
}

.theme-btn:hover,
a.theme-btn:hover {
    box-shadow: 0px 18px 20px rgba(38, 38, 38, 0.25);
}

.theme-btn.style-two,
a.theme-btn.style-two {
    background: white;
    border: 1px solid;
    color: var(--primary-color)
}

.theme-btn.style-three,
a.theme-btn.style-three {
    background: #28F67A;
    color: var(--heading-color);
}

/*** Preloader style ** */
.preloader {
    position: fixed;
    background-color: var(--heading-color);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.preloader .preloader-image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-blend-mode: multiply;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1;
    }
}
@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1;
    }
}

/****************************************************** */
/********************* Hero Area ********************** */
/****************************************************** */
.hero-section {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 30px;
}

.hero-content p {
    margin: auto;
    font-size: 20px;
    max-width: 900px;
    line-height: 35px;
}

.hero-content p span {
    font-weight: 600;
    color: var(--primary-color);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    align-items: center;
    justify-content: center;
}

.hero-btns .theme-btn {
    margin: 10px 5px 0;
}

/****************************************************** */
/********************* Demo Area ********************** */
/****************************************************** */
.home-pages {
    position: relative;
    z-index: 1;
}

.page-item {
    text-align: center;
    margin-bottom: 60px;
}

.page-item .image {
    display: block;
    margin-bottom: 22px;
    transition: 0.5s;
    position: relative;
    border: 1px solid var(--primary-color);
}

.page-item .image .content {
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    transition: 0.5s;
    position: absolute;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: rgba(5, 18, 1, 0.85);
}

.page-item .image img {
    width: 100%;
    box-shadow: 10px 4px 30px rgba(0, 0, 0, 0.1);
}

.page-item .image .content .theme-btn {
    margin: 5px;
}

.page-item:hover .image .content {
    opacity: 1;
}

.page-item.comming-soon .image .content {
    opacity: 1;
}

.page-item.comming-soon .image .content h4 {
    color: white;
    margin-bottom: 0;
}

.inner-pages .page-item {
    margin-bottom: 30px;
}

.home-bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -25%;
    z-index: -1;
}

.home-bg img {
    width: 100%;
}

.page-item.comming-soon .image .content {
    opacity: 1;
}

.page-item.comming-soon .image .content h4 {
    color: white;
    margin-bottom: 0;
}


/****************************************************** */
/******************* Featurs Plugin ****************** */
/****************************************************** */
.features-plugin {
    background: linear-gradient(201.31deg, #CC3362 11.55%, #482D73 88.35%);
}

.features-plugin-content {
    max-width: 490px;
}

.features-plugin-content p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.features-plugin-content ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

.features-plugin-content ul li {
    padding: 12px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin: 20px 20px 0 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.features-plugin-content ul li img {
    max-width: 20px;
    margin-right: 10px;
}

/****************************************************** */
/********************* Inner Pages ******************** */
/****************************************************** */
.inner-pages-slider .slick-track {
    display: flex;
    align-items: center;
}

.inner-pages-slider {
    margin-left: -13px;
    margin-right: -13px;
}

.inner-pages-slider .inner-page-item {
    margin-right: 13px;
    margin-left: 13px;
    border: 1px solid var(--primary-color);
}

.inner-page-item img {
    width: 100%;
}

/****************************************************** */
/******************** Feature Area ******************* */
/****************************************************** */
.features-section {
    z-index: 1;
    position: relative;
    background: #F7F8FE;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
    background: white;
    border-radius: 7px;
    padding: 50px 30px 33px;
    height: calc(100% - 30px);
    box-shadow: 10px 0 60px rgba(58, 65, 11, 0.1);
}

.feature-item .icon {
    margin-bottom: 30px;
}

.feature-item h4 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.feature-two-item {
    display: flex;
    max-width: 240px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    align-items: center;
}

.feature-two-item img {
    max-width: 65px;
    flex: none;
    margin-right: 20px;
}

.feature-two-item span {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

/****************************************************** */
/******************** Main Footer ********************* */
/****************************************************** */
.footer-section {
    z-index: 1;
    position: relative;
    background-color: #021433;
}

.footer-content .headline {
    opacity: 0.4;
}

.footer-shapes .shape {
    position: absolute;
    z-index: -1;
    max-width: 15%;
    box-shadow: 10px 4px 30px rgba(0, 0, 0, 0.1);
}

.footer-shapes .shape.one {
    left: 8%;
    top: 10%;
}

.footer-shapes .shape.two {
    right: 4%;
    top: 10%;
}

.footer-shapes .shape.three {
    left: 4%;
    bottom: 15%;
}

.footer-shapes .shape.four {
    right: 8%;
    bottom: 15%;
}
