/*==========================================
      SCRATCH HERO SECTION
==========================================*/

.scratch-hero{
padding:100px 0;
background-color: inherit;
overflow:hidden;
}

.course-container{
width:90%;
max-width:1250px;
margin:auto;

display:grid;
grid-template-columns:repeat(2,1fr);

gap:60px;
align-items:center;

}

/* Left */

.course-tag{
display:inline-block;
padding:10px 22px;
background-color:greenyellow;
color: black;
border-radius:30px;
font-size: 11px;
font-weight:600;
margin-bottom:25px;
}

.scratch-content h1{
font-size:45px;
line-height:1.2;
margin-bottom:25px;
color:whitesmoke;
}

.scratch-content h1 span{
display:block;
color:greenyellow;
}

.scratch-content p{
font-size:18px;
line-height:1.9;
color:white;
margin-bottom:35px;
}

/* Info Cards */

.course-container .course-info{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:35px;
}

.course-container .info-box{
display:flex;
align-items:left;
gap:15px;
padding:18px 20px;
border-radius:15px;
box-shadow:0 10px 30px black;
transition:.3s;
}

.info-box:hover{
transform:translateY(-8px);
box-shadow:1px 1px 10px greenyellow;  
border:0;
}

.info-box i{
font-size:28px;
color:greenyellow;
}

.info-box strong{
display:block;
color:greenyellow;
}

.info-box span{
font-size:14px;
color:white;
}

/* Buttons */

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-bottom:35px;
}

.trial-btn{
padding:16px 30px;
/* background:rgb(76, 130, 184); */
border:2px greenyellow solid;
color:white;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.trial-btn:hover{
background:greenyellow;
color:black;
}

.parents-btn{
padding:16px 30px;
border:2px greenyellow solid;
color:white;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.parents-btn:hover{
background:greenyellow;
color:black;
}

/* Badges */

.course-badges{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.course-badges span{
background-color: whitesmoke;
color: black;
padding:12px 18px;
border-radius:30px;
box-shadow:0 8px 20px black;
font-size:14px;
font-weight:600;
}

.course-badges span:hover{
        box-shadow:inset 0px 8px 20px #a68c55;
        color:black;
}
/* Right */

.scratch-image{
position:relative;
}

.scratch-image img{
width:100%;
border-radius:25px;
box-shadow:0 25px 45px rgba(0,0,0,.15);
}

/* Floating Cards */

.floating-card{
position:absolute;
background:rgba(0,0,0,.50);
color:white;
padding:14px 18px;
border-radius:15px;
font-weight:600;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.top-card{
top:25px;
left:-30px;
}

.middle-card{
top:45%;
right:-25px;
}

.bottom-card{
bottom:30px;
left:20px;
}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.course-container{
display:flex;
flex-direction:column;
}

.scratch-content{
text-align:center;
}

.course-info,
.hero-buttons,
.course-badges{
justify-content:center;
}

.scratch-image{
margin-top:40px;
}

}

@media(max-width:768px){

.scratch-hero{
padding:70px 0;
}


.scratch-content .course-tag{
    font-size: 11px;
}

.scratch-content h1{
font-size:38px;
}

.scratch-content p{
font-size:16px;
}

.course-container .info-box{
width:80%;
justify-content:start;
}

/* .course-info{
    background-color: #d9ff8a;
} */

.info-box strong {
    text-align: left;
    align-items: start;
}

.info-box span {
    text-align: left;
}

/* .hero-buttons a{
width:100%;
text-align:center;
}

.course-badges span{
width:100%;
text-align:center;
} */

.floating-card{
display:none;
}

}

@media(max-width:480px){

.scratch-content h1{
font-size:30px;
}

.course-tag{
font-size:13px;
padding:8px 18px;
}

}

/*==========================================*
  Turn Screen Time into Creation Time.
*==========================================*/

.scratch-career {
    max-width: 1250px;
    padding: 0px 90px;
    margin:auto;
    position: relative;
    clear: both;
}

.scratch-career-container {    
    width: auto;
}

/* HEADING */

.scratch-career-heading {
    text-align: center;
    margin-bottom: 70px;
}

.scratch-career-heading .section-tag {
    font-weight: 600;
}

.scratch-career-heading h1 {
    font-size: 55px;
    color: whitesmoke;
    margin: 20px 0;
}

.scratch-career-heading h2 {
    color: white;
    font-size: 25px;
    padding-bottom: 20px;
}

.scratch-career-heading h1 span {
    display: block;
    color: greenyellow;
}

.scratch-career-heading p {
    max-width: 800px;
    margin: auto;
    color: white;
    line-height: 1.9;
    font-size: 18px;
}

/* CAREER CARDS */

.scratch-career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.scratch-career-card {
    /* background: #162338; */
    box-shadow:0 8px 25px black;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border-top: 5px solid greenyellow;
}

.scratch-career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px greenyellow;
}

.scratch-career-number {
    font-size: 35px;
    font-weight: bold;
    color: greenyellow;
    margin-bottom: 20px;
}

.scratch-career-card h3 {
    color: greenyellow;
    margin-bottom: 20px;
    font-size: 15px;
}

.scratch-career-card p {
    color: white;
    line-height: 1.8;
}

.scratch-salary-note {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: white;
    line-height: 1.7;
}

/* SOURCE */

.scratch-career-source {
    margin-top: 45px;
    text-align: center;
    color: white;
    font-size: 15px;
}

/*==========================================*
   TABLET
*==========================================*/

@media (max-width: 992px) {

    .scratch-career {
        max-width: 100%;
        padding: 0 40px;
        margin: 0 auto;
    }

    .scratch-career-heading {
        margin-bottom: 50px;
    }

    .scratch-career-heading h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    .scratch-career-heading h2 {
        font-size: 22px;
    }

    .scratch-career-heading p {
        font-size: 16px;
        line-height: 1.8;
    }

    .scratch-career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .scratch-career-card {
        padding: 35px 25px;
    }

    .scratch-career-number {
        font-size: 32px;
    }

}


/*==========================================*
   MOBILE
*==========================================*/

@media (max-width: 768px) {

    .scratch-career {
        width: 100%;
        max-width: 100%;
        padding: 0 25px;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    .scratch-career-container {
        width: 100%;
    }

    /* Heading */

    .scratch-career-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .scratch-career-heading h1 {
        font-size: 36px;
        line-height: 1.3;
        margin: 15px 0;
    }

    .scratch-career-heading h1 span {
        display: block;
    }

    .scratch-career-heading h2 {
        font-size: 20px;
        line-height: 1.5;
        padding-bottom: 10px;
    }

    .scratch-career-heading p {
        font-size: 15px;
        line-height: 1.8;
        max-width: 100%;
    }

    /* Career Grid */

    .scratch-career-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Career Card */

    .scratch-career-card {
        width: 100%;
        box-sizing: border-box;
        padding: 30px 22px;
        border-radius: 16px;
    }

    .scratch-career-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px greenyellow;
    }

    .scratch-career-number {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .scratch-career-card h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .scratch-career-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .scratch-salary-note {
        font-size: 12px;
        line-height: 1.6;
    }

    /* Source */

    .scratch-career-source {
        margin-top: 35px;
        font-size: 13px;
        line-height: 1.7;
        padding-bottom: 20px;
    }

}


/*==========================================*
   SMALL MOBILE
*==========================================*/

@media (max-width: 480px) {

    .scratch-career {
        padding: 0 18px;
    }


    .scratch-career-heading {
        margin-bottom: 32px;
    }


    .scratch-career-heading h1 {
        font-size: 29px;
        line-height: 1.3;
    }


    .scratch-career-heading h2 {
        font-size: 18px;
    }


    .scratch-career-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    .scratch-career-grid {
        gap: 16px;
    }


    .scratch-career-card {
        padding: 25px 18px;
        border-top-width: 4px;
    }


    .scratch-career-number {
        font-size: 27px;
        margin-bottom: 12px;
    }


    .scratch-career-card h3 {
        font-size: 17px;
    }


    .scratch-career-card p {
        font-size: 14px;
        line-height: 1.7;
    }


    .scratch-salary-note {
        font-size: 11px;
    }


    .scratch-career-source {
        font-size: 12px;
    }

}

/*==========================================*
Coding That Feels Like Play
*==========================================*/

.Coding-section {
    padding: 90px 0px;
    position: relative;
    margin-top: 0;
    clear: both;
}

.Coding-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADING */

.Coding-heading h2 {
    font-size: 36px;
    line-height: 1.3;
    color: greenyellow;
    margin: 0;
}


/* LAYOUT */

.ai-role-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LIST */

.role-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-content li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.role-content li i {
    width: 50px;
    height: 50px;
    background: greenyellow;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.4s;
}

.role-content li:hover i {
    background: yellowgreen;
    transform: rotate(360deg);
}

.role-content li span {
    color: #d7d7d7;
    font-size: 18px;
    line-height: 1.8;
}

.role-content strong {
    color: yellowgreen;
}

/* RIGHT MESSAGE */

.role-message {
    /* background: #162338; */
    box-shadow:0 8px 25px black;
    border-left: 5px solid greenyellow;
    padding: 35px;
    border-radius: 20px;
    transition: 0.4s;
}

.role-message:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px greenyellow;
}

.role-message i {
    font-size: 55px;
    color: greenyellow;
    margin-bottom: 20px;
}

.role-message p {
    color: #fff;
    line-height: 1.9;
    font-size: 17px;
}

.role-message strong {
    color: yellowgreen;
}


/*==========================================*
  RESPONSIVE
*==========================================*/

@media (max-width: 1100px) {

    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* TABLET */

@media (max-width: 992px) {

    .course-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .course-info {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .ai-image {
        margin-top: 40px;
    }

    .top-card {
        left: 10px;
    }

    .bottom-card {
        right: 10px;
    }

    .ai-role-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .role-message {
        text-align: center;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    .ai-hero {
        padding: 70px 0px;
    }

    .course-container {
        display: flex;
        flex-direction: column;
    }

    .ai-content h1 {
        font-size: 40px;
    }

    .ai-content p {
        font-size: 16px;
    }

    .info-box {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .ai-career {
        padding: 70px 0;
        margin-top: 0;
    }

    .career-heading h1 {
        font-size: 38px;
    }

    .career-heading p {
        font-size: 16px;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-card {
        padding: 30px;
    }

    .career-number {
        font-size: 42px;
    }

    .ai-role-section {
        padding: 70px 0;
        margin-top: 0;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .role-content li {
        gap: 15px;
    }

    .role-content li span {
        font-size: 16px;
    }

    .role-message {
        padding: 30px;
    }

    .role-message p {
        font-size: 16px;
    }

}

/* SMALL MOBILE */

@media (max-width: 576px) {

    .ai-content h1 {
        font-size: 32px;
    }

    .course-tag {
        font-size: 13px;
    }

    .floating-card {
        display: none;
    }

    .career-heading h1 {
        font-size: 30px;
    }

    .career-heading h2 {
        font-size: 21px;
    }

    .career-card h3 {
        font-size: 20px;
    }

    .career-number {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .role-content li {
        align-items: flex-start;
        gap: 12px;
    }

    .role-content li i {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .role-content li span {
        font-size: 15px;
    }

    .role-message {
        padding: 25px;
    }

    .role-message i {
        font-size: 42px;
    }

    .role-message p {
        font-size: 15px;
    }

}

/* ==========================================
   SECTION 3 : CODING THAT FEELS LIKE PLAY
=========================================== */

.scratch-play-section {
    padding: 90px 0px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.scratch-play-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    box-sizing: border-box;
}

/* ==========================================
   LEFT CONTENT
=========================================== */

.scratch-play-content {
    position: relative;
    z-index: 2;
}

.scratch-play-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.scratch-play-content h2 {
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 30px;
}

.scratch-play-content h2 span {
    display: block;
    color: greenyellow;
}

.scratch-play-content p {
    color: white;
    font-size: 17px;
    line-height: 1.9;
    margin: 0 0 20px;
    max-width: 650px;
}

.scratch-play-content p:last-child {

    color: greenyellow;
    font-weight: 600;
    margin-bottom: 0;
}

/* ==========================================
   RIGHT VISUAL
=========================================== */

.scratch-play-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   CODE WINDOW
=========================================== */

.scratch-code-box {
    width: 100%;
    max-width: 450px;
    padding: 0 0 30px;
    /* background: #162338; */
    /* border: 1px solid rgba(173, 255, 47, 0.25); */
    border-radius: 24px;
    box-shadow:0 25px 60px black;
    overflow: hidden;
    animation: scratchFloat 4s ease-in-out infinite;
}

/* Window Header */

.scratch-code-top {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    /* background: #0c1420; */
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.scratch-code-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: greenyellow;
}


.scratch-code-top span:nth-child(2) {
    background: yellowgreen;
    opacity: .8;
}

.scratch-code-top span:nth-child(3) {
    background: #d9ff8a;
    opacity: .5;
}

/* ==========================================
   BLOCKS
=========================================== */

.scratch-blocks {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scratch-block {
    width: fit-content;
    max-width: 100%;
    padding: 14px 20px;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    box-shadow:0 8px 15px rgba(0,0,0,.2);
    transition: .35s ease;
}

.scratch-block:hover {
    transform: translateX(12px);
}

.block-motion {
    background: greenyellow;
    margin-left: 5%;
}

.block-event {
    background: yellowgreen;
    margin-left: 18%;
}

.block-control {
    background: #dfff8a;
    margin-left: 8%;
}

.block-sound {
    background: greenyellow;
    margin-left: 25%;
}

/* ==========================================
   FLOATING ICONS
=========================================== */

.scratch-bubble {
    position: absolute;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background: #162338; */
    border: 2px solid greenyellow;
    color: greenyellow;
    font-size: 25px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-one {
    top: 30px;
    left: -20px;
}

.bubble-two {
    right: -15px;
    bottom: 35px;
    color: yellowgreen;
    border-color: yellowgreen;
    animation-delay: 1s;
}

/* ==========================================
   ANIMATIONS
=========================================== */

@keyframes scratchFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }

}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .scratch-play-section {
        padding: 90px 0;
    }


    .scratch-play-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .scratch-play-content {
        text-align: center;
    }


    .scratch-play-content p {
        margin-left: auto;
        margin-right: auto;
    }


    .scratch-play-visual {
        min-height: 350px;
    }


    .bubble-one {
        left: 5%;
    }


    .bubble-two {
        right: 5%;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .scratch-play-section {
        padding: 70px 0;
    }

    .scratch-play-container {
        width: 88%;
        gap: 45px;
    }
        
    .scratch-play-content h2 {
        font-size: 38px;
    }

    .scratch-play-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .scratch-play-visual {
        min-height: 300px;
    }

    .scratch-code-box {
        max-width: 100%;
    }

    .scratch-blocks {
        padding: 28px 20px;
    }

    .scratch-block {
        font-size: 13px;
        padding: 12px 16px;
    }

    .bubble-one {
        left: -10px;
        top: 20px;
    }

    .bubble-two {
        right: -10px;
        bottom: 20px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .scratch-play-section {
        padding: 60px 0;
    }

    .scratch-play-content h2 {
        font-size: 30px;
    }

    .scratch-play-tag {
        font-size: 10px;
        padding: 8px 16px;
    }

    .scratch-play-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .scratch-play-visual {
        min-height: 260px;
    }

    .scratch-code-top {
        height: 45px;
    }

    .scratch-blocks {
        padding: 25px 15px;
        gap: 12px;
    }

    .scratch-block {
        font-size: 12px;
        padding: 11px 13px;
    }

    .block-motion {
        margin-left: 0;
    }

    .block-event {
        margin-left: 10%;
    }

    .block-control {
        margin-left: 3%;
    }

    .block-sound {
        margin-left: 15%;
    }

    .scratch-bubble {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .bubble-one {
        left: -8px;
    }

    .bubble-two {
        right: -8px;

    }

}

/* ==========================================
   SECTION 3 : MORE THAN CODING
=========================================== */

.scratch-more-section {

    width: 100%;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.scratch-more-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
    box-sizing: border-box;
}

/* ==========================================
   LEFT SIDE
=========================================== */

.scratch-more-intro {
    position: relative;
    padding-right: 20px;
}

.scratch-more-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.scratch-more-intro h2 {
    font-size: 58px;
    line-height: 1.15;
    color: whitesmoke;
    margin: 0 0 30px;
}

.scratch-more-intro h2 span {
    display: block;
    color: greenyellow;
}

.scratch-more-intro p {
    color: white;
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
    max-width: 520px;
}

/* Decorative Line */

.scratch-more-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(
        90deg,
        greenyellow,
        yellowgreen
    );
    margin: 30px 0;
    border-radius: 10px;
}

/* Highlight */

.scratch-more-highlight {
    color: yellowgreen !important;
    font-size: 16px !important;
    font-weight: 600;
}

/* ==========================================
   RIGHT SIDE
=========================================== */

.scratch-practise {
    width: 100%;
}

.scratch-practise h3 {
    color:white;
    font-size: 34px;
    margin: 0 0 35px;
}

.scratch-practise h3 span {
    color: greenyellow;
}

/* ==========================================
   SKILLS
=========================================== */

.scratch-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    row-gap: 0;
    border-top: 1px solid rgba(173, 255, 47, 0.25);
}

.scratch-skill {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 5px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease;
    cursor: default;
}

.scratch-skill:hover {
    color: greenyellow;
    transform: translateX(8px);
}

/* Number */

.skill-number {
    color: yellowgreen;
    font-size: 12px;
    font-weight: 800;
    min-width: 25px;
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .scratch-more-section {
        padding: 90px 0;
    }

    .scratch-more-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .scratch-more-intro {
        text-align: center;
        padding-right: 0;
    }

    .scratch-more-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .scratch-more-line {
        margin: 30px auto;
    }

    .scratch-practise h3 {
        text-align: center;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .scratch-more-section {
        padding: 70px 0;
    }

    .scratch-more-container {
        width: 88%;
        gap: 45px;
    }

    .scratch-more-intro h2 {
        font-size: 42px;
    }

    .scratch-more-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .scratch-practise h3 {
        font-size: 29px;
        margin-bottom: 25px;
    }

    .scratch-skills {
        grid-template-columns: 1fr;
    }

    .scratch-skill {
        padding: 17px 5px;
        font-size: 15px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .scratch-more-section {
        padding: 60px 0;
    }

    .scratch-more-container {
        width: 90%;
    }

    .scratch-more-tag {
        font-size: 10px;
        padding: 8px 16px;
    }

    .scratch-more-intro h2 {
        font-size: 34px;
    }

    .scratch-more-intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .scratch-more-highlight {
        font-size: 14px !important;
    }

    .scratch-practise h3 {
        font-size: 25px;
    }

    .scratch-skill {
        gap: 12px;
        padding: 15px 3px;
        font-size: 14px;
    }

    .skill-number {
        font-size: 11px;
        min-width: 22px;
    }

}

/* ==========================================
   SECTION 4 : WHAT YOUR CHILD WILL LEARN
=========================================== */

/* .scratch-learning-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
} */

/* ==========================================
   CONTAINER
=========================================== */

/* .scratch-learning-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
} */

/* ==========================================
   HEADING
=========================================== */
/* 
.scratch-learning-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 75px;
}

.scratch-learning-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.scratch-learning-heading h2 {
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 22px;
}

.scratch-learning-heading h2 span {
    color: greenyellow;
    display: inline-block;
}

.scratch-learning-heading p {
    color: white;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
} */

/* ==========================================
   ROADMAP
=========================================== */
/* 
.scratch-learning-roadmap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
} */

/* Vertical Line */

/* .scratch-learning-roadmap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 95px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        greenyellow,
        yellowgreen,
        greenyellow
    );
    opacity: .5;
} */

/* ==========================================
   LEARNING ITEM
=========================================== */

/* .scratch-learning-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    min-height: 115px;
}

.scratch-learning-item:last-child {
    margin-bottom: 0;
} */

/* ==========================================
   NUMBER
=========================================== */
/* 
.scratch-learning-number {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2d32;
    border: 3px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 18px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    margin-left: 62px;
    transition: .4s ease;
}

.scratch-learning-item:hover
.scratch-learning-number {
    background: greenyellow;
    color: #000;
    transform: scale(1.12);
    box-shadow:
        0 0 0 8px rgba(173,255,47,.08),
        0 0 25px rgba(173,255,47,.25);
} */

/* ==========================================
   CONTENT
=========================================== */
/* 
.scratch-learning-content {
    padding: 25px 30px;
    border-left: 3px solid yellowgreen;
    background: #2a2d32;
    border-radius: 0 15px 15px 0;
    transition: .35s ease;
    box-sizing: border-box;
}

.scratch-learning-content:hover {
    transform: translateX(8px);
    border-left-color: greenyellow;
    box-shadow:0 10px 20px greenyellow;
}

.scratch-learning-content h3 {
    color: greenyellow;
    font-size: 21px;
    margin: 0 0 10px;
}

.scratch-learning-content p {
    color: white;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
} */


/* ==========================================
   TABLET
=========================================== */
/* 
@media (max-width: 992px) {

    .scratch-learning-section {
        padding: 90px 0;
    }

    .scratch-learning-heading {
        margin-bottom: 60px;
    }

    .scratch-learning-heading h2 {
        font-size: 44px;
    }

    .scratch-learning-roadmap::before {
        left: 72px;
    }

    .scratch-learning-item {
        grid-template-columns: 145px 1fr;
        gap: 25px;
    }

    .scratch-learning-number {
        width: 60px;
        height: 60px;
        margin-left: 42px;
        font-size: 16px;
    }

} */

/* ==========================================
   MOBILE
=========================================== */
/* 
@media (max-width: 768px) {

    .scratch-learning-section {
        padding: 70px 0;
    }

    .scratch-learning-container {
        width: 88%;
    }

    .scratch-learning-heading {
        margin-bottom: 45px;
    }

    .scratch-learning-heading h2 {
        font-size: 36px;
    }

    .scratch-learning-heading p {
        font-size: 15px;
        line-height: 1.75;
    } */

    /* Remove desktop timeline */

    /* .scratch-learning-roadmap::before {
        display: none;
    }

    .scratch-learning-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        min-height: auto;
        text-align: center;
    }

    .scratch-learning-number {
        width: 58px;
        height: 58px;
        margin: 0;
        font-size: 15px;
    }

    .scratch-learning-content {
        width: 100%;
        padding: 25px 20px;
        border-left: none;
        border-top: 3px solid yellowgreen;
        border-radius: 15px;
    }

    .scratch-learning-content:hover {
        transform: translateY(-4px);
    }

    .scratch-learning-content h3 {
        font-size: 19px;
    }

    .scratch-learning-content p {
        font-size: 14px;
        line-height: 1.7;
    }

} */

/* ==========================================
   SMALL MOBILE
=========================================== */
/* 
@media (max-width: 480px) {

    .scratch-learning-section {
        padding: 60px 0;
    }

    .scratch-learning-container {
        width: 90%;
    }

    .scratch-learning-tag {
        font-size: 10px;
        padding: 8px 16px;
    }

    .scratch-learning-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .scratch-learning-heading p {
        font-size: 14px;
    }

    .scratch-learning-number {
        width: 52px;
        height: 52px;
        font-size: 14px;
    }

    .scratch-learning-content {
        padding: 22px 17px;
    }

    .scratch-learning-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .scratch-learning-content p {
        font-size: 13px;
        line-height: 1.65;
    }

} */

/* ==========================================
   SECTION 5 : EVERY CHILD BUILDS
=========================================== */

.scratch-project-section {
    width: 100%;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.scratch-project-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
    box-sizing: border-box;
}

/* ==========================================
   LEFT CONTENT
=========================================== */

.scratch-project-intro {
    position: relative;
}

.scratch-project-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.scratch-project-intro h2 {
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 28px;
}


.scratch-project-intro h2 span {
    color: greenyellow;
}

.scratch-project-intro p {
    color: white;
    font-size: 17px;
    line-height: 1.9;
    max-width: 500px;
    margin: 0 0 35px;
}

/* ==========================================
   DEMO BUTTON
=========================================== */
/* 
.scratch-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    background: yellowgreen;
    color: #000;
    text-decoration: none;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    transition: .35s ease;
}

.scratch-demo-btn i {
    font-size: 14px;
}

.scratch-demo-btn:hover {
    background: greenyellow;
    transform: translateY(-4px);
    box-shadow:0 12px 30px rgba(173,255,47,.25);
} */

/* ==========================================
   PROJECT LIST
=========================================== */

.scratch-project-list {
    width: 100%;
    border-top: 1px solid rgba(173,255,47,.25);
}

.scratch-project-heading {
    padding: 0 5px 18px;
}

.scratch-project-heading span {
    color: greenyellow;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* ==========================================
   PROJECT ITEM
=========================================== */

.scratch-project-item {
    display: grid;
    grid-template-columns: 48px 1fr 25px;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding: 10px 8px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.10);
    transition: .35s ease;
    box-sizing: border-box;
}


.scratch-project-item:hover {
    color: greenyellow;
    padding-left: 18px;
    background: rgba(173,255,47,.04);
}

/* ==========================================
   ICON
=========================================== */

.project-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(173,255,47,.45);
    border-radius: 12px;
    color: greenyellow;
    font-size: 16px;
    transition: .35s ease;
}

.scratch-project-item:hover .project-icon {
    background: greenyellow;
    color: #000;
    transform: rotate(-5deg) scale(1.05);
}

/* ==========================================
   TEXT
=========================================== */

.scratch-project-item > span:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================
   ARROW
=========================================== */

.project-arrow {
    color: yellowgreen;
    font-size: 13px;
    transition: .3s ease;
}

.scratch-project-item:hover .project-arrow {
    transform: translateX(5px);
    color: greenyellow;
}

/* ==========================================
   FEATURED FINAL PROJECT
=========================================== */

.featured-project {
    border-bottom: 0;
    margin-top: 5px;
}

.featured-project > span:nth-child(2) {
    color: greenyellow;
    font-weight: 700;
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .scratch-project-section {
        padding: 90px 0;
    }

    .scratch-project-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .scratch-project-intro {
        text-align: center;
    }

    .scratch-project-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .scratch-project-list {
        max-width: 750px;
        margin: 0 auto;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .scratch-project-section {
        padding: 70px 0;
    }

    .scratch-project-container {
        width: 88%;
        gap: 45px;
    }

    .scratch-project-intro h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .scratch-project-intro p {
        font-size: 16px;
        line-height: 1.8;
    }

    .scratch-project-item {
        grid-template-columns: 42px 1fr 20px;
        gap: 14px;
        min-height: 65px;
        padding: 10px 4px;
    }

    .project-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .scratch-project-item > span:nth-child(2) {
        font-size: 14px;
    }

    .project-arrow {
        font-size: 11px;
    }

    /* .scratch-demo-btn {
        width: auto;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 12px;
    } */

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .scratch-project-section {
        padding: 60px 0;
    }

    .scratch-project-container {
        width: 90%;
    }

    .scratch-project-tag {
        font-size: 9px;
        padding: 8px 15px;
    }

    .scratch-project-intro h2 {
        font-size: 32px;
    }

    .scratch-project-intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .scratch-project-heading span {
        font-size: 10px;
    }

    .scratch-project-item {
        grid-template-columns: 38px 1fr 16px;
        gap: 10px;
    }

    .project-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 12px;
    }

    .scratch-project-item > span:nth-child(2) {
        font-size: 13px;
    }

    .project-arrow {
        font-size: 9px;
    }

    /* .scratch-demo-btn {
        width: 100%;
        box-sizing: border-box;
    } */

}


/* ==========================================
   SECTION 7 : WHY PARENTS CHOOSE NXTGENBUDDY
=========================================== */

.scratch-parent-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.scratch-parent-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ==========================================
   HEADER
=========================================== */

.scratch-parent-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.scratch-parent-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
}

.scratch-parent-header h2 {
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 22px;
}

.scratch-parent-header h2 span {
    color: greenyellow;
}

.scratch-parent-header p {
    color: white;
    font-size: 17px;
    line-height: 1.85;
    max-width: 720px;
    margin: auto;
}

/* ==========================================
   BENEFIT LIST
=========================================== */

.scratch-parent-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 0;
    border-top: 1px solid rgba(173,255,47,.20);
    box-sizing: border-box;
}

/* ==========================================
   BENEFIT ITEM
=========================================== */

.scratch-parent-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 32px 5px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    position: relative;
    transition: .35s ease;
    box-sizing: border-box;
}

.scratch-parent-item:hover {
    /* background: rgba(173,255,47,.035); */
    padding-left: 15px;
    border-bottom-color: rgba(173,255,47,.35);
    box-shadow: 0 10px 20px black;
}

/* ==========================================
   NUMBER
=========================================== */

.parent-number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid greenyellow;
    border-radius: 50%;
    color: greenyellow;
    font-size: 12px;
    font-weight: 800;
    transition: .35s ease;
}

.scratch-parent-item:hover .parent-number {
    background: greenyellow;
    color: #000;
    transform: scale(1.08);
}

/* ==========================================
   CONTENT
=========================================== */

.parent-content h3 {
    color: greenyellow;
    font-size: 19px;
    margin: 0 0 10px;
    line-height: 1.4;
    transition: .3s ease;
}

.scratch-parent-item:hover .parent-content h3 {
    color: greenyellow;
}

.parent-content p {
    color: white;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    max-width: 430px;
}

/* ==========================================
   FINAL DEMO
=========================================== */

/* .scratch-parent-item.final-demo {
    
} */


.scratch-parent-item.final-demo .parent-number {
    background: greenyellow;
    color: #000;
}


.scratch-parent-item.final-demo h3 {
    color: greenyellow;
}

/* ==========================================
   BOTTOM MESSAGE
=========================================== */

.scratch-parent-bottom {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 18px;
    border: 1px solid rgba(173,255,47,.18);
    box-sizing: border-box;
    transition: .35s ease;
}

.scratch-parent-bottom:hover {
    border-color: greenyellow;
    box-shadow:0 15px 35px rgba(173,255,47,.10);
    transform: translateY(-4px);
}
/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .scratch-parent-section {
        padding: 90px 0;
    }

    .scratch-parent-header h2 {
        font-size: 44px;
    }

    .scratch-parent-benefits {
        column-gap: 35px;
    }

    .scratch-parent-item {
        grid-template-columns: 48px 1fr;
        gap: 15px;
    }

    .parent-number {
        width: 42px;
        height: 42px;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .scratch-parent-section {
        padding: 70px 0;
    }

    .scratch-parent-container {
        width: 88%;
    }

    .scratch-parent-header {
        margin-bottom: 45px;
    }

    .scratch-parent-header h2 {
        font-size: 36px;
        line-height: 1.25;
    }

    .scratch-parent-header p {
        font-size: 15px;
        line-height: 1.75;
    }

    .scratch-parent-benefits {
        grid-template-columns: 1fr;
    }

    .scratch-parent-item {
        padding: 25px 3px;
    }

    .parent-content h3 {
        font-size: 17px;
    }

    .parent-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .scratch-parent-bottom {
        margin-top: 45px;
        padding: 24px;
        align-items: flex-start;
    }

    .parent-bottom-icon {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .scratch-parent-bottom h3 {
        font-size: 18px;
    }

    .scratch-parent-bottom p {
        font-size: 14px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .scratch-parent-section {
        padding: 60px 0;
    }

    .scratch-parent-container {
        width: 90%;
    }

    .scratch-parent-tag {
        font-size: 9px;
        padding: 8px 15px;
    }

    .scratch-parent-header h2 {
        font-size: 30px;
    }

    .scratch-parent-header p {
        font-size: 14px;
    }

    .scratch-parent-item {
        grid-template-columns: 40px 1fr;
        gap: 13px;
        padding: 22px 0;
    }

    .parent-number {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

    .parent-content h3 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .parent-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .scratch-parent-bottom {
        display: block;
        text-align: center;
        padding: 22px;
    }

    .parent-bottom-icon {
        margin: 0 auto 15px;
    }

    .scratch-parent-bottom h3 {
        font-size: 17px;
    }

    .scratch-parent-bottom p {
        font-size: 13px;
        line-height: 1.65;
    }

}

/* ==========================================
   SECTION 8 : SUITABLE FOR CHILDREN
=========================================== */

.scratch-suitable-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ==========================================
   CONTAINER
=========================================== */

.scratch-suitable-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
    box-sizing: border-box;
}

/* ==========================================
   LEFT CONTENT
=========================================== */

.scratch-suitable-intro {
    position: relative;
    padding-left: 25px;
    border-left: 4px solid greenyellow;
}

.scratch-suitable-tag {
    display: inline-block;
    color: greenyellow;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.scratch-suitable-intro h2 {
    color: whitesmoke;
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 25px;
}

.scratch-suitable-intro h2 span {
    display: block;
    color: greenyellow;
}

.scratch-suitable-intro p {
    color: white;
    font-size: 17px;
    line-height: 1.85;
    max-width: 500px;
    margin: 0;
}

/* ==========================================
   CHECKLIST
=========================================== */

.scratch-suitable-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(173,255,47,.25);
}

/* ==========================================
   CHECK ITEM
=========================================== */

.suitable-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 10px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    color: white;
    font-size: 17px;
    line-height: 1.5;
    transition: .35s ease;
    cursor: default;
    box-sizing: border-box;
}

.suitable-item:hover {
    color: #fff;
    box-shadow: 0 10px 20px black;
    padding-left: 20px;
}

/* ==========================================
   CHECK CIRCLE
=========================================== */

.suitable-check {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;  
    border: 2px solid greenyellow;
    color: greenyellow;
    font-size: 15px;
    transition: .35s ease;
}

.suitable-item:hover .suitable-check {
    color: white;
    transform: rotate(8deg) scale(1.08);
}

/* ==========================================
   SMALL ACCENT LINE
=========================================== */

.scratch-suitable-list::after {
    content: "";
    width: 80px;
    height: 3px;
    background: yellowgreen;
    margin-top: 25px;
    border-radius: 10px;
}

/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .scratch-suitable-section {
        padding: 90px 0;
    }

    .scratch-suitable-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .scratch-suitable-intro {
        max-width: 800px;
        margin: auto;
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid greenyellow;
    }

    .scratch-suitable-intro p {
        margin: auto;
    }

    .scratch-suitable-intro h2 {
        font-size: 46px;
    }

    .scratch-suitable-list {
        max-width: 800px;
        width: 100%;
        margin: auto;
    }

}

/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .scratch-suitable-section {
        padding: 70px 0;
    }


    .scratch-suitable-container {
        width: 88%;
        gap: 40px;
    }

    .scratch-suitable-intro {
        padding-top: 17px;
    }

    .scratch-suitable-intro h2 {
        font-size: 37px;
    }

    .scratch-suitable-intro p {
        font-size: 15px;
        line-height: 1.75;
    }

    .suitable-item {
        gap: 16px;
        padding: 19px 5px;
        font-size: 15px;
    }

    .suitable-check {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 13px;
    }

}

/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .scratch-suitable-section {
        padding: 60px 0;
    }

    .scratch-suitable-container {
        width: 90%;
    }

    .scratch-suitable-tag {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .scratch-suitable-intro h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .scratch-suitable-intro p {
        font-size: 14px;
    }

    .suitable-item {
        gap: 13px;
        padding: 17px 2px;
        font-size: 14px;
    }

    .suitable-check {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 11px;
    }

    .scratch-suitable-list::after {
        width: 60px;
        height: 2px;
    }

}

/*==========================================
      SECTION 15 : FINAL CTA
==========================================*/

.final-cta{
    padding:50px 20px;
    background:yellowgreen;
    color:black;
    text-align:center;
}

.final-cta-container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.final-cta h2{
    font-size:46px;
    margin:20px 0;
    line-height:1.3;
    color:black;
}

.final-cta .final-cta-container p{
    font-size:18px;
    color:black;
    line-height:1.8;
    max-width:850px;
    margin:0 auto 45px;
    /* font-weight: 700; */
    /* text-align:justify; */
}

.final-cta .section-tag{
    display:inline-block;
    background:white;
    color:black;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    text-align: center;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Secondary */

.cta-primary, .cta-secondary{
    border:2px solid #fff;
    color:black;
    padding:16px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-primary:hover, .cta-secondary:hover{
    background:#fff;
    color:#0F172A;
}

/* Icons */

.cta-buttons i{
    margin-right:8px;
}

/*=========================
      Tablet
=========================*/

@media(max-width:768px){

.final-cta{
padding:80px 20px;
}

.final-cta h2{
font-size:36px;
}

.final-cta p{
font-size:16px;
}

.cta-buttons{
flex-direction:column;
align-items:center;
}

.cta-primary,
.cta-whatsapp,
.cta-secondary{

width:100%;
max-width:350px;
text-align:center;
}
}

/*=========================
      Mobile
=========================*/

@media(max-width:480px){

.final-cta h2{
font-size:30px;
}

.final-cta p{
font-size:15px;
line-height:1.7;
}
}