.content.cookbook {
    padding-bottom: 0px;
}

/* desktop */
@media screen and (min-width: 1025px) {
    .content.cookbook h1 {
        font-size: 36px;
        margin: 40px auto;
    }
}
/* tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .content.cookbook h1 {
        font-size: calc(32px + (44 - 32) * ((100vw - 737px) / (1024 - 737)));
        margin: 35px auto;
    }
}
/* (mobile) */
@media only screen and (max-width : 736px) {
    .content.cookbook h1 {
        font-size: calc(30px + (40 - 30) * ((100vw - 320px) / (736 - 320)));
        margin: 8% auto;
        padding: 0 20px;
    }
}

/* -------------------------------- GLOBAL ------------------------------  */
@media only screen and (max-width : 736px) {
    .cb-desktop {
        display: none;
    }
}


@media only screen and (min-width : 737px) {
    .cb-mobile {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .cb-desktop-only {
        display: none;
    }
}

@media only screen and (min-width : 1025px) {
    .cb-tablet {
        display: none;
    }
}

/* -------------------------------- INTRO CONTAINER ------------------------------  */
/* intro container > mobile */
@media only screen and (max-width : 736px) {
    .cb-section-intro {
        padding: 9% 0;
    }
    .cb-column-phone { 
        margin-top: 10%;
    } 
    .cb-column-intro { 
        text-align: center;
    }
}
/* intro container > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-container-intro  {
        display: flex;
    }
    .cb-column-phone { 
        min-width: 350px;
        height: 550px;
        position: relative;
    } 

    .cb-column-intro { 
        flex-grow: 1;
        text-align: center;
    }
}
/* intro container > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-section-intro {
        padding: 4% 3%;
    }
}
/* intro container > desktop */
@media only screen and (min-width : 1025px) {
    .cb-section-intro {
        padding: 4%;
    }
    .cb-container-intro  {
        margin: 0 auto;
        max-width: 1100px;
    }
}



/* -------------------------------- INTRO PHONE ------------------------------  */
.cb-phone {
    background-repeat: no-repeat;
}
/* intro phone > mobile */
@media screen and (max-width: 736px) {
    .cb-phone {
        background-position: top center;
        background-size: 320px auto;
        min-height: 450px;
        min-width: 320px;
        position: relative;
    }
}
/* intro phone > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-phone {
        background-position: top center;
        background-size: 395px auto;
        height: 100%;
        min-width: 395px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}



/* -------------------------------- PREVIEW ------------------------------  */
.cb-preview-dark {
    position: absolute;
    background-image: url(https://www.cameratips.com/images/cookbook/cb-preview-dark.png);
    background-repeat: no-repeat;
    background-position: center left;
    font-family: "Gotham 8r", "Gotham A", "Gotham B", sans-serif;
    font-style: normal;
    font-weight: 800;
    color: #000000;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.cb-preview-light {
    background-image: url(https://www.cameratips.com/images/cookbook/cb-preview-light.png);
    background-repeat: no-repeat;
    background-position: center left;
    font-family: "Gotham 8r", "Gotham A", "Gotham B", sans-serif;
    font-style: normal;
    font-weight: 800;
    color: #333333;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    background-size: 22px;
    font-size: 12px;
    padding-left: 28px;
    clear: left;
}
/* preview > mobile */
@media screen and (max-width: 736px) {
    .cb-preview-dark {
        top: 425px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-size: 22px;
        font-size: 12px;
        padding-left: 28px;
    }
    .cb-preview-light {
        margin-top: 4%;
    }
}
/* preview > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-preview-dark {
        top: 525px;
        left: 50%;
        transform: translateX(-50%);
        background-size: 26px;
        font-size: 14px;
        padding-left: 35px;
    }
    .cb-preview-light {
        margin-top: 3%;
    }
}



/* -------------------------------- INTRO TITLE ------------------------------  */
.cb-title-intro {
    display: inline-block;
}

.cb-title-lg-intro, .cb-title-sm-intro {
    font-family: "Gotham 8r", "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 800;
    color: #333333;
    text-align: center;
    white-space: nowrap;
}

.cb-title-sm-intro {
    border-bottom: 4px solid #adadad;
}

.cb-title-sm-intro span {
    display: inline-block;
    background-color: #ffffff;
    padding: 0 10px;
}

.cb-subtitle-intro {
    font-family: "Gotham 5r", "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 500;
    color: #686868;
    text-align: center;
    white-space: nowrap;
}
/* intro title > mobile */
@media screen and (max-width: 736px) {
    .cb-title-lg-intro {
        font-size: calc(23px + (40 - 23) * ((100vw - 320px) / (736 - 320)));
    }
    .cb-subtitle-intro {
        font-size: calc(19px + (32 - 19) * ((100vw - 320px) / (736 - 320)));
    }
    .cb-title-sm-intro {
        font-size: calc(15px + (22 - 15) * ((100vw - 320px) / (736 - 320)));
        margin-bottom: 2%;
    }
    .cb-title-sm-intro span {
        position: relative;
        bottom: -0.7em;
    }
}
/* intro title > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-title-lg-intro {
        font-size: calc(24px + (36 - 24) * ((100vw - 737px) / (1024 - 737)));
    }
    .cb-title-sm-intro {
        font-size: calc(15px + (22 - 15) * ((100vw - 737px) / (1024 - 737)));
        margin-bottom: 3%;
    }
    .cb-subtitle-intro {
        font-size: calc(20px + (28 - 20) * ((100vw - 737px) / (1024 - 737)));
    }
    .cb-title-sm-intro span {
        position: relative;
        bottom: -0.8em;
    }
}

/* intro title > desktop */
@media screen and (min-width: 1025px) {
    .cb-title-lg-intro {
        font-size: 36px;
    }
    .cb-title-sm-intro {
        font-size: 22px;
        margin-bottom: 3%;
    }
    .cb-subtitle-intro {
        font-size: 28px;
    }
    .cb-title-sm-intro span {
        position: relative;
        bottom: -14px;
    }
    
}



/* -------------------------------- INTRO LIST ------------------------------  */
.cb-list {
    font-family: "Gotham Rounded 3r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 300;
    color: #3e3e3e;
    display: inline-block;
    text-align: left;
    
}
.cb-list div {
    background-image: url(https://www.cameratips.com/images/cookbook/cb-check.jpg);
    background-repeat: no-repeat;
    background-position: top left;
}

.cb-list div span {
    display: table-cell;
} 
/* intro list > mobile */
@media screen and (max-width: 736px) {
    .cb-list {
        font-size: calc(15px + (20 - 15) * ((100vw - 320px) / (736 - 320)));
        margin: 0 8%;
        max-width: 500px;
    }
    .cb-list div {
        padding-left: 30px;
        margin-top: 8%;
        background-size: 22px;
        min-height: 22px;
    }
    .cb-list div span {
        vertical-align: top;
        padding-top: 0px;
    } 
}
/* intro list > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-list div {
        padding-left: 40px;
        margin-top: 8%;
        background-size: 30px;
        min-height: 30px;
    }
    .cb-list div span {
        vertical-align: top;
        padding-top: 3px;
    } 
}
/* intro list > tablet + desktop */
@media screen and (min-width: 737px) {
    .cb-list {
        font-size: 18px;
        max-width: 470px;
    }
    .cb-list div {
        margin-top: 8%;
    }
}
/* intro list > desktop */
@media screen and (min-width: 1025px) {
    .cb-list {
        margin: 0 6%;
    }
    .cb-list div {
        padding-left: 60px;
        background-size: 44px;
        min-height: 44px;
    }
    .cb-list div span {
        vertical-align: middle;
        height: 44px;
    } 
}



/* -------------------------------- PRICE ------------------------------  */
.cb-price, .cb-price-sm {
    font-family: "Gotham Rounded 3r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 300;
    color: #3e3e3e;
    text-align: center;
}
.cb-currency {
    display: inline-block;
    vertical-align: top;
}
.cb-usd {
    color: #808080;
}
/* price > mobile */
@media screen and (max-width: 736px) {
    .cb-price {
        margin-top: 4%;
        font-size: 56px;
    }
    .cb-price-sm {
        margin-top: 6%;
        font-size: 44px;
    }
    .cb-currency {
        font-size: 24px;
        line-height: 42px;
    }
    .cb-usd {
        font-size: 10px;
    }
}
/* price > tablet + desktop */
@media screen and (min-width: 737px) {
    .cb-price {
        font-size: 58px;
    }
    .cb-price-sm {
        font-size: 48px;
    }
    .cb-currency {
        font-size: 30px;
        line-height: 50px;
    }
    .cb-usd {
        font-size: 14px;
    }
}
/* price > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-price, .cb-price-sm {
        margin-top: 4%;
    }
}
/* price > desktop */
@media screen and (min-width: 1025px) {
    .cb-price, .cb-price-sm {
        margin-top: 3%;
    }
}


/* -------------------------------- CTA ------------------------------  */
.cb-cta-lg {
    background-color: #4ec6a1;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 700;
    display: inline-block;
}

.cb-cta-sm {
    background-color: #4ec6a1;
    color: #ffffff;
    text-decoration: none;
    font-family: "Gotham Rounded 7r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 700;
    display: inline-block;
}
.cb-cta-sm-container {
    text-align: center;
}
/* cta > mobile */
@media screen and (max-width: 736px) {
    .cb-cta-lg {
        font-size: 20px;
        height: 50px;
        line-height: 50px;
        padding: 0 50px;
        border-radius: 25px;
        margin-top: 3%;
    }
    .cb-cta-sm {
        font-size: 18px;
        height: 40px;
        line-height: 40px;
        padding: 0 40px;
        border-radius: 20px;
    }
    .cb-cta-sm-container {
        margin-top: 2%;
    }
}
/* cta > tablet + desktop */
@media screen and (min-width: 737px) {
    .cb-cta-lg {
        font-size: 24px;
        height: 60px;
        line-height: 60px;
        padding: 0 60px;
        border-radius: 30px;
    }
    .cb-cta-sm {
        font-size: 20px;
        height: 36px;
        line-height: 36px;
        padding: 0 36px;
        border-radius: 18px;
    }
    .cb-cta-sm-container {
        margin-top: 4%;
    }
}
/* cta > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-cta-lg {
        margin-top: 4%;
    }
}

/* cta > desktop */
@media screen and (min-width: 1025px) {
    .cb-cta-lg {
        margin-top: 3%;
    }
}



/* -------------------------------- ABOUT CONTAINER ------------------------------  */
.cb-section-about {
    background-color: #f7f6f5;
}

/* about container > mobile */
@media only screen and (max-width : 736px) {
    .cb-section-about {
        padding: 8% 6%;
    }
    .cb-column-ba { 
        margin: 8% 0 0 0;
        text-align: center;
        position: relative;
    }
}
/* about container > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-container-about  {
        display: flex;
    }
    .cb-column-ba { 
        flex: 57%;
        text-align: center;
        position: relative;
    }
    .cb-column-about { 
        flex: 43%;
    } 
}
/* about container > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-section-about {
        padding: 5% 3%;
    }
    
}
/* about container > desktop */
@media only screen and (min-width : 1025px) {
    .cb-section-about {
        padding: 4%;
    }
    .cb-container-about  {
        margin: 0 auto;
        max-width: 1100px;
    }
}



/* -------------------------------- ABOUT/TOC/SUPPORT TITLE ------------------------------  */
.cb-title-about, .cb-title-toc, .cb-title-support, .cb-title-faq {
    font-family: "Gotham 8r", "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 800;
    color: #333333;
    text-align: center;
    white-space: nowrap;
}

.cb-subtitle-about, .cb-subtitle-toc, .cb-subtitle-support, .cb-subtitle-faq {
    font-family: "Gotham 5r", "Gotham A", "Gotham B";
    font-style: normal;
    font-weight: 500;
    color: #686868;
    text-align: center;
    white-space: nowrap;
}
/* about/toc title > mobile */
@media screen and (max-width: 736px) {
    .cb-title-about, .cb-title-toc, .cb-title-support, .cb-title-faq {
        font-size: calc(23px + (40 - 23) * ((100vw - 320px) / (736 - 320)));
    }
    .cb-subtitle-about, .cb-subtitle-toc, .cb-subtitle-support, .cb-subtitle-faq {
        font-size: calc(19px + (32 - 19) * ((100vw - 320px) / (736 - 320)));
        margin-bottom: 6%;
    }
}
/* about/toc title > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-title-about, .cb-title-toc, .cb-title-support, .cb-title-faq {
        font-size: calc(26px + (36 - 26) * ((100vw - 737px) / (1024 - 737)));
    }
    .cb-subtitle-about, .cb-subtitle-toc, .cb-subtitle-support, .cb-subtitle-faq {
        font-size: calc(20px + (28 - 20) * ((100vw - 737px) / (1024 - 737)));
        margin-bottom: 20px;
    }
}
/* about/toc title > desktop */
@media screen and (min-width: 1025px) {
    .cb-title-about, .cb-title-toc, .cb-title-support, .cb-title-faq {
        font-size: 36px;
    }
    .cb-subtitle-about, .cb-subtitle-toc, .cb-subtitle-support, .cb-subtitle-faq {
        font-size: 28px;
        margin-bottom: 30px;
    }   
}



/* -------------------------------- ABOUT TEXT ------------------------------  */
.cb-text-about {
    margin: 0 auto;
    max-width: none;
}

.cb-text-about p {
    font-family: "Gotham Rounded 4r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 1.4em;
}
/* about text > mobile */
@media screen and (max-width: 736px) {
    .cb-text-about p {
        font-size: calc(16px + (19 - 16) * ((100vw - 320px) / (736 - 320)));
    } 
}
/* about text > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-text-about p {
        font-size: calc(17px + (18 - 17) * ((100vw - 737px) / (1024 - 737)));
    }
}
/* about text > desktop */
@media screen and (min-width: 1025px) {
    .cb-text-about p {
        font-size: 18px;
    } 
}


/* -------------------------------- BEFORE AND AFTER ------------------------------  */
.cb-after-photo, .cb-before-photo {
    border-radius: 6px;
}
.cb-after span, .cb-before span {
    display: block;
    margin-top: 5px;
    font-family: "Gotham Rounded 7r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 700;
    color: #000000;
    text-align: center;
}
.cb-before span {
    text-shadow: 1px 1px 1px #ffffff;
}
/* before and after > mobile */
@media only screen and (max-width : 736px) {
    .cb-after, .cb-before {
        position: absolute;
    }
    .cb-after {
        z-index: 0;
        top: 20px;
        right: 0;
        padding: 0 5% 0 20%;
    }
    .cb-before {
        max-width: 35%;
        z-index: 1;
        left: 0;
        padding: 0 5%;
        top: 0;
    }
    .cb-after-photo {
        max-width: 429px;
        width: 100%;
    }
    .cb-before-photo {
        width: 100%;
    }
    .cb-after span, .cb-before span {
        font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (736 - 320)));
    }
    .cb-hidden {
        padding: 0 5% 5% 21%;
        text-align: right;
    }
    .cb-hidden-after {
        width: 100%;
        max-width: 429px;
        height: auto;
        display: inline-block;
        margin: 20px 0 0 0;
    }
}
/* before and after > desktop */
@media only screen and (min-width : 737px) {
    .cb-after, .cb-before {
        position: absolute;
    }
    .cb-after {
        z-index: 0;
        right: 0;
        top: 20px;
    }
    .cb-before {
        z-index: 1;
        left: 8%;
        top: 0;
        width: 35%;
    }
    .cb-after span, .cb-before span {
        font-size: 15px;
    }
    .cb-after-photo {
        width: 100%;
        height: auto;
        max-width: 38vw;
    }
    .cb-before-photo {
        max-width: 40vw;
        width: 100%;
        height: auto;
        box-shadow: 5px 3px 10px rgba(0, 0, 0, 0.5);
    }
    .cb-hidden {
        text-align: right;
        padding: 0 0 30px 25%;
    }
    .cb-hidden-after {
        width: 100%;
        height: auto;
        max-width: 429px;
        display: inline-block;
        margin: 20px 0 0 0;
    }
}

/* -------------------------------- TOC CONTAINER ------------------------------  */
/* toc container > mobile */
@media only screen and (max-width : 736px) {
    .cb-section-toc {
        padding: 8% 6%;
    }
    .cb-column-toc { 
        text-align: center;
    }
}
/* toc container > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-container-toc  {
        display: flex;
        margin: 0 auto;
        max-width: 1100px;
    }
    .cb-column-toc { 
        flex: 50%;
        text-align: center;
        position: relative;
    }
    .cb-column-photos { 
        flex: 50%;
        padding-right: 40px;
    } 
}

@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-section-toc {
        padding: 4% 3%;
    }
}

/* toc container > desktop */
@media only screen and (min-width : 1025px) {
    .cb-section-toc {
        padding: 4%;
    }
}

/* -------------------------------- PHOTO GALLERY ------------------------------  */
 .cb-gallery-cell {
    counter-increment: cb-gallery-cell;
}
.cb-gallery-cell img {
    border-radius: 8px;
}
/* flickity carousel customization  */  
.flickity-viewport {
    border-radius: 8px;
}
.flickity-prev-next-button {
    width: 26px;
    height: 26px;
}
/* photo gallery > mobile */                      
@media only screen and (max-width : 736px) {
    .cb-gallery {
        max-width: 360px;
        margin: 40px auto 50px auto;
    }
    .cb-gallery-cell {
        width: 100%;
        margin-right: 10px;
    }
    .cb-gallery-cell img {
        width: 100%;
        height: auto;
        max-width: 360px;
        max-height: 539px;
    }
}
/* photo gallery > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-gallery {
        max-width: 428px;
        margin-bottom: 8%;
    }
    .cb-gallery-cell {
        width: 100%;
        margin-right: 10px;
    }
    .cb-gallery-cell img {
        width: 100%;
        max-width: 428px;
        max-height: 641px;
    }
}


/* -------------------------------- TOC ------------------------------  */
.cb-toc-box {
    height: 300px;
    padding: 20px 20px 20px 20px;
    border-radius: 8px;
    margin: 0 auto;
    background-color: #f7f6f5;
}
.cb-toc {
    height: 100%;
    width: 100%;
    overflow: auto;
    margin: 0 auto;
    text-align: left;
    font-family: "Gotham Rounded 4r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 400;
    color: #3e3e3e;
}
.cb-toc h3 {
    margin: 0 17px 0 0;
}
.cb-toc p {
    margin: 0 17px 5% 0;
}
/* toc > mobile */
@media only screen and (max-width : 736px) {
    .cb-toc-box {
        max-width: 320px;
    }
    .cb-toc h3 {
        font-weight: 700;
        color: #3e3e3e;
        font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (736 - 320)));
    }
    .cb-toc p {
        font-weight: 400;
        color: #444444;
        font-size: 90% !important;
        font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (736 - 320)));
    }
}
/* toc > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-toc-box {
        width: 78%;
    }
    .cb-toc h3 {
        font-weight: 700;
        color: #3e3e3e;
        font-size: calc(15px + (16 - 15) * ((100vw - 737px) / (1025 - 737)));
    }
    .cb-toc p {
        font-weight: 400;
        color: #444444;
        font-size: 90% !important;
        font-size: calc(12px + (13 - 12) * ((100vw - 737px) / (1025 - 737)));
    }
}

@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-toc-box {
        width: 87%;
    }
}

@media only screen and (min-width : 10257px) {
    .cb-toc-box {
        width: 78%;
    }
}

/* -------------------------------- SUPPORT CONTAINER ------------------------------  */
.cb-column-family { 
    text-align: center;
}
/* about container > mobile */
@media only screen and (max-width : 736px) {
    .cb-section-support {
        padding: 8% 6%;
    }
    .cb-column-family { 
        margin: 8% 0 0 0;
    }
}
/* about container > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-section-support {
        padding: 3%;
    }

}
/* about container > desktop */
@media only screen and (min-width : 1025px) {
    .cb-container-support  {
        display: flex;
    }
    .cb-column-family { 
        flex: 60%;
    }
    .cb-column-support { 
        flex: 40%;
    }
    .cb-section-support {
        padding: 4%;
    }
    .cb-container-support  {
        margin: 0 auto;
        max-width: 1100px;
    }
}


/* -------------------------------- SUPPORT TEXT ------------------------------  */
.cb-text-support {
    font-family: "Gotham Rounded 4r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 1.4em;
}
/* support text > mobile */
@media screen and (max-width: 736px) {
    .cb-text-support {
        font-size: calc(16px + (19 - 16) * ((100vw - 320px) / (736 - 320)));
    } 
}
/* support text > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-text-support {
        max-width: 650px;
        font-size: 20px;
        margin: 0 auto;
    } 
}
/* support text > desktop */
@media screen and (min-width: 1025px) {
    .cb-text-support {
        width: 80%;
        font-size: 18px;
        margin: 0 auto;
    } 
}

/* -------------------------------- FAMILY PHOTO ------------------------------  */
.cb-family-photo {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
/* family photo > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-family-photo {
        margin-top: 3%;
    }
}







/* -------------------------------- FAQ CONTAINER ------------------------------  */
.cb-section-faq {
    background-color: #f7f6f5;
}

/* faq container > mobile */
@media only screen and (max-width : 736px) {
    .cb-section-faq {
        padding: 8% 6%;
    }
    .cb-column-faq-phone { 
        min-width: 320px;
        margin: 0 auto;
    } 
}
/* faq container > tablet + desktop */
@media only screen and (min-width : 737px) {
    .cb-container-faq  {
        display: flex;
    }
    .cb-column-faq { 
        flex-grow: 1;
    }
    .cb-column-faq-phone { 
        min-width: 350px;
        position: relative;
    } 
}
/* faq container > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-section-faq {
        padding: 5% 3%;
    }
    
}
/* faq container > desktop */
@media only screen and (min-width : 1025px) {
    .cb-section-faq {
        padding: 4%;
    }
    .cb-container-faq  {
        margin: 0 auto;
        max-width: 1100px;
    }
}





/* -------------------------------- FAQ TEXT ------------------------------  */
.cb-text-faq {
    font-family: "Gotham Rounded 4r", "Gotham Rounded A", "Gotham Rounded B";
    font-style: normal;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 1.4em;
}
.cb-text-faq h3 {
    margin: 0;
}
.cb-price-faq {
    text-align: center;
}

/* about text > mobile */
@media screen and (max-width: 736px) {
    .cb-text-faq h3 {
        font-size: calc(16px + (19 - 16) * ((100vw - 320px) / (736 - 320)));
    }
    .cb-text-faq p {
        font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (736 - 320)));
        margin: 0 0 8% 0;
    } 
}


@media screen and (min-width: 737px) {
    .cb-price-faq {
        position: relative;
        top: 530px; 
        left: 50%;
        transform: translateX(-50%);
    }
    .cb-price-faq .cb-price {
        margin-top: 40px;
    }
}


/* about text > tablet */
@media screen and (max-width: 1024px) and (min-width: 737px) {
    .cb-text-faq {
        padding-right: 4%;
    }
    .cb-text-faq h3 {
        font-size: calc(17px + (18 - 17) * ((100vw - 737px) / (1025 - 737)));
    }
    .cb-text-faq p {
        font-size: calc(14px + (15 - 14) * ((100vw - 737px) / (1025 - 737)));
        margin: 0 0 4% 0;
    } 
} 
        
/* about text > desktop */
@media screen and (min-width: 1025px) {
    .cb-text-faq {
        padding-right: 5%;
    }
    .cb-text-faq h3 {
        font-size: 18px;
    }
    .cb-text-faq p {
        font-size: 15px;
        margin: 0 0 4% 0;
    } 
}
