/*------------------------------------------------------------------
Project: Photographer
Author: The_Krishna
Last change: 03/06/2024
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Whole Page Aniamtion CSS
3.Whole Site Image Animtion CSS
4.Cursor CSS
5.Page Loader CSS
6.Side 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 Footer CSS
17.Bottom To Top Button CSS
18.About Page CSS
19.About Page section-two CSS
20.About Page section-four CSS
21.Services Page section-one CSS
22.Services Page section- three CSS
23.Services Page 2 CSS
24.Services Page 3 CSS
25.Single Services Page Section one CSS
26.Single Services Page Section two CSS
27.Project Page Section one CSS
28.Blog Page Section one CSS
29.SingleBlog Page Section one CSS
30.single blog 2 CSS
31.home page 2 slider CSS
32.home page 2 section two CSS
33.home page 2 section Three CSS
34.home page 2 section Four CSS
35.home page 3 slider CSS
36.home page 3 Section Two CSS
37.home page 3 Section Three CSS
38.home page 4 Section slider CSS
39.home page 5 Section one CSS
40.home page 5 Section Two CSS
41.home page 5 Section Three CSS
42.Coming Soon CSS
43.404 Page CSS
44.About Page2 CSS
45.Project Page3 CSS
46.Project Page4 CSS
47.Project Page5 CSS
48.Images Gallery CSS
49.Singel page 2 html video
50.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: #F6DE18;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #0F141C;
}
body {
    background: #0F141C;
    overflow-y: scroll;
    overflow-x: hidden;
}
/*-----------------------[ 2.Whole Page Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/*-----------------------[ 3.Whole Site Image Animtion CSS ]------------------------*/
.pbmit-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    position: relative;
    overflow: hidden;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style1.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}
.pbmit-animation-style2.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pbmit-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style3 {
    clip-path: inset(0 0 100% 0);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style3.active {
    clip-path: inset(0 0 0 0);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style4.reveal {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    opacity: 1;
}
.pbmit-animation-style4.reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.pbmit-animation-style4 img {
    -webkit-transform: scale(1.5) translate(0px, -100px);
    -ms-transform: scale(1.5) translate(0px, -100px);
    transform: scale(1.5) translate(0px, -100px);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style4 img {
    -webkit-transition: 2s ease-out;
    -o-transition: 2s ease-out;
    transition: 2s ease-out;
}
.active.pbmit-animation-style4_shap {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.active.pbmit-animation-style4_shap img {
    transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
}
.active.pbmit-animation-style4_shap img {
    -webkit-transition: 5s ease-out;
    -o-transition: 5s ease-out;
    transition: 5s ease-out;
}

/*-----------------------[ 4.Cursor CSS ]------------------------*/
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    z-index: 10000;
    user-select: none;
    pointer-events: none;
}
/*-----------------------[ 5.Page Loader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #0F141C;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader .loader {
    font-size: 50px;   /* ikon boyutu */
    color: #fff;        /* ikon rengi beyaz */
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*-----------------------[ 6.Side Menu CSS ]------------------------*/
header {
    position: fixed;
    width: 100%;
    z-index: 100;
}
.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);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 100%;
    top: 0%;
    background: rgba(15, 20, 28, 0.25);
    -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_full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
}
.mobile-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
.lets-talk-btn {
    border: none;
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    border-radius: 10px;
    background: var(--10, #6F39FD);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-menu-btn {
    cursor: pointer;
}
.full-menu {
    visibility: hidden;
    display: table;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    background-color: #171B22;
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    z-index: 101;
}
.full-menu--open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.full-menu--transition {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.full-menu--middle {
    display: flex;
    height: 100vh;
    align-items: center;
}
button.menu-toggle.menu-toggle--close {
    position: absolute;
    right: 60px;
    top: 30px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-toggle--close:before {
    content: 'Close';
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}
.media-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding-left: 70px;
    z-index: 0;
}
.media-main div a {
    width: 48px;
    height: 48px;
    text-align: center;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #9090903b;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-main div a .icon {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 2;
}
.media-main div a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}
.media-main div a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 2;
}
.media-main div a:hover:before {
    top: 0;
}

.side-menu-img-col {
    display: flex;
    align-items: center;
}
.side-menu-img-col img:nth-child(2) {
    max-width: 100%;
    border-radius: 50%;
    animation: pulse 9s ease-in-out infinite;
}
.side-menu-img-col img:first-child {
    position: absolute;
    z-index: -1;
    top: 40px;
    left: -95px;
    transition: 0.5s;
    animation: pulse 9s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.menu-container-main {
    height: 100%;
}
ul#accordion-side-menu {
    width: 100%;
}
.menu-accordion-col {
    display: flex;
    align-items: center;
}
.accordion-side-menu .link {
    cursor: pointer;
    display: block;
    padding: 15px 0;
    color: #909090;
    font-family: MuseoModerno;
    font-size: 50px;
    font-weight: 300;
    line-height: 70px;
    background: #171B22;
    border-bottom: 2px solid #9090903b;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion-side-menu .link:hover {
    color: #F6DE18;
}
.accordion-arrow-menu {
    width: 80px;
    height: 80px;
    background: #0F141C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-arrow-menu img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(0%) saturate(501%) hue-rotate(70deg) brightness(99%) contrast(91%);
    transition: transform 0.3s ease-in-out;
}
.accordion-side-menu .link:hover .accordion-arrow-menu {
    background: #6F39FD;
}
.accordion-side-menu .link:hover .accordion-arrow-menu img {
    transform: rotate(-50deg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(219deg) brightness(104%) contrast(102%);
}
.accordion-side-menu li.open .link .accordion-arrow-menu {
    background: #6F39FD;
}
.accordion-side-menu li.open .link .accordion-arrow-menu img {
    transform: rotate(-50deg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(219deg) brightness(104%) contrast(102%);
}
.accordion-side-menu li:last-child .link {
    border-bottom: 0;
}
.accordion-side-menu li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.accordion-side-menu li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
}
.accordion-side-menu li.open .link {
    color: #F6DE18;
}
.accordion-side-menu li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.submenu {
    display: none;
    background: #0F141C;
    font-size: 14px;
}
.submenu a {
    display: block;
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    padding: 10px 20px;
    font-family: Nunito;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    text-transform: uppercase;
}
.submenu a:hover {
    color: #F6DE18;
}
/*-----------------------[ 7.Section One CSS ]------------------------*/
.section-one {
    padding-top: 100px;
}
h1 {
    color: var(--1, #FFF);
    text-align: center;
    font-family: MuseoModerno;
    font-size: 156px;
    font-weight: 600;
    line-height: 200px;
    text-transform: uppercase;
}
.main-photography-text {
    color: var(--1, #FFF);
    text-align: center;
    font-family: MuseoModerno;
    font-size: 156px;
    font-weight: 300;
    line-height: 200px;
    text-transform: uppercase;
}
.main-photography-text-sub-head {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    margin-bottom: 60px;
}
.main-photography-text-sub-head p:nth-of-type(1) {
    color: var(--14, #909090);
    text-align: center;
    font-family: MuseoModerno;
    font-size: 48px;
    font-weight: 300;
    line-height: 78px;
    text-transform: uppercase;
    max-width: 100px;
}
.main-photography-text-sub-head p:nth-of-type(2) {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    max-width: 410px;
}
.show-img-reveal-container {
    position: relative;
}
#swipeimage {
    position: absolute;
    left: 30%;
    top: 23%;
    border-radius: 50%;
    border-bottom: 3px solid #FF6347;
}
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.logos1 {
    background: var(--10, #6F39FD);
    transform: rotate(8deg);
    width: 110%;
    left: -30px;
}
.logos2 {
    background: var(--11, #F6DE18);
    transform: rotate(-8deg);
    overflow: hidden;
    left: -30px;
    width: 110%;
}
.logos-slide {
    animation: 70s slide infinite linear;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.logos-slide2 {
    animation: 70s slide2 infinite linear;
}
@keyframes slide2 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}
.marquee__content {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
    padding: 10px 0;
}
.marquee-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.marquee-img-main p {
    color: var(--1, #FFF);
    text-align: center;
    font-family: MuseoModerno;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    margin-left: 40px;
}
.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-two {
    padding: 100px 0 156px 0;
}
.section-text {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 96px;
    font-weight: 600;
    line-height: 130px;
    text-transform: uppercase;
    text-align: center;
}
.section-text span {
    font-weight: 300;
    font-family: MuseoModerno;
}
.p-sub-text {
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    max-width: 630px;
    padding: 20px 0 60px 0;
}
.text-img-group .about-img1 {
    max-width: 220px;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.text-img-group {
    display: flex;
    align-items: flex-start;
    gap: 110px;
}
.about-img2 {
    border-radius: 50%;
    width: 100%;
}
.about-img2:hover {
    border-radius: 0;
}
.text-img-sub-group {
    display: flex;
    align-items: center;
    gap: 110px;
    border-top: 2px solid #9090903b;
    padding-top: 60px;
    position: relative;
}
.about-png-circle-img {
    position: absolute;
    left: -300px;
    top: 0;
    z-index: -1;
    animation: swing 5s infinite;
}
@keyframes swing {
    0% {
        transform: rotate(6deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    100% {
        transform: rotate(6deg);
    }
}
.dream-job {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}
.year-experience {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 96px;
    font-weight: 400;
    line-height: 130px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.year-experience span {
    font-family: Nunito;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.view-work-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-color: #6F39FD;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.view-work-circle a {
    color: #FFF;
    text-align: center;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    align-items: center;
    transform: rotate(-30deg);
    transition: all 0.5s ease;
}
.button-vector-line {
    margin-top: 20px;
    transition: all 0.5s ease;
}
.view-work-circle:hover .button-vector-line {
    transform: rotate(-180deg);
}
.view-work-circle:hover.view-work-circle a {
    transform: rotate(0deg);
}
.btn {
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.view-work-circle:before {
    background: #F6DE18;
}
.view-work-circle:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    border-radius: 50%;
    transition: all 500ms ease-in-out;
}
.view-work-circle:hover:before {
    content: "";
    width: 250px;
    height: 250px;
    left: -30%;
    top: -14%;
    transition: all 500ms ease-in-out;
}
.circlular-btn-main {
    position: absolute;
    bottom: -60px;
    left: 220px;
}
/*-----------------------[ 9.Section Three CSS ]------------------------*/
.section-three {
    padding: 100px 0;
    background: var(--5, #171B22);
}
.latest-work {
    text-align: start;
}
.realized {
    color: #909090;
    max-width: 850px;
}
.section-latest-work-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.latest-work-row {
    align-items: center;
}
.image-container {
    position: relative;
    overflow: hidden;
}
.image-container-img {
    border-radius: 50%;
    transition: transform 0.5s ease, width 0.5s ease;
    max-width: 100%;
}
.overlay {
    position: absolute;
    bottom: 18px;
    left: 18px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
}
.image-container:hover .overlay {
    opacity: 1;
    animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.image-container:hover img {
    transform: scale(1.1);
    border-radius: 0;
}
.modelling-text {
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding: 5px 15px;
    display: table;
    background: var(--10, #6F39FD);
}
.Glory-text {
    color: var(--12, #0F141C);
    font-family: Nunito;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    background: #FFF;
    padding: 10px 15px;
}
/*-----------------------[ 10.Section Four CSS ]------------------------*/
.section-four {
    padding: 100px 0;
    background: #0F141C;
}
.photography-girl-png {
    mix-blend-mode: hard-light;
    max-width: 100%;
}
.name-list {
    position: relative;
}
.name-list .expertise-img {
    display: none;
    position: absolute;
    left: 40%;
    top: -200px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 100%;
}
.name-list:hover .expertise-img {
    display: block;
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}
.zoom-in {
    animation: zoomIn 0.3s forwards;
}
.zoom-out {
    animation: zoomOut 0.3s forwards;
}
.accordion-expertise {
    position: relative;
}
.accordionTitle {
    display: block;
    color: var(--14, #909090);
    background: transparent;
    font-family: MuseoModerno;
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 96px;
    text-transform: uppercase;
    border-bottom: 2px solid #9090903b;
    transition: background-color 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
.accordion-arrow-img-main {
    width: 96px;
    height: 96px;
    background: #171B22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-arrow-img-main img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(0%) saturate(501%) hue-rotate(70deg) brightness(99%) contrast(91%);
    transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover .accordion-arrow-img-main img {
    transform: rotate(-50deg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(219deg) brightness(104%) contrast(102%);
}
.accordionTitle:hover .accordion-arrow-img-main {
    background: #6F39FD;
}
.accordionTitle:hover,
.accordion__Heading:hover {
    color: #F6DE18;
}
/*-----------------------[ 11.Section Five CSS ]------------------------*/
.home-page-video {
    width: 100vw;
    height: 700px;
    object-fit: cover;
}
.section-five {
    overflow: hidden;
}
/*-----------------------[ 12.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
}
.pro-studio {
    font-size: 64px;
    line-height: 96px;
    text-transform: uppercase;
}
.hobby {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: var(--14, #909090);
}
.image {
    max-width: 100%;
}
.thumbnail-main1 {
    margin-top: 150px;
}
.thumbnail-main2 img {
    border-radius: 50%;
}
.thumbnail-main3 {
    margin-top: 50px;
}
.thumbnail-main4 {
    margin-top: 200px;
    display: flex;
    justify-content: center;
}
.thumbnail-main4 img {
    border-radius: 50%;
}
.thumbnail-main5 {
    display: flex;
    justify-content: center;
}
.thumbnail-main5 img {
    margin-top: 150px;
}
.thumbnail-main6 {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.thumbnail-main6 img {
    margin-top: 50px;
}
/*-----------------------[ 13.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
    background: #171B22;
}
.pricing-box {
    position: relative;
    background: var(--12, #0F141C);
    padding: 30px;
}
.ribbon {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    width: 130px;
    height: 130px;
    text-align: right;
}
.ribbon span {
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    font-family: Nunito;
    text-transform: uppercase;
    text-align: center;
    line-height: 18px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 170px;
    display: block;
    background: #F6DE18;
    position: absolute;
    top: 36px;
    right: -37px;
    padding: 5px 0;
    transition: all 0.3s ease;
}
.plan-type {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 32px;
    font-weight: 300;
    line-height: 48px;
    text-transform: uppercase;
}
.plan-amount {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    text-transform: uppercase;
}
.have-more {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding: 20px 0 30px;
    border-bottom: 2px solid #9090903b;
}
.pricing-plan-list {
    padding: 25px 0;
    border-bottom: 2px solid #9090903b;
}
.pricing-plan-list li {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding: 5px 0;
}
.pricing-plan-list li::before {
    content: '\2022';
    padding-right: 10px;
}
.pricing-btn {
    max-width: 350px;
    width: 100%;
    background: #FFF;
    color: #6F39FD;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding: 16px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    transition: all 0.3s ease;
}
.pricing-btn::after {
    content: url('../images/svg/bag-svg.svg');
}
.pricing-box:hover .pricing-btn {
    background: #6F39FD;
    color: #FFF;
}
.pricing-box:hover .pricing-btn::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(343deg) brightness(112%) contrast(111%);
}
.pricing-box:hover .ribbon span {
    background: #6F39FD;
}
/*-----------------------[ 14.Section Eight CSS ]------------------------*/
.section-eight {
    padding: 100px 0;
    background: #0F141C;
}
.swiper-slide {
    color: #FFF;
}
.swiper-slide-item {
    text-align: center;
}
.slider-containe {
    color: var(--14, #909090);
    text-align: center;
    font-family: Nunito;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}
.client-name {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Nunito;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.client-img {
    margin: 20px 0 30px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
.swiper-pagination.btn-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -6px;
}
.btn-pagination .swiper-pagination-bullet-active {
    background: #6F39FD !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px;
}
.btn-pagination .swiper-pagination-bullet {
    background: #909090;
    width: 10px;
    height: 10px;
}
.swiper-button-prev.btn-prev,
.swiper-button-next.btn-next {
    width: 80px;
    height: 80px;
    border: 2px solid #909090;
    border-radius: 50%;
    background: #0F141C;
    transition: all 0.3s;
}
.swiper-button-prev.btn-prev:hover,
.swiper-button-next.btn-next:hover {
    background: #6F39FD;
    border: 2px solid #6F39FD;
}
.btn-next.swiper-button-next:after,
.btn-prev.swiper-button-prev:after {
    display: none;
}
.new_img-animet {
    visibility: hidden;
    overflow: hidden;
}
.new_img-animet img {
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
}
/*-----------------------[ 15.Section Nine CSS ]------------------------*/
.section-nine {
    padding-bottom: 100px;
}
.articles-box {
    padding-left: 35px;
}
.articles-head {
    color: var(--14, #909090);
    font-family: MuseoModerno;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    padding: 15px 0 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bullet-symbol {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9090903b;
}
.articles-head::before {
    content: '';
    width: 30px;
    height: 2px;
    display: block;
    background: #9090903b;
    mix-blend-mode: hard-light;
    position: absolute;
    left: -35px;
    top: 22px;
}
.wildlife a {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.wildlife a:hover {
    color: #F6DE18;
}
.articles-btn-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.insta-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0F141C;
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.insta-logo:hover {
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
/*-----------------------[ 16.Section Footer CSS ]------------------------*/
footer {
    padding-top: 100px;
}
.mobile-icon-main {
    width: 80px;
    height: 80px;
    background: #F6DE18;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-box-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
    border-bottom: 2px solid #9090903b;
}
.contact-box-main {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background: var(--5, #171B22);
    padding: 10px;
    max-width: 470px;
    width: 100%;
}
.contact-email-text {
    color: var(--14, #909090);
    font-family: MuseoModerno;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 8px;
}
.contact-email a {
    color: var(--5, #FFF);
    font-family: MuseoModerno;
    font-size: 32px;
    font-weight: 300;
    line-height: 32px;
}
.contact-email a:hover {
    color: #F6DE18;
}
.form-contact-row {
    padding-top: 80px;
}
.rights-reserved {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rights-reserved h2,
.rights-reserved a {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.rights-reserved a {
    color: #FFF;
}
.rights-reserved a:hover {
    color: #F6DE18;
}
.home-media-icon-main-head {
    display: flex;
    align-items: center;
    gap: 15px;
}
.home-media-icon-main {
    width: 60px;
    height: 60px;
    border: 2px solid #9090903b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.home-media-icon-main:hover {
    border: 2px solid transparent;
}
.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%;
}
.social-button::after {
    background: #6F39FD;
    z-index: -1;
}
/*-----------------------[ 17.Bottom To Top Button CSS ]------------------------*/
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    content: url('../images/home_page/upload.png');
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg.progress-circle path {
    stroke: #F6DE18;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap::after {
    color: #F6DE18;
}
/*-----------------------[ 18.About Page CSS ]------------------------*/
.about-page-text-main {
    max-width: 600px;
    margin: 0 auto;
}
.about_page_text_group {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.dreamjob {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.dreamjob .about_page_img1 {
    position: absolute;
    top: 100px;
    left: 0;
    animation: mover 1s infinite alternate;
}
.dreamjob .about-page-img2 {
    position: absolute;
    bottom: -40px;
    left: 40px;
    max-width: 100%;
    z-index: -1;
    animation: swing 5s infinite;
}
.abou-page-exp-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 70px;
}
.abou-page-exp-main img {
    border-radius: 50%;
    max-width: 100%;
    animation: mover 1s infinite alternate;
}
.about-exp-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #F6DE18;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 0;
    right: 300px;
    animation: mover 1s infinite alternate;
}
.about-exp-circle p {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    text-transform: uppercase;
    text-align: center;
}
.about-exp-circle span {
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    max-width: 150px;
}
/*-----------------------[ 19.About Page section-two CSS ]------------------------*/
.about-page-section-two {
    padding: 100px 0;
}
.my-approach {
    max-width: 630px;
    text-align: left;
    margin-left: 90px;
}
.my-approach-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about_page_img5 {
    max-width: 100%;
    border-radius: 50%;
}
.Approach-text-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    margin-top: 40px;
}
.Approach-text-flex p {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    max-width: 410px;
}
.Approach-text-flex p:nth-child(1) {
    padding-bottom: 10px;
}
.about_page_img4 {
    margin-top: 70px;
    max-width: 100%;
}
.logo-marquee-about {
    background: #F6DE18;
}
/*-----------------------[ 20.About Page section-four CSS ]------------------------*/
.about-section-four {
    padding-top: 100px;
}
.my-journey-text-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.my-journey-text {
    display: inline;
}
.quis {
    color: #909090;
    max-width: 520px;
    padding: 0;
}
img.my-journey-slider-img {
    max-width: 100%;
    position: relative;
}
.swiper-slide.about_slider_slide {
    width: 490px !important;
}
.swiper-slide.about_slider_slide h2 {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 64px;
    text-transform: uppercase;
}
.swiper-slide.about_slider_slide h3 {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    padding: 15px 0 20px 0;
}
.morbi {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.about_slider_slide_text {
    margin: 0 40px;
    position: relative;
}
.about_slider-line::after {
    content: '';
    border-left: 2px solid #FFF;
    height: 70px;
    position: absolute;
}
.about_slider_slide_text1::after {
    bottom: -35px;
    left: 54%;
}
.about_slider_slide_text2::after {
    bottom: -35px;
    left: 50%;
}
.about_slider_slide_text3::after {
    top: -35px;
    left: 50%;
}
.about_slider_slide_text4::after {
    bottom: -35px;
    left: 45%;
}
.swiper.about_slider {
    margin-top: 60px;
}
.no-span {
    display: table;
    white-space: nowrap;
    color: var(--1, #FFF);
    text-align: center;
    font-family: MuseoModerno;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    text-transform: uppercase;
    padding: 60px 0;
    overflow: hidden;
}
.no-span1 {
    margin-left: 40px;
}
.no-span2 {
    margin-right: 40px;
}
.no-span:before,
.no-span:after {
    border-top: 2px solid #9090903b;
    content: '';
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 50%;
}
.no-span:before {
    right: 15px
}
.no-span:after {
    left: 15px;
}
/*-----------------------[ 21.Services Page section-one CSS ]------------------------*/
.scelerisque {
    max-width: 1070px;
    text-align: center;
    margin: 0 auto;
}
.services-page-video {
    width: 100%;
    height: 630px;
    object-fit: cover;
    margin-bottom: 100px;
}
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.demo {
    position: absolute;
    top: -15px;
    left: 0;
}
/*-----------------------[ 22.Services Page section- three CSS ]------------------------*/
.services-section-three {
    padding: 100px 0;
}
.sevices-slider-text {
    color: var(--1, #FFF);
    text-align: center;
    font-family: MuseoModerno;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    margin-top: 30px;
}
.diam {
    color: var(--14, #909090);
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.swiper-slide.services-slider-slide {
    width: 400px !important;
    margin: 0 30px;
    text-align: center;
}
.services-round-img {
    max-width: 100%;
    border-radius: 50%;
    transition: all 0.8s;
}
.services-round-img:hover {
    border-radius: 0;
}
.no-rounded-img {
    transition: all 0.8s;
}
.no-rounded-img-services2 {
    max-width: 100%;
}
.no-rounded-img:hover {
    max-width: 100%;
    border-radius: 50%;
}
.services-page-video2 {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
/*-----------------------[ 23.Services Page 2 CSS ]------------------------*/
.video-replyas-img {
    max-width: 100%;
}
.image-container-cut-box {
    margin-bottom: 100px;
}
.image-container-cut-box img:nth-child(2) {
    max-width: 100%;
}
.col-xxl-4.services-slider-slide {
    text-align: center;
}
.row.services-slider-wrapper {
    gap: 50px 0;
}
/*-----------------------[ 24.Services Page 3 CSS ]------------------------*/
.services3-main-img {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/services_page/services-full-img-header.jpg');
    background-position: center;
    background-repeat: no-repeat;
    height: 465px;
    display: flex;
    align-items: center;
}
.bredcrum-main,
.bredcrum-main a {
    font-size: 22px;
    font-weight: 500;
    color: #FFF;
    line-height: 30px;
    font-family: Nunito;
}
.bredcrum-main-head {
    text-align: center;
}
.improve {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: #FFF;
    text-align: center;
    font-family: Nunito;
    text-transform: uppercase;
    padding-bottom: 30px;
}
.attorneys {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: Nunito;
    text-align: center;
    padding-bottom: 10px;
}
.services3-text-group {
    padding: 100px 0;
}
.services-boxes-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 100px;
}
.photography-service-heading {
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    font-family: Nunito;
    color: #FFF;
    margin-bottom: 20px;
    text-align: center;
}
.photography-service-heading-sub,
.photography-service-heading-sub a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: Nunito;
    color: #909090;
    text-align: center;
}
.photography-service-heading-sub a {
    color: #F6DE18;
}
.services-boxes-main-sub {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    padding: 40px 20px;
    border: 1px solid #9090904f;
    text-align: center;
}
.photo-landscape-img {
    max-width: 100%;
    margin-bottom: 20px;
    width: 80px;
}
.services-boxes-main-sub:hover .photography-service-heading-sub {
    color: #FFF;
}
#services-boxes-main-sub1:hover {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/home_page/insta-img4.jpg');
}
#services-boxes-main-sub2:hover {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/home_page/insta-img1.jpg');
}
#services-boxes-main-sub3:hover {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/home_page/insta-img5.jpg');
}
#services-boxes-main-sub4:hover {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/home_page/insta-img7.jpg');
}
#services-boxes-main-sub5:hover {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/home_page/insta-img6.jpg');
}
#services-boxes-main-sub6:hover {
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.46) 11.4%, rgb(0 0 0 / 46%) 70.2%), url('../images/home_page/insta-img3.jpg');
}
.services4_main_container {
    margin-top: 30px;
    margin-bottom: 100px;
}
.services4_main {
    border-bottom: 2px solid #63636385;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
.services4_main .text h2 {
    max-width: 280px;
}
.services4_main .text h2 a {
    color: #FFF;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    font-family: Nunito;
    text-transform: uppercase;
    max-width: 150px;
}
.services4_main .quis-text {
    max-width: 422px;
}
.services4_main .quis-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: Nunito;
    color: #FFF;
}
.services4-btns .view-work-circle {
    width: 150px;
    height: 150px;
}
/*-----------------------[ 25.Single Services Page Section one CSS ]------------------------*/
.single_services-img1-main {
    background-image: url('../images/single_services/single_services-img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
    margin: 100px 0;
    max-width: 100%;
}
.mauris {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    padding-bottom: 40px;
}
.sed {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.dolor {
    padding-bottom: 12px;
}
.single-services-img-group,
.single-projects-img-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}
.single-services-img-group img {
    max-width: 100%;
}
.single-services-img-group img:nth-child(2) {
    border-radius: 50%;
}
.send-inquiry-form {
    background: var(--5, #171B22);
    padding: 30px;
}
.send-inquery-text {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 30px;
}
.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: 500;
    line-height: 30px;
    font-family: Nunito;
}
textarea#subject {
    height: 90px;
    resize: none;
}
.form__input:focus,
textarea#subject:focus {
    outline: none;
    border-bottom: 2px solid #6F39FD;
}
.subject-input-main {
    margin: 30px 0;
}
::placeholder {
    color: #909090;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
/*-----------------------[ 26.Single Services Page Section two CSS ]------------------------*/
.single_services_sectionTwo {
    padding: 100px 0;
}
a.other-service-group-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.other-service-group-main img {
    max-width: 100%;
}
.other-single-service-row {
    gap: 25px 0;
}
/*-----------------------[ 27.Project Page Section one CSS ]------------------------*/
.project-row {
    gap: 30px 0;
    margin: 55px 0;
}
.image-container img {
    max-width: 100%;
}
.project-section {
    padding-bottom: 100px;
}
.single_projects-img1-main {
    background-image: url('../images/single_project/lion-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
    margin: 100px 0;
    max-width: 100%;
}
.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;
    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;
}
.prev-arrow-blog {
    margin-right: 10px;
}
.next-arrow-blog {
    margin-left: 10px;
}
.lion-img4 {
    max-width: 100%;
}
.project-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #9090903b;
    padding: 20px 0;
}
.project-info-main p:nth-child(1) {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.project-info-main p:nth-child(2) {
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.single-project-media {
    margin-top: 30px;
    justify-content: center;
}
.single-projects-row {
    padding-bottom: 100px;
}
/*-----------------------[ 28.Blog Page Section one CSS ]------------------------*/
.latest-news-page-main {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.latest-news-sub-main-columns img {
    max-width: 100%;
}
.latest-news-sub-main-columns {
    margin-bottom: 30px;
}
/*-----------------------[ 29.SingleBlog Page Section one CSS ]------------------------*/
.wildlife-text {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 96px;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto;
}
.articles-head-wildlife {
    max-width: 920px;
    margin: 0 auto;
}
.wildlife-img-main img {
    max-width: 100%;
    border-radius: 50%;
    margin: 60px 0;
}
.sodales {
    color: var(--14, #909090);
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    max-width: 1070px;
    margin: 0 auto;
    padding-bottom: 10px;
}
.cott-main {
    background: var(--5, #171B22);
    padding: 40px;
    max-width: 1070px;
    margin: 60px auto;
    border-left: 10px solid #F6DE18;
}
.cott-main p {
    color: var(--1, #FFF);
    font-family: Nunito;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 48px;
    padding-top: 20px;
}
.wildlife-img-group {
    max-width: 1070px;
    margin: 40px auto;
}
.wildlife-img-group-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.wildlife-img-group-sub img,
.wildlife-img-group img {
    max-width: 100%;
}
.approach {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    max-width: 1070px;
    margin: 40px auto 20px auto;
}
.tags-mian {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1070px;
    margin: 60px auto;
}
.tags {
    display: flex;
    align-items: center;
    gap: 15px;
}
.tags a {
    background: #65656566;
    padding: 15px;
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
}
.share-svg {
    border: 2px solid #63636385;
    padding: 10px;
}
.button-container-blog {
    max-width: 1070px;
    margin: 0 auto;
    padding: 15px 0;
}
.advice {
    max-width: 410px;
}
.advice a {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    padding-top: 10px;
}
.next-btn-blog {
    text-align: end;
}
.next-btn-blog button {
    margin: 0 0 0 auto;
}
.prev-btn-blog button,
.next-btn-blog button {
    color: var(--14, #909090);
    letter-spacing: 0.8px;
}
.single-blog-form-section {
    padding: 100px 0;
}
.blog-form-main {
    background: var(--5, #171B22);
    padding: 60px;
    max-width: 1070px;
    margin: 0 auto;
}
.leave-comment {
    color: var(--1, #FFF);
    font-family: MuseoModerno;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
    text-transform: uppercase;
}
.leave-comment span {
    font-weight: 600;
}
.form-leave-comment-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}
.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: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    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;
}
.view-work-circle-from {
    width: 268px;
    height: 108px;
    border-radius: 50%;
    margin-top: 30px;
}
.view-work-circle-from:before {
    background: #F6DE18;
}
.view-work-circle-from:hover:before {
    content: "";
    width: 340px;
    height: 330px;
    left: -20%;
    top: -79%;
    transition: all 500ms ease-in-out;
}
.view-work-circle-from a {
    transform: rotate(0);
}
.map-iframe {
    padding-top: 100px;
    width: 100%;
    height: 500px;
}
.blog-page-video {
    border-radius: 50%;
    width: 100%;
}
.wildlife-img-main-video {
    margin: 50px 0;
}
/*-----------------------[ 30.single blog 2 CSS ]------------------------*/
.singleblog2-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.singleblog2-gallery img {
    max-width: 100%;
}
.single_blog2_row {
    margin-top: 50px;
}
.blog-articles-main {
    margin-top: 20px;
}
.wildlife-text_blog2 a {
    font-size: 30px;
}
.Neque-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #909090;
    padding: 20px 0;
}
.read-more-btnblog {
    width: 190px;
    background-color: #6F39FD;
    border: 0;
    cursor: pointer;
    height: 70px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
    transition: all 0.3s;
}
.read-more-btnblog:hover {
    background: #F6DE18;
}
.swiper-slide.blogPage2Slider-swiper-slide img {
    max-width: 100%;
}
.blogPage2Slider {
    margin-top: 50px;
}
.blogPage2-video-main {
    margin: 50px 0 20px 0;
}
.blogPage2-video {
    width: 100%;
}
.pagination-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.pagination-main-ul {
    display: flex;
    gap: 20px;
}
.pagination-main-ul li {
    border: 2px solid #FFF;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-main-ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #FFF;
}
.pagination-main-ul .page-active {
    background: #6F39FD;
}
.pagination-main-ul li:hover {
    background: #6F39FD;
}
.blog2-sidebar {
    padding-left: 50px;
}
.blog2Search input {
    width: 100%;
    margin: 0 auto;
    height: 55px;
    background: rgb(30 30 30 / 49%);
    border: 2px solid #90909042;
    color: #FFF;
    padding: 12px 15px;
    font-size: 18px;
    outline: none;
    font-weight: 400;
    font-family: Nunito;
}
.blog-categories {
    margin-top: 50px;
}
.blog-categories h2 {
    font-size: 22px;
    font-weight: 500;
    color: #FFF;
    font-family: Nunito;
    padding-bottom: 15px;
}
.blog-categories li {
    padding: 5px 0;
}
.blog-categories li ::before {
    content: "\2022";
    color: #6F39FD;
    padding-right: 10px;
}
.blog-categories li a {
    font-size: 18px;
    font-weight: 400;
    color: #FFF;
    font-family: Nunito;
}
.blog-fartured-sub {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.post-text-grop p:nth-child(1) {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #FFF;
    font-family: Nunito;
    padding-bottom: 20px;
}
.post-text-grop p:nth-child(2) {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #909090;
    font-family: Nunito;
}
.post-text-grop:hover.post-text-grop p:nth-child(1) {
    color: #F6DE18;
}
.tags-main a {
    color: #FFF;
    background: #90909047;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 5px 10px;
    text-transform: uppercase;
}
.tags-main a:hover {
    background: #6F39FD;
}
.tags-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
/*-----------------------[ 31.home page 2 slider CSS ]------------------------*/
.creative-photography--slider {
    position: relative;
}
.photography-slider--item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.photography-item--inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.photography-slider--content {
    position: relative;
    height: 100%;
}
.photography-slider--content .photography-slider--image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 2s linear;
    -moz-transition: all 2s linear;
    transition: all 2s linear;
    position: relative;
    opacity: 1;
}
.photography-slider--content .photography-slider--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photography-slider--inner {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    transform-origin: center;
    z-index: 2;
}
.photography-slider--inner .photography-heading a .photography-item--title {
    font-size: 11.296vh;
    line-height: 11.296vh;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Nunito;
    color: #FFFF;
    margin: 0px;
    letter-spacing: 0px;
    opacity: 1;
    transform: translateX(0px);
    -webkit-transition: all 2.5s ease;
    -moz-transition: all 2.5s ease;
    transition: all 2.5s ease;
    transform-origin: top;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform-origin: top;
    transform: translateX(200px);
    -webkit-transition: all 2.5s ease;
    -moz-transition: all 2.5s ease;
    transition: all 2.5s ease;
}
.photography-slider--inner .photography-heading .photography-item--title-outline {
    font-size: 19.111vh;
    line-height: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #6610f26e;
    font-family: MuseoModerno;
    z-index: 0;
    position: absolute;
    transform: translateX(0px);
    font-weight: 700;
    text-transform: uppercase;
    transform-origin: top;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-text-stroke-width: 3px;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform-origin: top;
    transform: translateX(200px);
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
}
.swiper-slide-active .photography-heading a .photography-item--title {
    opacity: 1;
    transform: translateX(0px);
}
.swiper-slide-active .photography-heading .photography-item--title-outline {
    opacity: 1;
    transform: translateX(0px);
}
.creative-photography--slider .creative-swiper--dots .swiper-pagination {
    counter-reset: numbers;
    display: flex;
    flex-direction: column;
    gap: 15px;
    bottom: 50px;
    margin-top: 0px;
    left: 50px;
    width: 10%;
}
.creative-photography--slider .creative-swiper--dots .swiper-pagination span {
    position: static;
    background: #fff;
    width: 10px;
    height: 10px;
    background-color: #63636385;
    border: 1px solid transparent;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
}
.creative-swiper--dots .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #FFF;
    width: 10px;
    height: 25px;
    border-radius: 5px;
}
.creative-swiper--dots .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    font-size: 24px;
    font-weight: 600;
    counter-increment: numbers;
    content: "0" counter(numbers);
    color: #FFF;
    font-family: Nunito;
    position: absolute;
    bottom: calc(100% + 20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.creative-swiper--dots .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
    visibility: visible;
}
/*-----------------------[ 32.home page 2 section two CSS ]------------------------*/
.Home_PageTwoSectionTwo {
    padding: 100px 0;
}
.home24,
.home2 {
    max-width: 100%;
}
.expo-me-home2-btn {
    position: absolute;
    bottom: -25px;
    right: 12px;
}
.comparison {
    margin: 0 auto;
    text-align: center;
}
.trade {
    text-align: center;
    max-width: 100%;
    color: #909090;
    padding: 0;
}
.client-percentage {
    font-size: 60px;
    font-weight: 500;
    line-height: 50px;
    color: #FFF;
    font-family: MuseoModerno;
}
.count-percentage::after {
    content: '%';
}
.count-add::after {
    content: '+';
}
.counter-img-sec {
    margin-top: 30px;
    align-items: center;
}
.counter-section-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}
.counter-section-sub-main {
    display: flex;
    align-items: center;
    gap: 30px;
}
.counter-section-sub-main span {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #FFF;
    font-family: Nunito;
    max-width: 200px;
}
.vector-img {
    max-width: 100%;
    filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(313%) hue-rotate(50deg) brightness(95%) contrast(90%);
}
.vector-img-main {
    text-align: center;
}
/*-----------------------[ 33.home page 2 section Three CSS ]------------------------*/
.Home_PageTwoSectionThree {
    padding: 100px 0;
    background: #171B22;
}
.services-box-main {
    padding: 30px 20px;
    background: #0F141C;
    text-align: center;
    transition: all 0.3s;
}
.services-box-main:hover {
    background: #6F39FD;
}
.services-numbers {
    font-size: 100px;
    line-height: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #63636385;
    font-family: MuseoModerno;
    z-index: 0;
    transform: translateX(0px);
    line-height: 100px;
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
}
.services-box-main:hover .services-numbers {
    -webkit-text-stroke-color: #FFFF;
}
.services-box-main h3 {
    font-size: 25px;
    line-height: 35px;
    color: #FFF;
    margin: 30px 0 10px 0;
}
.services-box-main h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #FFF;
    padding-bottom: 10px;
}
.img-icon-services-nuber {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services-vector-line {
    transition: all 0.3s;
}
.services-box-main:hover .services-vector-line {
    transform: rotate(180deg);
}
.services-box-main a {
    font-size: 18px;
    color: #FFF;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/*-----------------------[ 34.home page 2 section Four CSS ]------------------------*/
.Home_PageTwoSectionFour {
    padding: 100px 0;
}
.home2-gallery {
    display: flex;
    gap: 30px;
}
.image-gallrey-wrapper-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.image-gallrey-wrapper {
    position: relative;
    overflow: hidden;
}
.image-gallrey-wrapper img {
    display: block;
    width: 100%;
    transition: transform 0.8s ease, filter 0.8s ease;
}
.image-gallrey-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.8s ease;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
}
.image-gallrey-wrapper:hover img {
    transform: scale(1.1);
    filter: blur(5px);
}
.image-gallrey-wrapper:hover .overlay {
    opacity: 1;
}
.portrait {
    font-size: 22px;
    color: #FFF;
    font-family: MuseoModerno;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 10px;
}
.segio {
    font-size: 18px;
    color: #FFF;
    font-family: Nunito;
    font-weight: 400;
    line-height: 25px;
}
/*-----------------------[ 35.home page 3 slider CSS ]------------------------*/
:root {
    --width: 220px;
    --gap: 1rem;
    --speed: 500ms;
}
.home-page3-main {
    height: 100vh;
}
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.item {
    display: flex;
    align-items: center;
    width: var(--width);
    height: calc(var(--width) * 1.5);
    position: absolute;
    z-index: 1;
    border-radius: 0.25rem;
    box-shadow: 0 12px 24px -6px black;
    transition: left var(--speed), width var(--speed), height var(--speed), border-radius var(--speed), opacity var(--speed);
    transition-timing-function: ease-out;
    transform-origin: center;
    overflow: hidden;
    will-change: transform, opacity;
}
.item::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    box-shadow: 0px 0px 50px 25px rgba(0, 0, 0, 0.25) inset;
    transition: box-shadow var(--speed);
    will-change: transform, opacity;
}
.item img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item:nth-child(1),
.item:nth-child(2) {
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    filter: blur(0);
}
.item:nth-child(1)::after,
.item:nth-child(2)::after {
    box-shadow: 0px -50px 150px 50px rgba(0, 0, 0, 0.75) inset;
}
.item:nth-child(3) {
    left: 50%;
}
.item:nth-child(4) {
    left: calc(50% + var(--width) + var(--gap));
    transition-delay: calc(var(--speed) * 0.2);
}
.item:nth-child(5) {
    left: calc(50% + calc(var(--width) * 2) + calc(var(--gap) * 2));
    transition-delay: calc(var(--speed) * 0.4);
}
.item:nth-child(6) {
    left: calc(50% + calc(var(--width) * 3) + calc(var(--gap) * 3));
    opacity: 0;
    transition-delay: calc(var(--speed) * 0.6);
}
.fullslidercontent {
    width: 100%;
    max-width: 450px;
    position: absolute;
    left: 10%;
    z-index: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
    opacity: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
    outline: 0;
}
.fullslidercontent .title {
    font-weight: 600;
    font-family: Nunito;
    font-size: 35px;
    text-transform: uppercase;
}
.fullslidercontent .description {
    line-height: 30px;
    font-size: 17px;
    color: #FFF;
    font-weight: 400;
}
.fullslidercontent button {
    width: 190px;
    background-color: #6F39FD;
    border: 0;
    cursor: pointer;
    transition: background var(--speed), color var(--speed);
    height: 70px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
}
.fullslidercontent button:hover {
    background-color: #F6DE18;
}
.item:nth-of-type(2) .fullslidercontent {
    display: flex;
    animation: show var(--speed) ease-in-out calc(var(--speed) / 2) forwards;
}
@keyframes show {
    0% {
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}
.home3-slider-prv-next-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: 2rem;
    z-index: 5;
    user-select: none;
    padding: 0 50px;
}
.home3-slider-prv-next-main .btn {
    cursor: pointer;
    transition: background var(--speed), color var(--speed);
    font-size: 50px;
    font-weight: 500;
    color: #FFF !important;
    font-family: MuseoModerno;
    border: none;
}
/*-----------------------[ 36.home page 3 Section Two CSS ]------------------------*/
.home_Page_Three_Section_Two {
    padding: 100px 0;
}
.image31 {
    max-width: 100%;
    border-radius: 50%;
}
.image31-main {
    display: flex;
    justify-content: center;
    align-items: center;
}
.elit-text {
    font-size: 20px;
    line-height: 35px;
    font-weight: 500;
    color: #909090;
    padding-bottom: 10px;
    padding-top: 0;
}
.elit-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*-----------------------[ 37.home page 3 Section Three CSS ]------------------------*/
.homeThreeSectionThree {
    padding: 100px 0;
    background: #171B22;
}
.threedCard-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-content {
    text-align: center;
    background: #fff;
    padding: 25px 30px;
}
.card-content h2 {
    margin-bottom: 5px;
    font-size: 22px;
    font-family: Nunito;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #000;
}
.card-content p {
    font-size: 1rem;
    font-family: Nunito;
    font-weight: 300;
    color: #000;
}
.swiper.aboutSwiper {
    max-width: 320px;
}
.about-swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homeThreeSectionFour {
    padding: 100px 0;
}
/*-----------------------[ 38.home page 4 Section slider CSS ]------------------------*/
.creative-fullpage--slider {
    background-color: #ffffff;
    z-index: 2;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 100vh;
    font-size: 16px;
    display: flex;
    clip-path: none !important;
}
.creative-fullpage--slider .slider-inner {
    background: #000;
    height: 100vh;
    position: relative;
}
.creative-fullpage--slider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}
.creative-fullpage--slider .swiper-slide .slider-inner img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
.creative-fullpage--slider .swiper-slide .slider-inner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    position: absolute;
    top: 22%;
    left: 50px;
    z-index: 1;
}
.creative-fullpage--slider .swiper-slide .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background-color: transparent;
    background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}
.swiper-slide .slider-inner .swiper-content .title-area .tag {
    color: #ffffff;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0px;
    font-family: Nunito;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
    margin-top: 50px;
    color: #fff;
    font-size: 120px;
    font-family: Nunito;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 50px;
    margin-left: -12px;
    text-decoration: none;
}
.swiper-slide .slider-inner .swiper-content p.disc {
    font-size: 20px;
    width: 100%;
    margin-top: 15px;
    margin: 20px 0px 40px 0px;
    font-weight: 400;
    line-height: 32px;
    color: #FFFFFFB0;
    max-width: 400px;
}
.creative-btn--wrap .creative-slide--btn {
    color: #ffffff;
    margin-left: 18px;
    font-size: 1.4em;
    transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
    font-weight: 400;
    display: inline-flex;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
    outline-color: transparent;
    box-shadow: none;
    will-change: transform;
    backface-visibility: hidden;
}
.creative-btn--circle .circle {
    position: absolute;
    right: calc(100% - 10px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    clip-path: circle(25% at 50% 50%);
    transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle .circle-fill {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    background-color: #ffffff;
    will-change: transform;
    transform: scale(0);
    z-index: 1;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon {
    transform: translate(-100%, 0%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon .icon-arrow {
    width: 20px;
    height: 20px;
    stroke: none;
    fill: #000;
}
.creative-btn--circle .circle-outline {
    fill: transparent;
    width: 10px;
    stroke: #ffffff;
}
.creative-btn--wrap .creative-slide--btn .creative-btn--label {
    margin-left: 4pt;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn .creative-btn__border {
    position: absolute;
    left: 4pt;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
    transform: translateX(18px);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
    transform: scale(0, 1);
}
.creative-btn--wrap .creative-slide--btn:hover {
    margin-left: 38px !important;
}
.creative-btn--wrap .creative-slide--btn:hover .circle {
    clip-path: circle(50% at 50% 50%);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
    transform: scale(1, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
    transform: translate(0%, 0%);
    opacity: 1;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    bottom: 5%;
    top: unset;
    transform: scale(1);
    transition: all 0.4s;
    background-color: #FFFFFF00;
    backdrop-filter: blur(20px);
    height: 85px;
    width: 85px;
    line-height: 85px;
    border-radius: 50%;
    transition: all 0.4s;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next {
    right: 50px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: 50px;
}
.swiper-container-h .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}
.swiper-container-h .slider-pagination-area .slide-range {
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 20px;
}
.swiper-container-h .slider-pagination-area .slide-range.one {
    left: -50px;
}
.swiper-container-h .slider-pagination-area .slide-range.three {
    right: -50px;
}
.swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 500px !important;
}
.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #ffffff;
    transform: translate3d(0px, 0px, 0px) scaleX(0.666667) scaleY(1);
    transition-duration: 1500ms;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}
/*-----------------------[ 39.home page 5 Section one CSS ]------------------------*/
.homeFiveSecOne {
    background: radial-gradient(35.36% 35.36% at 100% 25%, #0000 66%, #434343 68% 70%, #0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
        radial-gradient(35.36% 35.36% at 0 75%, #0000 66%, #434343 68% 70%, #0000 72%) 12px 12px/calc(2*12px) calc(2*12px),
        radial-gradient(35.36% 35.36% at 100% 25%, #0000 66%, #434343 68% 70%, #0000 72%) 0 0/calc(2*12px) calc(2*12px),
        radial-gradient(35.36% 35.36% at 0 75%, #0000 66%, #434343 68% 70%, #0000 72%) 0 0/calc(2*12px) calc(2*12px),
        repeating-conic-gradient(#000000 0 25%, #0000 0 50%) 0 0/calc(2*12px) calc(2*12px),
        radial-gradient(#0000 66%, #434343 68% 70%, #0000 72%) 0 calc(12px/2)/12px 12px #000000;
    height: 100%;
    width: 100%;
}
.we-capture {
    font-size: 80px;
    line-height: 100px;
}
.home5-slider-swiper .swiper-wrapper {
    margin-top: 50px;
}
.wptb-slider--image img {
    max-width: 100%;
    border-radius: 5px;
}
/*-----------------------[ 40.home page 5 Section Two CSS ]------------------------*/
.homeFiveSectionTwo {
    padding: 100px 0;
}
.homeFiveServices {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.weding {
    font-size: 25px;
    color: #FFF;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 15px
}
.wide {
    font-size: 18px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #909090;
}
.homeFiveServices:hover .weding {
    color: #F6DE18;
}
.homeFiveServices:hover .wide {
    color: #FFF;
}
#serviceshome51:hover {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_page/insta-img8.jpg');
}
#serviceshome52:hover {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_page/insta-img10.jpg');
}
#serviceshome53:hover {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_page/insta-img4.jpg');
}
#serviceshome54:hover {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_page/insta-img3.jpg');
}
#serviceshome55:hover {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_page/insta-img9.jpg');
}
#serviceshome56:hover {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home_page/insta-img5.jpg');
}
.home5servicesRow {
    gap: 20px 0;
}
/*-----------------------[ 41.home page 5 Section Three CSS ]------------------------*/
.homeFiveSectionThree {
    padding: 100px 0;
    background: #171B22;
}
.our_skill_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #141414;
}
.modern_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
    margin-top: 20px;
}
.our_skill_desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    color: #808080;
    margin-top: 40px;
}
.progresbar-counter {
    margin-bottom: 40px;
}
.progresbar-counter:last-child {
    margin-bottom: 0;
}
.skill-bars {
    margin: 30px 0 50px 0;
}
.progress-title {
    font-family: Nunito;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #FFF;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    float: left;
    text-transform: uppercase;
}
.progress-value {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #FFF;
    float: right;
    font-family: Nunito;
}
.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: #808080;
    margin-top: 20px;
    clear: both;
}
#skil-progressbar1 span {
    width: 80%;
}
#skil-progressbar2 span {
    width: 90%;
}
#skil-progressbar3 span {
    width: 75%;
}
.skil-progressbar span {
    display: inline-block;
    position: absolute;
    height: 8px;
    background-color: #6F39FD;
}
.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;
    }
}
.why-choose-main {
    font-size: 40px;
    color: #FFF;
    line-height: 50px;
    font-family: MuseoModerno;
    font-weight: 600;
    text-transform: uppercase;
}
.dolorum {
    color: #FFF;
    font-size: 18px;
    line-height: 26px;
    padding: 20px 0 40px 0;
}

.why-choose-list-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.why-choose-list li {
    color: #FFF;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: Nunito;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.why-choose-list li::before {
    content: url('../images/home_page/check.png')
}
/*-----------------------[ 42.Coming Soon CSS ]------------------------*/
.coming-soon-main {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/coming_soon/bg-img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
.coming-soon-text {
    text-transform: uppercase;
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 60px;
}
.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: Nunito;
    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: #6F39FD;
    font-size: 70px;
    font-family: MuseoModerno;
}
.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;
}
.count-title-sub {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    padding-top: 50px;
    font-family: Nunito;
}
.coming-soonbtn {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*-----------------------[ 43.404 Page CSS ]------------------------*/
.Error-page-main {
    background-image: linear-gradient(to left top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Error_Page/bg1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
#Error404Text {
    text-transform: uppercase;
    color: #6F39FD;
    font-size: 150px;
    font-weight: 600;
    font-family: MuseoModerno;
    text-align: center;
    position: relative;
    animation: upDown 1s ease-in-out infinite alternate;
}
@keyframes upDown {
    0% {
        top: 0;
    }
    100% {
        top: 20px;
    }
}
.pageNotFound {
    font-size: 50px;
    line-height: 50px;
}
.pageNotFoundSub {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #FFF;
    text-align: center;
    padding-top: 20px;
    font-family: Nunito;
}
.input-search {
    text-align: center;
    margin-top: 30px;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
}
.input-search input {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 65px;
    background: rgb(30 30 30 / 49%);
    border: 2px solid #90909042;
    color: #FFF;
    padding: 12px 15px;
    font-size: 18px;
    outline: none;
    font-weight: 400;
    font-family: Nunito;
}
.input-search::placeholder {
    color: #909090;
}
.input-search img {
    position: absolute;
    right: 17px;
    top: 17px;
    width: 30px;
    cursor: pointer;
}
/*-----------------------[ 44.About Page2 CSS ]------------------------*/
.Explore-me-more {
    max-width: 600px;
    text-align: left;
}
.about2img1-main {
    text-align: center;
    position: relative;
}
.star2 {
    margin-right: 100px;
    animation: rotation infinite 9s linear;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.star-3 {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(42deg) brightness(97%) contrast(110%);
    position: absolute;
    left: 0;
    bottom: 50px;
    animation: zoom_in_out 3s infinite linear;
}
@keyframes zoom_in_out {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }
}
.about2img1 {
    margin-top: 20px;
    max-width: 100%;
}
.about2subImg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.gorgeous {
    color: #909090;
}
.project-gallery {
    padding-top: 50px;
}
/*-----------------------[ 45.Project Page3 CSS ]------------------------*/
:root {
    --swiper-theme-color: #6F39FD;
}
#slide-bg1 {
    background-image: url('../images/single_project/project-page31.jpg');
}
#slide-bg2 {
    background-image: url('../images/single_project/project-page32.jpg');
}
#slide-bg3 {
    background-image: url('../images/single_project/project-page33.jpg');
}
#slide-bg4 {
    background-image: url('../images/single_project/project-page34.jpg');
}
#slide-bg5 {
    background-image: url('../images/single_project/project-page35.jpg');
    background-position: top center;
}
#slide-bg6 {
    background-image: url('../images/single_project/project-page36.jpg');
}
.creative-showcase--slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
}
.creative-showcase--slider .swiper-slide .slide-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.creative-showcase--slider .swiper-slide .overlay-dark:before {
    opacity: .3;
    background: #1d1d1d;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.creative-showcase--slider .swiper-slide .video-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.creative-showcase--slider .swiper-slide .video-container video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.swiper-slide .slide-bg .slide-container {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 7;
    padding-left: 15px;
    padding-right: 15px;
}
.slide-bg .slide-container .slide-row {
    display: flex;
    flex-wrap: wrap;
}
.slide-container .slide-row .slider-content {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 8.33333333%;
    padding-left: 15px;
    padding-right: 15px;
}
.slider-content .slide-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: Nunito;
    margin-top: 0px;
}
.slider-content .slide-heading {
    font-size: 100px;
    color: #fff;
    margin: 0px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .2rem;
    font-family: MuseoModerno;
}
.slider-content .slide-heading a {
    text-decoration: none;
    color: #fff;
    outline: none;
}
.slider-content .slide-heading a span {
    display: inline-block;
}
.creative-showcase--slider .creative-button--wrapper .swiper-button-prev,
.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: auto;
    color: #fff;
    z-index: 9;
    cursor: pointer;
    width: auto;
    bottom: 30px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: normal;
    font-family: Nunito;
}
.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
    right: 120px;
}
.creative-showcase--slider .creative-button--wrapper .swiper-button-prev {
    left: 120px;
}
/*-----------------------[ 46.Project Page4 CSS ]------------------------*/
.swiper-container.project4swiper {
    height: 100vh;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}
.swiper-wrapper.project4swiper-wrapper {
    width: 73.8%;
    will-change: transform;
}
.swiper-slide.project4swiper-slide {
    width: 100%;
    overflow: hidden;
}
.swiper-slide.swiper-slide-active .slide-image,
.swiper-slide.swiper-slide-duplicate-active .slide-image {
    transform: scale3d(1, 1, 1);
}
@media (min-width: 630px) {
    .swiper-slide.project4swiper-slide {
        width: 50%;
    }
    .swiper-wrapper.project4swiper-wrapper {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .swiper-slide.project4swiper-slide {
        width: 33.333333%;
    }
    .swiper-slide.swiper-slide-next .slide-image,
    .swiper-slide.swiper-slide-prev .slide-image,
    .swiper-slide.swiper-slide-duplicate-next .slide-image,
    .swiper-slide.swiper-slide-duplicate-prev .slide-image {
        transform: scale3d(1, 1, 1);
    }
}
.slide-image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale3d(1.3, 1.3, 1);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 1400ms ease;
}
#slide-image-pro41 {
    background-image: url('../images/single_project/project-img1.jpg');
}
#slide-image-pro42 {
    background-image: url('../images/single_project/project-img2.jpg');
}
#slide-image-pro43 {
    background-image: url('../images/single_project/project-img10.jpg');
}
#slide-image-pro44 {
    background-image: url('../images/single_project/project-img11.jpg');
}
#slide-image-pro45 {
    background-image: url('../images/single_project/project-img5.jpg');
}
#slide-image-pro46 {
    background-image: url('../images/single_project/project-img6.jpg');
}
#slide-image-pro47 {
    background-image: url('../images/single_project/project-img7.jpg');
}
.overlay3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.slide-image .pro4-img-slider-main {
    position: absolute;
    margin: 0;
    padding: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-image:hover .pro4-img-slider-main,
.slide-image:hover .pro4-img-slider-main {
    opacity: 1;
    transform: translateY(0);
}
.slide-image .pro4-img-slider-main,
.slide-image .pro4-img-slider-main {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-image .pro4-img-slider-main {
    bottom: 30px;
    left: 20px;
}
.slide-image:hover .overlay3 {
    opacity: 1;
}
.slide-image:hover .pro4-img-slider-main,
.slide-image:hover .pro4-img-slider-main {
    opacity: 1;
}
.pro4-img-slider-main h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #FFF;
    font-family: Nunito;
    padding-bottom: 10px;
}
.pro4-img-slider-main h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 30px;
    color: #FFF;
    font-family: MuseoModerno;
}
/*-----------------------[ 47.Project Page5 CSS ]------------------------*/
.swiper-container.pro5-img-slider-main {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.swiper-slide.pro5-img-swiper-slide {
    background-position: center;
    background-size: cover;
    width: 700px;
    height: 700px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
}
#swiper-slide51 {
    background-image: url('../images/single_project/project-page31.jpg');
}
#swiper-slide52 {
    background-image: url('../images/single_project/project-page32.jpg');
}
#swiper-slide53 {
    background-image: url('../images/single_project/project-page33.jpg');
}
#swiper-slide54 {
    background-image: url('../images/single_project/project-page34.jpg');
}
#swiper-slide55 {
    background-image: url('../images/single_project/project-page35.jpg');
}
#swiper-slide56 {
    background-image: url('../images/single_project/project-page36.jpg');
}
#swiper-slide57 {
    background-image: url('../images/single_project/project-page37.jpg');
}
#swiper-slide58 {
    background-image: url('../images/single_project/project-page38.jpg');
}
/*-----------------------[ 48.Images Gallery CSS ]------------------------*/
.zoom-icon {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 8px;
}
#gallery-images-main {
    padding: 0 12px;
}
/*-----------------------[ 49.Singel page 2 html video ]------------------------*/
.singlehtml-video {
    margin: 100px 0;
}
/*-----------------------[ 50.Single Services video CSS ]------------------------*/
.video-container2 {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 700px;
    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;
}
