/* General reset */
* {
    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;
}

#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: center;
}

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

.hero-section{
    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 80;
    margin-bottom: 16;
}

/* 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;
    align-items: 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;
}

.c-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;
}

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

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

.section {
    margin: 8% 10%;
}

.headline-button {
    padding: 20px 40px;
    position: absolute;
    border-radius: 15px;
    z-index: 10;
    font-size: 18px;
}

.services {
    padding: 32px;
    width: 90.2%;
    margin-left: auto;
    margin-right: auto;
}

.services-headline_cta {
    background-color: var(--orange);
    border-radius: 30px;
    flex: 1;
    max-width: 88%;
    margin-bottom: 102px;
    margin-left: auto;
    padding-top: 110px;
    padding-bottom: 110px;
    padding-left: 120px;
    position: relative;
    overflow: hidden;
}

.services-headline_image {
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height:450px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
}

.services-header {
    color: var(--Dark-Red);
    width: 69%;
    max-width: 707px;
    min-height: 365px;
    font-family: 'Inter', sans-serif;
    font-size: 50.2px;
    line-height: 1.12;
    position: relative;
}

.c-button {
    grid-column-gap: 15px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
    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;
    display: inline-flex;
}

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


.services-cta_subtext {
    color: var(--black);
    letter-spacing: -.32px;
    width: 78%;
    max-width: 546px;
    margin-top: 25px;
    margin-bottom: 35px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.41875;
}

/* new section */
.service-list {
    z-index: 2;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    padding-top: 30px;
    display: flex;
    position: relative;
}

.service-list_item.cc-option4 {
    flex-direction: row-reverse;
    background-color: var(--offwhite);
    color: var(--Dark-Red);
    padding-right: 40px;
    padding-left: 0;
    background-position: 0%;
    text-align: right;
}

.service-list_item.cc-option5 {
    background-color: var(--orange);
    color: var(--hot-pink);
}


.service-list_item.cc-option3 {
    background-color: var(--light-blue);
    color: var(--Dark-Red);
}

.service-list_item.cc-option2 {
    flex-direction: row-reverse;
    background-color: var(--Dark-Red);
    color: var(--offwhite);
    padding-right: 40px;
    padding-left: 0;
    background-position: 0%;
    text-align: right;
}

.service-list_item.cc-option1 {
    background-color: var(--orange);
    color: var(--hot-pink);
}

.service-list_item {
    background-color: var(--offwhite);
    color: var(--dark-purple);
    border-radius: 20px;
    justify-content: space-between;
    padding-left: 40px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.service-list_inner {
    width: 62%;
    padding-top: 40px;
    padding-bottom: 60px;
}

.service-list_index {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    line-height: .986667;
}

.service-list_details {
    max-width: 650px;
    padding-left: 68px;
}

.service-list_header {
    margin-bottom: 40px;
}

.service-list_subtext {
    color: var(--Dark-Red);
    letter-spacing: -.32px;
    -webkit-text-stroke-width: 0px;
    max-width: 566px;
    font-size: 16px;
    line-height: 1.375;
}

.service-list_subtext2 {
    color: var(--offwhite);
    letter-spacing: -.32px;
    -webkit-text-stroke-width: 0px;
    max-width: 566px;
    font-size: 16px;
    line-height: 1.375;
}

.service-list_image {
    top: -50px;
    height: 100%;
    max-width: 400px;
    right: -100px;
    transform: none;
    height: 482px;
    position: absolute;
}

.service-list_image2 {
    top: -50px;
    height: 100%;
    max-width: 400px;
    left: -100px;
    transform: none;
    height: 482px;
    position: absolute;
}


.service-list_image3 {
    top: -50px;
    height: 100%;
    max-width: 400px;
    right: -100px;
    transform: none;
    height: 482px;
    position: absolute;
}

/*Savannah's from scratch*/

.videography {
    padding: 32px;
    width: 90.2%;
    margin-left: auto;
    margin-right: auto;
}

.videography-inner {
    margin:0 64;
}

.videography-inner_headline {
 margin: 16px;
 text-align: left;
}

.videography-inner_header {
    font-size: 36px; /* Adjust as needed */
    color: var(--Dark-Red);
    padding-bottom: 16px;
}

.videography-inner_content{
    grid-column-gap: 32px;
    grid-row-gap: 15px;
    align-items: stretch;
    width: 100%;
    min-height: 266px;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    position: relative;
    overflow: auto;
    margin-bottom: 32;
}


.card {
    flex-direction: column;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    width: 308px;
    min-height: 82px;
    transition-property: none;
    display: flex;
    border: 0px;
    position: relative;
    border-radius: 15px;
    background-color: var(--offwhite);
    overflow: hidden;
}

.card-header {
    font-size: 24px;
    font-weight: 600;
    color: var(--Dark-Red);
    background-color: transparent;
    border-bottom: 0;
    padding-top: 24px;
    text-align: center;
}

.card-subtext {
    color: var(--Dark-Red);
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 16px;
    margin-top: auto; /* Pushes the text elements to the top */
}

.card-video {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
    border-radius: 0 0 15px 15px; /* Match the border-radius of the card */
    margin-top: auto; /* Pushes the video to the bottom */
}

/*footer section*/

.footer {
    background-color: var(--light-red);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-inner {
    color: var(--grey);
    width: 77.5%;
    max-width: 1130px;
    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: 32px; /* 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 */
}

.uc-h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1875;
}

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

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

    .service-list_image {
        max-height: 1000;
        height: 560px;
        max-width: 1000;
        right: -400px;
        top: 0;
    }

    .service-list_image2 {
        max-height: 1000;
        height: 560px;
        max-width: 1000;
        left: -400px;
        top: 0;
    }


    .service-list_image3 {
        max-height: 1000;
        height: 560px;
        max-width: 1000;
        right: -400px;
        top: 0;
    }


}

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

@media screen and (max-width: 767px) {
    .videography {
        padding-left: 32px;
    }

    .videography-inner {
        margin: 0px;
    }

    .videography-inner_content {
        padding-left: 0px;
    }

    .services-cta_subtext {
        font-size: 14px;
    }

    .services-headline_cta{
        padding-left: 32px;
    }
    .footer-header_bottom {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 31px;
        height: 32px;
    }
    .footer-link {
        font-size: 14px;
    }
    .footer-links {
        width: 50%;
        padding-right: 50px;
    }

    .services-header {
        font-size: 28px;
    }

    .services-headline_image {
        max-height: 100px;
        max-width: 100px;
    }

    .c-button {
        padding: 8px 20px;
    }

    .service-list_image {
        max-width: 100px;
    }

    .service-list_image2 {
        max-width: 100px;
    }

    .service-list_image3 {
        max-width: 100px;
    }

    .service-list_image4 {
        max-width: 100px;
    }

    .service-list_details {
        padding-left: 0px;
    }
    .uc-h2 {
        font-size: 32px;
    }
    .footer-links_wrapper  {
        grid-template-columns: 1fr;
    }
}
