* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1c1c1b;
    --white: #fff;
    --offwhite: #FFF0D3;
    --primary: #E4665E;
    --hot-pink: #FB4375;
    --Dark-Red:#5D2D2F;
    --pale-yellow: #FFF0D3;
    --orange: #FFCEAB;
    --light-blue:#D9E4F8;
    --purple: #9E7EC2;
    --dark-purple :#3F2B55;
    --light-purple : #D6C4EB;
    --grey: #5e5e5e;
}

#orange {
    background-color: var(--orange);
    color: var(--Dark-Red)
}

#dark-red {
    background-color: var(--Dark-Red);
    color: var(--offwhite)
}

#offwhite {
    background-color: var(--offwhite);
    color: var(--black);
}

#light-blue {
    background-color: var(--light-blue);
    color: var(--Dark-Red)
}

#hot-pink {
    background-color: var(--hot-pink);
    color: var(--black);
}

#primary {
    background-color: var(--primary);
    color: var(--white)
}

#spaced {
    padding: 24px 0;
    line-height: 2;
}

#xsmall {
    font-size: 16px;
}

.hover {
    transition: transform 0.3s ease; /* Smooth transition effect */
}

.hover:hover {
    transform: scale(1.05); /* Scale to 1.1 on hover */
}


#horizontal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 32px;
    padding: 0 5%;
    overflow-x: scroll;
    justify-items: stretch;
}

#stretch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 48px;
    margin: 0 0;
    margin-bottom: 32px;
    padding: 0 5%;
    justify-items: center;
}

body {
    color: #1c1c1b;
    font-family: 'Inter', sans-serif;
}

.hero-section{
    margin-top: 3%;
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}


.navbar, .dropdown-menu {
    background-size: 100% auto;
    background-color: #fff;
    border-color: transparent;
    padding: 0;
}

.container-fluid {
    font-family: 'Inter', sans-serif; /* Default font for the body */
    width: 88%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    align-items: center;
}

/* Savy Socials Top Right */
.navbar-brand {
    font-size: 32px;
    letter-spacing: -0.04em;
    font-weight: 600;
    color: var(--black);
}
.navbar-brand img{
    margin: 8px;
    vertical-align: bottom;

}

.navbar-toggler {
    border-color: transparent;
    border: 0;
}

.navbar-collapse {
    justify-content: right;
    align-items: center;
}

/* Navigation Listed Words */
.navbar-nav {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey);
    padding: 0 5%;
    margin-bottom: 16px;
}

/* Nav text (services/comapny/ etic.) */
.nav-item.dropdown {
    margin: 16px;
    font-size: 16px;
}

.dropdown-item {
    min-width: 200px;
    font-size: 14px;
    font-weight: 350;
    padding: .25rem 1rem;
    color: var(--grey);
}

.dropdown-item img {
    margin: 8 16;
}

.dropdown-menu-macos .dropdown-item {
    border-radius: .25rem;
}
.dropdown-menu-macos {
    gap: .25rem;
    padding: .5rem;
    border-radius: .5rem;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.dropdown-item.active {
    background-color: var(--primary);
}

.nav-btn {
    letter-spacing: -.36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.38889;
}

*, ::after, ::before {
    box-sizing: border-box;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.button {
    display: inline-block;
    grid-column-gap: 15px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    letter-spacing: -.36px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    transition: transform .5s;
    white-space: nowrap;
}

.button:hover {
    transform: scale(1.1);  /* Slightly increase size on hover */
}

.read-more-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}

.short-text {
    display: block;
}

.full-text {
    display: none;
}

.read-more-btn:focus {
    outline: none;
}

/*Header */

.sticker {
    padding: 20px 40px;
    position: absolute;
    border-radius: 15px;
    z-index: 10;
    font-size: 20px;
    font-weight: 500;
}

.headline{
    text-align: center;
    max-width: 820px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-right: 8%;
    padding-left: 8%;
}

.title{
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
}

.title-subtext{
    letter-spacing: -.32px;
    max-width: 560px;
    margin: 25px auto;
}

.section-title {
    text-align: center;
    font-size: 58px;
    font-weight: 500;
    padding: 64px 32px;
}

.header-subtext{
    letter-spacing: -.32px;
    padding: 24px 0;
}

.workshop {
    border-radius: 30px;
    max-width: 93%;
    margin-bottom: 48px;
    margin-left: auto;
    padding: 8%;
    position: relative;
    overflow: hidden;
}

.section {
    margin: 5% 8%;
}

.content {
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
}

.paragraph {
    margin: 32px 0;
    padding: 5% 10%;
}

.container {
    justify-content: space-between;
    width: 100%;
    max-width: none;
}

.card-container {
    position: relative;
    border-radius: 16px;
    padding: 48px;
    margin-top: 24px;
    width: 100%;
    max-width: none;
}

.card-sticker {
    position: absolute;
    width: calc(100% + 20px);
    bottom: -24px;
    left: 0;
    right: 0;
    padding: 32px 24px;
    border-radius: 16px;
    z-index: 10;
    margin-left: -10px;
    font-size: 22px;
}

.card-title {
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

.card-divider {
    border: 0;
    height: 4px;
    margin: 32px 0;
}

.card-subtext {
    padding-bottom: 32px;
    font-size: 24px;
    font-weight:600;
    text-align: center;
}

.c-img {
    object-fit: contain;
    height: 100%;
    max-width: fit-content;
    display: block;
}

.g-img {
    object-fit: contain;
    max-width: 100%;
    height: auto;
    display: block;
}

.i-img {
    object-fit: contain;
    width: 100px;
    height: auto;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.i-img:hover {
    transform: scale(1.1);  /* Slightly increase size on hover */
}
/*footer section*/

.footer {
    background-size: cover;
    background-color: var(--offwhite);
    margin-left: auto;
    margin-right: auto;
}

.footer-wrapper {
    background-color: var(--offwhite);
    width: 100%;
}

.footer-inner {
    color: var(--grey);
    width: 77.5%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    position: relative;
}

.footer-header {
    margin-bottom: -12px;
    width: 100%;
}

.footer-head_top {
    background-color: var(--primary);
    color: var(--white);
    border-bottom-left-radius: 16px;
    justify-content: space-between;
    align-items: center;
    margin-right: 78px;
    margin-bottom: 78px;
    padding-top: 24px;
    padding-bottom: 27px;
    padding-left: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    line-height: 1;
    display: flex;
    position: relative;
    width: 100%;
}

.footer-flex {
    grid-column-gap: 18%;
    grid-row-gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
}

.footer-link_header {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.375;
}

.footer-links_wrapper {
    display: grid;
    justify-content: space-between;
    flex-grow: 1;
    align-items: flex-start;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.footer-flex_inner {
    flex:auto;
    max-width: 431px;
}

.location-details {
    font-weight: 600;
    font-size: 18;
    text-align: right;
}

.contact-details {
    display: flex;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.footer-inner_bottom {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
    align-items: center;
    margin-top: 43px;
    margin-bottom: 25px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
}


.footer-social-links {
    align-items: center;
    font-size: 16px;
    display: flex;
}

.social-links_flex {
    margin-right: 32px; /* Adjust margin as needed */
}

.social-link {
    margin-right: 16px; /* Adjust margin as needed */
    cursor: pointer;
    flex: none;
    width: 24px;
    height: 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit; /* Keeps the text color the same as the normal state */
    text-decoration: none; /* Ensures no underline or other decoration on hover */
}


.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

@media screen and (max-width: 991px) {
    .workshop {
        padding-top: 80px;
    }
    .footer-head_top {
        margin-right: 60px;
        font-size: 25px;
    }

    .footer-header_bottom {
        background-size: 50%;
        width: 60px;
        height: 66px;
    }
    .footer-link {
        font-size: 16px;
    }

    .partner-img {
        height: 100px
    }
}

@media screen and (min-width: 1920px) {
    .navbar {
        max-width: 1690px;
    }
}

@media screen and (max-width: 767px) {
    .headline_header
    {
        font-size: 58px;
    }
    .footer-header_bottom {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 31px;
        height: 32px;
    }
    .benefits-list_item  {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-link {
        font-size: 14px;
    }
    .footer-links {
        width: auto;
        padding-right: 50px;
    }

    .partner-img {
        height: 80px;
    }

    .review-user {
        font-size: 16px;
    }


}

    @media screen and (max-width: 640px) {
        #horizontal-grid {
            grid-template-columns: 1fr;
        }

        #stretch-grid {
            grid-template-columns: 1fr;
        }

        .benefits-list_item  {
            grid-template-columns: 1fr;
        }

        .footer-links_wrapper  {
            grid-template-columns: 1fr;
        }

        .footer-header {
            width: 100%;
        }
        .footer-flex {
            padding-right: 10%;
        }

}

@media screen and (max-width: 481px) {
    h1 {
        font-size: 48px;
    }

    h3 {
        font-size: 42px;
    }

    p {
        font-size: 16px;
        line-height: 1.2;
    }

    .partner-img {
        height: 80px;
    }
}
