body {
    background: radial-gradient(circle at 24.1% 68.8%, rgb(50, 50, 50) 0%, rgb(0, 0, 0) 99.4%);
    cursor: none;
    margin: 0;
    padding: 0;
    font-family: SuisseIntl-light;
}

* {
    box-sizing: border-box;
}


/*--------------------Cunstom Cursor--------------------*/
.custom-cursor {
    z-index: 1;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.custom-follower {
    /*Yellow-Cursor-FOLlower*/
    z-index: 3;
    width: 10px;
    height: 10px;
    background-color: yellow;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.navbar * {
    cursor: default;
    /* Show default cursor inside navbar */
    cursor: pointer;
    overflow: hidden;
}


/*--------------------Cunstom Scrollbar--------------------*/
::-webkit-scrollbar {
    width: 5px;
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: #555;
}

::-webkit-scrollbar-thumb {
    /* Handle */
    height: 200px;
    background: black;
}

::-webkit-scrollbar-thumb:hover {
    /* Handle on hover */
    background: #333333;
}


/*--------------------Button--------------------*/
.primary-btn {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}



.primary-btn a {
    text-decoration: none;
    color: white;
    z-index: 2;
    position: relative;
}

.primary-btn:hover a {
    color: #000;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.5s ease-in-out;
    z-index: 1;
}

.primary-btn:hover::before {
    left: 0;
    /* color: #000; */
}


/*--------------------Navbar--------------------*/
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
    position: relative;
    font-family: SuisseIntl-light;
    font-weight: 400;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 1s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: rgb(50, 50, 50);
}

.nav-link:hover {
    color: white;
}

/*--------------------CALL TO ACTION BUTTON--------------------*/
.navbar .get-quote-btn {
    background-color: #333;
    color: #f0f0f0;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navbar .get-quote-btn:hover {
    background-color: #444;
}

.modal-content {
    cursor: pointer;
    background-color: #1f1f1f;
    color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(44, 44, 44));
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.modal-content h2 {
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    background-color: #333;
    color: #f0f0f0;
    border: none;
}

.form-control:focus {
    border: 1px solid white;
}

.submit-btn {
    background-color: #444;
    color: #f0f0f0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

/*--------------------Navbar Responsiveness--------------------*/
@media (max-width: 768px) {
    .navbar {
        padding: 5px !important;
    }

    .navbar-brand>img {
        width: 200px;
    }

    .navbar-toggler {
        font-size: 15px;
    }

    .nav-link {
        font-size: 1rem;
    }
}


/*--------------------HOME-SECTION--------------------*/
.home-container {
    display: grid;
    place-items: center;
    align-content: center;
}

.div {
    overflow-x: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 5rem;
    font-family: SuisseIntl-light;
    font-weight: 200;
    min-height: 50vh;
    margin-bottom: 50vh;
}

.div:first-child {
    margin-top: 100px;
}

.hidden {
    opacity: 0;
    animation-duration: 2s;
    transition: all 1s;
    filter: blur(5px);
    transform: translateX(-100%);
}

/*--------------------HOME-SECTION Responsiveness--------------------*/
@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

@media (min-width: 768px) and (max-width: 1160px) {
    #third-div {
        margin-bottom: 100px;
    }

    .about-img img {
        min-width: 300px;

    }
}

@media (max-width: 768px) {
    .div {
        font-size: 2rem;
    }

    #third-div {
        margin-bottom: 100px;
    }

    .about-img {
        display: flex;
        justify-content: center;
    }

    .about-img img {
        min-width: 350px;

    }
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}


/*--------------------ABOUT-SECTION--------------------*/

.about {
    height: auto;
    overflow-x: hidden;
}

.about-img {
    width: 500px;
    object-fit: contain;
}

.about-img img {
    border-radius: 30px;
}

.about h1 {
    font-size: 48px;
    color: white;
    font-family: SuisseIntl-Light;
    font-size: 5rem;
    font-weight: 900;
    line-height: 40px;
}

.about h2 {
    font-size: 36px;
    color: white;
    font-family: SuisseIntl-Light;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 40px;
}


.about p {
    /* font-size: 36px; */
    text-align: justify;
    color: white;
    font-family: SuisseIntl-Light;
    font-size: 1rem;
    font-weight: 400;
}

.about-p {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: SuisseIntl-Light;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    margin: 5px 0;
}

.headingPara {
    font-size: 2.5rem;
}

/*--------------------ABOUT-SECTION Responsiveness--------------------*/
@media (min-width: 768px) and (max-width: 1160px) {
    .about-img {
        width: 350px;
        object-fit: contain;
    }

    .about h1 {
        margin-top: 15px;
        font-size: 3rem;
    }

    .about h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-img {
        width: 250px;
        object-fit: contain;
    }

    .about h1 {
        margin-top: 15px;
        font-size: 2.5rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }
}


/*--------------------ParallaxScroll-SECTION--------------------*/

.wrapper {
    /* background: #000; */
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
    border-radius: 30px;
}

.wrapper header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
}

.background {
    transform: translateZ(-10px) scale(2);
    height: 100%;
    width: 100%;
    filter: blur(5px);
    opacity: 0.5;
    ;
}

.foreground {
    transform: translateZ(-5px) scale(1.5);
    height: 100%;
    /* object-fit: cover; */
    opacity: 0.8;
}

.background,
.foreground {
    position: absolute;
    z-index: -1;
}

.wrapper .parallax-title {
    font-size: 5rem;
    color: white;
    font-weight: 400;
    text-shadow: 0 0 5px black;
    font-family: SuisseIntl-light;
}

.wrapper section {
    border-radius: 15px;
    padding: 5px;
    margin: 0 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.wrapper section h2 {
    font-size: 2.5rem;
    line-height: 40px;
    margin: 0;
    color: white;
    font-family: SuisseIntl-light;
    font-weight: 200;
    line-height: 80px;
}

/*--------------------ParallaxScroll Responsiveness--------------------*/
@media (min-width: 768px) and (max-width: 1160px) {
    .wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .wrapper .parallax-title {
        font-size: 5rem;
    }

    .wrapper section {
        height: auto;
        position: absolute !important;
        top: 600px;
    }

    .wrapper section h2 {
        font-size: 1.8rem;
    }

    .background {
        height: 100%;
    }

    .foreground {
        height: 100%;

    }
}

@media (max-width: 768px) {
    .wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .wrapper .parallax-title {
        font-size: 2.5rem;
    }

    .wrapper section {
        position: absolute !important;
        top: 600px;
        height: auto;
    }

    .wrapper section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 40px;
    }

    .background {
        height: 100%;
    }

    .foreground {
        height: 80%;

    }

}

/*--------------------SERVICES SECTION--------------------*/
.services {
    background: #000;
    padding: 50px 0;
}

.services-heading {
    margin-top: 150px;
    margin-bottom: 50px;
    color: white;
    font-family: SuisseIntl-light;
    font-weight: 400;
    margin-top: 100px;
    margin-bottom: 50px;
    text-align: center;
}

.logo {
    width: 250px;
    height: 250px;
    padding: 10px 5px;
    color: white;
    text-align: center;
    /* margin-right: 20px; */
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo:hover {
    scale: 1.04;
    transition: ease-in 0.3s;
}

.logo:nth-child(2) {
    transition-delay: 200ms;
}

.logo:nth-child(3) {
    transition-delay: 400ms;
}

.logo:nth-child(4) {
    transition-delay: 600ms;
}

.logo i {
    font-size: 70px;
}

.services h2 {
    font-size: 18px;
    font-weight: 400;
    font-family: SuisseIntl-light;
}


/* ---------------Modal background image and content styling ---------------*/
/* Modal background image and content styling */
.modal-body {
    position: relative;
    color: white;
    background-size: cover;
    background-position: center;
    padding: 20px;
}

/* ---Different backgrounds for each service modal ---*/

.seo-background {
    position: relative;
}

.seo-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Logos/Changes/SEO.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.5);
    z-index: -1;
}

.wordpress-background {
    position: relative;
}

.wordpress-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Logos/Changes/wordpressDevelopment.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.5);
    z-index: -1;
}

.custom-code-background {
    position: relative;
}

.custom-code-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Logos/Changes/customCodedWebsite.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}

.desktop-app-dev-background {
    position: relative;
}

.desktop-app-dev-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url("/Logos/Changes/DesktopAppDev1.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}
.mobile-app-dev-background {
    position: relative;
}

.mobile-app-dev-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url("/Logos/Changes/mobileAppDev.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}

.website-maintainance-background {
    position: relative;
}

.website-maintainance-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url("/Logos/Changes/websiteMaintainance.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}

.graphics-design-background {
    position: relative;
}

.graphics-design-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url("/Logos/Changes/graphicsDesigning.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}

.data-entry-background {
    position: relative;
}

.data-entry-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url("/Logos/Changes/dataEntry.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}

.content-writing-background {
    position: relative;
}

.content-writing-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url("/Logos/Changes/contentWriting.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
}


.get-quote-btn { /* Styling for the Call-to-Action button */
    background-color: #333;
    color: #f0f0f0;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-quote-btn:hover {
    background-color: #444;
}

.modal-content { /* Styles for the Consultation Modal */
    background-color: #1f1f1f;
    color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(44, 44, 44));
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.modal-content h2 {
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    background-color: #333;
    color: #f0f0f0;
    border: none;
}

.form-control:focus {
    border: 1px solid white;
}

.submit-btn {
    background-color: #444;
    color: #f0f0f0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

.get-quote-btn {
    height: 50px;
    width: auto;
}

.serviceModalContactBtns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.socials-container {
    height: 50px;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #f0f0f0;
    padding: 2px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.socials-container:hover {
    background-color: #444;
}

.socials-text {
    color: white;
    font-size: 16px;
}

.social-icon {
    font-size: 25px;
    color: white;
    margin: 0px 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #000;
}

@media screen and (max-width: 768px) {
    .serviceModalContactBtns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .socials-container {
        margin: 10px 0;
    }
}

/*--------------------PORTFOLIO SECTION--------------------*/
.portfolio {
    background: #000;
    padding: 50px 0;
}

.services-heading {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.portfolio-Logos-Container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolioLogo {
    position: relative;
    width: 300px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Background styling with blur */
.portfolioLogo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: 1;
}

#portfolio-1::before {
    background-image: url('Logos/Changes/techworldpk.png');
}

#portfolio-2::before {
    background-image: url('Logos/Changes/insta-clone-login.png');
}
#portfolio-3::before {
    background-image: url('Logos/Changes/jordifootware.png');
}

/* Clear text and button */
.portfolioLogo h2,
.portfolioLogo .primary-btn {
    position: relative;
    z-index: 2; /* Above the blurred background */
    margin-bottom: 15px;
}

.portfolioLogo h2 {
    font-size: 1.6rem;
    color: #000;
    font-weight: 400;
}
.portfolioLogo .primary-btn{
    border: 1px solid black;
}
/* Retain button as is */
.portfolio .primary-btn a {
    font-weight: 600;
    text-decoration: none;
    color: black;
}


/*--------------------SLIDER SECTION--------------------*/
.slider-container {
    padding-top: 150px;
    padding-bottom: 50px;
    background: #000;
    width: 100%;
}

.card-wrapper {
    max-width: 1160px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-wrapper h2 {
    color: white;
    font-weight: 400;
    font-size: 3rem;
}

.card-list .card-item {
    list-style: none;
    align-items: center;
    justify-content: center;
}

.card-list .card-item .card-link {
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #000;
}

.card-list .card-link .card-image {
    width: 50%;
    aspect-ratio: 16/9;
    object-fit: contain;
    border-radius: 10px;
}

.card-list .card-link .badge {
    background: lightblue;
    color: rgb(111, 111, 226);
    margin: 16px 0 18px;
    padding: 8px 16px;
    font-size: 0.8rem;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-link .badge.designer {
    /*PROFESSION TITLE*/
    font-size: 0.8rem;
    font-weight: 200;
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.card-list .card-link .card-title {
    font-size: 1.19rem;
    color: white;
    text-align: center;
    font-weight: 600px;
}

.card-list .card-link .card-button {
    font-weight: 600;
    color: white;
    font-size: 1.5rem;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 0 5px;
    border: 2px solid white;
    cursor: pointer;
    background: none;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: black;
    background: white;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: white;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: white;
    margin-top: 80px;
    cursor: pointer;
}

/*--------------------SLIDER SECTION Responsiveness--------------------*/
@media screen and (max-width: 768px) {
    .card-wrapper h2 {
        font-size: 2rem;
    }

    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}

/*--------------------CONTACT SECTION--------------------*/
.contact-section {
    background-color: black;
    color: white;
    padding: 50px 0;
    padding: 150px 0;
}

.contact-container input:focus {
    background-color: #303030;
    color: white;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.lead {
    color: #b0b0b0;
}

.form-control {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px;
    outline: none;
}

.contact-section label {
    text-align: start;
}

.form-control::placeholder {
    color: white;
}

.form-control:focus {
    background-color: #303030;
    color: white;
    outline: none;
    box-shadow: none;
}

textarea:focus,
input:focus {
    outline: none;
    box-shadow: none;
}

h4 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.socials a,
.socials p,
.socials i {
    cursor: default;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 400;
    text-decoration: none;
}

.socials a,
.socials p {
    cursor: pointer;
}

/*--------------------CONTACT SECTION Responsiveness--------------------*/
@media (max-width: 768px) {
    .contact-section .row {
        text-align: start;
    }

    .contact-section .col-lg-6 {
        margin-bottom: 30px;
    }

    .contact-heading,
    .socials-heading {
        font-size: 2rem;
    }
}

/*--------------------FOOTER SECTION--------------------*/
.footer-section {
    background-color: black;
    color: white;
    padding: 50px 0;
    text-align: left;
}

.footer-column h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    /* text-align: justify; */
    font-size: 3rem;
    line-height: 50px;
    color: #b0b0b0;
    opacity: 0.2;
}

.contacts p {
    font-size: 1rem;
    color: #b0b0b0;
    opacity: 1;
    line-height: normal;
}

.footer-column ul,
.footer-column a {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 15px;
    cursor: pointer;
}

.footer-column a {
    text-decoration: none;
    color: #b0b0b0;
}

.footer-column a:hover {
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.footer-bottom p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

/*--------------------FOOTER SECTION Responsiveness--------------------*/
@media (max-width: 768px) {
    .footer-column p {
        font-size: 1.8rem;
    }

    .contacts p {
        font-size: 1rem;
    }

    .footer-section .footer-column {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
    }
}