/*------------------------------------------------------------------
Project: klikaroo studio
Author: Unify Wizards
Last change: 20-01-2026
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Header CSS
4.Section One CSS
5.Section Two CSS
6.Video Section CSS
7.Section Three CSS
8.Section Four CSS
9.Anytime Anywhere Section CSS
10.Portfolio Section CSS
11.Testimonial Section CSS
12.News Section CSS
13.Faq Section CSS
14.Email Section CSS
15.Contact Section CSS
16.Bottom To Top Button CSS
17.Portfolio Page section One CSS
18.Portfolio Page section Two CSS
19.Portfolio Page section Three CSS
20.Portfolio Page section Four CSS
21.News Page CSS
22.Single News Page CSS
23.Single News Page CSS
24.Background effect CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
 
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Rouge+Script&family=Tangerine:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Tangerine", cursive;
    font-family: "Rouge Script", cursive;
    font-family: 'Fascinate', system-ui;
    font-family: 'Jost', sans-serif;

}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
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: #f31d1d;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #171819;
}
body {
    max-width: 425px;
    margin: 0 auto;
    height: 100%;
    background: #171819;
}
.dark-mode {
    --primary-color: #000;
    --secondary-color: #fff;
    --background-color: #fff;
    --skill_bar-bg: #141414;
    --img-logo: invert(97%) sepia(97%) saturate(13%) hue-rotate(186deg) brightness(103%) contrast(103%);
    --svg-color: invert(97%) sepia(97%) saturate(13%) hue-rotate(186deg) brightness(103%) contrast(103%);
    --tab-btn: #FFF;
    --stroke: #FFF;
    --burger-bg: #000;
    --box-shadow: 0 0 0 0px rgba(253, 253, 253, 0.2);
    --secondary-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.100);
    --text-color: #bdbdbd;
    --text-hover: #444444;
}
/************************* 2.Preloader CSS **************************/
.container-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}
.container-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}
.container-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: #f31d1d;
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}
.container-preloader .animation-preloader .txt-loading .characters:before {
    animation: characters 4s infinite;
    color: #f31d1d;
    content: attr(data-preloader-text);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters {
    position: relative;
    font-family: "Tangerine", cursive;
    font-size: 128px;
    font-style: normal;
    font-weight: 900;
    line-height: 150px;
}
.txt-loading {
    display: flex;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
    animation-delay: 0.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
    animation-delay: 1s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before {
    animation-delay: 1.2s;
}
.container-preloader .loader-section {
    background-color: var(--primary-color);
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}
.container-preloader .loader-section.section-left {
    left: 0;
}
.container-preloader .loader-section.section-right {
    right: 0;
}
.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}
@keyframes characters {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
/*-----------------------[ 3.Header CSS ]------------------------*/
.site_content {
    background: var(--primary-color);
    padding: 15px;
    overflow: hidden;
}
.main_container {
    border: 2px solid var(--secondary-color);
}
header {
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--secondary-color);
}
.top-navbar.fixed {
    border-bottom: 1px solid var(--secondary-color);
    background: var(--primary-color);
    position: fixed;
    top: 0;
    width: calc(425px - 35px);
}
.menu-left {
    width: 100%;
    padding: 15px;
    max-width: 425px;
    margin: 0 auto;
    background-color: var(--primary-color);
}
.menu-left-sub {
    border: 2px solid var(--secondary-color);
    height: 100%;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: all 0.9s ease;
    z-index: 100;
    overflow: hidden;
    transform: scale(0);
    opacity: 0;
}
.menu-overlay.open {
    transform: scale(1);
    opacity: 1;
}
.menu-overlay {
    transition: transform 0.9s ease-in-out, opacity 0.9s ease-in-out;
}
.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 2px solid var(--secondary-color);
}
.logo {
    width: 80px;
     
}
.logo2 img {
    width: 80px;
    
}
.close-btn {
    cursor: pointer;
}
.close-btn img {
    filter: var(--img-logo);
    width: 35px;
}
#openBtn {
    cursor: pointer;
    width: 33px;
    filter: var(--img-logo);
}
.navbar-collapse {
    padding-left: 0;
}
.icon-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    color: var(--secondary-color);
}
.icon-menu a {
    color: var(--secondary-color);
    font-size: 25px;
    line-height: 40px;
   
    position: relative;
    transition: all 0.3s ease-in;
}
.icon-menu a:hover {
    color: #f31d1d;
}
.menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.share-text-m {
    color: var(--secondary-color);
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding-right: 15px;
}
.share-list-text-m a {
    color: var(--text-color);
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.share-list-text-m a:hover {
    color: var(--secondary-color);
}
/*-----------------------[ 4.Section One CSS ]------------------------*/
.section-one {
    padding-top: 40px;
    position: relative;
}
.hello_text {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 10px;
    font-family: Jost;
    font-style: normal;
    font-weight: 500;
    text-align: center;
}
.nairobi_text {
    text-align: center;
    padding-bottom: 10px;
}
.singal-text {
    color: var(--secondary-color);
    font-family: "Tangerine", cursive;
    font-style: normal;
    font-size: 60px;
    font-weight: 700;
    line-height: 68px;
    opacity: 0;
    display: inline-block;
    transform: translate(-150px, -50px) rotate(-180deg) scale(3);
    animation: revolveScale 2s forwards;
    letter-spacing: -3px;
}
@keyframes revolveScale {
    60% {
        transform: translate(20px, 20px) rotate(30deg) scale(.3);
    }
    100% {
        transform: translate(0) rotate(0) scale(1);
        opacity: 1;
    }
}
.design_text {
    color: var(--text-color);
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}
.design_text_main {
    padding: 0 12px;
}
.half-circle-main {
    position: absolute;
    right: 10%;
    top: 25px;
}
.half-circle-yellow {
    position: relative;
    width: 50px;
    height: 50px;
}
.half-circle-black {
    position: absolute;
    right: -5px;
    top: -5px;
    
    width: 50px;
    height: 50px;
}
.move-object {
    animation: 4s ease 0s normal none infinite running moveLeftRight;
}
@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(5px);
        -moz-transform: translateX(5px);
        -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
        -o-transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}
.nairobi_img1 {
    max-width: 100%;
    border-radius: 50%;
    position: relative;
    left: 0;
    margin: 20px auto 0px;
    padding: 0 12px;
}
.black-multiplication {
    position: relative;
    filter: var(--svg-color);
}
.multiplication-frame-main {
    position: absolute;
    left: 20px;
    bottom: -15px;
}
.yellow-multiplication {
    position: absolute;
    left: -3px;
    top: -5px;
    filter: var(--svg-skin-color);
}
.mouse-img {
    position: absolute;
    left: 47%;
    bottom: -60px;
}
.container_mouse .mouse-btn {
    width: 25px;
    height: 40px;
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    display: flex;
}
.container_mouse .mouse-btn .mouse-scroll {
    display: block;
    width: 3px;
    height: 10px;
    background: #f31d1d;
    margin: auto;
    animation: scrolling 1s linear infinite;
}
@keyframes scrolling {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(10px);
    }
}
.main_page_bottom_text {
    margin-top: 40px;
}
/*-----------------------[ 5.Section Two CSS ]------------------------*/
.section-two {
    padding-top: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
    border-top: 2px solid var(--secondary-color);
}
.yellow_circle {
    width: 15px;
    height: 15px;
    background-color: #f31d1d;
    border-radius: 50%;
    display: block;
    margin: auto;
}
.yellow-multiplication,
.black-multiplication {
    width: 40px;
}
.about-text {
    padding: 15px 10px 10px;
    font-size: 46px;
    line-height: 46px;
     
    text-align: center;
    margin: 0;
    color: var(--secondary-color);
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.right-space {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#counter {
    padding: 25px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.badge {
    display: block;
    position: relative;
    max-width: 100%;
    width: 300px;
    height: 300px;
    cursor: pointer;
    background-size: 105%;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.badge .text {
    display: block;
    position: absolute;
    width: 210px;
    height: 210px;
    left: -22%;
    top: 71%;
    text-align: center;
    border-radius: 100%;
    background: var(--background-color);
    transform: rotate(-45deg) translate(5rem, 5rem) rotate(-315deg);
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.badge:hover {
    background-position: 0% 0%;
}
.badge:hover .text {
    transform: rotate(-46deg) translate(199px, -100px) rotate(46deg);
    width: 100%;
    letter-spacing: 0.2rem;
    line-height: 20rem;
    height: 100%;
    background: rgba(34, 33, 35, 0.5);
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1), letter-spacing 1.5s ease-out;
    overflow: hidden;
}
.dolly {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dolly:hover .eight-digit {
    color: #FFF;
}
.eight-digit {
    color: #FFF;
    text-align: center;
    font-size: 90px;
    line-height: 0px;
    margin: 0;
    color: var(--primary-color);
    font-family: "Tangerine", cursive;
    font-style: normal;
    font-weight: 900;
}
.eight-digit:hover {
    color: #fff;
}
.yer-expi {
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    padding-top: 30px;
    color: var(--primary-color);
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 400;
}
.dolly:hover .yer-expi {
    color: #fff;
}
.yer-expi:hover {
    color: #fff;
}
.img-bg-slide {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: backgroundSlideshow 20s linear infinite 0s;
}
.slideshow2 li:nth-child(1) .img-bg-slide {
    background-image: url('../images/home-page/about-img.png');
}
.slideshow2 li:nth-child(2) .img-bg-slide {
    background-image: url('../images/home-page/about-img2.png');
    animation-delay: 5s;
}
.slideshow2 li:nth-child(3) .img-bg-slide {
    background-image: url('../images/home-page/about-img.png');
    animation-delay: 10s;
}
.slideshow2 li:nth-child(4) .img-bg-slide {
    background-image: url('../images/home-page/about-img2.png');
    animation-delay: 15s;
}
@keyframes backgroundSlideshow {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.top-space {
    padding-top: 127px;
    padding-left: 12px;
    padding-right: 12px;
}
.lobortgs {
    color: var(--secondary-color);
    font-size: 34px;
    line-height: 53px;
    padding: 0 0 10px 0;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
    text-align: center;
}
.designer {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.phone-email-icons {
    display: grid;
    align-items: center;
    justify-content: space-around;
    padding: 30px 0;
    gap: 30px;
}
.phone-icon {
    position: relative;
}
.phone-email-svg-main,
.phone-email-svg-main2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-email-svg {
    padding-bottom: 16px;
    filter: var(--svg-color);
    width: 50px;
    z-index: 1;
    position: relative;
}
.big-yellow-circle {
    width: 40px;
    height: 40px;
    background-color: #f31d1d;
    border-radius: 50%;
    position: absolute;
    left: 74px;
    top: 0px;
    z-index: 0;
}
.phone-email-svg-main::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: #f31d1d;
    border-radius: 50%;
    transform: scale(0, 0);
    transition: .4s;
}
.phone-email-svg-main:hover:before {
    transform: scale(1, 1);
    position: absolute;
    left: 50px;
    top: -13px;
}
.mobile-email a {
    color: var(--text-color);
    font-size: 20px;
    line-height: 20px;
}
.contact-me-text,
.mobile-email {
    text-align: center;
}
.contact-me-text a {
    color: #000;
    font-size: 19px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 500;
}
/*-----------------------[ 6.Video Section CSS ]------------------------*/
.shapes-bg {
    background-image: url(..//images/home-page/shape-bg-black.png);
    background-size: cover;
    height: 100%;
    animation: animate 10s linear infinite;
    padding: 30px 0;
}
@keyframes animate {
    100% {
        background-position: 0px -500px;
    }
}
.video-section-text {
    color: #000;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: var(--secondary-color);
    padding: 0 12px 20px;
}
.video-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-play-button {
    width: 70px;
    height: 70px;
    border: 3px solid var(--secondary-color);
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.traingle-img {
    width: 25px;
    height: 25px;
    filter: var(--svg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulse {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% {
        box-shadow: var(--box-shadow);
    }
    100% {
        box-shadow: var(--secondary-box-shadow);
    }
}
/*-----------------------[ 7.Section Three CSS ]------------------------*/
.section-three {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.box1 {
    border: 1px solid var(--secondary-color);
    padding: 25px 10px;
    margin: 20px 0 0;
    transition: all 1s;
}
.dev-iocns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.dev-iocns::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    background: #f31d1d;
    border-radius: 100%;
    transform: scale(0, 0);
    transition: .4s;
}
.big-yellow-circle-services {
    width: 40px;
    height: 40px;
    background-color: #f31d1d;
    border-radius: 50%;
    position: absolute;
    left: 47%;
    bottom: 6px;
}
.developement-text {
    color: #000;
    font-size: 40px;
    line-height: 44px;
    color: var(--secondary-color);
    text-align: center;
    padding-top: 25px;
    padding-bottom: 10px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.odio-text {
    color: var(--text-color);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}
.pc-icon {
    position: relative;
   
     
    z-index: 1;
}
/*-----------------------[ 8.Section Four CSS ]------------------------*/
.section-four {
    border-top: 2px solid var(--secondary-color);
}
body.dark-mode .resume-main-head {
    background-image: url(../images/home-page/resume-bg-img.png);
}
.resume-main-head {
    background-image: url(../images/svg/resume-bg.svg);
    height: 100%;
    background-position: 100%;
    background-size: 100% 100%;
    animation: resume 10s linear infinite;
    padding: 30px 0;
}
@keyframes resume {
    100% {
        background-position: -500px 00px;
    }
}
.resume-main {
    border-top: 2px solid var(--secondary-color);
    padding: 30px 12px;
}
.education-text {
    font-size: 37px;
    color: var(--secondary-color);
    padding-top: 0px;
    padding-bottom: 10px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
    text-align: center;
}
.dignissim-text {
    color: var(--text-color);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}
.resume-ed-text {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 0px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px
}
.sity {
    color: var(--text-color);
    font-size: 18px;
    line-height: 27px;
    padding-bottom: 0px;
    text-align: center;
}
.nibh {
    color: var(--text-color);
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}
.envato-icon {
    filter: var(--svg-color);
    padding-bottom: 15px;
}
.side-space2 {
    text-align: center;
    margin-top: 25px;
}
/*-----------------------[ 9.Anytime Anywhere Section CSS ]------------------------*/
.anytime-anywhere {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.resume-img-main {
    text-align: center;
    position: relative;
}
.resume-img {
    max-width: 100%;
    border-radius: 50%;
}
.s-frame-main {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translate(-50%);
}
.s-frame {
    filter: var(--svg-color);
    width: 55px;
}
.s-frame:hover {
    filter: invert(52%) sepia(87%) saturate(2590%) hue-rotate(164deg) brightness(90%) contrast(101%);
}
.anytime {
    font-size: 40px;
    line-height: 54px;
    padding: 50px 0 20px 0;
    color: var(--secondary-color);
    text-align: center;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.send-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
button {
    background: transparent;
    outline: none;
    border: none;
    transition: .3s ease;
    cursor: pointer;
}
.send-btn1 {
    border: none;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    height: 65px;
    width: 220px;
    color: var(--secondary-color);
    font-size: 20px;
    font-family: Jost;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}
.send-btn1:hover {
    color: #ffaa00;
}
.send-btn1:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 1s;
}
.send-btn1:hover:before {
    left: 0;
}
.send-btn1:hover .send-span:before {
    top: 0;
}
.send-span:before {
    content: '';
    position: absolute;
    top: -100%;
    right: 0%;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 1s;
}
.send-btn1:hover .send-span:after {
    bottom: 0;
}
.send-span:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0%;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 1s;
}
.send-btn1:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 1s;
}
.send-btn1:hover:after {
    right: 0;
}
.imagine {
    font-size: 37px;
    line-height: 50px;
    padding-top: 15px;
    padding-bottom: 0px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
    text-align: center;
    color: var(--secondary-color);
}
.visually-text {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
/* skill bar  */
.skillbar-container {
    position: relative;
    display: block;
    margin-bottom: 15px;
    width: 100%;
    background: var(--skill_bar-bg);
}
.progress-bar {
    overflow: hidden;
    display: flex;
    text-align: start;
    padding-top: 25px;
}
.percent-bar {
    color: var(--primary-color);
    text-align: center;
    font-family: Jost;
    font-size: 16px;
    line-height: 20px;
    font-style: normal;
    font-weight: 400;
}
.progress-title-holder {
    padding-bottom: 15px;
    position: relative;
}
.progress-title {
    font-size: 25px;
    line-height: 20px;
    color: var(--secondary-color);
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
}
.progress-number-mark {
    margin-bottom: 10px;
    background-color: var(--secondary-color);
    padding: 3px 7px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.down-arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--secondary-color);
    position: absolute;
    left: 50%;
    top: 100%;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.progress-content-outter {
    height: 3px;
    background-color: var(--skill_bar-bg);
}
.progress-content {
    height: 3px;
    background-color: var(--secondary-color);
    width: 0%;
}
.knowledge-text {
    color: var(--secondary-color);
    font-size: 37px;
    line-height: 50px;
    text-align: center;
    padding: 30px 0 20px 0;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.skill-list-main {
    padding-left: 0;
}
.skill-list ul li {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 10px;
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
}
.skill-list ul li:before {
    content: "•";
    font-size: 30pt;
    color: var(--text-color);
    padding-right: 10px;
}
.skill-list2,
.skill-list3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}
.languages-text {
    color: var(--secondary-color);
    font-size: 45px;
    line-height: 50px;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
/*-----------------------[ 10.Portfolio Section CSS ]------------------------*/
.portfolio-section {
    border-top: 2px solid var(--secondary-color);
}
body.dark-mode .portfolio-bg {
    background-image: url(../images/home-page/shape-bg-black.png);
}
.portfolio-bg {
    background-image: url(../images/svg/shapes-bg.svg);
    background-size: cover;
    height: 100%;
    animation: animate 10s linear infinite;
    padding: 30px 0;
    border-bottom: 2px solid var(--secondary-color);
}
.tab_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.tab_box .tab_btn {
    color: var(--text-color);
    font-family: Jost;
    line-height: 20px;
    font-size: 18px;
    padding: 0 18px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
}
.colijala-img {
    max-width: 100%;
    padding: 15px;
    border-bottom: 1px solid var(--secondary-color);
}
.colijala-text-group {
    padding: 0px 0px 0px 20px;
    height: auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--secondary-color);
    align-items: center;
}
.website-text {
    margin-bottom: 10px;
    padding-top: 10px;
}
.website-text a {
    color: rgb(177, 177, 177) !important;
    font-family: jost;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
   
}
.colijala-text {
    padding-bottom: 10px;
}
.colijala-text a {
    color: var(--secondary-color);
    font-family: 'Fascinate', system-ui;
    font-size: 36px;
    line-height: 40px;
}
.red {
    width: fit-content;
    height: auto;
    padding: 15px;
    border-left: 1px solid var(--secondary-color);
}
.arrow-pro {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}
.arrow-pro:after {
    position: absolute;
    display: block;
    content: "";
    color: var(--secondary-color);
    width: 60px;
    height: 20px;
    top: 11px;
    right: 9px;
    border-bottom: solid 3px;
    transform: translatex(4px);
}
.arrow-pro:before {
    position: absolute;
    display: block;
    content: "";
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-top: solid 3px;
    border-left: solid 3px;
    top: 50%;
    right: -28px;
    transform-origin: 0% 0%;
    transform: rotatez(132deg);
}
.colijala-text-group:hover .arrow-pro::before {
    animation: aniArrow01 1s cubic-bezier(0, 0.5, 1, 0.4) infinite 0.5s;
}
.colijala-text-group:hover .arrow-pro::after {
    animation: aniArrow02 1s cubic-bezier(0, 0.5, 1, 0.4) infinite 0.5s;
}
@keyframes aniArrow01 {
    0% {
        transform: rotatez(132deg) translateY(39px) translateX(39px);
    }
    100% {
        transform: rotatez(132deg) translateY(-36px) translateX(-36px);
    }
}
@keyframes aniArrow02 {
    0% {
        transform: translateX(-44px);
    }
    100% {
        transform: translateX(44px);
    }
}
.tab_box .tab_btn:hover {
    color: var(--secondary-color);
}
.tab_box .tab_btn.active {
    color: var(--tab-btn);
}
.content_box .content {
    display: none;
    animation: moving .5s ease;
}
@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        opacity: 1;
    }
}
.content_box .content.active {
    display: block;
}
/*-----------------------[ 11.Testimonial Section CSS ]------------------------*/
.testimonial-section {
    padding: 30px 12px;
}
#testimonial {
    border-top: 2px solid var(--secondary-color);
}
.left-right-space {
    padding: 20px 0px 25px;
}
.slider-text {
    color: var(--secondary-color);
    text-align: center;
    font-size: 20px;
    line-height: 30px;
}
.emoji {
    width: 80px;
    border-radius: 50%;
}
.emoji-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.requel {
    font-size: 18px;
    line-height: 20px;
    padding-top: 15px;
    padding-bottom: 10px;
    color: var(--secondary-color);
    text-align: center;
    text-transform: uppercase;
}
.ceo {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: Jost;
}
/*-----------------------[ 12.News Section CSS ]------------------------*/
.news-section {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.news-img1 {
    max-width: 100%;
    border-radius: 50%;
}
.news-img-main {
    width: 300px;
    height: 300px;
    border-radius: 100%;
    margin: 0 auto;
}
.slider2 {
    padding-top: 20px;
}
.date {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
    font-family: Jost;
    font-weight: 500;
}
.brands a {
    color: var(--secondary-color);
    text-align: center;
    font-size: 30px;
    line-height: 42px;
    font-weight: 900;
    padding-top: 20px;
    font-family: 'Fascinate', system-ui;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vitae {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding-top: 10px;
}
.read_more a {
    color: var(--secondary-color);
    text-align: center;
    font-family: Jost;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    display: flex;
    justify-content: center;
}
.view-more a {
    padding: 30px 0;
    color: var(--secondary-color);
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--secondary-color);
}
/*-----------------------[ 13.Faq Section CSS ]------------------------*/
.faq-section {
    border-top: 2px solid var(--secondary-color);
}
.sub-faq {
    padding: 30px 12px;
}
#accordionExample2 .accordion-item {
    border: none;
    background: transparent;
}
#accordionExample2 button {
    color: #FFF;
    font-family: Jost;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
    background: transparent;
    padding: 15px 0 10px 0;
    border-bottom: 1px solid var(--secondary-color);
}
#accordionExample2 .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
#accordionExample2 .accordion-body {
    color: #FFF;
    font-family: Jost;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    line-height: 28px;
    padding: 15px 0 5px;
}
#accordionExample2 .accordion-button:not(.collapsed) {
    box-shadow: none;
}
#accordionExample2 .accordion-button:focus {
    box-shadow: none;
}
#accordionExample2 .accordion-button:not(.collapsed)::after {
    background-image: url(../images/svg/accord-arrow.svg);
    filter: var(--img-logo);
}
#accordionExample2 .accordion-button::after {
    content: "";
    background-image: url(../images/svg/accord-arrow.svg);
    width: 2.2rem;
    height: 2.2rem;
    background-size: 2.2rem 2.2rem;
    filter: var(--img-logo);
}
.Pricing-main {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.accopricing {
    margin-top: 20px;
}
#accordionExample .accordion-button:not(.collapsed) {
    background-color: transparent;
}
#accordionExample .accordion-item {
    background: transparent;
}
#accordionExample .accordion-button:not(.collapsed)::after {
    background-image: url(../images/svg/accord-arrow.svg);
    filter: var(--img-logo);
}
#accordionExample .accordion-button::after {
    content: "";
    background-image: url(../images/svg/accord-arrow.svg);
    width: 2.2rem;
    height: 2.2rem;
    background-size: 2.2rem 2.2rem;
    filter: var(--img-logo);
}
.accordion {
    --bs-accordion-bg: none;
    --bs-accordion-border-color: none;
    --bs-accordion-btn-focus-box-shadow: none;
}
#accordionExample .accordion-button {
    padding: 20px;
    border: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}
.text-full-time {
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
    text-align: start;
    transition: all 0.3s;
    font-family: Jost;
    font-style: normal;
    font-weight: 500;
    display: block;
}
.degit-dollar {
    color: var(--secondary-color);
    font-size: 40px;
    line-height: 54px;
    transition: all 0.3s;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.each-hour-text {
    color: var(--secondary-color);
    text-align: center;
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
#accordionExample .accordion-body {
    padding: 0;
    border: 2px solid var(--secondary-color);
    margin-bottom: 20px;
}
#accordionExample .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
#accordionExample .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.box {
    background: #FFF;
}
.title {
    padding: 10px 0;
    font-size: 30px;
    text-align: center;
    background-color: #ffaa00;
    color: var(--secondary-color);
}
.view {
    display: block;
    padding: 20px 0 20px;
    background: #F5F5F4;
}
.cost {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.amount {
    font-family: Fascinate;
    font-size: 40px;
    line-height: 40px;
    font-style: normal;
    font-weight: 900;
    color: #000;
}
.detail {
    margin: auto 0 15px 8px;
    width: 90px;
    line-height: 15px;
    color: var(--text-color);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}
.description {
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    color: #7D7C7C;
}
.description ul {
    padding-left: 0;
}
.description-text {
    margin-top: 10px;
    font-size: 18px;
}
.description-text::before {
    content: "";
    background-image: url(https://i.postimg.cc/ht7g996V/check.png);
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
}
.sub-btn {
    text-align: center;
    padding-bottom: 20px;
}
.sub-btn-main {
    background: transparent;
    padding: 10px;
    color: #000;
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}
/*-----------------------[ 14.Email Section CSS ]------------------------*/
.email-section {
    border-top: 2px solid var(--secondary-color);
}
body.dark-mode .email-bg {
    background-image: url(../images/home-page/resume-bg-img.png);
}
.email-bg {
    padding: 30px 12px;
    background-image: url(../images/svg/resume-bg.svg);
    background-position: center;
    background-size: cover;
    height: 100%;
    animation: resume 10s linear infinite;
}
.email-section-text {
    text-align: center;
    margin: 15px 0;
}
.email-section-text a {
    color: var(--secondary-color);
    font-size: 56px;
    line-height: 66px;
    font-family: Fascinate;
    font-style: normal;
    font-weight: 900;
    line-break: anywhere;
}
/*-----------------------[ 15.Contact Section CSS ]------------------------*/
.contact-section {
    border-top: 2px solid var(--secondary-color);
    padding: 30px 12px;
}
.get-in-touch {
    padding: 15px 0;
    font-size: 46px;
    line-height: 50px;
     
    text-align: center;
    margin: 0;
    color: var(--secondary-color);
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.form {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.form input {
    width: 100%;
    height: 100%;
    color: var(--secondary-color);
    font-size: 20px;
    padding-top: 12px;
    border: none;
    outline: none;
    background-color: transparent;
}
.form label {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0%;
    pointer-events: none;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 24px;
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
}
.content-name {
    position: absolute;
    bottom: 2px;
    left: 0px;
    transition: all .3s ease;
}
.form label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #f31d1d;
    bottom: -1px;
    left: 0px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}
.form input:focus+.label-name .content-name,
.form input:valid+.label-name .content-name {
    transform: translateY(-50%);
    font-size: 20px;
    color: #f31d1d;
}
.form input:focus+.label-name::after,
.form input:valid+.label-name::after {
    transform: translateX(0%);
}
.touch {
    padding-bottom: 10px;
}
.required {
    color: var(--text-color);
    text-align: right;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 25px;
    text-align: center;
}
.button-required {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
.catch-me-here {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.contact-box1 {
    padding-bottom: 40px;
}
.phone-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    position: relative;
}
.phone-main::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    background: #f31d1d;
    border-radius: 50%;
    transform: scale(0, 0);
    transition: .4s;
}
.phone-main:hover::before {
    transform: scale(1, 1);
}
.email-phone {
    padding-top: 20px;
}
.form-phone {
    position: relative;
    filter: var(--svg-color);
    width: 50px;
}
.big-yellow-circle4 {
    width: 40px;
    height: 40px;
    background-color: #f31d1d;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 2px;
    z-index: -1;
    transform: translate(-50%);
}
.form-contact a,
.form-contact {
    color: var(--text-color);
    text-align: center;
    font-size: 20px;
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-media-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.circle-border {
    border: 2px solid var(--secondary-color);
    list-style: none;
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    cursor: pointer;
    z-index: 0;
}
.circle-border::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: #f31d1d;
    border-radius: 50%;
    transform: scale(0, 0);
    transition: .4s;
    z-index: -1;
}
.circle-border:hover::before {
    transform: scale(1, 1);
}
.social-icons {
    filter: var(--svg-color);
    width: 30px;
}
.follow-me-text {
    color: var(--secondary-color);
    text-align: center;
    font-size: 46px;
    line-height: 50px;
    
    padding-top: 28px;
    padding-bottom: 15px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.all-page-border2 {
    border-top: 2px solid var(--secondary-color);
}
.reserved {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    padding: 20px 12px;
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 400;
}
/*-----------------------[ 16.Bottom To Top Button CSS ]------------------------*/
.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 500;
    display: none;
    width: 40px;
    height: 40px;
    color: #000;
    cursor: pointer;
    transform: rotate(-90deg);
    text-decoration: none;
    transform: translateY(0%);
    transition: ease-out 200ms;
    background-color: #FFF;
}
/*-----------------------[ 17.Portfolio Page section One CSS ]------------------------*/
.colijala-main-text {
    padding-bottom: 10px;
    color: var(--secondary-color);
    font-size: 65px;
    font-style: normal;
    font-weight: 900;
    line-height: 70px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.share-list {
    display: flex;
    align-items: center;
    padding: 20px 12px 10px 12px;
    justify-content: center;
}
.share-text {
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    padding-right: 15px;
}
.share-list-text a {
    color: var(--text-color);
    font-family: Jost;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    padding: 10px;
}
/*-----------------------[ 18.Portfolio Page section Two CSS ]------------------------*/
.marquee-bg {
    background-image: url(../images/home-page/resume-bg-img.png);
    background-size: cover;
    animation: resume 10s linear infinite;
    height: 100%;
    padding: 30px 0;
    border-top: 2px solid var(--secondary-color);
    margin-top: 40px;
}
.marquee {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
    gap: 50px;
}
.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 60px;
    min-width: 100%;
}
.marquee__content {
    animation: scroll 20s linear infinite;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 20px));
    }
}
.client-marquee-txt {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.kobe-txt {
    color: var(--secondary-color);
    font-size: 30px;
    line-height: 40px;
}
/*-----------------------[ 19.Portfolio Page section Three CSS ]------------------------*/
.portfolio-section-three {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.unconventional {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    padding-top: 10px;
}
.integer {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    position: relative;
    text-align: center;
}
.challenge-img-main {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.challenge-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}
/*-----------------------[ 20.Portfolio Page section Four CSS ]------------------------*/
.portfolio-section-four {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.volutpat {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.volutpat1 {
    padding-bottom: 8px;
    padding-top: 8px;
}
.next-prev-buttons {
    padding-top: 30px;
}
.like-button-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.large-font {
    font-size: 30px;
    outline: none;
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
ion-icon {
    color: #FF0000;
}
ion-icon {
    fill: transparent;
    stroke: #FF0000;
    stroke-width: 30;
    transition: all 0.5s;
}
ion-icon.active {
    animation: like 0.5s 1;
    fill: #FF0000;
    stroke: none;
}
.like-increment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}
.open_likes_count,
.like-text {
    color: var(--text-color);
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    padding: 3px;
    text-align: center;
}
.next-prev-buttons {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.colijala-text-group {
    border: 1px solid var(--secondary-color);
    padding: 0;
}
.colijala-text-group2 {
    margin-bottom: 20px;
}
.right-line {
    padding-left: 20px;
    padding-right: 20px;
}
/*-----------------------[ 21.News Page CSS ]------------------------*/
#news-slider1,
#news-slider2 {
    padding: 30px 12px;
}
/*-----------------------[ 22.Single News Page CSS ]------------------------*/
#news-single-sec-one {
    padding: 30px 12px;
}
.bootstrap {
    color: var(--secondary-color);
    text-align: center;
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 15px;
    font-family: 'Fascinate', system-ui;
    font-style: normal;
    font-weight: 900;
}
.hello-news-main {
    color: var(--text-color);
}
.average {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 30px;
}
.main_img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-single-img {
    max-width: 100%;
    border-radius: 50%;
}
.share-list2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 25px 0 15px;
}
.volutpat2 {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}
.qote-head {
    display: flex;
    align-items: center;
    justify-content: center;
}
.qote-bg {
    background-image: url(../images/home-page/shape-bg-black.png);
    background-size: cover;
    height: 100%;
    animation: animate 10s linear infinite;
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.qote-svg-main {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.better {
    padding: 20px 0px 20px 0px;
    color: var(--secondary-color);
    text-align: center;
    font-size: 20px;
    line-height: 28px;
}
.lewis-bass {
    color: var(--secondary-color);
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
}
.single-news-sec-three {
    padding: 30px 12px;
    border-top: 2px solid var(--secondary-color);
}
.tortor {
    color: var(--text-color);
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}
.skill-list_news ul li {
    display: flex;
    align-items: stretch;
    color: var(--text-color);
    font-size: 18px;
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 5px;
}
.skill-list_news ul li:before {
    content: "•";
    font-size: 30pt;
    color: var(--text-color);
    padding-right: 10px;
}
.simone-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}
.simone-img {
    max-width: 100%;
    border-radius: 50%;
}
.text-prev {
    text-align: center;
}
.text-prev a {
    color: var(--text-color);
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
}
.build {
    text-align: center;
}
.build a {
    color: var(--secondary-color);
    font-family: 'Fascinate', system-ui;
    font-size: 28px;
    line-height: 40px;
    font-style: normal;
    font-weight: 900;
}
.nextprev-section2,
.nextprev {
    padding-top: 20px;
}
/*-----------------------[ 23.Background effect CSS ]------------------------*/
.area {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-left: 0;
}
.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #f31d1d;
    animation: Bganimate 25s linear infinite;
    bottom: -150px;
}
.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.circles li:nth-child(6) {
    left: 75%;
    width: 60px;
    height: 60px;
    animation-delay: 3s;
}
.circles li:nth-child(7) {
    left: 35%;
    width: 40px;
    height: 40px;
    animation-delay: 7s;
}
.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.circles li:nth-child(10) {
    left: 85%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.circles li:nth-child(11) {
    left: 76%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 6s;
}
@keyframes Bganimate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.sub-service-text{
        font-size: 20px;
    line-height: 34px;
    color: var(--secondary-color);
    text-align: center;
    padding-top: 25px;
    padding-bottom: 10px;
     
    font-style: normal;
    font-weight: 400;
}

.sub-service-cards {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}
.filter-white{
    filter: var(--svg-color);
}
.w-60{
    width: 60px;
}
.w-90{
    width: 90px;
}
.red-bold{
    color: #f31d1d;
}
.cursive-p{
    font-family: "Rouge Script", cursive;
    font-size: 23px;
    letter-spacing: 1px;
}


.heading-font{
    font-family: "Tangerine", cursive !important;
    font-weight: 700;
}
.mt-10{
    margin-top: 10px;
}



/* From Uiverse.io by marcelodolza */ 
.button {
  --white: #ffffff;

  /* RED THEME */
  --red-100: #ffd6d6;
  --red-200: #ff9c9c;
  --red-300: #f85b5b;
  --red-400: #f31d1d;
  --red-500: #b31212;

  --radius: 18px;

  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-family: Arial;
  background: transparent;
  letter-spacing: 0.5px;
  border: 0;
  position: relative;
  width: 160px;
  height: 40px;
  font-weight: 400;
  text-align: center;
}

.bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: blur(1px);
}
.bg::before,
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1.1);
   
}
.bg::before {
  filter: blur(6px);
  transition: all 0.3s ease;
 
}

.wrap {
  border-radius: inherit;
  overflow: hidden;
  height: 100%;
  transform: translate(6px, -6px);
  padding: 3px;
background: linear-gradient(
    to bottom,
    var(--red-100) 0%,
    var(--red-400) 100%
  );
  position: relative;
  transition: all 0.3s ease;
}

.outline {
  position: absolute;
  overflow: hidden;
  inset: 0;
  opacity: 0;
  outline: none;
  border-radius: inherit;
  transition: all 0.4s ease;
}
.outline::before {
  content: "";
  position: absolute;
  inset: 2px;
  width: 120px;
  height: 300px;
  margin: auto;
  background: linear-gradient(
    to right,
    transparent 0%,
    white 50%,
    transparent 100%
  );
  animation: spin 3s linear infinite;
  animation-play-state: paused;
}

.content {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  height: 100%;
  gap: 16px;
  border-radius: calc(var(--radius) * 0.85);
 
  transition: all 0.3s ease;
    background: linear-gradient(
    to bottom,
    var(--red-300) 0%,
    var(--red-400) 100%
  );
  box-shadow:
    inset -2px 10px 10px -5px var(--red-200),
    inset 0px -3px 10px rgb(0 0 0 / 40%);
}
.content::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 10;
  width: 80%;
  top: 45%;
  bottom: 35%;
  opacity: 0.7;
  margin: auto;
  background: linear-gradient(to bottom, transparent, var(--purple-400));
  filter: brightness(1.3) blur(5px);
}

.char {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.char span {
  display: block;
  color: transparent;
  position: relative;
}
.char span:nth-child(8) {
  margin-left: 5px;
}
/* .char.state-1 span:nth-child(8) {
  margin-right: -3px;
} */
.char.state-1 span {
  animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
}
.char.state-1 span::before,
.char span::after {
  content: attr(data-label);
  position: absolute;
  color: var(--white);
text-shadow: 0 0 6px rgb(255 255 255 / 60%);
  left: 0;
}
.char span::before {
  opacity: 0;
  transform: translateY(-100%);
}
.char.state-2 {
  position: absolute;
  left: 80px;
}
.char.state-2 span::after {
  opacity: 1;
}

.icon {
  animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
  z-index: 10;
}
.icon div,
.icon div::before,
.icon div::after {
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
}
.icon div::before,
.icon div::after {
  content: "";
  position: absolute;
  right: 0;
  transform-origin: center right;
  width: 14px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.icon div {
  position: relative;
  width: 24px;
   box-shadow: 0 0 10px rgb(255 255 255 / 45%);
  transform: scale(0.9);
  background: linear-gradient(to bottom, #fff, #ffd6d6);
  animation: swingArrow 1s ease-in-out infinite;
  animation-play-state: paused;
}
.icon div::before {
  transform: rotate(44deg);
  top: 1px;
  box-shadow: 1px -2px 3px -1px var(--purple-400);
  animation: rotateArrowLine 1s linear infinite;
  animation-play-state: paused;
}
.icon div::after {
  bottom: 1px;
  transform: rotate(316deg);
  box-shadow: -2px 2px 3px 0 var(--purple-400);
  background: linear-gradient(200deg, var(--white), var(--purple-100));
  animation: rotateArrowLine2 1s linear infinite;
  animation-play-state: paused;
}

.path {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  right: 0;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  pointer-events: none;
}

.splash {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  stroke-dasharray: 60 60;
  stroke-dashoffset: 60;
  transform: translate(-17%, -31%);
   stroke: var(--red-300);
}

/** STATES */

.button:hover .words {
  opacity: 1;
}
.button:hover .words span {
  animation-play-state: running;
}

.button:hover .char.state-1 span::before {
  animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
}

.button:hover .char.state-1 span::after {
  opacity: 1;
  animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
}

.button:hover .wrap {
  transform: translate(8px, -8px);
}

.button:hover .outline {
  opacity: 1;
}

.button:hover .outline::before,
.button:hover .icon div::before,
.button:hover .icon div::after,
.button:hover .icon div {
  animation-play-state: running;
}

.button:active .bg::before {
  filter: blur(5px);
  opacity: 0.7;
  box-shadow:
    -7px 6px 0 0 rgb(115 75 155 / 40%),
    -14px 12px 0 0 rgb(115 75 155 / 25%),
    -21px 18px 4px 0 rgb(115 75 155 / 15%);
}
.button:active .content {
  box-shadow:
    inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
    inset 0px -3px 8px 0px var(--purple-200);
}

.button:active .words,
.button:active .outline {
  opacity: 0;
}

.button:active .wrap {
  transform: translate(3px, -3px);
}

.button:active .splash {
  animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
}

.button:focus .path {
  animation: path 1.6s ease forwards 0.2s;
}

.button:focus .icon {
  animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
}

.char.state-2 span::after,
.button:focus .char.state-1 span {
  animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
}

.button:focus .char.state-2 span::after {
  animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes charAppear {
  0% {
    transform: translateY(50%);
    opacity: 0;
    filter: blur(20px);
  }
  20% {
    transform: translateY(70%);
    opacity: 1;
  }
  50% {
    transform: translateY(-15%);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes charDisappear {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-70%);
    opacity: 0;
    filter: blur(3px);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  50% {
    transform: translateX(60px);
    opacity: 0;
  }
  51% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-100px);
    opacity: 1;
  }
}

@keyframes swingArrow {
  50% {
    transform: translateX(5px) scale(0.9);
  }
}

@keyframes rotateArrowLine {
  50% {
    transform: rotate(30deg);
  }
  80% {
    transform: rotate(55deg);
  }
}

@keyframes rotateArrowLine2 {
  50% {
    transform: rotate(330deg);
  }
  80% {
    transform: rotate(300deg);
  }
}

@keyframes resetArrow {
  0% {
    transform: translateX(-128px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes path {
  from {
    stroke: white;
  }
 to {
    stroke-dashoffset: -480;
    stroke: #ffd6d6;
  }
}

@keyframes splash {
  to {
    stroke-dasharray: 2 60;
    stroke-dashoffset: -60;
  }
}

.contact-us-button{
    display: flex;
    justify-content: center;
}

.mt-20{
    margin-top: 20px;
}