:root {
    --primary-color: #00c0fe;
    --secondary-color: #010101;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}

*::selection{
    background-color: var(--primary-color);
    color: #fff;
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: #000;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

html,
body {
    width: 100%;
    height: auto;
    scroll-behavior: smooth;
    background-color: #000;
}

.home {
    width: 100%;
    height: 100vh;
    background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80);
    background-position: center top;
    background-size: cover;
}

input:-internal-autofill-selected {
    background-color: transparent !important;
    color: #fff !important;
}

header {
    width: 100%;
}

main {
    position: relative;
    width: 100%;
    height: 100vh;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.slider-layout {
    position: relative;
    max-width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0 20px;
}

.header-item {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    overflow-x: hidden;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

.header-item::-webkit-scrollbar {
    display: none;
}

.header-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.header-item:nth-child(1),
.header-item:nth-child(2) {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    padding: 0 20px;
}

.header-item:nth-child(3) {
    left: 64%;
}

.header-item:nth-child(4) {
    left: calc(64% + 220px);
}

.header-item:nth-child(5) {
    left: calc(64% + 440px);
    opacity: 0;
}

.header-item:nth-child(6) {
    left: calc(64% + 660px);
    opacity: 0;
}

.header-item:nth-child(7) {
    left: calc(64% + 880px);
    opacity: 0;
}

.header-item:nth-child(8) {
    left: calc(64% + 11000px);
    opacity: 0;
}

.header-content {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: #fff;
    opacity: 0;
    display: none;
}

.header-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.header-content h2 span {
    color: var(--primary-color);
}

.header-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 50px;
}

.btn-arrow {
    position: relative;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    /* Default color */
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.btn-arrow:before,
.btn-arrow>span:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    background-color: #fff;
    left: 0;
    top: 50%;
}

.btn-arrow:after,
.btn-arrow>span:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    left: 55px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(135deg) translateY(5px);
}

.btn-arrow:before,
.btn-arrow:after {
    transition: all ease 0.3s;
}

.btn-arrow:after {
    opacity: 0;
}

.btn-arrow>span {
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.btn-arrow>span:before {
    transition: all 0.2s;
}

.btn-arrow>span:before {
    width: 60px;
    left: calc(100% + 10px);
}

.btn-arrow>span:after {
    left: calc(100% + 65px);
}

.btn-arrow:hover>span {
    transform: translateX(70px);
    color: var(--primary-color);
}

.btn-arrow:hover:before,
.btn-arrow:hover:after {
    transition-delay: 0.2s;
}

.btn-arrow:hover:before {
    width: 60px;
}

.btn-arrow:hover:after {
    opacity: 1;
    transition-delay: 0.3s;
}

.btn-arrow:hover span:before {
    transition-delay: 0.1s;
}

.btn-arrow:hover span:before {
    width: 0px;
}

.btn-arrow:hover span:after {
    opacity: 0;
}

.header-item:nth-of-type(2) .header-content {
    display: block;
    animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
    0% {
        filter: blur(5px);
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.header-nav {
    position: absolute;
    height: 100px;
    bottom: 0;
    left: 0;
    z-index: 5;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    width: 100%;
    font-size: 20px;
    backdrop-filter: blur(8px);
}

.header-nav .btn {
    color: rgba(0, 0, 0, 0.7);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    transition: all ease 0.3s;
}

.header-nav .btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}



.home-intro {
    position: relative;
    /* height: 100vh; */
    overflow: hidden;
    background-color: var(--secondary-color);
    scroll-behavior: smooth;
}

.home-intro-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.home-intro-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.home-intro-image {
    width: calc(45% - 10px);
    /* overflow: hidden; */
}

.home-intro-image img {
    width: 100%;
    object-fit: cover;
    scale: 0.75;
}

.home-intro-text-content {
    width: calc(55% - 10px);
}

.home-intro-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 80px;
    line-height: 50px;
}

.home-intro-text-content h2 span {
    color: var(--primary-color);
}

.home-intro-text-content p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 28px;
}

.home-intro-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.home-intro-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.connection-section {
    position: relative;
    background-color: #000;
}

.connection-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.connection-section-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.connection-section-text-content {
    width: calc(50% - 15px);
}

.connection-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    line-height: 50px;
}

.connection-section-text-content h2 span {
    color: var(--primary-color);
}

.connection-section-text-content ul {
    list-style: none;
    margin-bottom: 50px;
}

.connection-section-text-content ul li {
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 10px;
}

.connection-section-text-content ul li i {
    font-size: 20px;
    color: var(--primary-color);
    padding: 10px 0;
}

.connection-section-text-content ul li p {
    font-size: 20px;
    color: #fff;
    padding: 10px 0;
}

.connection-section-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.connection-section-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.connection-section-image {
    width: calc(50% - 15px);
    overflow: hidden;
}

.connection-section-image img {
    width: 100%;
    object-fit: cover;
    scale: 0.7;
    border-radius: 25px;
}



.portfolio-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/portfolio-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.header-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    height: 55vh;
}

.header-container {
    width: 100%;
    text-align: center;
}

.header-text-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55vh;
}

.header-container h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 50px;
}

.intro {
    position: relative;
    /* height: 100vh; */
    overflow: hidden;
    background-color: var(--secondary-color);
    scroll-behavior: smooth;
}

.intro-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.intro-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.intro-image {
    width: calc(45% - 10px);
    overflow: hidden;
    border-radius: 25px;
    background-color: #fff;
}

.intro-image img {
    width: 100%;
    object-fit: cover;
}

.intro-text-content {
    width: calc(55% - 10px);
}

.intro-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 80px;
    line-height: 50px;
}

.intro-text-content h2 span {
    color: var(--primary-color);
}

.intro-text-content p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 28px;
}

.intro-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.intro-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.intro-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.intro-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}



.reviews-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/reviews-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.reviews-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.reviews-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.reviews-section-layout {
    max-width: 1440px;
    padding: 50px 20px;
    margin: 0 auto;
}

.reviews-section-container {
    width: 100%;
}

.reviews-section-text-content {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.reviews-section-text-content h2 span {
    color: var(--primary-color);
}

.reviews-section-container p {
    font-size: 20px;
    color: #fff;
}

.reviews-section-items {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-section-item {
    position: relative;
    width: calc(25% - 20px);
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 25px;
    height: auto;
    cursor: pointer;
    overflow: hidden;
    height: auto;
    /* overflow-y: auto; */
}

.reviews-section-item::-webkit-scrollbar {
    width: 6px;
    background-color: #ffffff25;
    border-radius: 10px;
}

.reviews-section-item::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.reviews-section-item-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: none;
}

.reviews-section-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 100%;
}

.reviews-section-item-text {
    width: 100%;
    /* margin-top: 120px; */
}

.reviews-section-item-text p {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.reviews-section-item-text h4 {
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

.reviews-section-item-text p:last-child {
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

.reviews-rating i {
    margin-bottom: 20px;
    color: #ffd900;
    fill: #ffd900 !important;
}

.portfolio-section {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #010101;
}

.portfolio-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.portfolio-section-container {
    width: 100%;
}

.portfolio-section-text-content {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-section-text-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
}

.portfolio-section-text-content h2 span {
    color: var(--primary-color);
}

.portfolio-section-text-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.portfolio-section-categories {
    width: 100%;
}

.portfolio-section-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio-section-navbar a {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.portfolio-section-navbar .active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.portfolio-section-navbar a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.portfolio-section-items-container {
    width: 100%;
}

.portfolio-section-items {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio-section-item {
    width: calc(25% - 20px);
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 25px;
}

.portfolio-section-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.website-portfolio {
    object-position: top !important;
    transition: all 6s ease;
}

.website-portfolio:hover {
    object-position: bottom !important;
}

.pricing-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/pricing-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.contact-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/contact-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.logo-design-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/logo-design-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo-design-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.website-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/website-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.website-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.animation-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/animation-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.animation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.social-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/social-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.social-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.digital-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/digital-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.digital-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.app-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/app-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.app-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.seo-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/seo-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.seo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.hire-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/hire-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hire-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.hire-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.hire-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hire-section-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hire-section-box-container {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hire-section-box {
    width: 400px;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 25px;
    cursor: pointer;
    height: auto;
}

.hire-section-box h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.hire-section-box ul {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
}

.hire-section-box ul:last-child {
    margin-bottom: 0 !important;
}

.hire-section-box ul li {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.hire-section-box ul li i {
    color: #010101;
    font-size: 15px;
    padding: 10px 0;
}

.hire-section-box ul li p {
    color: #000;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.hire-section-pricing {
    width: 100%;
}

.hire-section-pricing h2 {
    font-size: 90px;
    font-weight: 900;
    margin-bottom: 10px;
    width: fit-content;
    margin: 40px 0;
}

.hire-section-pricing h2 span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-left: -25px;
}

.hire-section-pricing h4 {
    font-size: 30px;
    color: #000;
    width: 100%;
}

.hire-section-pricing h4 span {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.hire-section-button a {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000;
    margin: 30px 0;
}

.hire-section-button a:hover {
    background-color: #00000000;
    color: #000;
    border: 1px solid #000;
}

.hire-section-main-content {
    width: calc(50% - 15px);
}

.hire-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 80px;
    line-height: 50px;
}

.hire-section-text-content h2 span {
    color: var(--primary-color);
}

.hire-section-text-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 28px;
}

.hire-main-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.hire-main-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.hire-main-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.hire-main-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.hire-offer {
    position: relative;
    width: 100%;
    background-color: #000;
}

.hire-offer-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hire-offer-container {
    width: 100%;
}

.hire-offer-text-content {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.hire-offer-text-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
}

.hire-section-items {
    width: 100%;
    overflow: hidden;
}

.hire-section-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hire-section-items>h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin: 0px 0 30px 0;
}

.hire-section-image {
    width: calc(50% - 15px);
    overflow: hidden;
    border-radius: 25px;
    background-color: #fff;
}

.hire-section-image img {
    width: 100%;
    object-fit: cover;
}

.hire-section-item ul {
    width: calc(50% - 15px);
}

.hire-section-item ul li {
    width: 100%;
    margin: 20px 0;
}

.hire-section-item ul li h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.hire-section-item ul li p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.why-hire-text-content {
    width: 100%;
}

.why-hire-text-content>h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin: 80px 0 30px 0;
    text-align: center;
}

.why-hire-text-content ul {
    width: 100%;
}

.why-hire-text-content ul li {
    width: 100%;
}

.why-hire-text-content ul li h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 50px 0 20px 0
}

.why-hire-text-content ul li p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.start-hire {
    width: 100%;
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.start-hire-image {
    width: calc(50% - 15px);
    border-radius: 25px;
    background-color: #fff;
    overflow: hidden;
}

.start-hire-image img {
    width: 100%;
    object-fit: cover;
}

.start-hire-text-content {
    width: calc(50% - 15px);
}

.start-hire-text-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 80px;
}

.start-hire-text-content h2 span {
    color: var(--primary-color);
}

.start-hire-text-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 50px;
}

.start-hire-buttons {
    width: 100%;
}

.start-hire-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.start-hire-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.start-hire-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.start-hire-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}



.work-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/work-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.work-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.work-section {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.work-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.work-section-container {
    width: 100%;
}

.work-section-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.work-section-text {
    width: calc(60% - 15px);
}

.work-section-text h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.work-section-text p {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 50px;
}

.work-section-image {
    width: calc(40% - 15px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-section-image img {
    object-fit: cover;
}



.terms-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/terms-hero-image.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.terms-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.terms-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.terms-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.terms-section-container {
    width: 100%;
}

.terms-section-container h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.terms-section-container p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.terms-section-container ul {
    margin-left: 30px;
}

.terms-section-container ul li {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.terms-section-container h4 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.terms-section-container h4 span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.policy-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/policy-hero-image.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.policy-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.policy-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.policy-section-container {
    width: 100%;
}

.policy-section-container h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.policy-section-container p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.about-header {
    position: relative;
    width: 100%;
    height: 55vh;
    background-image: url(../images/about-hero-image.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
}

.about-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.about-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.about-section-container {
    width: 100%;
    overflow: hidden;
}

.about-section-container h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-section-container p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.about-section-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.about-section-image {
    width: calc(50% - 15px);
    border-radius: 25px;
    overflow: hidden;
    background-color: #fff;
}

.about-section-image img {
    width: 100%;
    object-fit: cover;
}

.about-section-text {
    width: calc(50% - 15px);
}

.about-section-text h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.about-section-text p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.about-section-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.about-section-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.about-section-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.about-section-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}



.error-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.error-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.error-section-container {
    width: 100%;
    overflow: hidden;
}

.error-section-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.error-section-image img {
    width: 55%;
    object-fit: cover;
}

.error-section-image a {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.error-section-image a:hover {
    background-color: transparent;
    color: #fff;
}



.combo-offer {
    position: relative;
    background-color: #000;
    overflow-x: hidden;
}

.combo-offer-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.combo-offer-container {
    width: 100%;
}

.combo-offer-text-content {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.combo-offer-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.combo-offer-main-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.combo-offer-item-text {
    width: calc(50% - 15px);
}

.combo-offer-item-text h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.combo-offer-item-text h2 span {
    color: var(--primary-color);
}

@keyframes text-anime {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.combo-offer-item-text h3 {
    transform-origin: left;
    font-size: 100px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    animation: text-anime 0.6s infinite;
    width: fit-content;
}

.combo-offer-item-text h4 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.combo-offer-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.combo-offer-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.combo-offer-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.combo-offer-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.combo-offer-item-container {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-offer-item {
    padding: 20px;
    border-radius: 25px;
    border: 1px solid #ffffff25;
    width: 400px;
    text-align: left;
    background-color: var(--primary-color);
}

.combo-offer-item h4 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 40px;
}

.combo-offer-item h4 span {
    color: #010101;
}

.combo-offer-item ul {
    list-style: none;
    height: 440px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.combo-offer-item ul::-webkit-scrollbar {
    width: 6px;
    background-color: #010101;
    border-radius: 10px;
}

.combo-offer-item ul::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
}

.combo-offer-item ul li {
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 10px;
}

.combo-offer-item ul li span {
    color: #000;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.combo-offer-item ul li i {
    color: #010101;
    padding: 10px 0;
    font-size: 15px;
}





.contact-info {
    position: relative;
    background-image: url(../images/contact-info-section-image.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
}

.contact-info-layout {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
}

.contact-info-container {
    width: 100%;
    text-align: left;
}

.contact-info-text-content {
    width: 100%;
    margin-bottom: 50px;
}

.contact-info-text-content h4 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info-text-content h3 {
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

.contact-info-buttons {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.contact-info-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
    z-index: 9;
}

.contact-info-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.contact-info-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 9;
}

.contact-info-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.contact-info-links {
    width: fit-content;
    margin-top: 30px;
}

.contact-info-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 20px;
}

.contact-info-links a:hover {
    color: var(--primary-color);
}



.footer-section {
    position: relative;
    background-color: var(--secondary-color);
}

.footer-section-layout {
    max-width: 1440px;
    padding: 50px 20px;
    margin: 0 auto;
}

.footer-section-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

.footer-section-text-content {
    width: calc(60% - 25px);
    text-align: left;
}

.footer-section-text-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-section-text-content p {
    font-size: 20px;
    color: #fff;
    margin: 20px 0;
}

.footer-section-text-content i {
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all ease 0.3s;
}

.footer-section-text-content i:hover {
    color: #fff;
}

.footer-section-links {
    width: calc(40% - 25px);
    text-align: left;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.footer-section-links ul {
    list-style: none;
}

.footer-section-links ul li {
    margin-bottom: 10px;
}

.footer-section-links ul li h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-section-links ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    transition: all ease 0.3s;
}

.footer-section-links ul li a:hover {
    color: var(--primary-color);
    margin-left: 10px;
}

.footer-section-bottom {
    margin-top: 50px;
    width: 100%;
}

.footer-section-bottom p {
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.footer-section-bottom p a {
    text-decoration: none;
    color: var(--primary-color);
}



.contact-section {
    position: relative;
    width: 100%;
    /* background: linear-gradient(180deg, #00c0fe 0%, #010101 90%); */
    background-color: #000;
}

.contact-section-layout {
    max-width: 1440px;
    padding: 50px 20px;
    margin: 0 auto;
}

.contact-section-container {
    width: 100%;
}

.contact-section-text-content {
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.contact-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.contact-section-text-content p {
    font-size: 20px;
    color: #fff;
}

.contact-section-main-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-section-info {
    text-align: left;
    width: calc(35% - 25px);
}

.contact-section-info h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.contact-section-info h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-section-info p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-section-info a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all ease 0.3s;
}

.contact-section-info a:hover {
    color: var(--primary-color);
}

.contact-section-info iframe {
    margin-top: 30px;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 25px;
}

.contact-form {
    width: calc(65% - 25px);
    border-radius: 25px;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 30px;
    flex-direction: column;

}

.contact-form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.contact-form input {
    width: 100%;
    height: 50px;
    outline: none;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    background-color: transparent;
    color: #fff;
    padding: 0 20px;
    font-size: 20px;
    transition: all ease 0.3s;
}

.contact-form input::placeholder {
    color: #fff;
    font-size: 20px;
}

.contact-form input:hover {
    border-bottom: 2px solid #fff;
}

.contact-form textarea {
    width: 100%;
    height: 150px;
    outline: none;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    background-color: transparent;
    color: #fff;
    padding: 0 20px;
    font-size: 20px;
    resize: none;
    transition: all ease 0.3s;
}

.contact-form textarea::placeholder {
    color: #fff;
    font-size: 20px;
}

.contact-form textarea:hover {
    border-bottom: 2px solid #fff;
}

.contact-form button {
    font-size: 20px;
    color: #000;
    background-color: var(--primary-color);
    font-weight: 400;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #010101;
    border: 1px solid #ffffff25;
    color: #fff;
}



.nav {
    position: fixed;
    width: 100%;
    height: 65px;
    text-align: center;
    padding: 60px 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    z-index: 999;
}

.navbar-container {
    /* background-color: red; */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px;
}

.nav div.logo {
    width: auto;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.nav div.logo a:hover {
    color: #00E676;
}

.nav div.main_list {
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    list-style: none;
}

.nav div.main_list ul li {
    width: auto;
    padding: 0;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.navContact {
    padding: 20px 0 10px 0;
}

.main_list {
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: translateY(0);
    opacity: 1;
}

.main_list.hidden {
    transform: translateY(-25%);
}

.main_list.hidden .navContact {
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.navButton {
    background-color: var(--primary-color);
    padding: 10px !important;
    border-radius: 5px;
    box-shadow: 0 0 10px 2px #ffffff70;
    transition: all ease 0.5s;
}

.navButton:hover {
    background-color: #fff;

}

.navButton a {
    color: var(--secondary-color) !important;
    font-weight: 500;
}

.navlinks>li:not(:last-child) {
    padding: 20px 0 !important;
    cursor: pointer;
}

.navlinks>li a {
    transition: all ease 0.3s;
}

.navlinks>li a:hover {
    color: var(--primary-color) !important;
}

.navServices:hover .navDropdown {
    display: block !important;
}

.navDropdown {
    margin-top: 20px !important;
    background-color: #010101;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    display: none;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    padding: 20px !important;
}

.navDropdown ul {
    display: flex;
    align-items: stretch !important;
    justify-content: start !important;
    text-align: left;
    gap: 5px !important;
    flex-wrap: wrap;
    width: fit-content !important;
}

.navDropdown ul li {
    padding: 10px 10px !important;
    text-align: left;
    display: flex;
    align-items: start !important;
    justify-content: start !important;
    flex-direction: column !important;
    cursor: pointer;
    transition: all ease 0.3s;
    border-bottom: 2px solid var(--secondary-color);
    width: 160px !important;
}

.navDropdown ul li a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    display: flex;
    align-items: start !important;
    justify-content: center !important;
    flex-direction: column;
    font-size: 16px !important;
}

.navDropdown ul li a img {
    width: 50px;
    object-fit: cover;
}

.navDropdown ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navDropdown ul li:hover a {
    color: var(--primary-color) !important;
}

.navDropdown ul li:hover a::after {
    width: 100%;
}

.navServices:hover .navDropdown {
    display: block !important;
}

.navTrigger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

.affix {
    padding: 60px 0;
    background-color: #010101;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.slider {
    position: fixed;
    top: 0;
    right: 100%;
    width: 80%;
    height: 100%;
    background-color: #000;
    color: #fff;
    padding: 20px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    z-index: 1000;
}

.slider.show {
    transform: translateX(100%);
    display: none;
}

.slider ul {
    list-style: none;
    padding: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.slider ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    transition: all ease 0.3s;
}

.slider ul li a:hover {
    color: var(--primary-color);
}

.slider .slider-dropdown ul::-webkit-scrollbar {
    width: 6px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.slider .slider-dropdown ul::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 10px;
}

.slider .slider-dropdown ul {
    height: 300px;
    justify-content: start !important;
    overflow-y: auto;
}

.slider .slider-dropdown ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
}

.slider .slider-dropdown ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    transition: all ease 0.3s;
}

.slider .slider-dropdown ul li a:hover {
    color: var(--primary-color);
}



.number-counter {
    position: relative;
    background-color: #000;
    overflow-x: hidden;
}

.number-counter-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.number-counter-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.number-counter-text-content {
    width: calc(50% - 15px);
}

.number-counter-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 80px;
    line-height: 50px;
}

.number-counter-text-content h2 span {
    color: var(--primary-color);
}

.number-counter-text-content p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.services-section-buttons {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 5px;
}

.counter-items {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.counter-item {
    text-align: center;
    background-color: var(--primary-color);
    width: 250px;
    padding: 30px 30px;
    border-radius: 25px;
}

.counter-item:nth-child(2) {
    margin-right: 15vw;
}

.counter-item h4 {
    font-size: 55px;
    color: #fff;
    font-weight: 700;
}

.counter-item p {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.number-counter-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
}

.number-counter-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.number-counter-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.number-counter-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}



.pricing-section {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #010101;
}

.pricing-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.pricing-section-container {
    width: 100%;
}

.pricing-section-text-content {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-section-text-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
}

.pricing-section-text-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.pricing-section-categories {
    width: 100%;
}

.pricing-section-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-section-navbar a {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
}

.pricing-section-navbar .active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.pricing-section-navbar a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.pricing-section-items-container {
    width: 100%;
}

.pricing-section-items {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.pricing-section-item {
    padding: 20px;
    border-radius: 25px;
    border: 1px solid #00c0fe;
    width: 350px;
    box-shadow: 0px 0px 12px #00c0fe;
}

.pricing-section-item h1 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
}

.pricing-section-item p {
    font-size: 20px;
    color: #8f8f8f;
    padding: 10px 0;
}

.pricing-section-item h2 {
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-section-item hr {
    margin: 30px 0;
    border: 1px solid #ffffff25;
}

.pricing-section-item a {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-section-item a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.pricing-section-item ul {
    list-style: none;
    margin: 40px 0 0 0;
    overflow-y: auto;
    margin-bottom: 20px;
}

.pricing-section-item ul::-webkit-scrollbar {
    width: 6px;
    background-color: #ffffff25;
    border-radius: 10px;
}

.pricing-section-item ul::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.pricing-section-item ul li {
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 10px;
}

.pricing-section-item ul li i {
    font-size: 15px;
    padding: 10px 0;
    color: var(--primary-color);
}

.pricing-section-item ul li p {
    font-size: 14px;
    color: #fff;
}

.pricing-section-main {
    background: #00c0fe40;
}

.pricing-section-buttons {
    width: 100%;
    text-align: center;
    height: fit-content;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-section-buttons a {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.pricing-section-buttons a:hover {
    background-color: transparent;
    color: #fff;
}



.process-section {
    position: relative;
    background-color: #000;
}

.process-section-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px;
}

.process-section-container {
    width: 100%;
}

.process-section-text-content {
    text-align: center;
}

.process-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

.process-section-text-content p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-top: 50px;
}

.process-section-image {
    width: 100%;
}

.process-section-image img {
    width: 100%;
    object-fit: cover;
}

.process-section-buttons {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 50px;
}

.process-section-buttons a {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
    z-index: 9;
}

.process-section-buttons a:hover {
    background-color: transparent;
    color: #fff;
}


.services-section {
    position: relative;
    background-color: #000;
    width: 100%;
    height: 100%;
}

.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#particles-js {
    height: 100%;
    width: 100%;
}

.services-section-layout {
    max-width: 1440px;
    padding: 50px 20px;
    margin: 0 auto;
}

.services-section-container {
    width: 100%;
}

.services-section-text-content {
    color: var(--secondary-color);
    margin-bottom: 50px;
    text-align: center;
}

.services-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.services-section-text-content p {
    font-size: 20px;
    color: #fff;
}

.services-section-items {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.services-section-item {
    width: 335px;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 25px;
    height: auto;
    cursor: pointer;
    z-index: 9;
}

.services-section-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00ade7;
    margin-bottom: 20px;
    box-shadow: 0px 0px 20px 2px #00000059;
}

.services-section-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section-item h3 {
    font-size: 25px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.services-section-item p {
    font-size: 16px;
    color: var(--secondary-color);
}

.services-section-item a {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: fit-content;
    margin-top: 20px;
}

.services-section-item a i {
    font-size: 20px;
}

.services-section-buttons {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.services-section-buttons a:first-child {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    background-color: var(--primary-color);
    z-index: 9;
}

.services-section-buttons a:first-child:hover {
    background-color: transparent;
    color: #fff;
}

.services-section-buttons a:last-child {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #ffffff25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 9;
}

.services-section-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}



.testimonials-section {
    position: relative;
    width: 100%;
    background-color: #000;
}

.testimonials-section-layout {
    max-width: 1440px;
    padding: 50px 20px;
    margin: 0 auto;
}

.testimonials-section-container {
    width: 100%;
}

.testimonials-section-text-content {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section-text-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.testimonials-section-container p {
    font-size: 20px;
    color: #fff;
}

.testimonials-section-items {
    width: 100%;
}

.mySwiper {
    border-radius: 25px;
}

.testimonials-section-item {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 25px;
    height: 350px;
    cursor: pointer;
    overflow: hidden;
}

.testimonials-section-item::-webkit-scrollbar {
    width: 6px;
    background-color: #ffffff25;
    border-radius: 10px;
}

.testimonials-section-item::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.testimonials-section-item-text {
    width: 100%;
}

.testimonials-section-item-text p {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonials-section-item-text h4 {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.testimonials-section-item-text p:last-child {
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

.testimonial-rating i {
    margin-bottom: 10px;
    color: #ffd900;
    fill: #ffd900 !important;
}

.popup-section-container {
    width: 100%;
    background: #00000080;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.popup-overlay {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup-layout {
    height: fit-content;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content-container {
    width: 100%;
    position: relative;
    height: 100%;
    background-color: #000000;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0px 0px 20px 0px #ffffff50;
    overflow: hidden;
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #ffffff50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.popup-close i {
    font-size: 35px;
}

.popup-close:hover {
    background-color: #fff;
}

.popup-logo {
    width: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-text-content {
    width: 100%;
    margin-top: 20px;
}

.popup-text-content h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    line-height: 30px;
}

.popup-text-content p {
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
}

.popup-content-container form {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.popup-content-container form input {
    width: 100%;
    height: 50px;
    outline: none;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    background-color: transparent;
    color: #fff;
    padding: 0 20px;
    font-size: 20px;
    transition: all ease 0.3s;
}

.popup-content-container form input::placeholder {
    color: #fff;
    font-size: 20px;
}

.popup-content-container form input:hover {
    border-bottom: 2px solid #fff;
}

.popup-content-container form button {
    font-size: 20px;
    width: 100%;
    color: #000;
    background-color: var(--primary-color);
    font-weight: 400;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.popup-content-container form button:hover {
    background-color: #010101;
    border: 1px solid #ffffff25;
    color: #fff;
}