.section-1 {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

.section-1 .container {
    position: relative;
    margin-top: 20px;
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10rem;
    overflow: hidden;
    padding-bottom: 20px;
    transition: all 0.5s ease;
}

/* Title Styles */
.section-1 .container .title{
    position: relative;
    margin-top: 20px;
    transition: all 0.5s ease;
}
.section-1 .container .title .info{
    position: relative;
    width: 400px;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 550;
    line-height: 24px;
    font-family: "Roboto", sans-serif;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background: #FF6F00;
    transition: all 0.5s ease;
}

.section-1 .container .title h1{
    position: relative;
    width: 700px;
    font-size: 4rem;
    font-family: "Montserrat", sans-serif;
    transition: all 0.5s ease;
}
.section-1 .container .title h1 .span-1{
    color: #FF6F00;
    transition: all 0.5s ease;
}
.section-1 .container .title h1 .span-2{
    color: #089949;
    transition: all 0.5s ease;
}
.section-1 .container .title h1 .span-3{
    color: #226db4;
    transition: all 0.5s ease;
}

.section-1 .container .title h1 .span-1 span,
.section-1 .container .title h1 .span-2 span,
.section-1 .container .title h1 .span-3 span{
    color: #f9b21d;
}

.section-1 .container .title h3{
    position: relative;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6F00;
    font-family: "Monserrat", sans-serif;
    transition: all 0.5s ease;
}

.section-1 .container .title .get-started-btn{
    position: relative;
    width: 200px;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    background: #FF6F00;
    transition: all 0.5s ease;
}
.section-1 .container .title .get-started-btn svg{
    position: relative;
    top: 4px;
    margin-left: 7px;
    transition: all 0.5s ease;
}
.section-1 .container .title .get-started-btn:hover{
    background: #ff6f0073;
}


/* Title Images Styles */
.section-1 .container .small-screen-images{
    display: none;
}

.section-1 .container .title-images {
    position: relative;
    transition: all 0.5s ease;
}
.section-1 .container .title-images .images{
    position: relative;
    display: flex;
    transition: all 0.5s ease;
}
.section-1 .container .title-images img{
    position: relative;
    margin-top: 20px;
    width: 600px;
    height: 270px;
    object-fit: contain;
    transition: all 0.5s ease;
}
.section-1 .container .title-images .images img{
    position: relative;
    width: 270px;
    height: 270px;
    object-fit: contain;
    transition: all 0.5s ease;
}


/* Content Styles */
.section-1 .content {
    position: relative;
    display: flex;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: 0px;
    transition: all 0.5s ease;
}
.section-1 .content-item {
  flex-basis: 25%;
  margin-bottom: 40px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.5s ease;
}
.section-1 .content-item img {
    position: relative;
    width: 174px;
    height: 100px;
    object-fit: contain;
    z-index: -1;
    transition: all 0.5s ease;
}
.section-1 .content-item h2 {
  font-size: 3rem;
  margin-top: -25px;
  color: #FF6F00;
  text-align: center;
  transition: all 0.5s ease;
}
.section-1 .content-item h3{
    margin-top: -30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    transition: all 0.5s ease;
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .section-1 .content-item {
    flex-basis: 30%;
  }
}
@media (max-width: 768px) {
  .section-1 .content-item {
    flex-basis: 45%;
  }
}
@media (max-width: 480px) {
  .section-1 .content-item {
    flex-basis: 100%;
  }
}

/* 320px */
@media screen and (min-width: 320px) {
    .section-1 {
        padding: 10px;
    }

    .section-1 .container {
        margin-top: 0px;
    }

    .section-1 .container .title{
        margin-top: 0px;
    }
    .section-1 .container .title .info{
        position: relative;
        margin-bottom: -20px;
        font-size: 0.9rem;
        width: 250px;
    }

    .section-1 .container .title h1{
        width: 300px;
        font-size: 2.3rem;
    }

    .section-1 .container .title-images img{
        display: none;
    }
    .section-1 .container .title-images .images img{
        display: none;
    }
    .section-1 .container .title-images .images{
        position: relative;
    }

    .section-1 .container .small-screen-images{
        position: relative;
        display: flex;
    }
    .section-1 .container .small-screen-images .img1,
    .section-1 .container .small-screen-images .img2{
        position: relative;
        margin-top: -15px;
        width: 120px;
        height: 120px;
        object-fit: contain
    }

    .section-1 .content {
        margin-top: -130px;
        padding: 12px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .section-1 .content-item h2 {
        font-size: 2rem;
    }
    .section-1 .content-item h3{
        font-size: 1.5rem;
    }
    .section-1 .container .title h1 
    .span-1,
    .span-2,
    .span-3{
        font-size: 1.7rem;
    }
}
/* 375px */
@media screen and (min-width: 375px) {
    .section-1 .container .title .info{
        position: relative;
        margin-bottom: -20px;
        font-size: 0.9rem;
        width: 320px;
    }

    .section-1 .container .title h1{
        width: 370px;
        font-size: 3rem;
    }

    .section-1 .container .title-images img{
        display: none;
    }
    .section-1 .container .title-images .images img{
        display: none;
    }
    .section-1 .container .title-images .images{
        position: relative;
    }

    .section-1 .container .small-screen-images{
        position: relative;
        display: flex;
    }
    .section-1 .container .small-screen-images .img1,
    .section-1 .container .small-screen-images .img2{
        position: relative;
        margin-top: -15px;
        width: 150px;
        height: 150px;
        object-fit: contain
    }
    .section-1 .container .title h1 
    .span-1,
    .span-2,
    .span-3{
        font-size: 2.2rem;
    }
}
/* 425px */
@media screen and (min-width: 425px) {
    .section-1 .container .title .info{
        position: relative;
        margin-bottom: -20px;
        font-size: 0.9rem;
        width: 360px;
    }

    .section-1 .container .title h1{
        width: 400px;
        font-size: 3.5rem;
    }

    .section-1 .container .title-images img{
        display: none;
    }
    .section-1 .container .title-images .images img{
        display: none;
    }
    .section-1 .container .title-images .images{
        position: relative;
    }

    .section-1 .container .small-screen-images{
        position: relative;
        display: flex;
    }
    .section-1 .container .small-screen-images .img1,
    .section-1 .container .small-screen-images .img2{
        position: relative;
        margin-top: -15px;
        width: 200px;
        height: 200px;
        object-fit: contain
    }
    .section-1 .container .title h1 
    .span-1,
    .span-2,
    .span-3{
        font-size: 2.5rem;
    }
}
/* 768px */
@media screen and (min-width: 768px) {

    .section-1 .container {
        margin-top: 20px;
    }

    .section-1 .container .title{
        margin-top: 0px;
    }

    .section-1 .container .title .info{
        margin-bottom: -10px;
        font-size: 1rem;
        width: 360px;
    }

    .section-1 .container .title h1{
        width: 500px;
        font-size: 4rem;
    }

    .section-1 .container .title-images {
        margin-top: 0px;
        z-index: -1;
        display: block;
    }
    .section-1 .container .title-images img{
        display: block;
    }
    .section-1 .container .title-images .images img{
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 270px;
        height: 350px;
    }
    .section-1 .container .title-images .images{
        position: relative;
        display: flex;
    }

    .section-1 .container .small-screen-images{
        display: none;
    }

    .section-1 .container .title h3{
        position: relative;
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .section-1 .content {
        margin-top: 40px;
    }
    .section-1 .container .title h1 
    .span-1,
    .span-2,
    .span-3{
        font-size: 3rem;
    }
}
/* 1024px */
@media screen and (min-width: 1024px) {
    
    .section-1 .container {
        margin-top: 30px;
    }

    .section-1 .container .title{
        margin-top: 20px;
    }

    .section-1 .container .title .info{
        margin-bottom: 0px;
        font-size: 1rem;
        width: 400px;
    }

    .section-1 .container .title h1{
        width: 700px;
        font-size: 4rem;
    }

    .section-1 .container .title-images {
        margin-top: 0px;
        z-index: -1;
    }
    .section-1 .container .title-images .images{
        position: relative;
        display: flex;
    }

    .section-1 .container .title-images img{
        width: 500px;
        height: 270px;
    }
    .section-1 .container .title-images .images img{
        width: 250px;
        height: 270px;
    }

    .section-1 .container .title h3{
        position: relative;
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .section-1 .content-item h2 {
        font-size: 3rem;
    }
    .section-1 .content-item h3{
        font-size: 2rem;
    }
    .section-1 .container .title h1 
    .span-1,
    .span-2,
    .span-3{
        font-size:2.5rem;
    }
}