/*------------------------------------------------------------------
Project: Content Writer
Author: The_Krishna
Last change: 25/07/2024
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Page Loader CSS
3.Button CSS
4.Whole Site Image Animtion CSS
5.Main Header Menu CSS
6.Mobile Menu CSS
7.Section One CSS
8.Section Two CSS
9.Section Three CSS
10.Section Four CSS
11.Section Five CSS
12.Section Six CSS
13.Section Seven CSS
14.Section Eight CSS
15.Section Nine CSS
16.Section Ten CSS
17.Section Footer CSS
18.Bottom top button CSS
19.About Page CSS
20.About Section two CSS
21.About Section three CSS
22.About Section four CSS
23.About Section Five CSS
24.FAQ Page CSS
25.Coming Soon Section one CSS
26.404 Section one CSS
27.Services Page 1 CSS
28.Services Page 2 CSS
29.Single services 1 CSS
30.Project Page2 CSS
31.Project Page3 CSS
32.Blog Page3 CSS
33.Contact Page CSS
34.Single Services video CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
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;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #FFDB59;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #0F141C;
}
body {
    background: rgba(15, 20, 28, 1);
    overflow-y: scroll;
    overflow-x: hidden;
}
/*-----------------------[ 2.Page Loader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #171B22;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.page-loader img {
    width: 150px;
    height: auto;
}
/*-----------------------[ 3.Button CSS ]------------------------*/
.button {
    overflow: hidden;
    padding: 0;
    background: #FF7D61;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.button span {
    color: white;
    font-size: 18px;
    font-family: Epilogue;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    display: block;
}
.button::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFDB59;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    color: #0F141C;
    font-size: 18px;
    font-family: Epilogue;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    display: block;
}
.button::before,
.button>span {
    padding: 18px 30px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.button:hover>span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
/*-----------------------[ 4.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
    transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}
.img-animation-style3 img {
    transform: scale(1.5) translate(0, 100px);
}
.img-animation-style4 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style4 img {
    transform: scale(1.5) translate(0, -100px);
}
.img-animation-style5 {
    clip-path: inset(0 15%);
    transform: translate3d(0, 150px, 0);
}
.img-animation-style5.active {
    clip-path: inset(0 0);
    transform: translate3d(0, 0, 0);
}
.img-animation-style5 img {
    transform: scale(1.5) translate(0, -10%);
}
.img-animation-style6 {
    clip-path: circle(15% at 50% 50%);
}
.img-animation-style6.active {
    clip-path: circle(100% at 50% 50%);
}
.img-animation-style6 img {
    transform: scale(1.5) translate(0, 0);
}
/*-----------------------[ 5.Main Header Menu CSS ]------------------------*/
header {
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 100;
    margin: 0 auto;
}
.top-navbar.fixed {
    background: rgba(23, 27, 34, 0.3);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.side-menu-logo,
.side-menu-logo2 {
    display: none;
}
.navbar {
    padding: 0;
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}
.menu-item {
    position: relative;
    display: inline-block;
}
li.menu-item.menu-dropdown.active .menu-link {
    color: #FFDB59;
}
li.submenu-item.active {
    background: #FFDB59;
}
li.submenu-item.active a {
    color: #0F141C;
}
li.current-active a {
    color: #FFDB59 !important;
}
ul#menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #FFF;
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}
@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.button1 a::before {
    background: #071B35;
    color: #fff;
}
.submenu {
    position: absolute;
    top: 60px;
    left: -2rem;
    min-width: 14rem;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: #FFF;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #FFDB59;
    border-top: 2px solid #FFDB59;
}
.submenu-item {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
}
.submenu-link {
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.35s ease;
}
.submenu-item:hover .submenu-link {
    color: #0F141C;
}
.submenu-item:hover {
    outline: none;
    background: #FFDB59;
}
.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}
.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: #FFDB59;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
/*-----------------------[ 6.Mobile Menu CSS ]------------------------*/
.side-menu-offcanvas-main .offcanvas-header {
    justify-content: space-between;
}
.close-square {
    width: 35px;
}
.side-menu-offcanvas-main {
    background: #171B22;
}
.side-menu-offcanvas-main .accordion-item {
    background: #171B22;
    border-radius: 0;
}
.side-menu-accordion-item button {
    background: #171B22;
}
.side-menu-accordion-item a,
.side-menu-accordion-item button {
    padding: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    color: #FFF;
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.side-menu-accordion-item {
    padding: 16px 20px;
}
.accordion-button:not(.collapsed) {
    color: #FFDB59;
    background: transparent;
    box-shadow: none;
}
.side-menu-accordion-item .accordion-button::after {
    background-image: url('../images/svg/addition-svg.svg');
}
.side-menu-sub-item a {
    color: #FFF;
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.side-menu-sub-item {
    padding: 10px 10px;
    margin: 10px 0;
    border: 1px solid #FFF;
}
.side-menu-accor-body {
    padding: 0 10px 10px 10px;
}
.side-menu-offcanvas-main .offcanvas-body {
    display: flex;
    align-items: center;
}
.side-menu-offcanvas-main .offcanvas-body .accordion {
    width: 100%;
}
/*-----------------------[ 7.Section One CSS ]------------------------*/
#section-one {
    background-image: url('../images/home/home-img1.png');
    background-position: top right;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.woman-img1 {
    mix-blend-mode: luminosity;
    max-width: 100%;
}
.welcome {
    color: white;
    font-size: 18px;
    font-family: Epilogue;
    font-weight: 500;
    line-height: 24px;
    word-wrap: break-word
}
.welcome span {
    font-size: 26px;
}
.wave {
    transform-origin: 70% 70%;
    display: inline-block;
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
}
@keyframes wave-animation {
    0% {
        transform: rotate(0.0deg);
    }
    10% {
        transform: rotate(14.0deg);
    }
    20% {
        transform: rotate(-8.0deg);
    }
    30% {
        transform: rotate(14.0deg);
    }
    40% {
        transform: rotate(-4.0deg);
    }
    50% {
        transform: rotate(10.0deg);
    }
    60% {
        transform: rotate(0.0deg);
    }
    100% {
        transform: rotate(0.0deg);
    }
}
.welcome-main {
    padding: 10px 20px;
    border-radius: 22px;
    background: rgba(23, 27, 34, 1);
    max-width: 300px;
    width: 100%;
}
.emily {
    color: white;
    font-size: 54px;
    font-family: Epilogue;
    font-weight: 700;
    line-height: 72px;
    word-wrap: break-word;
    padding-top: 20px;
}
.FreelanceCopyright {
    color: #FFDB59;
    font-size: 54px;
    font-family: Epilogue;
    font-weight: 500;
    line-height: 72px;
    word-wrap: break-word
}
.text-img-section-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 22px;
    margin-top: 40px;
}
.Since {
    color: #909090;
    font-size: 20px;
    font-family: DM Sans;
    font-weight: 400;
    line-height: 30px;
    word-wrap: break-word;
    margin-bottom: 40px;
}
.Subtract {
    position: absolute;
    top: -1px;
    left: -1px;
    height: 102%;
    width: 101%;
}
.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.services-page-video {
    width: 100%;
    height: auto;
    display: block;
}
.section-one-col {
    display: flex;
    align-items: center;
}
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    z-index: 1;
    background: #FFDB59;
    transform: rotate(5deg);
    width: 100%;
    left: 0;
}
.logos-slide {
    animation: 70s slide infinite linear;
}
@keyframes infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee__content {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
    padding: 10px 0 0;
}
.marquee-img-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}
.marquee-img-main p {
    color: var(--12, #0F141C);
    text-align: center;
    font-family: Epilogue;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    margin-left: 40px;
    letter-spacing: 0.96px;
}
.marquue-flower {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(184deg) brightness(102%) contrast(102%);
}
/*-----------------------[ 8.Section Two CSS ]------------------------*/
.section-heading-text {
    color: #FFF;
    font-family: Epilogue;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}
.section-heading-text span {
    color: #FFDB59;
}
.section-sub-text {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.libero {
    padding: 20px 0 40px;
}
.section2-img1 {
    max-width: 100%;
}
.secton-two-col-bg {
    background: rgba(23, 27, 34, 1);
    max-width: 520px;
    padding: 100px 40px 0 40px;
    margin: 0 auto;
}
.secton-two-col-bg-position {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0);
}
.projectdone {
    color: var(--12, #0F141C);
    text-align: center;
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.36px;
    background: #FFDB59;
    padding: 10px 20px;
    transform: rotate(-90deg);
    width: 100%;
    max-width: 220px;
    position: absolute;
    left: -100px;
    top: 88px;
}
.project-done-main-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 33px;
}
.more-service-text {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.more-service-text span a {
    color: #FF7D61;
}
.more-service-text span a:hover {
    color: #FFDB59;
}
.secton-two-col-bg2 {
    padding: 40px;
}
.content-text {
    color: var(--14, #909090);
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 8px;
}
.seo-optimized {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}
.home-page-services-main {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
}
.non {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.services-list-col-main {
    padding-top: 70px;
}
.home-page-services-header {
    margin-bottom: 40px;
}
/*-----------------------[ 9.Section Three CSS ]------------------------*/
.section-three {
    padding: 100px 0;
}
.clients-work {
    text-align: center;
    padding-bottom: 60px;
}
.client-style {
    position: relative;
}
.client-style .client-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(23, 27, 34, 1);
}
.client-style .featured-wrapper,
.client-hover-img {
    transition: transform .4s ease;
    padding: 18px 37px;
}
.client-style .client-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    visibility: hidden;
    padding: 18px 37px;
    filter: brightness(0) saturate(100%) invert(88%) sepia(99%) saturate(500%) hue-rotate(325deg) brightness(99%) contrast(102%);
}
.client-style .client-wrapper:hover .client-hover-img {
    visibility: visible;
    transform: translateY(0);
}
.client-style .featured-wrapper {
    transform: translateY(0);
}
.client-style .client-wrapper:hover .featured-wrapper {
    transform: translateY(100%);
}
.clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
/*-----------------------[ 10.Section Four CSS ]------------------------*/
.section-four {
    background-image: linear-gradient(rgba(23, 27, 34, 0.9), rgba(23, 27, 34, 0.9)), url('../images/home/document-upoad-img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    height: 675px;
}
.audience {
    max-width: 630px;
    width: 100%;
    padding-bottom: 20px;
}
.passages {
    color: #FFF;
    max-width: 630px;
    width: 100%;
}
.audience-documet-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a.button.button5 {
    background: transparent;
    border: 2px solid #FFF;
    margin-bottom: 30px;
}
a.button.button5:hover {
    border: 2px solid #FFDB59;
}
a.button.button6 {
    width: 100%;
    text-align: center;
}
/*-----------------------[ 11.Section Five CSS ]------------------------*/
.section-five {
    padding: 0 0;
}
.section-five-header-srvices {
    background: #0F141C;
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
}
.our-servicestext-main {
    text-align: center;
    padding-bottom: 20px;
    padding-top: 100px;
}
.pharetra {
    text-align: center;
    max-width: 850px;
    color: #FFF;
    margin: 0 auto;
    width: 100%;
}
.section-five-row {
    padding: 100px 0;
    gap: 30px 0;
}
.contentWriter-Services-box {
    padding: 20px 20px 60px 20px;
    border: 2px solid rgba(23, 27, 34, 1);
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
}
.contentWriter-Services-box:hover {
    background: #171B22;
}
.contentWriter-Services-box::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-top: 48px solid #0F141C;
    transform: rotate(90deg);
}
.contentWriter-Services-box::before {
    content: '';
    position: absolute;
    position: absolute;
    bottom: 21px;
    right: -10px;
    width: 0;
    height: 2px;
    transform: rotate(135deg);
    border-left: 66px solid rgba(23, 27, 34, 1);
}
.contentWriter-Services-box h3 {
    padding: 20px 0 10px 0;
}
.contentWriter-Services-box h3 a {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}
.contentWriter-Services-box p {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.services-more-btn {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(23, 27, 34, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    background: #0F141C;
}
.contentWriter-Services-box:hover .services-more-btn {
    background: #FF7D61;
}
/*-----------------------[ 12.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
    background: var(--5, #171B22);
    position: relative;
}
.facilisi {
    color: #FFF;
    padding-top: 20px;
    max-width: 520px;
}
.get-started {
    font-size: 24px;
    line-height: 36px;
}
.get-started-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-transform: none;
    padding-top: 10px;
    padding-bottom: 0;
    max-width: 460px;
}
.working-process-svg-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.working-process-svg-main1 {
    margin-top: 40px;
}
.working-process-svg-main-center {
    margin: 40px 0;
}
.CustomizeOrderBox {
    background: #0F141C;
    padding: 30px;
    max-width: 440px;
    width: 100%;
}
.customize-order-text {
    text-align: center;
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 30px;
}
.word-count-text {
    color: var(--1, #FFF);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 10px;
}
.button-increment-decrement {
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    background: #171B22;
    color: #FFF;
}
.button-increment-decrement:hover {
    background: #FF7D61;
}
.number {
    margin: 0 20px;
    color: #FFDB59;
    text-align: center;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.button-increment-decrement-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--5, #171B22);
    margin-bottom: 30px;
}
.button-increment-decrement-main input {
    width: 100%;
    height: 48px;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: #FFF;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.order-total-box-main {
    background: #FFF;
    padding: 20px 30px;
    max-width: 440px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order-total-box-main p {
    color: var(--12, #0F141C);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.order-total-box-main p:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.section-six-col2 {
    z-index: 5;
}
.working-process-woman {
    position: absolute;
    right: 95px;
    bottom: 0;
    max-width: 100%;
    z-index: -1;
}
/*-----------------------[ 13.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
}
.woman-img3-main {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.woman-img3 {
    max-width: 100%;
}
.union {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    animation: mover 1s infinite alternate;
    max-width: 100%;
}
.worked-box {
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.24) 100%);
    box-shadow: 0px 40px 40px -25px rgba(19, 31, 47, 0.60);
    backdrop-filter: blur(5px);
    padding: 20px;
    width: 100%;
    max-width: 330px;
    position: absolute;
    bottom: -70px;
    right: 60px;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.worked-more {
    color: var(--1, #FFF);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 15px;
}
.client-img-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.client-img {
    border-radius: 50%;
    cursor: pointer;
}
.client-img1 {
    position: relative;
}
.client-img2 {
    position: absolute;
    left: 30px;
}
.client-img3 {
    position: absolute;
    left: 60px;
}
.client-img4 {
    position: absolute;
    left: 90px;
}
.worked-more2 {
    font-size: 16px;
    padding: 0;
    max-width: 60px;
}
.worked-more2::before {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    top: 22px;
    right: 90px;
}
.client-img:hover {
    z-index: 10;
}
.arcu {
    color: #FFF;
    padding: 20px 0;
}
.why-choose-list {
    padding: 10px 0 30px 0;
}
.why-choose-list li {
    color: var(--1, #FFF);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.why-choose-list li::before {
    content: url('../images/svg/check.svg');
}
.happyclient-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}
.happyclient-sub {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.happyclient-sub h3 {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}
.happyclient-sub p {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
}
/*-----------------------[ 14.Section Eight CSS ]------------------------*/
.latestProjects-heading {
    text-align: center;
    padding-bottom: 20px;
}
.urna {
    max-width: 630px;
}
.projectSwiper {
    padding: 60px 0 100px 0;
}
.projectSwiper-slide div {
    overflow: hidden;
}
.pro-img-slider-main img {
    transition: transform 0.8s ease;
    width: 100%;
    height: auto;
}
.projectSwiper-slide:hover .pro-img-slider-main img {
    transform: scale(1.1);
}
.pro-img-slider-main h2 {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    padding: 20px 0 10px 0;
    transition: all 0.3s ease-in-out;
}
.projectSwiper-slide:hover .pro-img-slider-main h2 {
    color: #FFDB59;
}
.projectSwiper-slide:hover .pro-img-slider-main h3 {
    color: #FFF;
}
.pro-img-slider-main h3 {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
}
.cs_card.cs_style_1 .cs_card_thumb img {
    position: relative;
    -webkit-transition: all 0.9s ease;
    transition: all 0.9s ease;
    background-size: cover;
}
.cs_card.cs_style_1 .cs_card_thumb img:nth-child(1) {
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
}
.cs_card.cs_style_1 .cs_card_thumb:hover img:nth-child(1) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.cs_card.cs_style_1 .cs_card_thumb:hover img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}
/*-----------------------[ 15.Section Nine CSS ]------------------------*/
.section-nine {
    padding: 100px 0 130px 0;
    background-color: #171B22;
}
.section-nine-bg {
    background-image: url('../images/home/client-say-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.swiper-slide.clientSaySwiper-slide {
    background: var(--12, #0F141C);
    padding: 30px;
}
.great {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    padding: 20px 0 10px 0;
}
.nisl {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.Tom {
    font-size: 18px;
    line-height: 24px;
    padding: 0;
}
.client-date {
    font-size: 16px;
}
.cotte-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}
.clientSaySwiper {
    margin-top: 60px;
}
.btn-pagination .swiper-pagination-bullet-active {
    background: #FF7D61 !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px;
}
.btn-pagination .swiper-pagination-bullet {
    background: #E2DEDE;
    width: 10px;
    height: 10px;
}
.swiper-pagination.btn-pagination {
    position: absolute;
    bottom: -50px;
}
/*-----------------------[ 16.Section Ten CSS ]------------------------*/
.section-ten-blog {
    padding: 100px 0;
}
.blog-img {
    width: 100%;
}
.tips {
    color: var(--12, #0F141C);
    text-align: center;
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.36px;
    padding: 10px;
    background: #FFDB59;
    max-width: 140px;
    position: absolute;
    left: 10px;
    top: 10px;
    transition: all 0.5s ease-in-out;
}
.blog-col:hover .tips {
    background: #FF7D61;
    color: #FFF;
}
.blog-text {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    padding: 20px 0 10px 0;
    transition: all 0.5s ease-in-out;
}
.blog-col:hover .blog-text {
    color: #FFDB59;
}
.blog-sub-text {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.5s ease-in-out;
}
.blog-col:hover .blog-sub-text {
    color: #FFF;
}
.home-blog-row {
    margin-top: 60px;
    gap: 50px 0;
}
/*-----------------------[ 17.Section Footer CSS ]------------------------*/
.footer {
    background-image: url('../images/home/footer-img1.png');
    background-position: top left;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-color: var(--5, #171B22);
}
.footer-sub {
    padding: 100px 0 0;
}
.footer-img1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    z-index: 0;
}
.lets-work-together {
    font-size: 80px;
    font-weight: 700;
    line-height: 100px;
}
.footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 80px 0 30px 0;
}
.top-navbar-title {
    display: flex;
    align-items: center;
    gap: 40px;
}
.top-navbar-title li a {
    color: var(--1, #FFF);
    font-family: Epilogue;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.top-navbar-title li a:hover {
    color: #FFDB59;
}
.neque {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.a1 {
    position: relative;
}
.footer-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle-text-png {
    animation: animName 30s linear infinite;
}
@keyframes animName {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.view-work-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #FF7D61;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.view-work-circle:hover {
    background: #FFDB59;
    animation: mover 1s infinite alternate;
}
.view-work-circle:hover .footer-arrow,
.view-work-circle:hover .circle-text-png {
    filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(7498%) hue-rotate(18deg) brightness(105%) contrast(100%);
}
.footer-img-woman {
    position: absolute;
    right: 0;
    bottom: -170px;
    max-width: 100%;
    mix-blend-mode: luminosity;
    z-index: 0;
}
.copyrights-footer-main {
    padding: 15px 0;
    border-top: 2px solid rgba(144, 144, 144, 0.2);
    margin-top: 80px;
    position: relative;
}
.copy-right,
.copy-right a {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.copy-right a:hover {
    color: #FFDB59;
}
.home-media-icon-main-head {
    display: flex;
    align-items: center;
    gap: 15px;
}
.copyrights-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-media-icon-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(144, 144, 144, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.social-button::after {
    background: #FFDB59;
    z-index: -1;
}
.home-media-icon-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    transition: 0.3s;
}
.home-media-icon-main:focus::after,
.home-media-icon-main:hover::after {
    width: 100%;
    height: 100%;
    margin-left: -50%;
}
.home-media-icon-main:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(7498%) hue-rotate(18deg) brightness(105%) contrast(100%);
}
/*-----------------------[ 18.Bottom top button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #000;
    font-size: 30px;
    transform: translateY(0%);
    transition: ease-out 200ms;
    background-color: #FFDB59;
    padding: 0;
    border-radius: 50%;
}
button.bottom-top-button:hover {
    transform: translateY(-15%);
    animation: animate-pulse 3s linear infinite;
}
@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 #FFDB59, 0 0 0 0 #FFDB59;
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 0 #FFDB59;
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}
/*-----------------------[ 19.About Page CSS ]------------------------*/
.section-breadcrumb-img {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    padding: 100px 0;
    background-attachment: fixed;
}
#about-section-one {
    background-image: linear-gradient(rgb(23 27 34 / 80%), rgb(23 27 34 / 80%)), url("../images/about/about-image-main.jpg");
}
.about-h1-text {
    font-size: 72px;
    font-family: "DM Sans";
    line-height: 80px;
    color: #FFF;
    font-weight: 500;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-list li a {
    color: #FFF;
    font-family: Epilogue;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.active-breadcrumb a {
    color: #FFDB59 !important;
}
.line-slash a::after {
    content: '/';
    padding: 0 8px;
}
/*-----------------------[ 20.About Section two CSS ]------------------------*/
.about-section-two {
    padding: 100px 0;
}
.z-shape-woman {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img1 {
    max-width: 100%;
}
.z-shape {
    position: absolute;
    bottom: 0;
    transform: scaleX(-1);
}
.pen {
    position: absolute;
    right: 40px;
    top: 50px;
    animation: mover 1s infinite alternate;
}
.book {
    position: absolute;
    left: 0;
    bottom: -10px;
    animation: mover 1s infinite alternate;
    max-width: 100%;
}
.experienced-text-box1 {
    margin: 40px 0;
}
.svg-icon-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.svg-icon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(803%) hue-rotate(322deg) brightness(101%) contrast(101%);
    width: 70px;
}
.experienced-text {
    color: #FFF;
    font-family: Epilogue;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
}
.sitamet-text {
    color: #909090;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    padding-top: 8px;
}
/*-----------------------[ 21.About Section three CSS ]------------------------*/
.about-section-three {
    padding: 100px 0;
    background: #171B22;
}
.about-sec-col1 {
    background: #0F141C;
    text-align: center;
}
.about-sec-col11 {
    border-radius: 15px 0 0 15px;
}
.about-sec-col12 {
    border-radius: 0 15px 15px 0;
}
.vision-box-img {
    width: 100%;
    height: 100%;
}
.vision-box {
    padding: 30px;
}
.vision {
    font-size: 30px;
    color: #FFF;
    font-family: Epilogue;
    line-height: 40px;
    font-weight: 500;
    text-align: center;
}
.vision-icons {
    margin-bottom: 20px;
    width: 80px;
}
/*-----------------------[ 22.About Section four CSS ]------------------------*/
.about-section-four {
    padding: 100px 0;
}
.about-img5 {
    max-width: 100%;
    border-radius: 10px;
}
.about-section-four-col1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.skills-text {
    color: #FFF;
    font-size: 48px;
}
.progresbar-counter {
    margin-bottom: 40px;
}
.progresbar-counter:last-child {
    margin-bottom: 0;
}
.skill-bars {
    margin-top: 50px;
}
.progress-title {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #FFF;
    margin-bottom: 20px;
    float: left;
}
.progress-value {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #FFF;
    float: right;
    font-family: "DM Sans";
}
.reveal.active .progress-value {
    animation: animate-counter 4.5s;
    -webkit-animation: animate-counter 4.5s;
    -moz-animation: animate-counter 4.5s;
    -ms-animation: animate-counter 4.5s;
    -o-animation: animate-counter 4.5s;
}
.skil-progressbar {
    height: 2px;
    background-color: #171B22;
    margin-top: 20px;
    clear: both;
}
#skil-progressbar1 span {
    width: 80%;
}
#skil-progressbar2 span {
    width: 70%;
}
#skil-progressbar3 span {
    width: 75%;
}
.skil-progressbar span {
    display: inline-block;
    position: absolute;
    height: 8px;
    background-color: #FF7D61;
}
.reveal.active .skil-progressbar span {
    animation: animate-positive 4.5s;
    -webkit-animation: animate-positive 4.5s;
    -moz-animation: animate-positive 4.5s;
    -ms-animation: animate-positive 4.5s;
    -o-animation: animate-positive 4.5s;
}
.skills_top_sec {
    margin-bottom: 80px;
}
#skills_sec {
    padding-bottom: 100px;
}
@keyframes animate-counter {
    0% {
        left: 0;
    }
}
@-webkit-keyframes animate-counter {
    0% {
        left: 0;
    }
}
@keyframes animate-positive {
    0% {
        width: 0;
    }
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}
/*-----------------------[ 23.About Section Five CSS ]------------------------*/
.about-section-five {
    background-image: linear-gradient(rgb(23 27 34 / 80%), rgb(23 27 34 / 80%)), url("../images/about/writer.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    padding: 100px 0;
}
.best-solutions {
    text-align: center;
    max-width: 930px;
    margin: 0 auto;
}
.nemo-text {
    text-align: center;
    color: #FFF;
    max-width: 780px;
    margin: 0 auto;
}
.subscribe-input-main {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}
.subscribe-input-main input {
    width: 100%;
    border: 2px solid #FFF;
    height: 50px;
    padding: 10px 20px;
}
/*-----------------------[ 24.FAQ Page CSS ]------------------------*/
.ask-auestion {
    text-align: center;
}
#faq-section-one {
    background-image: linear-gradient(rgb(23 27 34 / 80%), rgb(23 27 34 / 80%)), url("../images/faq/faq-img1.jpg");
}
.tempus {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
#accordion2 {
    --bs-accordion-bg: transparent;
    box-shadow: none;
}
.FAQ-accordion .accordion-button::after {
    background-image: url(../images/svg/addition-svg.svg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(347deg) brightness(105%) contrast(100%);
}
div#accordion2 {
    margin-top: 60px;
}
.FAQ-accordion button.accordion-button {
    font-size: 22px;
    color: #FFF;
    font-weight: 400;
    border: 2px solid rgba(144, 144, 144, 0.2);
    margin: 10px 0;
    padding: 20px 15px;
    box-shadow: none;
    font-family: 'DM Sans';
}
.FAQ-accordion .accordion-body {
    font-size: 18px;
    line-height: 30px;
    border: 2px solid rgba(144, 144, 144, 0.2);
    padding: 20px 20px;
    color: #fff;
    font-family: 'DM Sans';
}
.FAQ-accordion.accordion-item {
    border: none;
}
.FAQ-section-row {
    justify-content: center;
}
.accordion-button.accordion-button-collapsed:not(.collapsed) {
    color: #FFDB59;
}
/*-----------------------[ 25.Coming Soon Section one CSS ]------------------------*/
#coming_soon_section {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #171B22 0%, rgba(10, 29, 53, 0.70) 0.01%, #171B22 100%), url('../images/coming_soon/coming_soon_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    overflow-y: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}
.coming-soon-logo {
    margin-bottom: 50px;
}
.coming-soon-text {
    text-transform: uppercase;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 60px;
    text-align: center;
    color: #FFF;
    font-weight: 500;
    font-family: Epilogue;
}
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.bloc-time-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.countdown .bloc-time:last-child {
    margin-right: 0;
}
.countdown .count-title {
    display: block;
    font-family: "DM Sans";
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}
.countdown .figure {
    position: relative;
    float: left;
    height: 110px;
    width: 100px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 8px;
    -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}
.countdown .figure:last-child {
    margin-right: 0;
}
.countdown .figure>span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: 700;
    color: #171B22;
    font-size: 80px;
    font-family: Epilogue;
}
.countdown .figure .top:after,
.countdown .figure .bottom-back:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.countdown .figure .top {
    z-index: 3;
    background-color: #f7f7f7;
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -moz-transform: perspective(200px);
    -ms-transform: perspective(200px);
    -webkit-transform: perspective(200px);
    transform: perspective(200px);
}
.countdown .figure .bottom {
    z-index: 1;
}
.countdown .figure .bottom:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.02);
}
.countdown .figure .bottom-back {
    z-index: 2;
    top: 0;
    height: 50%;
    overflow: hidden;
    background-color: #f7f7f7;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}
.countdown .figure .bottom-back span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.countdown .figure .top,
.countdown .figure .top-back {
    height: 50%;
    overflow: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.countdown .figure .top-back {
    z-index: 4;
    bottom: 0;
    background-color: #fff;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -moz-transform: perspective(200px) rotateX(180deg);
    -ms-transform: perspective(200px) rotateX(180deg);
    -webkit-transform: perspective(200px) rotateX(180deg);
    transform: perspective(200px) rotateX(180deg);
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.countdown .figure .top-back span {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    margin: auto;
}
.coming-soon-subscribe {
    max-width: 630px;
    width: 100%;
    margin: 80px auto 30px;
    position: relative;
}
.coming-soon-subscribe input {
    width: 100%;
    height: 60px;
    border: none;
    background: #FFF;
    font-size: 18px;
    color: #0F141C;
    padding: 10px 20px;
}
.coming-soon-subscribe-btn {
    position: absolute;
    right: 0;
    top: 0;
}
.count-title-sub {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    font-family: DM Sans;
}
/*-----------------------[ 26.404 Section one CSS ]------------------------*/
.page-not-found {
    color: #FFF;
    font-size: 60px;
    text-align: center;
    font-family: Epilogue;
}
.suptext404 {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 35px;
    font-family: "DM Sans";
    padding-top: 30px;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}
.back-btn {
    margin-top: 30px;
    text-align: center;
}
.waviy {
    position: relative;
    text-align: center;
}
.waviy span {
    position: relative;
    display: inline-block;
    font-size: 150px;
    font-weight: 500;
    line-height: 150px;
    font-family: Epilogue;
    color: #FFDB59;
    text-transform: uppercase;
    animation: flip 2s infinite;
    animation-delay: calc(.2s * var(--i))
}
@keyframes flip {
    0%,
    80% {
        transform: rotateY(360deg)
    }
}
/*-----------------------[ 27.Services Page 1 CSS ]------------------------*/
.services-page-one-text-main {
    text-align: center;
}
/*-----------------------[ 28.Services Page 2 CSS ]------------------------*/
.new-services {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #63636385;
    padding: 50px 0px;
    cursor: pointer;
}
.strategy {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #909090;
    padding-bottom: 20px;
    font-family: "DM Sans";
}
.number-hedaing {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.services-heading,
.numbers-services {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFF;
    font-family: Epilogue;
}
.new-services .tag-button-services:hover {
    background: #FF7D61;
}
.new-services .tag-button-services {
    border: 1px solid #63636385;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline;
    margin: 0 15px;
    font-family: "DM Sans";
}
.cursor {
    position: absolute;
    z-index: 90;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cursor-shadow.active-blog-post-1 {
    background-image: url('../images/services/sevices2img1.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-2 {
    background-image: url('../images/services/sevices2img2.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-3 {
    background-image: url('../images/services/sevices2img3.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-4 {
    background-image: url('../images/services/sevices2img4.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-5 {
    background-image: url('../images/services/sevices2img5.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-6 {
    background-image: url('../images/services/sevices2img6.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-7 {
    background-image: url('../images/services/sevices2img7.jpg');
    border-radius: unset;
    width: 400px;
    height: 265px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
/*-----------------------[ 29.Single services 1 CSS ]------------------------*/
.single-services1 {
    max-width: 100%;
}
.Singleservices-text-main {
    font-size: 50px;
    color: #FFF;
    line-height: normal;
    font-family: Epilogue;
    padding: 30px 0 20px;
}
.Singleservices-text-main2 {
    font-size: 40px;
    line-height: 55px;
}
.commodo {
    font-size: 18px;
    color: #909090;
    line-height: 28px;
    font-family: "DM Sans";
    font-weight: 400;
}
.check-list-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 30px;
    padding: 30px 0;
}
.check-list {
    color: #FFF;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 15px;
}
.single-services-imgs-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    gap: 15px;
    margin: 30px 0;
}
.single-services-imgs-group img {
    max-width: 100%;
}
.vision-box-img2 {
    max-width: 100%;
}
.side-bar-main {
    padding: 40px 40px;
    border: 2px solid rgba(144, 144, 144, 0.2);
}
.ServicesList-Text {
    text-align: center;
    color: #fff;
    font-size: 35px;
    line-height: normal;
    font-family: Epilogue;
    padding-bottom: 15px;
}
.btn-arrow {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(302deg) brightness(106%) contrast(101%);
}
.servisces-list-arrow-main {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(148, 176, 213, 0.2);
    margin: 15px 0;
    background: #171B22;
}
.servisces-list-arrow-main:hover {
    background: #FF7D61;
}
.servisces-list-arrow-main.active {
    background: #FF7D61;
}
.servisces-list-arrow-main h4 {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    font-family: "DM Sans";
    font-weight: 400;
}
.contact-side-bar {
    padding: 40px;
    border: 2px solid rgba(144, 144, 144, 0.2);
    margin: 50px 0 0;
    background-color: #171B22;
    text-align: center;
}
img.telephone-img {
    max-width: 100px;
}
.contact-side-bar h4 {
    color: #FFF;
    font-size: 35px;
    text-align: center;
    padding: 30px 0 20px 0;
    font-family: Epilogue;
}
.resolving {
    font-size: 18px;
    color: #909090;
    text-align: center;
    font-weight: 400;
    font-family: "DM Sans";
    padding-bottom: 30px;
}
.single-services3-row {
    justify-content: center;
}
/*-----------------------[ 30.Project Page2 CSS ]------------------------*/
#project-section-one {
    background-image: linear-gradient(rgb(23 27 34 / 80%), rgb(23 27 34 / 80%)), url("../images/projects/projects-img1.jpg");
}
.project-page2-row {
    gap: 30px 0;
    margin-top: 50px;
}
.project-box-main {
    padding: 40px;
    background: #171B22;
    border: 2px solid rgba(144, 144, 144, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.project-box-main:hover {
    border-radius: 0;
}
.numbers-projects {
    width: 48px;
    height: 48px;
    background: #FFF;
    color: #0F141C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}
.project-num-name {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.project-box-main-text {
    font-size: 24px;
    font-weight: 500;
    color: #FFF;
    font-family: Epilogue;
}
.project-box-main img {
    display: block;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.8s ease, filter 0.8s ease;
}
.project-box-main:hover img {
    transform: scale(1.1);
}
.project-box-main:hover .project-box-main-text {
    color: #FFDB59;
}
.project-box-main:hover .numbers-projects {
    background: #FFDB59;
}
/*-----------------------[ 31.Project Page3 CSS ]------------------------*/
.project-card {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.project-card img {
    width: 100%;
}
.project-card:before {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(249, 232, 43, 0.628);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
}
.project-card .hover-area {
    bottom: 0;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
}
.project-card .hover-area {
    position: absolute;
    z-index: 2;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.project-card-body {
    padding: 30px;
}
.project-card-body .profile-title {
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    color: #0F141C;
}
.profile-designation {
    color: #0F141C;
    font-family: "DM Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.project-card:hover:before {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.project-card:hover .hover-area {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.project-card:hover .hover-area {
    opacity: 1;
    visibility: visible;
}
.case-detail-info {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    font-family: "DM Sans";
    color: #FFF;
    padding-bottom: 20px;
}
.case-detail-info span {
    color: #FF7D61;
    font-weight: 500;
}
/*-----------------------[ 32.Blog Page3 CSS ]------------------------*/
#blog-section-one {
    background-image: linear-gradient(rgb(23 27 34 / 80%), rgb(23 27 34 / 80%)), url('../images/blog/blog-main-img.jpg');
}
.list-blog-main {
    display: flex;
    gap: 100px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(144, 144, 144, 0.2);
    border-top: 1px solid rgba(144, 144, 144, 0.2);
}
.design-date p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #909090;
    font-family: "DM Sans";
}
.steps {
    font-size: 30px;
    color: #FFF;
    line-height: 40px;
    font-weight: 500;
    margin: 10px 0;
    font-family: Epilogue;
}
.pursuing {
    font-size: 17px;
    color: #909090;
    line-height: 30px;
    font-weight: 500;
    padding-bottom: 20px;
    font-family: "DM Sans";
}
.coming_soon_bg_blog {
    width: 100%;
    margin-bottom: 20px;
}
.small_blog {
    padding: 30px;
    background-color: #171B22;
    margin: 25px 0 20px 0;
}
.integer {
    color: #909090;
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
    margin: 0;
    padding-bottom: 20px;
    font-family: "DM Sans";
}
.line_client {
    display: flex;
    align-items: center;
}
.line {
    border-top: 2px solid #FF7D61;
    width: 60px;
}
.jordon {
    color: #FFF;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding-left: 10px;
    font-family: "DM Sans";
}
.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #63636385;
    border-bottom: 2px solid #63636385;
    margin-top: 40px;
}
.button-container button {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    color: #FFF;
    border: none;
}
.share-button {
    margin: 0 auto;
    border-left: 2px solid #63636385;
    border-right: 2px solid #63636385;
    padding: 0 18px;
}
.other-services-main {
    padding: 40px;
    border: 2px solid rgba(144, 144, 144, 0.2);
}
#blog-form {
    position: relative;
}
.blog-form {
    display: flex;
    align-items: center;
    gap: 30px;
}
.blog-form input {
    border-radius: 8px;
    border: none;
    width: 100%;
    height: 56px;
    padding: 16px 43px 16px 20px;
    color: #0F141C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: 2px solid rgba(148, 176, 213, 0.2);
}
.search-svg {
    position: absolute;
    top: 17px;
    right: 20px;
    cursor: pointer;
}
.newsBlog-List li {
    padding-bottom: 10px;
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.category-main {
    margin: 50px 0;
}
.newsBlog-List li::before {
    content: url("../images/svg/check.svg");
}
.newsBlog-List li a {
    color: #FFF;
    font-size: 18px;
    line-height: 26px;
    font-family: "DM Sans";
    font-weight: 500;
}
.newsBlog-List li a:hover {
    color: #FFDB59;
}
/*-----------------------[ 33.Contact Page CSS ]------------------------*/
.form-inquiry {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.form__input,
textarea#subject {
    padding: 8px 0;
    border: none;
    background: transparent;
    border-bottom: 2px solid #63636385;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-family: "DM Sans";
}
textarea#subject {
    height: 90px;
    resize: none;
}
.form__input:focus,
textarea#subject:focus {
    outline: none;
    border-bottom: 2px solid #FF7D61;
}
.subject-input-main {
    margin: 30px 0;
}
.remember input[type=checkbox] {
    position: relative;
    cursor: pointer;
}
.remember {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 10px;
}
.remember p {
    color: var(--14, #909090);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.remember input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    border: 2px solid #909090;
    border-radius: 3px;
    background-color: #171B22;
}
.remember input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 6px;
}
::placeholder {
    color: #909090;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "DM Sans";
}
.form-btn {
    margin-top: 30px;
}
.map-iframe {
    width: 100%;
    height: 100%;
}
/*-----------------------[ 34.Single Services video CSS ]------------------------*/
.video-container2 {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 485px;
    cursor: pointer;
}
.video-container2 img.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container2 img.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-container2 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}