:root {
    --clear: rgba(0,0,0,0);
    /* --header-height: 60px;
    --sub-header-height: calc(100vh - var(--header-height)); */
    --background-dark: #3D3D3D;
    --background-medium: #8D8D8D;
    --background-light: #FFFFFF;
    --background-dark: white;
    --background-medium: white;
    --background-light: #FFFFFF;
    --background-gradient: linear-gradient(35deg, var(--background-dark)0%, var(--background-medium) 15%, var(--background-light) 55% 100%);
    --call-action-box-color: rgba(200, 200, 200, 0.08);
    --dark-complicated-color: black;
    --medium-complicated-color: darkgray;
    --light-complicated-color: lightgrey;
    --card-carousel-gap: 100px;
    --hamburger-line-height: 2px;
    --hamburger-line-gap: 10px;
    --accordion-link-height: 7dvh;
    --accordion-link-font-size: 4dvh;
    --accordion-link-gap: calc( ( var(--sub-header-height) - ( 5 * var(--accordion-link-height) ) ) / 5 );
    /* --call-action-box-height: 50px; */
    /* --call-action-box-width: 300px; */
    /* --logo-underline-color: black; */
    --text-color: black;
    --overlay-display: "none";
    /* --content-text-color: black; */
    /* --background-color: green; */
}

*::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: inherit;
    scrollbar-width: 0;
    /* cursor: default; */
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* .header {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        height: var(--header-height);
        color: var(--text-color);
        width: 100vw;
        position: fixed;
        font-size: 23px;
        border: 1px solid blue;
        font-weight: 300;
        /* padding-top: 3px; */
/* }  */

body {
    font-family: Inter;
    overflow: hidden;
    touch-action: none;
    /* background-color: blue; */
    background-image: var(--background-gradient);
    color: var(--text-color);
}

.page {
    background-image: var(--background-gradient);
}

.header-link-wrapper {
    padding: 10px 20px;
    /* border: 1px solid black; */
  /* display: inline-block; Ensures the wrapper respects the SVG's dimensions */
}

.header-link-wrapper:not(.logo-wrapper) {
    width: 140px;
}


.header-link {
    letter-spacing: 0.5px;
    transition: letter-spacing 1.5s ease-out;
    /* border: 1px solid black; */
}

.header-link-wrapper:hover .header-link {
    letter-spacing: -0.6px;
    cursor: pointer;
    /* border: 1px solid blue; */
}

/* .header-link.wrapper:hover .header-link {
    letter-spacing: -0.6px;
    cursor: pointer;
    border: 1px solid blue;
} */

.logo {
  position: relative;
  font-size: 30px;
  font-weight: 350;
}
.logo::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 140px;
  height: 2px;
  background-color: var(--text-color);
  transition: width 1.5s ease-out;
  /* color: var(--logo-underline-color); */
  /* color: blue; */
}

/* .logo:hover {
    cursor: pointer;
    letter-spacing: -0.6px;
} */

.logo:hover::after {
    width: 190px;
}

#landing-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* border: 1px solid green; */
}

#landing-section>* {
    /* border: 1px solid blue; */
}

.motto-section {
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    /* border: 1px solid black; */
    gap: 10px;
}

.motto-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.motto-text {
    text-align: right;
    /* font-size: clamp(1.2rem, 3vw, 1.4rem); */
    font-size: clamp(1px, 10vw, 60px);
    letter-spacing: 2px;
    font-weight: 300;
    /* color: green; */
}

.description-text {
    font-size: 20px;
    font-weight: 400;
    /* margin-right: 15px; */
    color: rgb(91, 91, 91);
}

.call-action-section {
    display: flex;
}

#landing-page .call-action-section {
    justify-content: center;
}

.call-action-box {
    border: 2px solid black;
    background-color: var(--call-action-box-color);
    transition: transform 1.5s ease-out;
    /* width: var(--call-action-box-width); */
    /* height: var(--call-action-box-height); */
    /* width: max-content; */
}

#landing-page .call-action-box {
    border: 2px solid black;
    /* width: max-content; */
}

#simple-complicated-page .call-action-box {
    border: 2px solid white;
    /* width: max-content; */
}

.call-action-box:hover {
    transform: scale(0.95);
    cursor: pointer;
}

.call-action-box:hover .call-action-text {
    transform: scale(1.1);
}


#landing-page .call-action-text {
    padding: 20px 50px;
}

#simple-complicated-page .call-action-text {
    padding: 15px 40px;
}

#simple-complicated-section-header-space {
    background-color: darkgray;
}

#simple-complicated-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
}

.simple-section {
    background-color: white;
    border-top: 2px solid black;
    border-bottom: 1px solid black;
    border-left: none;
    border-right: 1px solid black;
    font-family: 'Times New Roman', Times, serif;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    /* flex-direction: row;
    justify-content: flex-end;
    align-items: center; */
}

.simple-text-wrapper {
    padding-right: 5px;
}

.simple-text-wrapper p{
    /* text-align: right; */
    font-size: 30px;
}

.complicated-section {
    min-height: 0;
    height: 100%;
    border-top: 2px solid black;
    border-bottom: 1px solid black;
    border-right: none;
    border-left: 1px solid black;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    /* flex-direction: row;
    align-items: start;
    justify-content: flex-start; */
    overflow: hidden;
    /* overflow: scroll; */
    font-family: Quicksand;
    --complicated-gradient: linear-gradient(var(--complicated-angle), var(--complicated-color-1) 0%, var(--complicated-color-2) 90% 100%);
}

.complicated-text-wrapper {
    /* flex-shrink: 0; */
    /* align-self: flex-start; */
    width: 50%;
    display: flex;
    flex-direction: column;
    /* border: 1px solid green; */
    justify-content: center;
    /* width: 280px; */
}

.complicated-text-wrapper p {
    background-color: var(--dark-complicated-color);
    font-size: 26px;
    color: white;
    text-align: left;
    padding-left: 5px;
}

.card-carousel {
    /* border: 1px solid red; */
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    /* border: 1px solid orange; */
    height: 100%;
    /* border: 1px solid blue; */
    /* gap: var(--card-carousel-gap); */
}

.card-set {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* width: 300px; */
    align-items: center;
    /* gap: var(--card-carousel-gap); */
    /* border: 1px solid green; */
}

.complicated-card {
    background-color: white;
    border-radius: 10px;
    /* border: 1px solid black; */
    height: var(--complicated-card-height);
    margin-bottom: var(--card-carousel-gap);
    width: 240px;
    /* margin-left: 50px; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    /* gap: 10px; */
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 1;
    /* border: 1px solid var(--dark-complicated-color); */
    
}

.complicated-card-title-wrapper {
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

.complicated-card-content-wrapper {
    height: 60%;
    width: 90%;
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.complicated-card-title {
    font-size: 18px;
    font-weight: 600;
    /* color: var(--medium-complicated-color); */
    color: var(--dark-complicated-color);
}

.complicated-card-option {
    font-size: 14px;
    color: var(--light-complicated-color);
    /* transition: letter-spacing 1s ease; */
    transition: transform 1s ease;
}

.complicated-card-option:hover {
    cursor: pointer;
    /* letter-spacing: 0.5px; */
    transform: scale(1.04);
}

.complicated-card-option.selected {
    color: var(--dark-complicated-color);
}

.selected {
    color: var(--dark-complicated-color);
}

.cart-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    overflow: scroll;
    width: 100%;
    /* border: 1px solid red; */
}

.cart-item {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cart-item-information {
    /* border: 1px solid brown; */
}

.cart-item-name {
    font-size: 14px;
    margin-left: 7px;
    color: var(--dark-complicated-color);
    margin-right: 4px;
    /* border: 1px solid yellow; */
}

.cart-item-description {
    font-size: 12px;
    color: var(--light-complicated-color);
    /* border: 1px solid green; */
}

.deleteElement {
    /* border: 1px solid green;  */
    display: flex;
    width: 15px;
    height: 15px;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */
    margin-right: 7px;
}

.add-delete-svg {
    transform-origin: center;
    transition: transform 0.1s linear;
}

svg:hover {
    cursor: pointer;
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    /* border: 1px solid red; */
}

.product {
    /* border: 1px solid purple; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: transform 1.5s ease;
}

.product-information {
    /* border: 1px solid brown; */
}

.product-name {
    font-size: 14px;
    /* font-size: 10px; */
    margin-left: 7px;
    color: var(--dark-complicated-color);
    margin-right: 4px;
    /* border: 1px solid yellow; */
}

.product-description {
    font-size: 12px;
    color: var(--light-complicated-color);
    /* border: 1px solid green; */
}


/* .plan .product-description {
    font-size: 9px;
} */

.add-delete-element {
    /* border: 1px solid green;  */
    display: flex;
    width: 15px;
    height: 15px;
    justify-content: center;
    align-items: center;
    /* border: 1px solid green; */
    margin-right: 7px;
}


/* #select-color-card .selected {
    color: var(--dark-complicated-color);
} */

.third-section {
    border-top: 1px solid black;
    background-color: rgb(40, 40, 40);
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.third-section-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* border: 1px solid blue; */
    gap: 20px;
    height: 100%;
    color: white;
}

.assurance-text {
    /* border: 1px solid aqua; */
}

.assurance-text {
    font-size: 32px;
}

#simple-complicated-page .call-action-section {
    justify-content: center;
}

.heading-and-prices-wrapper>* {
    width: 50%;
    /* border: 1px solid black; */
}

.pricing-heading-section {
    display: flex;
    flex-direction: column;
    /* border: 1px solid blue; */
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* margin-top: 20px; */
}

.pricing-heading-wrapper {
    /* margin-top: 20px; */
    font-size: 35px;
    font-weight: 600;
    /* letter-spacing: 1.2Spx; */
}

.pricing-subheading-wrapper {
    font-size: 25px;
    font-weight: 300;
    width: 400px;
    /* border: 1px solid orange; */
    /* letter-spacing: 1.2Spx; */
}

.pricing-content-section {
    display: flex;
    flex-direction: column;
    /* border: 1px solid brown; */
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.pricing-content-section>*{
    /* border: 1px solid red; */
}

.services-wrapper {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    /* margin-right: 100px; */
}

.services-wrapper>* {
    /* transition: transform 2s ease; */
}

.service {
    /* padding: 10px 0 10px 100px; */
    /* background-color: rgb(243, 243, 243); */
    /* border: 1px solid purple; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* color: green; */
    gap: 7px;
    transition: transform 2s ease, color 2s ease;
}

.service-and-price {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 30px;
    align-items: baseline;
    /* border: 1px solid blue; */
}

.service-and-price:hover {
    cursor: default;
}

.service-and-price>* {
    /* border: 1px solid green; */
    height:fit-content;
}

.service-name p {
    font-size: 35px;
    font-weight: 300;
    /* letter-spacing: 1.6px; */
    padding-bottom: 1px;
}

.price-wrapper p {
    font-size: 35px;
    font-weight: 600;
    /* letter-spacing: 1.4px; */
}

/* .hosting-price {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgb(87, 87, 87);
    width: 350px;
} */

#pricing-page .call-action-section {
    /* transform: translateY(-150px); */
    /* border: 3px solid green; */
}

#pricing-page .call-action-text {
    padding: 20px 50px;
}

.more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */
}

.more-container p {
    font-size: 26px;
    font-weight: 200;
    /* border: 1px solid blue; */
    width: fit-content;
}

.more-container:hover {
    cursor: pointer;
}

.expanding-container {
    position: absolute;
    background-color: white;
    outline: 1px solid black;
    width: 140%;
    height: 100%;
    right: -40px;
    top: 0;
    display: none;
    /* transition: transform 1s ease; */
}

.expanding-container:hover {
    cursor: pointer;
    outline: 2px solid black;
    /* transform: scale(1.01); */
}

.expanding-container-heading-wrapper {
    height: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    font-size: 28px;
    font-weight: 300;
    /* border: 1px solid brown; */
    position: relative;
}

.expanding-container-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-left: 40px;
}

.expanding-container-heading::after {
    content: "";
    background-color: black;
    /* border: 1px solid blue; */
    position: absolute;
    width: 400px;
    height: 2px;
    bottom: -1px;
    left: 40px;
}

.expanding-container-content {
    /* border: 1px solid red; */
    /* line-height: px; */
    padding-top: 14px;
    padding-left: 40px;
    font-size: 12px;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-weight: 700;
}

#contact-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 0;
}

#contact-section .left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-heading {
    font-size: 35px;
    font-weight: 600;
}

.contact-content {
    font-size: 25px;
    font-weight: 300;
    width: 400px;
}

#contact-section .right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#contact-section .right-side>* {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.call-heading {
    font-size: 28px;
    font-weight: 500;
}

.call-number {
    font-size: 25px;
    font-weight: 300;
    width: 400px;
}

.message-us-heading {
    font-size: 28px;
    font-weight: 500;
}

.message-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    border: 1px solid black;
    width: 380px;
    z-index: 0;
    background-color: white;
}

.message-form>* {
    font-size: 23px;
    padding: 5px 0;
    width: 100%;
    border: none;
    font-family: Inter;
    font-weight: 300;
    outline:none;
    background-color: white;
    scrollbar-width: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.message-form>*::placeholder {
    color:rgb(187, 187, 187);
}

.message-message {
    resize: none;
}

.submit-button {
    font-size: 23px;
    width: 100%;
    padding: 5px 0;
    font-weight: 300;
    font-family: Inter;
    background-color: white;
    border: none;
    letter-spacing: 0.8px;
    transition: letter-spacing 1s ease;
    width: fit-content;
    /* border: 1px solid green; */
}

.submit-button:hover {
    cursor:pointer;
    letter-spacing: -0.2px;
}

#faqs-section {
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#faqs-section .sub-header {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 700px;
}

.faqs-title-wrapper {
    /* border: solid 1px green; */
    display: flex;
    flex-direction: row;
}

.faqs-title {
    padding-left: 10px;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 2px;
}

.faqs {
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.q-and-a {
    cursor: pointer;
}

.faq {
    /* border: 1px solid black; */
    border-bottom: 1.5px solid black;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    letter-spacing: 1px;
    font-size: 22px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    /* position: absolute; */
    transition: letter-spacing 0.5s ease;
    font-weight: 450;
}

.q-and-a:hover .faq {
    letter-spacing: 1.2px;
}

.faa {
    height: 0px;
    overflow: hidden;
    transition: height 1s ease, padding 1s ease;
    border: none;
    padding: 0 10px;
}

.faa p {
    text-align: left;
    /* letter-spacing: 0.5px; */
    font-weight: 400;
    line-height: 1.5;
    /* padding: 0 5px; */
}

.active .faa p {
    /* padding: 0 5px; */
    /* border: 1px solid black; */
}

#about-section {
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#about-section .sub-header {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 700px;
}

.about-title-wrapper {
    /* border: solid 1px green; */
    display: flex;
    flex-direction: row;
}

.about-title {
    /* padding-left: 10px; */
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-title p {
    /* border: 1px solid green; */
}

.about-paragraphs {
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-weight: 300;
}

.about-paragraph p {
    text-align: left;
    font-size: 24px;
}

#about-section .call-action-section {
    align-items: start;
}

#about-section .call-action-box p {
    padding: 15px 40px;
}

#thank-you-section {
    /* position: absolute; */
    /* top: 1000px; */
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
}

#thank-you-section>* {
    /* position: absolute; */
    /* top: 1000px; */
    /* border: 1px solid black; */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#thank-you-section .left-side {
    gap: 5px;
}

.thank-you-heading {
    font-size: 35px;
    font-weight: 600;
}

.thank-you-content {
    font-size: 25px;
    font-weight: 300;
    width: 400px;
}

#thank-you-section .right-side {
    gap: 5px;
}

.message-heading {
    font-size: 23px;
    font-weight: 600;
}

.message-content {
    font-size: 18px;
    font-weight: 300;
    width: 500px;
    color: rgb(127, 127, 127);
}

.mobile-accordion-menu {
    background-color: white;
    height: 0px;
    /* height: var(--sub-header-height); */
    overflow: hidden;
    /* border: 1px solid green; */
    position: fixed;
    top: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: start;
    /* justify-content: space-between; */
    /* gap: 12dvh; */
    /* gap: var(--accordion-link-gap); */
    text-align: center;
    width: 100vw;
    z-index: 3;
    /* color: var(--text-color); */
    color: var(--clear);
    /* padding: calc(var(--accordion-link-gap) / 2) 0; */
    /* padding-top: 20px;
    padding-bottom: 20px; */
    transition: height 0.5s ease, gap 0.5s ease, padding 0.5s ease, color 0.5s ease;
}

.hamburger-link-wrapper {
    /* border: 1px solid red; */
    height: var(--accordion-link-height);
    font-size: var(--accordion-link-font-size);
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.overlay {
    /* display: var(--overlay-display); */
    /* display: none; */
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(255,255,255,0.9);
}
#thank-you-page .call-action-box {
    width: 220px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
#thank-you-page .call-action-box p {
    font-size: 25px;
}

/* mobile layout */
@media (max-width:768px) { 
    :root {
        --header-height: 80px;
        --sub-header-height: calc(100dvh - var(--header-height));
        --complicated-card-height: 120px;
    }

    .mobile-header {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        height: var(--header-height);
        color: var(--text-color);
        width: 100vw;
        position: fixed;
        background-color: white;
        /* font-size: 23px; */
        /* font-weight: 300; */
        /* border: 1px solid red; */
    }
    .mobile-header>* {
        /* border: 1px solid black; */
    }
    .computer-header {
        display: none;
    }
    .hamburger {
        /* background-color: black; */
        width: 40px;
        height: 40px;
    }
    .inner-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: var(--hamburger-line-gap);
        width: 100%;
        height: 100%;
    }
    .hamburger-line {
        background-color: black;
        width: 100%;
        height: var(--hamburger-line-height);
        transition: transform 0.5s ease;
    }
    
    .call-action-text {
        font-size: 25px;
        font-weight: 400px;
        transition: transform 1.5s ease-out;
    }
    .simple-section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .complicated-section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .card-carousel {
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: start;
        width: 100%;
        overflow-x: visible;
        overflow-y: hidden;
        /* gap: var(--card-carousel-gap); */
    }
    .simple-text-wrapper {
        width: 100%;
    }
    .simple-text-wrapper p {
        font-size: 20px;
        text-align: right;
    }
    .complicated-text-wrapper {
        /* border: 1px solid yellow; */
        width: 100%;
        height: fit-content !important;
        /* border: 1px solid red; */
    }
    .complicated-text-wrapper p {
        /* border: 1px solid green; */
        font-size: 22px;
        text-align: left;
    }
    .complicated-card {
        border-radius: 4px;
        width: 80%;
    }
    .complicated-card-title {
        font-size: 14px;
    }
    .complicated-card-option {
        font-size: 12px;
    }
    .product-content {
        width: 100%;
    }
    .product {
        /* border: 1px solid purple; */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .product-name, .cart-item-name{
        font-size: 10px;
        margin-left: 4px;
        margin-right: 2px;
    }
    .product-description, .cart-item-description {
        font-size: 9px;
    }
    .deleteElement {
        width: 13px;
        height: 13px;
        margin-right: 4px;
        margin-top: 2px;
    }
    .add-delete-element {
        width: 13px;
        height: 13px;
        margin-right: 4px;
        margin-top: 2px;
    }
    .cart-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 0px;
        overflow: scroll;
        width: 100%;
        /* border: 1px solid red; */
    }
    .assurance-text {
        font-size: 25px;
    }
    .heading-and-prices-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 40px;
        height: var(--sub-header-height);
        /* box-shadow: inset 0 0 0 2px red;    */
    }
    .heading-and-prices-wrapper>* {
        width: 100%;
        /* border: 1px solid black; */
    }
    .pricing-heading-section {
        gap: 15px;
    }
    .pricing-heading-wrapper {
        font-size: 30px;
        font-weight: 500;
    }
    .pricing-subheading-wrapper {
        font-size: 17px;
        width: 85%;
    }
    .services-wrapper {
        /* border: 1px solid blue; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        position: relative;
        /* margin-right: 100px; */
    }
    .service-name p {
        font-size: 25px;
    }
    .price-wrapper p {
        font-size: 25px;
    }
    .more-container p {
        font-size: 18px;
    }
    .pricing-content-section {
        gap: 40px;
    }
    .expanding-container {
        position: absolute;
        background-color: white;
        outline: none;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        /* display: none; */
        /* transition: transform 1s ease; */
    }

    .expanding-container:hover {
        cursor: pointer;
        outline: 2px solid black;
        /* transform: scale(1.01); */
    }

    .expanding-container-heading-wrapper {
        height: 20%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        font-size: 20px;
        font-weight: 300;
        /* border: 1px solid brown; */
        position: relative;
    }

    .expanding-container-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        margin-left: 40px;
    }

    .expanding-container-heading::after {
        content: "";
        background-color: black;
        /* border: 1px solid blue; */
        position: absolute;
        width: 200px;
        height: 2px;
        bottom: 0px;
        left: 40px;
    }

    .expanding-container-content {
        /* border: 1px solid red; */
        /* line-height: px; */
        padding-top: 14px;
        padding-left: 40px;
        font-size: 12px;
        width: 100%;
        height: 80%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-weight: 700;
    }
    #contact-section {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        position: relative;
    }
    .contact-heading {
        font-size: 25px;
    }
    .contact-content {
        font-size: 18px;
        width: 90%;
    }
    .call-heading {
        font-size: 25px;
    }
    .call-number {
        font-size: 20px;
        width: fit-content;
    }
    .message-section {
        width: 100%;
    }
    .message-us-heading {
        font-size: 25px;
    }
    .message-form {
        width: 100%;
    }
    .message-form>* {
        font-size: 18px;
    }
    .overlay .message-form {
        width: 80%;
    }
    .submit-and-close-wrapper {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .submit-and-close-wrapper >* {
        font-size: 18px;
        border: none;
        font-family: Inter;
        font-weight: 300;
        outline:none;
        background-color: white;
        letter-spacing: 0.5px;
        transition: letter-spacing 1s ease;
        width: fit-content;
    }
    .overlay .submit-button {
        /* font-size: 23px; */
        /* padding: 5px 0; */
        /* width: 100%; */
        /* border: none;
        font-family: Inter;
        font-weight: 300;
        outline:none;
        background-color: white; */
        /* scrollbar-width: 0;
        overflow-x: hidden;
        overflow-y: scroll; */
    }
    #thank-you-section {
        flex-direction: column;
        /* border: 1px solid pink; */
        align-items: center;
        gap: 70px;
    }
    #thank-you-section>* {
        width: 100%;
    }
    #thank-you-section .left-side {
        gap: 10px;
        padding-top: 20px;
    }
    .thank-you-content {
        /* border: 1px solid green; */
        width: 80%;
    }
    .message-content {
        /* border: 1px solid green; */
        width: 80%;
    }
    #faqs-section {
        /* width: 100vw; */
        /* justify-content: center; */
        /* border: 1px solid red; */
    }
    #faqs-section .sub-header {
        width: 100vw;
        /* padding-top: 60px; */
        /* padding-top: -40px; */
        /* border: 1px solid green; */
    }
    .faqs-title-wrapper {
        /* display: flex; */
        /* flex-direction: row; */
        align-items: center;
        justify-content: center;
    }
    .faqs-title {
        padding-left: 0px;
        font-size: 35px;
        font-weight: 600;
        letter-spacing: 2px;
    }
    .q-and-a {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .faq {
        width: 80%;
        justify-content: center;
        letter-spacing: 0.7px;
        font-size: 18px;
        /* border: 1px solid orange; */
    }
    .faa {
        width: 80%;
        justify-content: center;

        /* border: 1px solid orange; */
    }
    .faa p {
        font-weight: 300;
        line-height: 1.7;
    }
    #about-section {
        width: 100vw;
        /* border: 1px solid red; */
        justify-content: center;
    }
    #about-section .sub-header {
        /* padding-top: 20px; */
        width: 100vw;
        justify-content: space-around;
        /* border: 1px solid red; */
        gap: 30px;
    }
    .about-title-wrapper {
        /* border: solid 1px green; */
        /* align-items: center; */
        justify-content: center;
        /* border: 1px solid purple; */
        height: fit-content;
    }
    .about-title {
        /* padding-left: 10px; */
        font-size: 30px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    .about-paragraphs {
        gap: 20px;
        display: flex;
        width: 100%;
        /* border: 1px solid green; */
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
    }
    .about-paragraph {
        text-align: left;
        font-size: 18px;
        width: 80%;
        /* display: flex; */
        /* flex-direction: column; */
        /* align-items: center; */
        /* border: 1px solid blue; */
    }
    .about-paragraph p {
        text-align: left;
        font-size: 18px;
    }
    #about-section .call-action-section {
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        /* border: 1px solid blue; */
    }
    #client-entry-section {
        /* border: 1px solid blue; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* margin-bottom: calc(var(--sub-header-height)/2); */
        gap: 10px;
    }
    #client-entry-section .title-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        /* border: 1px solid red; */
        /* height: calc((var(--sub-header-height) / 2) - 25px); */
        height: 200px;
    }
    #client-entry-section .title-section p {
        font-size: 26px;
        font-weight: 300;
        margin-bottom: 10px;
    }
    .client-entry-form {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        /* border: 1px solid red; */
        gap: 20px;
    }
    #client-entry-section .input-section .code-input {
        width: 300px;
        border: 1px solid black;
        height: 50px;
        /* margin-bottom: calc((var(--sub-header-height) / 2) - 25px); */
        font-family: Inter;
        font-size: 22px;
        outline: none;
        font-weight: 300;
        color:rgb(107, 107, 107)
    }
    #client-entry-section .code-submit {
        /* width: 300px; */
        border: 1px solid black;
        padding: 0 20px;
        height: 40px;
        font-family: Inter;
        font-size: 22px;
        font-weight: 300;
        outline:none;
        background-color: white;
        letter-spacing: 0.8px;
        transition: letter-spacing 1s ease;
    }
    #client-entry-section .submit-and-close-section {
        width: 300px;
        /* border: 1px solid red; */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    #client-entry-section .close-wrapper span {
        /* width: 300px; */
        /* border: 1px solid black; */
        /* padding: 0 20px; */
        /* height: 40px; */
        font-family: Inter;
        font-size: 22px;
        font-weight: 300;
        outline:none;
        background-color: white;
        letter-spacing: 0.8px;
        transition: letter-spacing 1s ease;
    }
    #client-entry-section .code-submit:hover {
        cursor:pointer;
        letter-spacing: -0.2px;
    }
    #client-area-section {
        /* border: 1px solid green; */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 45px;
    }
    #client-area-section .title-wrapper {
        /* border: 1px solid blue; */
        margin-top: 70px;
        font-size: 35px;
        font-weight: 450;
    }
    #client-area-section .content-section {
        /* border: 1px solid red; */
        font-size: 25px;
        font-weight: 250;
    }
    #client-area-section .content-section .client-area-option {
        /* border: 1px solid blue; */
        border: 1px solid black;
        padding: 15px 20px;
        transition: font-size 2s ease, padding 2s ease;
    }
    #client-area-section .content-section .client-area-option:hover {
        /* border: 1px solid red; */
        font-size: 30px;
        padding: 15px 30px;
        cursor: pointer;
    }
}   

/* computer layout */
@media (min-width:769px) {
    :root {
        --header-height: 60px;
        --sub-header-height: calc(100vh - var(--header-height));
        --complicated-card-height: 140px;
    }
     .mobile-header {
        display: none;
        /* border: 1px solid red; */
    }
    .computer-header {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        height: var(--header-height);
        color: var(--text-color);
        width: 100vw;
        position: fixed;
        font-size: 23px;
        /* border: 1px solid blue; */
        font-weight: 300;
        /* padding-top: 3px; */
    }
    .call-action-text {
        font-size: 30px;
        font-weight: 400px;
        transition: transform 1.5s ease-out;
    }
    .simple-section {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    .complicated-section {
        flex-direction: row;
        justify-content: flex-start;
        /* border: 1px solid blue; */
        align-items: flex-start;
    }
    .complicated-text-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .complicated-text-wrapper p {
    }
    .card-carousel {
        width: 50%;
    }
    .simple-text-wrapper p {
        font-size: 30px;
    }
    .heading-and-prices-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        height: var(--sub-header-height);
    }
    .pricing-heading-wrapper {
        font-size: 25px;
    }
    #client-entry-section {
        /* border: 1px solid blue; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* margin-bottom: calc(var(--sub-header-height)/2); */
        gap: 10px;
    }
    #client-entry-section .title-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        /* border: 1px solid red; */
        height: calc((var(--sub-header-height) / 2) - 25px);
    }
    #client-entry-section .title-section p {
        font-size: 32px;
        font-weight: 300;
        margin-bottom: 10px;
    }
    .client-entry-form {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    #client-entry-section .input-section .code-input {
        width: 300px;
        border: 1px solid black;
        height: 50px;
        /* margin-bottom: calc((var(--sub-header-height) / 2) - 25px); */
        font-family: Inter;
        font-size: 25px;
        outline: none;
        font-weight: 300;
        color:rgb(107, 107, 107)
    }
    #client-entry-section .code-submit {
        /* width: 300px; */
        border: none;
        height: 40px;
        font-family: Inter;
        font-size: 23px;
        font-weight: 300;
        outline:none;
        background-color: white;
        letter-spacing: 0.8px;
        transition: letter-spacing 1s ease;
    }
    #client-entry-section .code-submit:hover {
        cursor:pointer;
        letter-spacing: -0.2px;
    }
    #client-area-section {
        /* border: 1px solid green; */
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    #client-area-section .title-wrapper {
        /* border: 1px solid blue; */
        font-size: 40px;
        font-weight: 500;
    }
    #client-area-section .content-section {
        /* border: 1px solid red; */
        font-size: 25px;
        font-weight: 250;
    }
    #client-area-section .content-section .client-area-option {
        /* border: 1px solid red; */
        border: 1px solid black;
        padding: 20px 40px;
        transition: font-size 2s ease, padding 2s ease;
    }
    #client-area-section .content-section .client-area-option:hover {
        /* border: 1px solid red; */
        font-size: 30px;
        padding: 15px 30px;
        cursor: pointer;
    }
}

.header-space {
    height: var(--header-height);
    width: 100vw;
}

.sub-header-wrapper {
    height: var(--sub-header-height);
    min-height: 0;
    /* border: 1px solid black; */
}