/*------------------------------------------------------------------
  Project: Nairobi Galzaro
  Author: Upsqode
  Last change: 02/10/2023 
  Primary use: 
------------------------------------------------------------------ */

/************************* 
Base CSS **************************/

body:not(.dark-mode) {
    --primary-color: #fff;
    --secondary-color: #000;
    --background-color: #000;
    --skill_bar-bg: #F3F3F3;
    --tab-btn: #000;
    --stroke: #000;
    --burger-bg: #fff;
    --box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    --secondary-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
    --text-color: #444444;
    --text-hover: #999999;
}

.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: #999999;
    --text-hover: #444444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fascinate', cursive;
    font-family: 'Jost', sans-serif;
}

.main_container {
    box-sizing: border-box;
}

h1 {
    font-family: 'Fascinate', cursive;
    font-style: normal;
    font-weight: 900;
    margin: 0;
}

h2 {
    font-family: 'Fascinate', cursive;
    font-style: normal;
    font-weight: 900;
}

h3 {
    font-family: 'Fascinate', cursive;
    font-style: normal;
    font-weight: 900;
}

h4 {
    font-family: 'Fascinate', cursive;
    font-style: normal;
    font-weight: 900;
}

h5 {
    font-family: 'Fascinate', cursive;
    font-style: normal;
    font-weight: 900;
}

h6 {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 500;
}

p {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

.container {
    padding: 0;
}

.col-xl-6 {
    padding: 0;
}

ul {
    margin: 0;
}

.row {
    margin: 0;
}

.strong {
    font-weight: 900;
}

.all-page-border {
    height: 100%;
}

.all-page-border2 {
    border-bottom: 1.5px solid var(--secondary-color);
    border-top: 1.5px solid var(--secondary-color);
}

/************************* Menu CSS **************************/
.main_image_slider {
    position: relative;
}

.pluse {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: #ffaa00;
    border-radius: 50%;
}

.hell0 {
    position: absolute;
    top: 100px;
    left: 150px;
    z-index: -1;
}

.spam {
    position: absolute;
    left: 120px;
    top: 17%;
    max-width: 450px;
    max-height: 450px;
    background: inherit;
    border-radius: inherit;
    opacity: .8;
    animation: pulseAnimate 4s ease-out infinite;
    animation-delay: calc(1s*var(--i));
}

@keyframes pulseAnimate {
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.main_container {
    border: 3px solid var(--secondary-color);
    margin: 30px 34px 0;
}

.menu {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--secondary-color);
    position: sticky;
    top: 0;
    width: 100%;
    overflow: hidden;
    padding: 25px 34px 25px;
    background-color: var(--primary-color);
    z-index: 50;
}

.menu-btn a {
    position: relative
}

.yellow-line {
    width: 0px;
    height: 10px;
    background-color: #FFAF00 !important;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    transition: width 0.2s, background-color 0.5s;
    margin: 0 auto;
}

.active .yellow-line {
    width: 70%;
}

.list {
    display: flex;
}

.list li {
    list-style: none;
    padding: 8px 30px 0 30px;
}

.list li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 24px;
    font-family: Fascinate;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    text-transform: uppercase;
    position: relative;
}

.list li:hover .yellow-line {
    width: 60%;
}

.logo {
    filter: var(--img-logo);
}

.mobile-nav {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.hub {
    stroke: var(--stroke);
}

.wrapper {
    display: none;
    width: 100%;
    left: 0;
    z-index: 1;
    top: 0;
    margin: 0 auto;
    overflow: hidden;
    position: sticky;
}

.wrapper_Class {
    height: 100vh;
}

.mobile-hub {
    height: 80px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-view-logo {
    filter: var(--img-logo);
}

.icon-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
    color: var(--secondary-color);
}

.menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.sub-icon-menu {
    margin-top: 50px;
}

label {
    margin-bottom: 0;
}

.mobile-nav .m-menu__checkbox {
    display: none;
}

.mobile-nav label.m-menu__toggle {
    cursor: pointer;
}

.mobile-nav .m-menu {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -moz-transform: translate3d(-450px, 0, 0);
    -o-transform: translate3d(-450px, 0, 0);
    -ms-transform: translate3d(-450px, 0, 0);
    -webkit-transform: translate3d(-450px, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -moz-transition: transform 0.35s;
    -o-transition: transform 0.35s;
    -webkit-transition: transform 0.35s;
    transition: transform 0.35s;
    z-index: 1;
    overflow: hidden;
    background-color: var(--burger-bg);
}

.mobile-nav .m-menu__overlay {
    background-color: rgba(103, 103, 103, 0.5);
    position: absolute;
    top: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
    display: none;
}

.mobile-nav .m-menu__header {
    padding: 40px 25px;
    height: 50px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-between;
    -ms-flex-pack: space-around;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 2px solid var(--secondary-color);
}

.mobile-nav .m-menu__header span {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.mobile-nav .m-menu .m-menu {
    -moz-transform: translate3d(480px, 0, 0);
    -o-transform: translate3d(480px, 0, 0);
    -ms-transform: translate3d(480px, 0, 0);
    -webkit-transform: translate3d(480px, 0, 0);
    transform: translate3d(480px, 0, 0);
}

.mobile-nav .m-menu ul {
    height: 100vh;
    overflow-y: auto;
}

.mobile-nav .m-menu ul li a,
.mobile-nav .m-menu ul li label {
    display: block;
    text-align: left;
    padding: 0 0px;
    line-height: 47px;
    text-decoration: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 35px;
    font-family: Fascinate;
    position: relative;
}

svg {
    stroke: var(--stroke)
}

.mobile-nav .m-menu ul li label.a-label__chevron::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-color: #333;
    border-style: solid;
    border-width: 1px 1px 0 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    margin-top: -5px;
    right: 16px;
}

.mobile-nav .m-menu ul li .-invisible {
    border-bottom: 0;
}

.mobile-nav .m-menu .m-menu label.m-menu__toggle {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    border-bottom: 0;
    padding: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.mobile-nav .m-menu__checkbox:checked~.m-menu__overlay {
    display: block;
}

.mobile-nav .m-menu__checkbox:checked~.m-menu {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.wrapper_Class .open-mobile-menu .m-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/************************* Dark Light Mode CSS **************************/
.dark-light-main {
    position: fixed;
    left: 50px;
    bottom: 20px;
    z-index: 999;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
}

.toggle {
    --size: 2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    width: var(--size);
    height: var(--size);
    box-shadow: inset calc(var(--size) * 0.33) calc(var(--size) * -0.25) 0;
    border-radius: 999px;
    color: #000;
    transition: all 500ms;
}

.toggle:checked {
    --ray-size: calc(var(--size) * -0.4);
    --offset-orthogonal: calc(var(--size) * 0.65);
    --offset-diagonal: calc(var(--size) * 0.45);
    transform: scale(0.75);
    color: #ffaa00;
    box-shadow: inset 0 0 0 var(--size), calc(var(--offset-orthogonal) * -1) 0 0 var(--ray-size), var(--offset-orthogonal) 0 0 var(--ray-size), 0 calc(var(--offset-orthogonal) * -1) 0 var(--ray-size), 0 var(--offset-orthogonal) 0 var(--ray-size), calc(var(--offset-diagonal) * -1) calc(var(--offset-diagonal) * -1) 0 var(--ray-size), var(--offset-diagonal) var(--offset-diagonal) 0 var(--ray-size), calc(var(--offset-diagonal) * -1) var(--offset-diagonal) 0 var(--ray-size), var(--offset-diagonal) calc(var(--offset-diagonal) * -1) 0 var(--ray-size);
}

.hero {
    background: var(--primary-color);
    position: relative;
    transition: background 0.5s;
}

.light-dark {
    width: 53px;
    background: var(--primary-color);
    height: 44px;
    border-radius: 30px 0px 0px 30px;
    padding-left: 10px;
    padding: 5px 15px;
    position: fixed;
    top: 20%;
    right: 37px;
    box-shadow: -2px 2px 11px 0px rgba(252, 161, 3, 0.5);
    z-index: 40;
}

/*  ************************* Main Section
************************** */
.nairobi_img1 {
    max-width: 100%;
    border-radius: 50%;
    position: relative;
    left: 150px;
    margin-top: 122px;
}

.multiplication-frame-main {
    position: absolute;
    left: 63px;
    bottom: 0px;
}

.black-multiplication {
    position: relative;
    filter: var(--svg-color);
}

.yellow-multiplication {
    position: absolute;
    left: -3px;
    top: -9px;
    filter: var(--svg-skin-color);
}

.half-circle-main {
    position: absolute;
    right: 30%;
    top: 10%;
}

.half-circle-black {
    position: absolute;
    right: 0px;
    top: -10px;
    filter: var(--svg-color);
}

.half-circle-yellow {
    position: relative;
    filter: var(--svg-skin-color);
}

.main-text-box {
    position: relative;
}

.hello_text {
    color: var(--secondary-color);
    font-size: 30px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 20px;
    padding-left: 4px;
    font-family: Jost;
    font-style: normal;
    font-weight: 500;
}

.singal-text {
    opacity: 0;
    transform: translate(-150px, -50px) rotate(-180deg) scale(3);
    /* animation: revolveScale .4s forwards; */
    animation: revolveScale 3s forwards;
}

@keyframes revolveScale {
    60% {
        transform: translate(20px, 20px) rotate(30deg) scale(.3);
    }

    100% {
        transform: translate(0) rotate(0) scale(1);
        opacity: 1;
    }
}

.singal-text {
    color: var(--secondary-color);
    font-family: Fascinate;
    font-style: normal;
    font-size: 100px;
    font-weight: 900;
    line-height: 100px;
    margin: 0;
    padding-bottom: 20px;
}

.singal-text {
    display: inline-block;
}

.singal-text:nth-of-type(2) {
    animation-delay: .05s;
}

.singal-text:nth-of-type(3) {
    animation-delay: .1s;
}

.singal-text:nth-of-type(4) {
    animation-delay: .15s;
}

.singal-text:nth-of-type(5) {
    animation-delay: .2s;
}

.singal-text:nth-of-type(6) {
    animation-delay: .25s;
}

.singal-text:nth-of-type(7) {
    animation-delay: .3s;
}

.singal-text:nth-of-type(8) {
    animation-delay: .35s;
}

.singal-text:nth-of-type(9) {
    animation-delay: .4s;
}

.singal-text:nth-of-type(10) {
    animation-delay: .45s;
}

.singal-text:nth-of-type(11) {
    animation-delay: .5s;
}

.singal-text:nth-of-type(12) {
    animation-delay: .55s;
}

.singal-text:nth-of-type(13) {
    animation-delay: .6s;
}

.singal-text:nth-of-type(14) {
    animation-delay: .65s;
}

.design_text {
    color: var(--secondary-color);
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    margin: 0;
    margin-top: 20px;
    padding: 0 4px;
}

.main_text {
    transform: translate(0, 50%);
    margin-top: 60px;
}

.say_hello_text,
.follow_us_text {
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    padding-left: 15px;
    margin: 0;
}

.say-hello-main {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.follow_us_text2 {
    text-align: end;
    padding-right: 15px;
    padding-left: 0;
}

.main_page_bottom_text {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.media-text {
    display: flex;
    align-items: center;
    padding: 20px 0px;
}

.fb a {
    color: var(--text-color);
    font-size: 20px;
    line-height: 20px;
    padding: 0px 10px;
    text-decoration: none;
}

.fb a:hover {
    color: var(--secondary-color);
}

.mouse-img {
    position: absolute;
    left: 49%;
    bottom: -26px;
}

.container_mouse {
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.container_mouse .mouse-btn {
    width: 30px;
    height: 50px;
    background-color: var(--primary-color);
    border: 3px solid var(--secondary-color);
    border-radius: 30px;
    display: flex;
}

.container_mouse .mouse-btn .mouse-scroll {
    display: block;
    width: 3px;
    height: 10px;
    background: #FFAF00;
    margin: auto;
    animation: scrolling 1s linear infinite;
}

@keyframes scrolling {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/*  ************************* About Section CSS ************************** */
.about_top-spacer {
    padding-top: 100px;
    padding-bottom: 100px;
}

.yellow_circle {
    width: 20px;
    height: 20px;
    background-color: #FFAF00;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.about-text {
    padding: 40px 10px;
    font-size: 100px;
    line-height: 100px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    color: var(--secondary-color);
}

#about p {
    font-size: 22px;
}

#about .image8 .right-space {
    padding-top: 0;
}

#about .about_text {
    font-size: 50px;
    padding-bottom: 20px;
}

.modern-techniques .top-space {
    padding-top: 20px;
}

.creative_text {
    text-align: center;
    margin: 0;
}

.top-space {
    padding-top: 80px;
    padding-left: 168px;
}

.designer {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.designer1,
.designer2,
.designer3,
.designer4 {
    padding-bottom: 15px;
}

.designer5 {
    padding-bottom: 30px;
}

.big-yellow-circle {
    width: 40px;
    height: 40px;
    background-color: #FFAF00;
    border-radius: 50%;
    position: absolute;
    left: 19px;
    top: 0px;
    z-index: -1;
}

.contact-me-text a {
    color: #000;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    text-decoration: none;
    color: var(--secondary-color);
}

.contact-me-text a:hover {
    color: var(--text-color);
}

.dots-main {
    position: absolute;
    top: -240px;
    right: 150px;
}

.black-dots {
    position: relative;
    filter: var(--svg-color);
}

.yellow-square-frame {
    position: absolute;
    right: -8px;
    top: 25px;
}

.right-space {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge {
    display: block;
    position: relative;
    max-width: 100%;
    width: 620px;
    height: 620px;
    cursor: pointer;
    background-size: 105%;
    border-radius: 100%;
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.badge .text {
    display: block;
    position: absolute;
    width: 278px;
    height: 278px;
    left: -40%;
    top: 54%;
    text-align: center;
    border-radius: 50%;
    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(-45deg) translate(25.8rem, -3.8rem) rotate(45deg);
    background: rgba(34, 33, 35, 0.5);
    width: 100%;
    letter-spacing: 1rem;
    line-height: 20rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1), letter-spacing 1.5s ease-out;
}

.dolly {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dolly:hover .eight-digit {
    color: #FFF;
}

.eight-digit {
    text-align: center;
    font-size: 100px;
    line-height: 20px;
    margin: 0;
    color: var(--primary-color);
}

.eight-digit:hover {
    color: #fff;
}

.yer-expi {
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    padding-top: 50px;
    color: var(--primary-color);
}

.dolly:hover .yer-expi {
    color: #fff;
}

.yer-expi:hover {
    color: #fff;
}

.img-bg-slide {
    width: 620px;
    height: 620px;
    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('../img/septembre-anderson-headshot-about.png');
}

.slideshow2 li:nth-child(2) .img-bg-slide {
    background-image: url('../img/septembre-anderson-headshot-about2.png');
    animation-delay: 5s;
}

.slideshow2 li:nth-child(3) .img-bg-slide {
    background-image: url('../img/septembre-anderson-headshot-about3.png');
    animation-delay: 10s;
}

.slideshow2 li:nth-child(4) .img-bg-slide {
    background-image: url('../img/septembre-anderson-headshot-about4.png');
    animation-delay: 15s;
}

@keyframes backgroundSlideshow {
    0% {
        opacity: 0;
    }

    12.5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    37.5% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/*  ************************* Services Section CSS ************************** */
.services-spacer {
    padding: 100px 0px;
}

.box1 {
    border: 1px solid #000;
    border: 1px solid var(--secondary-color);
    padding: 30px;
    margin: 80px 14px 0;
    transition: all 1s;
}

.box1:hover {
    background-color: var(--background-color);
    transition: all 1s;
    transform: translateY(-15px);
}

.circle-frame {
    position: absolute;
    left: 100px;
    top: 40px;
    animation: rotate-animation2 10s infinite linear;
}

@keyframes rotate-animation2 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.black-circle {
    position: relative;
    filter: var(--svg-color);
}

.yellow-circle {
    position: absolute;
    left: -36px;
    top: -36px;
}

.dev-icons {
    position: relative;
    display: inline-block;
}

.dev-icons img {
    height: 50px;
    width: 60px;
}

.dev-icons::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    background: #FFAF00;
    border-radius: 100%;
    transform: scale(0, 0);
    transition: .4s;
    z-index: -1;
}

.box1:hover :before {
    transform: scale(1, 1);
    position: absolute;
    left: -13px;
    top: -15px;
}

.pc-icon {
    position: relative;
    filter: var(--svg-color);
}

.light-icon {
    filter: var(--svg-color);
}

.marketing-icon {
    filter: var(--svg-color);
}

.big-yellow-circle-services {
    width: 40px;
    height: 40px;
    background-color: #FFAF00;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: -1;
}

.big-yellow-circle-services2 {
    width: 40px;
    height: 40px;
    background-color: #FFAF00;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    bottom: -14px;
    z-index: -1;
}

.big-yellow-circle-services2.consultancy {
    bottom: -8px;
}

.developement-text {
    color: #000;
    font-size: 64px;
    line-height: 80px;
    color: var(--secondary-color);
    margin: 0;
    padding-top: 30px;
    padding-bottom: 20px;
    transition: all 1s;
}

.developement-text:hover {
    color: var(--primary-color);
    transition: all 1s;
}

.box1:hover .developement-text {
    color: var(--primary-color);
    transition: all 1s;
}

.developement-text2 {
    padding-top: 54px;
}

.odio-text {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
}

.odio-text:hover {
    color: var(--text-hover);
}

.box1:hover .odio-text {
    color: var(--text-hover);
}

.send-btn-main {
    display: flex;
    align-items: center;
    justify-content: center
}

.send-span:before {
    content: '';
    position: absolute;
    top: -100%;
    right: 0%;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 1s;
}

.send-span:before {
    top: 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:hover .send-span:after {
    bottom: 0;
}

/*  *************************Email Section CSS ************************** */
.email-bg {
    background-image: url(..//img/resume-bg.svg);
    background-position: 100%;
    background-size: 100% 100%;
    /* height: 424px; */
    animation: resume 10s linear infinite;
}

@keyframes resume {
    to {
        background-position: -500px 00px;
    }
}

body.dark-mode .email-bg {
    background-image: url(..//img/resume-bg-img.png);
}

.email-spacer {
    padding-top: 100px;
    padding-bottom: 100px;
}

.email-section a {
    color: var(--secondary-color);
    text-align: center;
    font-size: 100px;
    font-family: Fascinate;
    font-style: normal;
    font-weight: 900;
    line-height: 100px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin: 40px 0;
}

.email-section a:hover {
    color: var(--text-color);
    transition: all 0.5s ease-in-out;
}


.half-circle-end {
    position: absolute;
    right: 50px;
    top: 60px;
}

.half-circle-end-yellow {
    position: relative;
}

.half-circle-end-black {
    position: absolute;
    right: 3px;
    top: -11px;
    filter: var(--svg-color);
}

/*  *************************
Form Section CSS ************************** */
.form-spacer {
    padding-top: 100px;
    border-right: 3px solid var(--secondary-color);
}

.touch {
    padding-bottom: 60px;
}

.form-main {
    padding: 0 40px;
    padding-bottom: 100px;
}

.form {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

#form2 {
    width: 100%;
    height: 130px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.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: 36px;
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
}

.form label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #FFAF00;
    bottom: -1px;
    left: 0px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.content-name {
    position: absolute;
    bottom: 2px;
    left: 0px;
    transition: all .3s ease;
}

#content-name2 {
    position: absolute;
    bottom: 70px;
    left: 0px;
    transition: all .3s ease;
}

.form input:focus+.label-name .content-name,
.form input:valid+.label-name .content-name {
    transform: translateY(-50%);
    font-size: 20px;
    color: #FFAF00;
}

.form input:focus+.label-name::after,
.form input:valid+.label-name::after {
    transform: translateX(0%);
}

/* send button */
.send-btn {
    border: none;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    height: 65px;
    width: 180px;
    color: var(--secondary-color);
    font-size: 20px;
    font-family: Jost;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.send-btn:hover {
    color: #ffaa00;
}

.send-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 1s;
}

.send-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 1s;
}

.send-btn:hover:before {
    left: 0;
}

.send-btn:hover:after {
    right: 0;
}

.send-span:before {
    content: '';
    position: absolute;
    top: -100%;
    right: 0%;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 1s;
}

.send-btn:hover .send-span:before {
    top: 0;
}

.send-span:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0%;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 1s;
}

.send-btn:hover .send-span:after {
    bottom: 0;
}

.button-required {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.required {
    color: var(--text-color);
    text-align: right;
    font-size: 20px;
    line-height: 20px;
}

.form-spacer2 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.email-phone {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.form-contact a {
    color: var(--text-color);
    text-align: center;
    font-size: 20px;
    font-family: Jost;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-in-touch,
.follow-me-text {
    padding: 40px 10px;
    font-size: 100px;
    line-height: 100px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    color: var(--secondary-color);
}

.big-yellow-circle4 {
    width: 40px;
    height: 40px;
    background-color: #FFAF00;
    border-radius: 50%;
    position: absolute;
    left: 80px;
    top: 0px;
    z-index: -1;
}

.follow-me-text {
    color: var(--secondary-color);
    text-align: center;
    font-size: 64px;
    line-height: 64px;
    text-transform: uppercase;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 80px;
}

.circle-border {
    transform: translate(0, 0);
    text-align: center;
    width: 100%;
    border: 3px solid var(--secondary-color);
    list-style: none;
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    cursor: pointer;
    z-index: 0;
}

.circle-border::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: #FFAF00;
    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);
}

.social-media-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.multiplication-frame-footer {
    position: absolute;
    right: 80px;
    bottom: -100px;
}

.yellow-multiplication-form {
    position: absolute;
    right: -10px;
    bottom: 1px;
}

.black-multiplication-form {
    position: relative;
    filter: var(--svg-color);
}

/************************* Footer Section CSS **************************/
.reserved {
    color: var(--text-color);
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    padding: 40px 0;
}

/************************* 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: #FFAF00;
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

.container-preloader .animation-preloader .txt-loading .characters:before {
    animation: characters 4s infinite;
    color: #FFAF00;
    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: Fascinate;
    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);
    }
}

/************************* Bottom To Top Button CSS **************************/
.bottom-top-button {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 999;
    display: none;
    width: 50px;
    height: 50px;
    color: #000;
    border: 1px solid var(--secondary-color);
    font-size: 16px;
    cursor: pointer;
    transform: rotate(-90deg);
    text-decoration: none;
    transform: translateY(0%);
    transition: ease-out 200ms;
    transition-property: transform, background-color;
    background-color: #FFF;
}

.bottom-top-button:hover {
    transform: translateY(-22%);
}

.bottom-top-button:hover .fa-arrow-up {
    filter: invert(60%) sepia(87%) saturate(765%) hue-rotate(359deg) brightness(102%) contrast(106%);
}

@media (max-width: 768px) {
    .bottom-top-button {
        display: block;
    }
}

/************************* 
Cursor CSS **************************/
.element {
    position: fixed;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
}

.element-item {
    position: fixed;
    transform: translate(-50%, -50%) scale(1.0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    box-sizing: border-box;
    border: 2px solid #ffaa00;
}

.element-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    background: #ffaa00;
    border-radius: 100%;
    z-index: -1;
    transform: scale(1.0);
    transition: all 500ms cubic-bezier(.19, 1, .22, 1) 0ms;
}

.element-item.elem_hover:before {
    opacity: 1;
    border-width: 5px;
    width: 80px;
    height: 80px;
    background: #ffae004a;
    content: 'Visit';
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.element-item.top-button_hover:before {
    opacity: 1;
    border-width: 5px;
    width: 80px;
    height: 80px;
    background: #ffae004a;
    content: 'To Top';
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.element-item.elem_hover {
    width: 50px;
    height: 50px;
    border: transparent;
}

.element-item:after {
    font-family: "Font Awesome 5 Free";
    content: "";
    position: absolute;
    font-size: 7px;
    left: 50%;
    color: var(--dark-color);
    top: 50%;
    width: 14px;
    height: 14px;
    font-weight: 100;
    line-height: 14px;
    margin: -7px 0 0 -7px;
    opacity: 0;
    transition: all 500ms cubic-bezier(.19, 1, .22, 1) 0ms;
    transform: scale(0);
}

.element-item.close-icon:before {
    background: var(--body-bg-color);
}

.element-item.slider_hover {
    border-color: transparent;
    width: 60px;
    height: 60px;
}

.element-item {
    border-color: #FFAF00;
}

#portfolio_horizontal_container {
    cursor: pointer;
}

.element-item.slider_hover:before {
    opacity: 1;
    border-width: 5px;
    background: #ffae004a;
}

.element-item.slider_hover {
    border-color: transparent;
    width: 100px;
    height: 100px;
}

.element-item.slider_hover:after {
    opacity: 1;
    content: " \f07e";
    font-size: 15px;
    font-weight: 900;
    color: #FFAF00;
    transform: scale(1.4);
}