/*------------------------------------------------------------------
  Project: Freelancer
  Author: The_Krishna
  Last change: 22/04/2024 
  Primary use: 
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------ 
1.Default CSS 
2.Preloader CSS
3.Main Menu CSS
4.Section One CSS
5.Section Two CSS
6.Section Three CSS
7.Section Four CSS
8.Section Five CSS
9.Section Six CSS
10.Section Seven CSS
11.Footer CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
.btn {
    background: transparent !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
ol,
ul {
    padding-left: 0rem !important;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul li {
    list-style: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #FF7D61;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #0F141C;
}
.tab-bar::-webkit-scrollbar {
    display: none;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #171B22;
    z-index: 1000;
    overflow: hidden;
}
.loder-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.loader {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    background-color: #FF7D61;
    transform: translateX(0px) translateY(0px) rotate(0deg);
    -webkit-animation: mainAnimation 2.6s ease 0s infinite forwards;
    animation: mainAnimation 2.6s ease 0s infinite forwards;
    z-index: 2;
}
.loader:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: -50px;
    background-color: #FFDB59;
    transform-origin: top right;
    transform: translateX(0px) translateY(0px) rotate(0deg);
    -webkit-animation: secundaryAnimation 2.6s ease 0s infinite forwards;
    animation: secundaryAnimation 2.6s ease 0s infinite forwards;
}
.shadow {
    position: absolute;
    width: 100px;
    height: 10px;
    top: 50%;
    left: 50%;
    margin-top: 50px;
    margin-left: -75px;
    border-radius: 50%;
    background-color: #95a5a6;
    transform: translateX(0px) translateY(0px) rotate(0deg);
    -webkit-animation: shadowAnimation 2.6s ease 0s infinite forwards, float 1s ease-in-out 0s infinite forwards;
    animation: shadowAnimation 2.6s ease 0s infinite forwards, float 1s ease-in-out 0s infinite forwards;
    filter: blur(5px);
    z-index: 1;
}
@keyframes mainAnimation {
    0% {
        width: 50px;
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }

    20% {
        width: 50px;
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }

    40% {
        width: 100px;
        transform: translateX(-50px) translateY(0px) rotate(0deg);
    }

    60% {
        width: 100px;
        transform-origin: bottom right;
        transform: translateX(-100px) translateY(0px) rotate(90deg);
    }

    80% {
        width: 50px;
        transform: translateX(-25px) translateY(0px) rotate(90deg);
    }

    100% {
        width: 50px;
        transform: translateX(-50px) translateY(0px) rotate(90deg);
    }
}
@keyframes secundaryAnimation {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }

    20% {
        transform: translateX(0px) translateY(0px) rotate(180deg);
    }

    40% {
        transform: translateX(0px) translateY(0px) rotate(180deg);
    }

    60% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }

    80% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateX(0px) translateY(0px) rotate(180deg);
    }
}
@keyframes shadowAnimation {
    0% {
        width: 150px;
        transform: translateX(-25px) translateY(0px) rotate(0deg);
    }

    20% {
        width: 75px;
        transform: translateX(37.5px) translateY(0px) rotate(0deg);
    }

    40% {
        width: 200px;
        transform: translateX(-25px) translateY(0px) rotate(0deg);
    }

    60% {
        width: 75px;
        transform: translateX(37.5px) translateY(0px) rotate(0deg);
    }

    80% {
        width: 75px;
        transform: translateX(37.5px) translateY(0px) rotate(0deg);
    }

    100% {
        width: 150px;
        transform: translateX(-25px) translateY(0px) rotate(0deg);
    }
}
@keyframes float {
    0% {
        top: 50%;
    }

    50% {
        top: 51%;
    }

    100% {
        top: 50%;
    }
}
/*-----------------------[ 3.Main Menu CSS ]------------------------*/
.header-title {
    margin-left: auto;
    margin-right: auto;
}
.top-navbar-title {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
}
.top-navbar-title li a,
.top-navbar-title li {
    color: var(--11, #FFF);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}
.hell {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}
.top-navbar_full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
}
header {
    background-color: #171B22;
    border-bottom: 1px solid #ffffff38;
}
.fixed {
    position: fixed;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0%;
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
    animation: fixedheader 600ms ease 0ms 1 forwards;
}
@keyframes fixedheader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
.top-navbar-title li a:hover {
    color: #FF7D61;
}
.services-active {
    color: #FF7D61 !important;
}
.services-active svg {
    filter: brightness(0) saturate(100%) invert(51%) sepia(81%) saturate(433%) hue-rotate(321deg) brightness(104%) contrast(100%);
}
.btn::before,
.btn::after {
    position: absolute;
    content: "";
}
.btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.btn span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    padding: 13px 20px;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
}
/*-----------------------[ 4.Section One CSS ]------------------------*/
.section-one {
    background-image: url(../image/home-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    padding: 80px 0 100px 0;
    position: relative;
}
.lapi-img1-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lapi-img1 {
    max-width: 100%;
    position: absolute;
    bottom: -100px;
    z-index: 1;
}
img.demo-img {
    position: absolute;
    right: 250px;
    bottom: -1px;
    z-index: 0;
}
img.demo2-img {
    position: absolute;
    left: 250px;
    bottom: -1px;
    z-index: 0;
}
.star-1 {
    position: absolute;
    right: 20%;
    bottom: 50%;
    animation: rotation infinite 9s linear;
}
img.star-2 {
    position: absolute;
    top: 20%;
    left: 13%;
    animation: rotation infinite 9s linear;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.section-one h1 {
    font-weight: 700;
    font-size: 100px;
    line-height: 120px;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    letter-spacing: 1px;
    z-index: 10;
}
.section-one p {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #FFF;
    text-align: center;
    padding-top: 20px;
}
.btn-holder-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.heder-btn {
    border: 1px solid transparent;
    background: #FFDB59;
    padding: 8px 17px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}
.heder-btn:hover {
    border: 1px solid #FFDB59;
    background: transparent;
    color: #FFDB59;
}
/*-----------------------[ 5.Section Two CSS ]------------------------*/
.section-two {
    padding: 100px 0 100px 0;
    background-color: #FFF;
}
.almost {
    text-align: center;
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
    color: #171B22;
    padding-top: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-two-list-main {
    display: flex;
    align-items: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 43px;
    padding: 40px 0 60px 0;
}
.section-two-list-main li {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #000;
}
.section-two-list-main li::before {
    content: "\2022";
    font-size: 20px;
    margin-right: 10px;
}
.scroll-box {
    padding: 25px 25px;
    border-radius: 25px 0px 25px 0px;
    border: 2px solid #dee2e6;
}
.image-container-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}
.scroll-box h2 {
    color: #000;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 18px;
}
.scroll-box p {
    color: #000000a1;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
/*-----------------------[ 6.Section Three CSS ]------------------------*/
.container2 {
    margin: 0 100px;
}
.almost2 {
    padding-top: 0;
    color: #FFF;
    max-width: 990px;
}
.section-three {
    padding: 100px 0;
    background-image: url(../image/home-bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
}
.prebuilt-site {
    font-size: 20px;
    font-weight: 400;
    color: rgba(246, 249, 255, 0.6);
    line-height: 1.6;
    font-style: normal;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 70px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.window {
    border-radius: 20px;
    background: #343a40;
    padding: 17px 17px 24px 17px;
    box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.16) inset;
}
.window img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
    border-radius: 20px;
}
.img-scroll-text a {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: #FFF;
}
.img-scroll-text-sub a {
    font-size: 15px;
    color: #FFF;
    margin-bottom: 0;
    padding-top: 8px;
}
.purchase-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
/*-----------------------[ 7.Section Four CSS ]------------------------*/
.section-four {
    padding: 100px 0;
    background: #FFF;
    border-radius: 60px;
}
.lapi-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lapi-img {
    max-width: 100%;
}
.full-responsive-text {
    font-size: 80px;
    color: #000;
    text-align: center;
    line-height: 80px;
    font-weight: 600;
    padding-bottom: 80px;
}
.resposnive-img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(58%) saturate(1655%) hue-rotate(25deg) brightness(95%) contrast(101%);
}
.responsive-images-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    padding-top: 50px;
}
.resposnive-img-sub {
    text-align: center;
}
.resposnive-img-sub p:first-of-type {
    color: #000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    padding: 20px 0 8px 0;
    text-align: center;
}
.resposnive-img-sub p:nth-of-type(2) {
    color: #343a40;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
}
/*-----------------------[ 8.Section Five CSS ]------------------------*/
.section-five {
    padding: 100px 0;
    background: #171B22;
}
.slick-slider .element img {
    max-width: 100%;
}
.explore {
    font-size: 50px;
    color: #FFF;
    text-align: center;
    line-height: 65px;
    font-weight: 600;
}
.optimally {
    font-size: 20px;
    font-weight: 400;
    color: rgba(246, 249, 255, 0.6);
    line-height: 1.6;
    font-style: normal;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 70px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
/*-----------------------[ 9.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
    background-color: #FFF;
}
.features_great {
    font-size: 50px;
    color: #000;
    text-align: center;
    line-height: 80px;
    font-weight: 600;
}
.fetures-box-main img {
    max-width: 100%;
    width: 70px;
    height: 70px;
}
.fetures-box-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
}
.features-box {
    backdrop-filter: blur(0px);
    border-radius: 10px;
    border: 1px solid #dee2e6;
    text-align: center;
    padding: 40px 20px;
}
.features-box p {
    color: #000;
    font-size: 18px;
    padding-top: 20px;
    line-height: 30px;
}
/*-----------------------[ 10.Section Seven CSS ]------------------------*/
.footer-text h6 {
    font-size: 40px;
    line-height: 50px;
    color: #FFF;
    text-align: center;
    padding-bottom: 10px;
}
.footer-text h2 {
    font-size: 40px;
    line-height: 50px;
    color: #FFF;
    text-align: center;
    padding-bottom: 20px;
}
.footer-text p {
    font-size: 18px;
    line-height: 30px;
    color: #FFF;
    text-align: center;
}
.offcanvas {
    background: #171B22;
}
.btn-close {
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(6%) hue-rotate(224deg) brightness(100%) contrast(103%);
    box-shadow: none;
}
.btn-close:hover {
    box-shadow: none;
}
.Mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
/*-----------------------[ 11.Footer CSS ]------------------------*/
.project-detail-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#project-detail {
    padding: 100px 0;
    background: #000;
}
.categary-box {
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #FFF;
}
.categary-box h4 {
    color: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px !important;
}
.categary-box p {
    color: #adb5bdeb;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.view-btn {
    padding: 18px 32px;
    border: 2px solid white;
    color: #121212;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
    margin-top: 40px;
    background: white;
}
.detail-btn {
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
    border: 1px solid #FFF;
    width: 100%;
}
.detail-btn .text {
    padding: 0 25px 0 18px;
    text-align: left;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}
.package-box {
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 30px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.footer-title {
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
    padding-right: 1px;
}
.figure {
    font-size: 70px;
    line-height: 1;
    color: #fff;
    font-weight: 100;
    margin-top: 8px;
    margin-right: 20px;
}
.package-list {
    display: flex;
    flex: 1;
    max-width: 400px;
    align-items: center;
}
.package-list ul li {
    background: rgba(251, 251, 251, 0.2);
    border: 1px solid rgba(251, 251, 251, 0.2);
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1.6;
    border-radius: 4px;
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 400;
    color: #fff;
    margin-top: 4px;
    margin-right: 4px;
}
.project-detail-bottom {
    margin-top: 40px;
}
.visit-box h2,
.guarantee h2 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.visit-box h2 {
    margin-top: 20px !important;
}
.guarantee h2 {
    margin-bottom: 20px !important;
}
.visit-box {
    text-align: center;
    padding: 40px;
    height: 100%;
    border: 1px solid #FFF;
}
.guarantee {
    text-align: center;
    margin-top: 20px !important;
}
.guarantee p {
    color: #FF484D;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.title-box h3 {
    margin-top: 20px !important;
}
.text-danger {
    color: #FFDB59 !important;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px !important;
}
span.value {
    color: #FFF;
}
.detail-btn .value {
    background-color: white;
    color: #121212;
    border-radius: 5px;
    width: 80px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    height: 40px;
    line-height: 40px;
}
.view-btn:hover {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}
.visit-box img {
    border-radius: 40px;
}
.phoneWrapper.frame-solid .in {
    border-radius: 4px;
}
#copyright-sec {
    position: relative;
    background: #000;
}
.footer-line {
    border-top: 1px solid #FFF;
    padding: 30px 0;
}
.copyright-txt {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.copyright-txt a {
    color: white;
}