@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

a,
span {
    display: inline-block;
    text-decoration: none;
}

body {
    font-family: "Lexend Deca", serif;
}

ul {
    padding: 0px;
    margin: 0px;
}

img {
    width: 100%;
    display: block;
}

.no-gutter {
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: var(--c3);
    line-height: 1.6;
    margin-bottom: 0px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --c1: #FFB200;
    --c2: #171717;
    --c3: #A7A7A7;
    --c4: #16DEEE;
    --c5: #ffffff;
    --C6: #0a5577;
    --bg: #0F0F0F;
}

::selection {
    color: var(--c5);
    background: var(--c1);
}

::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 0;
}

.container-fluid {
    max-width: 1700px;
}

/* WEB BUTTON TWO */

.web-btn-two {
    border: 1px solid rgb(128 128 128 / 32%);
    padding: 12px 15px 12px 65px;
    position: relative;
    border-radius: 5px;
    color: var(--c2);
    font-weight: 500;
    font-size: 15px;
    transition: all .7s;
    z-index: 1;
}

.web-btn-two::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 85%;
    content: '';
    background-color: var(--c1);
    border-radius: 5px;
    left: 4px;
    transition: all .7s;
    z-index: -1;
}

.web-btn-two i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c5);
    left: 18px;
    transition: all .7s;
}

.web-btn-two:hover {
    padding: 12px 65px 12px 15px;
    color: var(--c5);
}

.web-btn-two:hover::before {
    width: 95.5%;
}

.web-btn-two:hover i {
    left: 82%;
}

.bg-prop {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* WEB BTN */

.web-btn {
    font-weight: 600;
    background-color: var(--c4);
    padding: 15px 30px;
    border-radius: 6px;
    box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.13);
    transition: all .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--c6);
    font-size: 18px;
}

.web-btn::before {
    width: 0%;
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background-color: var(--c1);
    transition: all .7s;
    z-index: -1;
}

.web-btn:hover::before {
    width: 100%;
    left: 0;
    right: unset;
}

.web-btn:hover {
    color: var(--c5);
}

/* HEADER */

.head-logo a {
    display: block;
    width: 220px;
}

.header {
    /* padding: 20px 0px; */
    box-shadow: 0px 5.77px 86.5px 0px rgba(0, 0, 0, 0.08);
}

.nav-bar nav ul {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.head-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
}

.head-numb a {
    display: flex;
    gap: 10px;
    color: var(--c2);
    font-weight: 500;
    transition: all .5s;
}

.nav-bar nav ul li a {
    font-weight: 500;
    color: var(--c2);
    transition: all .5s;
    position: relative;
    padding: 32px 0px;
}

.nav-bar nav ul li a::before {
    position: absolute;
    content: '';
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--c1);
    border-radius: 50%;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

.nav-bar nav ul li a:hover::before {
    visibility: visible;
    opacity: 1;
}

.nav-bar nav ul li a:hover {
    color: var(--c1);
}

.head-numb a img {
    width: 30px;
}

.head-numb a:hover {
    color: var(--c1);
}

.nav-bar nav ul li ul {
    position: absolute;
    flex-direction: column;
    gap: 0px;
    background-color: var(--c5);
    z-index: 99;
    width: 280px;
    transform: scaleY(0);
    transition: all .5s;
    transform-origin: top;
    left: -20px;
    top: 100%;
}

.nav-bar nav ul li {
    position: relative;
}

.nav-bar nav ul li ul li a {
    display: block;
    padding: 10px 20px;
}

.nav-bar nav ul li ul li a::before {
    display: none;
}

.nav-bar nav ul li ul li a:hover {
    background-color: var(--c1);
    color: var(--c5);
}

.nav-bar nav ul li:hover ul {
    transform: scaleY(1);
}

/* SECTION MAIN BANNER */

.banner-title h1,
.start-item h2 {
    font-size: 124px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--c2);
    margin-bottom: 60px;
}

.banner-title h1 span,
.web-title h2 span,
.start-item h2 span,
.about-cont-box p span {
    position: relative;
    color: var(--c5);
    z-index: 2;
}

.banner-title h1 span::before,
.web-title h2 span::before,
.start-item h2 span::before,
.about-cont-box p span::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -5%;
    width: 110%;
    height: 100%;
    background-color: var(--c1);
    z-index: -1;
    border-radius: 24px;
    transform: rotate(-3deg) translateY(-50%);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25) inset;
}

.main-banner {
    padding: 100px 0px;
    position: relative;
    z-index: 2;
}

.banner-title {
    text-align: center;
}

.anim-img {
    position: absolute;
    z-index: -1;
}

.anim-img.one {
    top: 70px;
    left: 15%;
    width: 180px;
    animation: left-right 6s infinite linear;
    animation-direction: reverse;
}

.anim-img.two {
    top: 300px;
    left: 9%;
    width: 180px;
    animation: up-down 3s infinite linear;
    animation-delay: 1s;
}

.anim-img.three {
    bottom: 160px;
    left: 17%;
    width: 90px;
    animation: round 5s infinite linear;
    animation-direction: reverse;
}

.anim-img.four {
    bottom: 30px;
    left: 25%;
    width: 150px;
    animation: up-down 6s infinite linear;
    animation-direction: reverse;
}

.anim-img.six {
    right: 22%;
    top: 70px;
    width: 160px;
    animation: up-down 6s infinite linear;
}

.anim-img.seven {
    right: 12%;
    top: 200px;
    width: 100px;
    animation: round 5s infinite linear;
}

.anim-img.eight {
    right: 10%;
    bottom: 270px;
    width: 120px;
    animation: flip 5s infinite ease-in-out;
    animation-direction: reverse;
}

.anim-img.five {
    bottom: 100px;
    right: 23%;
    width: 180px;
    animation: left-right 6s infinite linear;
}

.anim-img.nine {
    top: 40px;
    left: 28%;
    width: 160px;
    animation: flip 6s infinite ease-in-out;
}

.anim-img.ten {
    top: 50px;
    left: 16%;
    width: 30px;
}

/* SECTION CREATIVE BOLD */

.cr-side-cont-main {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.web-title h2 {
    font-family: Lexend Deca;
    font-size: 56px;
    font-weight: 700;
    color: var(--c2);
    line-height: 1.2;
    text-transform: capitalize;
}

.cr-bold-title {
    padding-right: 220px;
}

.spacing {
    padding: 120px 0px;
}

.web-title h2 span::before {
    border-radius: 6px;
    height: 92%;
}

.cr-side-count {
    width: 26%;
    position: relative;
}

.cr-side-content {
    width: 33%;
}

.cr-side-content span {
    font-size: 22px;
    font-weight: 700;
    color: var(--c2);
    margin-bottom: 20px;
}

.cr-side-count span.count {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--c5);
    font-size: 85px;
    font-weight: 700;
}

.creative-img {
    margin-top: 90px;
    position: relative;
}

.round-img {
    position: absolute;
    top: -80px;
    left: -100px;
    width: 100px;
    animation: round 5s infinite linear;
}

.round-two-img {
    width: 180px;
    right: -50px;
    position: absolute;
    bottom: -250px;
    animation: round 5s infinite linear;
    animation-direction: reverse;
}

/* SECTION OUR EXPERTISE */

.expertise-title h2 {
    margin-bottom: 20px;
}

.expertise-title p {
    position: relative;
    padding-bottom: 20px;
}

.expertise-title p::before,
.testi-title h2::before,
.project-title h2::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--c1);
}

.expert-img img {
    width: 320px;
    height: 280px;
    margin: 0 auto;
    object-fit: contain;
}

.expert-img {
    padding: 60px 0px;
}

.expert-content {
    background-color: #F9F9F9;
    padding: 0px 160px;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-content p {
    margin: 20px 0px 35px 0px;
}

.expert-content a {
    color: rgb(117 117 117);
    position: relative;
    transition: all .5s;
    text-decoration: underline;
    width: max-content;
    margin: 0 auto;
}

.expert-content a:hover {
    color: var(--c1);
}

.expert-content a::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--c1);
    border-radius: 50%;
    left: -18px;
}

.expert-content h4 {
    font-weight: 600;
}

.our-expertise .row:nth-child(2) .col-lg-4:nth-child(2) .expert-item {
    display: flex;
    flex-direction: column-reverse;
}

.expertise-title {
    margin-bottom: 60px;
    position: relative;
}

.expertise-title img {
    position: absolute;
    bottom: 0;
    right: -120px;
    width: 60px;
    animation: flip 5s infinite linear;
}

.simp-serv-item {
    border: 1px solid #80808040;
    padding: 30px 30px;
    border-radius: 10px;
    transition: all .5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.simp-serv-item img {
    height: 70px;
    object-fit: contain;
    width: max-content;
    transition: all .5s;
}

.simp-serv-item h3 {
    color: var(--c2);
    margin: 20px 0px 15px 0px;
    font-size: 25px;
    font-weight: 600;
}

.simp-serv-item h3,
.simp-serv-item p,
.simp-serv-item a,
.simp-serv-item a::before {
    transition: all .5s;
}

.simp-serv-btn {
    margin-top: 40px;
}

.simp-serv-item:hover {
    border-color: var(--c1);
}

.simp-serv-item:hover h3,
.simp-serv-item:hover p,
.simp-serv-item:hover a {
    color: var(--c5);
}

.simp-serv-item:hover a::before {
    background-color: var(--c5);
}

.simp-serv-item a {
    position: relative;
    color: var(--c2);
    margin-top: 20px;
    text-transform: uppercase;
    padding-left: 20px;
}

.simp-serv-item a::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--c1);
    border-radius: 50%;
    left: 0;
}

.simp-serv-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    transform: scale(0);
    width: 100%;
    height: 100%;
    background-color: var(--c1);
    border-radius: 50%;
    transition: all .5s;
    z-index: -1;
}

.simp-serv-item:hover::before {
    transform: scale(1);
    border-radius: 0px;
}

.simp-serv-item:hover img {
    filter: invert(100);
}

.our-expertise {
    position: relative;
}

/* SECTION PACKAGES */

.package-header span {
    font-size: 24px;
    font-weight: 700;
    color: var(--c2);
}

.pricing {
    display: flex;
    align-items: end;
    margin: 12px 0px 20px 0px;
}

.pricing h5 {
    font-size: 46px;
    font-weight: 700;
    color: var(--c2);
}

.package-item {
    padding: 70px 40px 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 244, 244, 1);
}

.pricing del {
    font-size: 20px;
    font-weight: 400;
    color: rgba(131, 131, 131, 1);
    transform: translate(14px, -3px);
}

.package-header p {
    font-weight: 400;
    color: var(--c2);
    line-height: 1.2;
}

.package-list ul li {
    font-size: 18px;
    font-weight: 400;
    color: var(--c2);
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.package-list {
    margin: 40px 0px 40px 0px;
}

.package-list ul {
    height: 250px;
    overflow-y: auto;
}

.package-list ul::-webkit-scrollbar {
    width: 8px;
}

.package-list ul li:last-child {
    margin-bottom: 0px;
}

.package-list ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    color: rgba(6, 214, 160, 1);
    position: absolute;
    left: 0;
    top: 0;
}

.package-btn a {
    display: block;
    text-align: center;
    background-color: var(--c1);
}

.package-btn a::before {
    background-color: var(--c4);
}

.pack-batch {
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px;
    text-align: center;
    background-color: rgb(243 243 243);
    transition: all .5s;
}

.package-item:hover .pack-batch {
    background-color: var(--c1);
}

.pack-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.packages {
    position: relative;
    z-index: 2;
}

.cust-gap {
    row-gap: 24px;
}

.blur-icon {
    position: absolute;
    bottom: 30px;
    left: 100px;
    width: 200px;
    z-index: -1;
    animation: flip 5s infinite linear;
}

.wave-line {
    position: absolute;
    bottom: -70px;
    right: 0;
    width: 170px;
    animation: up-down 5s infinite linear;
}

.pack-icon {
    position: absolute;
    top: -30px;
    right: 100px;
    width: 200px;
    animation: up-down 5s infinite linear;
}

/* SECTION TESTIMONIAL */

.testimonial {
    background-color: var(--bg);
}

.testi-title h2,
.project-title h2 {
    color: var(--c5);
    position: relative;
    padding-bottom: 25px;
}

.testi-title {
    padding-right: 250px;
}

.testi-item p {
    font-size: 22px;
    font-weight: 400;
    color: var(--c5);
    margin-bottom: 20px;
}

.testi-item span {
    font-size: 20px;
    font-weight: 400;
    color: rgba(167, 167, 167, 1);
}

.myTesti .swiper-pagination {
    position: unset;
    text-align: left;
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.myTesti .swiper-pagination span {
    width: 10px;
    height: 10px;
    border-radius: 0px;
    background-color: #A7A7A7;
    opacity: unset;
}

.myTesti .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--c1);
}

.testi-title h2::before {
    transform: unset;
    left: 0;
}

/* SECTION AUDIENCE */

.audience-faqs .accordion-item {
    border: 0;
    margin-bottom: 40px;
}

.audience-faqs .accordion-button {
    font-size: 22px;
    font-weight: 600;
    color: var(--c2);
    padding: 0px;
    box-shadow: unset;
    background: unset;
}

.audience-faqs .accordion-button::after {
    background-image: unset;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    transform: unset;
}

.audience-faqs .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.audience-faqs .accordion-body {
    padding: 20px 0px 0px 0px;
    font-size: 17px;
    font-weight: 400;
    color: rgba(167, 167, 167, 1);
    line-height: 1.8;
}

.audience-faqs {
    margin-top: 40px;
}

.audience-faqs .accordion-button:not(.collapsed) {
    color: var(--c1);
}

.audience-title>h2 {
    font-size: 44px;
}

.audience-title {
    padding-right: 150px;
}

.audience-faqs .accordion-item:last-child {
    margin-bottom: 0px;
}

.audience {
    position: relative;
}

.aud-img-one {
    position: absolute;
    top: 20px;
    left: 50px;
    width: 180px;
    animation: round 8s infinite linear;
}

.aud-img-two {
    position: absolute;
    bottom: 20px;
    right: 100px;
    width: 140px;
    animation: left-right 5s infinite linear;
}

/* SECTION START WORKING */

.start-item {
    text-align: center;
    padding: 0px 260px;
}

.work-img-two {
    position: absolute;
    top: 50px;
    left: 400px;
    width: 140px;
    animation: flip 5s infinite linear;
}

.start-working {
    position: relative;
}

.work-img-three {
    position: absolute;
    top: 180px;
    left: 100px;
    width: 130px;
    animation: round 5s infinite linear;
}

.work-img-one {
    position: absolute;
    bottom: 140px;
    left: 600px;
    animation: left-right 5s infinite linear;
    animation-direction: reverse;
}

.work-img-five {
    position: absolute;
    top: 400px;
    right: 150px;
    animation: up-down 5s infinite linear;
}

.work-img-four {
    position: absolute;
    bottom: 100px;
    right: 100px;
    animation: left-right 5s infinite linear;
}

.start-item h2 {
    text-transform: uppercase;
    margin-bottom: 0px !important;
}

.contact-arrow-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-arrow-btn a {
    width: 120px;
    height: 120px;
    background-color: var(--c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: var(--c5);
    transition: all .5s;
}

.contact-arrow-btn a i {
    transition: all .5s;
}

.contact-arrow-btn a:hover {
    background-color: var(--c4);
}

.contact-arrow-btn a:hover i {
    transform: rotate(-35deg);
}

/* SECTION PROJECTS */

.projects {
    background-color: var(--bg);
}

.project-btn {
    text-align: center;
}

.project-title {
    padding-right: 70px;
}

.main-wrapper {
    overflow: hidden;
}

.project-item {
    padding: 20px;
    border: 1px solid rgba(52, 52, 52, 1);
    transition: all .5s;
}

.project-title h2::before {
    left: 0;
    transform: unset;
}

.project-btn a {
    background-color: var(--c1);
}

.project-btn a::before {
    background-color: var(--c4);
}

.proj-arrow {
    position: unset;
    margin: unset;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c5);
    border-radius: 50%;
    color: var(--c2);
    transition: all .5s;
}

.proj-arrow::after {
    font-size: 30px;
}

.proj-arrow:hover {
    background-color: var(--c1);
    color: var(--c5);
}

.proj-arrow-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.project-item a {
    display: block;
}

.project-item .project-img img {
    height: 550px;
    object-fit: cover;
    object-position: top;
    transition: all 3s;
}

.project-item .project-img:hover img {
    object-position: bottom;
}

.project-item:hover {
    border-color: var(--c1);
}

/* FOOTER */

.footer {
    background-color: var(--bg);
}

.foot-title span {
    font-size: 24px;
    font-weight: 600;
    color: var(--c5);
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
}

.foot-title span::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--c1);
}

.footer-item p {
    margin-bottom: 20px;
}

.foot-links ul li a,
.foot-contact .foot-links ul li {
    font-size: 17px;
    font-weight: 400;
    color: var(--c3);
    transition: all .5s;
}

.foot-links ul li a:hover {
    padding-left: 10px;
    color: var(--c1);
}

.foot-links ul li {
    margin-bottom: 17px;
}

.foot-socials ul {
    display: flex;
    gap: 10px;
}

.foot-socials ul li a {
    width: 50px;
    height: 50px;
    background: rgba(23, 23, 23, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c5);
    font-size: 20px;
    transition: all .5s;
}

.foot-socials ul li a:hover {
    background-color: var(--c1);
}

.foot-socials {
    margin-top: 30px;
}

.footer-main {
    border-bottom: 0.67px solid rgba(117, 117, 117, 1);
    padding: 150px 0px 50px 0px;
}

.footer-bottom {
    padding: 25px 0px;
}

.footer-logo a {
    width: 220px;
}

.footer-bottom .foot-links ul li {
    margin: 0px;
}

.footer-bottom .foot-links ul {
    display: flex;
    gap: 35px;
    justify-content: end;
}

.footer-bottom .foot-links ul li a:hover {
    padding: 0px;
}

.foot-logo {
    padding-right: 110px;
}

.foot-newsletter input[type="email"] {
    width: 100%;
    background: unset;
    border: 0;
    border-bottom: 0.53px solid rgba(117, 117, 117, 1);
    outline: 0;
    color: var(--c5);
    font-size: 18px;
    padding: 8px 0px 20px 0px;
}

.foot-newsletter input[type="submit"] {
    position: absolute;
    right: 0;
    padding: 8px 22px;
    top: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--c5);
    background-color: var(--c1);
    border: 0;
    border-radius: 8px;
    transition: all .5s;
}

.foot-newsletter {
    position: relative;
}

.foot-newsletter input[type="submit"]:hover {
    background-color: var(--c4);
}

.foot-news p {
    padding-right: 200px;
}

.foot-contact .foot-links ul li i {
    position: absolute;
    top: 5px;
    left: 0;
    color: var(--c1);
    font-size: 20px;
}

.foot-contact .foot-links ul li {
    position: relative;
    padding-left: 30px;
}

/* SECTION INNER BANNER */

.inner-banner {
    padding: 150px 0px;
}

.inner-bann-title h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--c5);
}

/* SECTION ABOUT CONTENT */

.about-cont-box p {
    font-weight: 400;
    font-size: 44px;
    text-align: center;
    color: var(--c2);
}

/* SECTION COUNTER */

.counter {
    background-color: var(--bg);
    position: relative;
    padding: 150px 0px;
}

.counter-item h2 {
    font-weight: 800;
    font-size: 80px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px var(--c5);
    margin-bottom: 20px;
}

.counter-item {
    text-align: center;
    position: relative;
}

.counter-item h3 {
    font-weight: 400;
    font-size: 26px;
    color: var(--c5);
}

.counter-item::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgb(255 255 255 / 11%);
    height: 120%;
    right: -10px;
}

.counter .row .col-lg-3:last-child .counter-item::before {
    visibility: hidden;
    opacity: 0;
}

.counter-icon {
    position: absolute;
    top: -80px;
    left: 130px;
    width: 180px;
    animation: left-right 5s infinite linear;
}

/* SECTION SERVICE DETAIL */

.serv-detail-img img {
    transition: all 1s;
}

.serv-detail-img:hover img {
    transform: scale(1.1);
}

.serv-detail-img {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 35px;
}

.serv-detail-content h2 {
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 30px;
    color: var(--c2);
}

.serv-detail-content h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--c2);
}

.serv-detail-content ul li {
    font-size: 18px;
    font-weight: 400;
    color: var(--c3);
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.serv-detail-content ul li::before {
    position: absolute;
    content: "\f058";
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Pro";
    color: var(--c1);
}

.serv-detail-content p {
    margin-bottom: 20px;
}

.serv-para.first {
    padding-right: 150px;
}

.service-details {
    position: relative;
}

/* SECTION PORTFOLIO */

.portfolio-btns ul li button,
.graph-btns ul li a {
    font-weight: 500;
    font-size: 18px;
    color: var(--c3);
    padding: 12px 30px;
    border: 0 !important;
    border-radius: 6px !important;
    transition: all .5s;
    border: 1px solid rgb(167 167 167 / 34%) !important;
}

.portfolio-btns ul li button.active,
.graph-btns ul li.active a {
    background-color: var(--c1) !important;
    color: var(--c5) !important;
    border-color: var(--c1) !important;
}

.portfolio-btns ul li button:hover,
.graph-btns ul li a:hover {
    background-color: var(--c1);
    color: var(--c5);
    border-color: var(--c1) !important;
}

.portfolio-btns ul,
.graph-btns ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    border: 0;
    flex-wrap: wrap;
}

.portfolio-btns,
.graph-btns {
    margin: 50px 0px;
}

.portfolio-item a {
    display: block;
}

.web-port .portfolio-item img {
    height: 600px;
    object-fit: cover;
    object-position: top;
    transition: all 3s;
}

.port-items-main .tab-pane .row {
    row-gap: 24px;
}

.portfolio-item:hover img {
    object-position: bottom;
}

.port-space {
    margin-top: 50px;
}

.cust-bg {
    background-color: var(--bg);
}

.cust-bg .web-title h2 {
    color: var(--c5);
}

.folio-btn {
    margin-top: 40px;
}

.btn-reverse::before {
    background-color: var(--c4);
}

.btn-reverse {
    background-color: var(--c1);
}

.portfolio-item video {
    width: 100%;
    display: block;
}

/* SECTION WITH US */

.with-us-item-main h2 {
    font-weight: 700;
    font-size: 80px;
    color: var(--c2);
    letter-spacing: 5px;
}

.with-us-item input,
.with-us-item textarea {
    border: 0;
    outline: 0;
    height: 50px;
    border-bottom: 2px solid var(--c2);
    width: 100%;
    transition: all .5s;
    color: var(--c2);
    background: unset;
}

.with-us-item input::placeholder,
.with-us-item textarea::placeholder {
    color: var(--c2);
    transition: all .5s;
}

.with-us-item input:focus::placeholder,
.with-us-item textarea:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}

.with-us-item input:focus,
.with-us-item textarea:focus {
    border-color: var(--c5);
}

.with-us-item-main form .row {
    row-gap: 40px;
}

.with-us-item textarea {
    height: 150px;
}

.with-us-btn button {
    border: 0;
    background: unset;
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 20px;
    color: var(--c5);
    padding: 0px 25px;
    transition: all .5s;
}

.with-us-btn button::before {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    background-color: rgb(0 0 0);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: all .5s;
}

.with-us-btn button:hover::before {
    width: 100%;
    border-radius: 6px;
}

.with-us-item-main form {
    margin-top: 70px;
}

.with-us {
    position: relative;
}

.with-us::before {
    position: absolute;
    content: '';
    top: 218px;
    left: 0;
    width: 55%;
    height: 680px;
    background-color: var(--c1);
    z-index: -1;
}

.with-us-imgs {
    display: flex;
    flex-wrap: wrap;
    margin-left: 220px;
    row-gap: 20px;
    justify-content: space-between;
}

.with-us-img {
    width: 48%;
    border: 1px solid #CFCFCF;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    background-color: var(--c5);
}

.with-us-img img {
    object-fit: contain;
    height: 150px;
}

.with-us-imgs .with-us-img:nth-child(1),
.with-us-imgs .with-us-img:nth-child(4) {
    transform: rotate(-10deg);
}

.with-us-imgs .with-us-img:nth-child(2),
.with-us-imgs .with-us-img:nth-child(3) {
    transform: rotate(10deg);
}

.with-us-img:hover {
    border-color: var(--c1);
    transform: unset !important;
}

.with-us-item-main {
    padding-right: 190px;
}

.talk-box h3 a {
    display: flex;
    color: var(--c2);
    gap: 100px;
    font-weight: 700;
    font-size: 190px;
    text-transform: uppercase;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    transition: all .5s;
}

.talk-box h3 a img {
    width: 130px;
    object-fit: contain;
    transition: all .5s;
}

.talk-box {
    margin-top: 200px;
}

.talk-box h3 a:hover {
    color: var(--c1);
}

.talk-box h3 a:hover img {
    transform: rotate(45deg);
}

/* SECTION COMBO OFFER */

.combo-title {
    background-color: var(--c1);
    padding: 80px 0px 50px 0px;
    position: relative;
    border-radius: 30px 30px 0px 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.combo-title img {
    position: absolute;
    width: 200px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.combo-offer {
    background-color: var(--bg);
}

.combo-items-main {
    background-color: var(--c5);
    border-radius: 0px 0px 30px 30px;
    padding: 70px 50px 100px 50px;
}

.combo-item span {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--c2);
}

.combo-item ul li {
    font-weight: 400;
    color: var(--c2);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.combo-item ul li::before {
    position: absolute;
    content: "\f058";
    font-family: "Font Awesome 5 Pro";
    color: var(--c1);
    left: 0;
    top: 1px;
}

.combo-item ul {
    height: 170px;
    overflow-y: auto;
}

.combo-item ul::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(239 239 239);
}

.combo-item {
    position: relative;
    padding-right: 40px;
    margin-right: 20px;
}

.combo-item::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgb(239 239 239);
    height: 120%;
    right: 0;
}

.combo-btn {
    margin-top: 40px;
}

.combo-price del {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    color: var(--c2);
    display: block;
}

.combo-price span {
    font-weight: 700;
    font-size: 80px;
    color: var(--c5);
    line-height: 1;
    margin-top: 12px;
}

.combo-price {
    background-color: var(--c1);
    text-align: center;
    border-radius: 10px;
    padding: 25px 0px;
}

/* SECTION SERVICE PAGE FAQS */

.ques-title {
    margin-bottom: 60px;
}

.serv-faqs .accordion-item {
    margin-bottom: 20px;
}

.serv-faqs .accordion-item .accordion-button {
    box-shadow: unset;
    background-color: var(--bg);
    color: var(--c5);
    font-size: 22px;
    padding: 30px;
    font-weight: 500;
}

.serv-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--c1);
}

.serv-faqs .accordion-item .accordion-button::after {
    background-image: unset;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    transform: unset;
}

.serv-faqs .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.serv-faqs .accordion-item .accordion-body p {
    color: var(--c2);
}

.cust-bg .serv-faqs .accordion-item .accordion-button {
    background-color: var(--c1);
}

.cust-bg .serv-faqs .accordion-item {
    background-color: unset;
}

.cust-bg .serv-faqs .accordion-item .accordion-body p {
    color: var(--c5);
}

.cust-bg .serv-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--c5);
    color: var(--c2);
}

/* SECTION MOBILE PORTFOLIO */

.mob-item-content h2 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--c2);
    margin-bottom: 20px;
}

.mob-item-content h2 span {
    font-size: 24px;
    margin-right: 8px;
    color: var(--c1);
}

.mob-item-content p {
    margin-bottom: 20px;
}

/* RESPONSIVE MENU CSS */

.ham-menu-btn a span {
    width: 32px;
    height: 3px;
    background-color: var(--c2);
}

.ham-menu-btn a {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 99999;
    transition: all .5s;
}

.responsive-menu-inner {
    height: 100%;
    padding: 30px;
    position: relative;
    width: 80%;
    background-color: var(--c5);
    left: -100%;
}

.responsive-logo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.respon-cross a,
.respon-cross a i {
    display: block;
}

.respon-cross a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--c2);
    transition: all .5s;
}

.respon-cross a:hover {
    transform: rotate(90deg);
    color: var(--c1);
    border-color: var(--c1);
}

.respon-logo a {
    display: block;
}

.respon-logo {
    width: 220px;
}

.responsive-links ul li a {
    color: var(--c2);
    transition: all .5s;
    font-size: 28px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid #80808047;
    padding: 10px 0px;
}

.responsive-links {
    margin-top: 50px;
    overflow-y: auto;
    height: calc(100vh - 232px);
}

.responsive-links ul li ul {
    display: none;
}

.responsive-links ul li a:hover {
    color: var(--c1);
}

.responsive-links ul li ul li a {
    padding-left: 40px;
    font-size: 22px;
}

.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 16px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 22px;
    color: var(--c2);
}

.responsive-links ul li {
    position: relative;
}

.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c1);
}

.responsive-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 12px 0px;
}

.responsive-socials ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.responsive-socials ul li a {
    color: var(--c5);
    font-size: 20px;
}

.responsive-menu.active {
    left: 0;
}

.responsive-menu.active .responsive-menu-inner {
    left: 0;
    transition-delay: .3s !important;
    transition: all .7s;
}

body.stop-scroll {
    overflow-y: hidden;
}

/* ANIMATION CSS */

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(20px);
    }

    60% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes left-right {
    0% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(20px);
    }

    60% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes round {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* section-about-us */

.cs-about-content {
    padding: 70px;
    position: relative;
    background-color: var(--bg);
    z-index: 3;
    margin: 0px;
}

.cs-about-content:before {
    position: absolute;
    content: "";
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border: 1px solid #80808036;
    z-index: -1;
}

.cs-about-info-list-box h5 {
    color: var(--c5);
    margin-bottom: 8px;
    position: relative;
}

.cs-about-content h4 {
    color: var(--c1);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cs-about-content h2 {
    color: var(--c5);
    margin: 15px 0px 40px 0px;
    font-size: 40px;
}

.cs-about-info-list-box p {
    margin-bottom: 20px;
}

.cs-about-info-list-box {
    padding-left: 20px;
    position: relative;
}

.cs-about-info-list-box:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 22px;
    left: -2px;
    width: 1px;
    height: 100%;
    border: 1px dashed #757575bd;
}

.cs-about-info-list-box h5:before {
    content: "";
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, var(--c1) 0%, var(--c2) 100%);
    left: -27px;
    top: 4px;
    position: absolute;
    border-radius: 50%;
}

.cs-about-info-list-box:last-child p {
    margin: 0px;
}

.cs-about-item-main:first-child {
    margin-bottom: 24px;
}

.cs-about-img img {
    height: 100%;
    object-fit: cover;
    transition: all .7s;
}

.cs-about-img {
    height: 100%;
    overflow: hidden;
}

.cs-about-img:hover img {
    transform: scale(1.1);
}

/* PRELOADER */


div#preloader {
    position: fixed;
    z-index: 999999999;
    background: var(--c5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    top: 0;
    left: 0;
}

#preloader.remove {
    opacity: 0 !important;
    visibility: hidden !important;
}

.loading {
    font-size: 90px;
    font-weight: 800;
    text-align: center;

    span {
        display: inline-block;
        margin: 0 -.05em;
        color: var(--c2);
    }
}

.loading03 span {
    margin: 0 -0.075em;
    animation: loading03 0.7s infinite alternate;
}

.loading03 span:nth-child(2) {
    animation-delay: 0.1s;
}

.loading03 span:nth-child(3) {
    animation-delay: 0.2s;
}

.loading03 span:nth-child(4) {
    animation-delay: 0.3s;
}

.loading03 span:nth-child(5) {
    animation-delay: 0.4s;
}

.loading03 span:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes loading03 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(.8);
    }
}

/* SECTION DISCRIPTIVE */

.descriptive {
    position: relative;
}

.instruction-sec-content p {
    margin-bottom: 20px;
}

.instruction-sec-content p strong {
    color: var(--c2);
    font-size: 30px;
}

.instruction-sec-content ol li {
    color: var(--c3);
    font-size: 17px;
    margin-bottom: 7px;
    list-style: auto;
}

.instruction-sec-content ol {
    margin: 20px 0px;
}

.instruction-sec-content a {
    color: var(--c1);
}

.instruction-sec-content ul li,
.privacy-box h3 {
    color: var(--c2);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}

.instruction-sec-content h5 {
    color: var(--c2);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.privacy-box ul li {
    font-size: 18px;
    font-weight: 400;
    color: var(--c3);
    line-height: 1.6;
    list-style: disc;
}

.privacy-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.instruction-sec-content p:has(strong) {
    line-height: 1.3;
}

/*THANK YOU CSS*/

.thank-you .web-title p {
    margin: 20px 0px 20px 0px;
}

.thank-you {
    position: relative;
}