/* landing-page-section */
section{
    overflow-x: hidden;
    overflow-y: hidden;
}

.img-wrapper {
  width: 50%;
  background-color: var(--primary-red);
  border-radius: 20px;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
  max-width: 100%;
}

.landing-page1{
    width:90%;
    height: 80%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    margin-block-start: 5rem;
}

.img-wrapper1{
    width: 50%;
    height: 70%;
    background-color: var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.img-wrapper1 img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.lp-description1{
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

.lp-description1 img{
    width: 300px;
}

.lp-description1 h2{
    font-size: 1rem;
    width: 90%;
    margin: 0 auto;
}


.landing-page {
    margin-inline: 4.5rem 3rem;
    height: 80%;
    max-width: 100%;
    display: flex;
    place-items: center;
    text-align: center;
    margin-top: 6rem;
}

.title {
    padding-block: 20px 30px !important;
}

.landing-page h2 {
    font-size: 1rem;
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.lp-description {
    align-items: center;
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    
}

.lp-description img{
    width: 50%;
    height: auto;
}

.unique-button {
    width: 140px;
    height: 30px;
    border-radius: 999px;
    text-align: center;
    font-weight: 600;
    margin: 20px 10px 20px 10px;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1.1;
    box-shadow: 0px 0px 5px 1.5px rgba(0, 0, 0, 0.25);
}

.unique-button:hover {
    cursor: pointer;
}

.red {
    background-color: var(--primary-red);
    color: var(--color-text-white);
}

.green {
    background-color: var(--primary-green);
    color: var(--color-text-white);
}

/* about-us section */
.about-us {
    position: relative;
}

.about-us .gear-spin {
    font-size: 3.5rem;
    color: var(--color-text-white);
    position: absolute;
    top: 14.32vh;
    right: 7vw;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-wrapper {
    max-width: 90%;
    height: 550px;
    background-color: var(--primary-green);
    border-radius: 0 30px 30px 0;
    display: flex;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
    overflow: hidden;
}

.about-us img {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    z-index: 1;
}

.about-counter{
    width: 60%;
    z-index: 0;
    position: relative;
    display: flex;
    justify-content: center;
    
}

.about-counter::before{
    content: '';
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
    border: 5px var(--color-text-white) solid;
    background-color: var(--color-text-white);
    position: absolute;
    display: block;
    left: 0;
    top: -30;
    z-index: -1;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
}

.about-counter::after{
    content: '';
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
    border: 5px var(--color-text-white) solid;
    background-color: var(--color-text-white);
    position: absolute;
    display: block;
    right: 0;
    bottom: -30;
    z-index: -1;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
}

.about-counter img{
    -o-object-fit: cover;
       object-fit: cover;
}

.about-img-wrapper {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-description {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-text-white);
}

.about-description h2 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.about-description h3 {
    font-size: 1rem;
    text-align: justify;
}

.about-description button {
    margin-inline: 0 !important;
}

.about-description a {
    width: -moz-fit-content;
    width: fit-content;
}

/* why-us section */
.why-us {
    margin-block: 5rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.why-us .gear-spin {
    font-size: 3.5rem;
    color: var(--color-text-white);
    position: absolute;
    top: 13vh;
    left: 7vw;
    animation: spin 4s linear infinite;
}

.why-us-wrapper {
    max-width: 90%;
    height: 550px;
    background-color: var(--primary-red);
    border-radius: 30px 0 0 30px;
    margin-inline-start: 10%;
    justify-content: center;
    display: flex;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
}

.why-description {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-text-white);
}

.why-description h3 {
    font-size: 1rem;
    text-align: justify;
    padding-left: 1rem;
}

.why-description h2 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.why-description button {
    margin-inline: 0 !important;
}

.why-description a {
    width: -moz-fit-content;
    width: fit-content;
}

.why-img-wrapper {
    width: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-counter{
    width: 50%;
    height: 50%;
    z-index: 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.why-counter::before{
    content: '';
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
    border: 5px var(--color-text-white) solid;
    background-color: var(--color-text-white);
    position: absolute;
    display: block;
    right: -30;
    top: -30;
    z-index: -1;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
}

.why-counter::after{
    content: '';
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
    border: 5px var(--color-text-white) solid;
    background-color: var(--color-text-white);
    position: absolute;
    display: block;
    left: -30;
    bottom: -50;
    z-index: -1;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
}

.why-us img {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
    -o-object-fit: cover;
       object-fit: cover;
}

/* benefit-section */
.benefit {
    text-align: center;
    position: relative;
    will-change: transform;
}

.section-image {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.title {
    font-size: 1.4rem;
    font-weight: bold !important;
}

.benefit-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    justify-content: center;
    margin: 0 auto;
    margin-block: 5rem;
}

.benefit-wrapper::before{
    content: '';
    width: 90%;
    height: 50%;
    border-radius: 0 30px 30px 0;
    background-color: var(--primary-red);
    left: 0;
    top: 30%;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.benefit-wrapper::after{
    content: '';
    width: 90%;
    height: 50%;
    border-radius: 30px 0 0 30px;
    background-color: var(--primary-green);
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    overflow-x: hidden;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.benefit-card {
    width: 260px;
    height: 350px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
    z-index: 1;
    background-color: var(--color-text-white);
}

.benefit-card img {
    -o-object-fit: contain;
       object-fit: contain;
    margin-block: 2rem 0;
    width: 122.94px;
    height: 150px;
}

.benefit .line-break {
    border-top: 2px solid var(--primary-green);
    margin-block: 1rem;
}

.benefit .desc-benefit {
    margin-inline: 1.5rem;
    font-size: 0.9rem;
}

/* curriculum-section */
.curriculum {
    text-align: center;
    position: relative;
    will-change: transform;
}

.curriculum a{
    color: var(--color-text-black);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.curriculum a:hover{
    transform: scale(1.01) ;
}

.curriculum-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    justify-content: center;
    margin: 0 auto;
    margin-block: 5rem;
}

.curriculum-wrapper::before{
    content: '';
    width: 90%;
    height: 50%;
    border-radius: 0 30px 30px 0;
    background-color: var(--primary-green);
    left: 0;
    top: 30%;
    position: absolute;
    z-index: -1;
    overflow: hidden;
}

.curriculum-wrapper::after{
    content: '';
    width: 90%;
    height: 50%;
    border-radius: 30px 0 0 30px;
    background-color: var(--primary-red);
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    overflow: hidden;
}

.curriculum-card {
    width: 260px;
    height: 350px;
    border-radius: 30px;
    z-index: 9999;
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    will-change: transform;
}

.curriculum-card img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 80%;
    height: 200px;
    border-radius: 25px;
    margin-block: 20px 10px;
}

.curriculum .line-break {
    border-top: 2px solid var(--primary-green);
}

.curriculum .desc-curriculum {
    margin-inline: 1rem;
    margin-block: 0.5rem 1.5rem;
}

.curriculum .curriculum-subject {
    background-color: rgb(225, 218, 218);
    color: var(--color-text-black);
    border-radius: 999px;
    margin-block: 15px;
    font-size: 0.9rem;
    padding: 5px;
}

/* quotes-section */
.quotes {
    display: flex;
    position: relative;
    align-items: center;
    justify-content:center;
    height: 310px;
    max-width: 100%;
}

.quotes-wrapper {
    background: linear-gradient(100deg, #ff7070 33%, #df5151 56%, #d00101 79%);
    height: 200px;
    padding: 2rem;
    padding-inline: 5% 35%;
    border-radius: 50px;
    position: relative;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.quotes-wrapper p {
    font-size: 0.8rem;
    padding-bottom: 5px;
    font-style: italic;
}

.quotes-wrapper h2 {
    font-weight: bold !important;
    font-size: 1.1rem;
    padding-block: 10px 10px;
}

.quotes-wrapper button {
    margin-left: 0;
}

.curriculum-quotes {
    width: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.quotes-wrapper h2,
.quotes-wrapper p {
    color: var(--color-text-white);
}

.cirlce-frame {
    width: 300px;
    background-color: var(--primary-green);
    border-radius: 50%;
    position: absolute;
    top: -3rem;
    right: -1rem;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.circle-img-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-circle-img-wrapper {
    width: 250px;
    height: 250px;
    background-color: var(--color-text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.second-circle-img-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 75%;
    max-height: 75%;
}

/* awards-section */
.awards {
    text-align: center;
    align-items: center;
}

.awards .unique-button {
    margin-top: 3rem;
}

.testimoni .unique-button {
    margin-top: 3rem;
}

/* new testimoni design */
.testimoni{
    text-align: center;
    width: 100%;
}

.testi-slick-div{
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.testimoni-wrapper{
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-block: 2rem;
    will-change: transform;
}

.testimoni-card{
    width: 300px;
    height: 450px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    backface-visibility: hidden;
    border: solid 2.5px var(--primary-red);
}

.desc-wrapper .isi{
    overflow: hidden ; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 7; 
    -webkit-box-orient: vertical;
    font-size: 0.8rem;
}

.desc-wrapper .nama-testimoni{
    overflow: hidden ; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    font-size: 1rem;
    color: var(--secondary-blue);
    text-align: center;
}

.testimoni-card:hover{
    transform: scale(1.01) ;
}

.testi-img-wrapper{
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    
}

.testimoni .testi-img-wrapper img{
    width: 85%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    background-position: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}

.testimoni-card .testi-img-wrapper:nth-child(odd) img{
    border-bottom: 3px solid var(--primary-green);
}

.desc-wrapper{
    width: 85%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 0 auto;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
    gap: 0.5rem;
    padding: 1rem;
    
}

.testimoni-card:nth-child(odd) .desc-wrapper{
    border-top: 2px solid  var(--primary-green);
}

.testimoni-card:nth-child(even) .desc-wrapper{
    border-top: 2px solid  var(--primary-green);

}

.desc-wrapper .umur-keterangan{
    font-size: 0.9rem;
    color: var(--secondary-blue);
    text-align: center;
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

/* new testimoni design */

/* new article design */
.article{
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article .title{
    margin-block: 2rem;
    text-align: center;
}

.article-container{
    width: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    margin: 0 auto;
    margin-block: 1rem;
}

.article-container:hover{
    transform: scale(1.01);
}

.article-img-wrapper{
    width: 300px;
    height: 250px;
    border-radius: 10px;
}

.article-img-wrapper img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.description-wrapper{
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
}

.description-wrapper p {
    font-size: 0.8rem;
    margin: 0;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
}

.description-wrapper h3 {
    margin:0;
    font-size: 1.1rem;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
}

.description-wrapper p,
.description-wrapper h3{
    margin-bottom: 0.5rem;
}

.datetime{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.datetime p{
    font-size: 0.7rem;
    margin: 0;
}

p.gray{
    color: rgb(82, 81, 81);
    max-height: 50px;
    overflow: hidden;
    margin: 0 !important;
}

.article .unique-button{
    margin-inline: 0;
    margin-block: 3rem;
}

.article .description-wrapper .unique-button{
    margin-block: 1.5rem !important;
}

/* new article design */

/* new awards design */
.awards2{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper{
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.awards-container{
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    overflow: visible;
    margin-block: 1rem;
}

.awards-container:hover{
    transform: scale(1.01) ;
}

.awards-category{
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--color-text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 30px 30px 0 0;
    font-size: 1rem;
    padding-inline: 2rem;
}

.awards-main-div{
    width: 350px;
    height: auto;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 0 0 1rem 0;
    will-change: transform;
}

.awards-compete-div{
    width: 90%;
    height: auto;
    padding: 0.5rem;
    border-bottom: 3px solid var(--primary-green);
    border-left: 3px solid var(--primary-green);
    border-right: 3px solid var(--primary-green);
    border-radius: 0 0 60px 60px;
    box-shadow: 0px 0px 3px 1.5px rgba(0, 0, 0, 0.25);
    gap: 1rem;
    margin-block-end: 1rem;
    will-change: transform;
}

.awards-compete-div h3{
    font-size: 0.9rem;
    line-height: 2;
    color: var(--secondary-blue);
    width: 80%;
    margin: 0 auto;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
}

.awards-compete-div h3:nth-child(2){
    color: rgb(78, 78, 78);
}

.awards-img-div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 1rem;
}

.awards-img-div img{
    width: 270px;
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px ;
}

.awards-img-container{
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 1rem;
}

.award-slick-div{
    width: 90%;
    height: auto;
}

.home-slick{
    display: flex;
    gap: 1rem;
    margin: 0 auto;
    margin-block: 2rem;
}

.home-slick li{
    width: 90%;
    height: auto;
}

.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    bottom: 200;
    color: #d5122f;
    border: 0;
    background: none;
    z-index: 1;
}

.slick-prev {
    left: -20;
}

.slick-prev:after {
	  content: "\f104";
    font: 40px/1 'FontAwesome';
}

.slick-next {
    right: -20;
    text-align: right;
}

.slick-next:after {
	   content: "\f105";
     font: 40px/1 'FontAwesome';
}

.slick-prev:hover:after,
.slick-next:hover:after {
    color: var(--primary-green);
}
/* new awards design */


/* Media Screen Awards Section */
@media screen and (max-width: 767px) {
    .awards-main-div{
        width: 300px;
    }

    .awards-img-div img{
        width: 220px;
        height: 220px;
    }

}
/* Media Screen Awards Section */


/* Media Screen Testimonis Section */
@media screen and (min-width: 800px) and (max-width: 1024px) {
    #carousel-wrapper #menu{
        width: 750px;
        margin-inline: 1.5rem;
    }
}

@media screen and (max-width: 799px) {
    #carousel-wrapper #menu{
        height: 600px ;
        width: 350px ;
        align-items: center ;
    }

    #carousel-wrapper #menu #testimoni{
        transform: translate(0,0) ;
        width: 85% ;
        margin-block-end: 1rem;
        gap: 1rem;
        top: 150px;
    }

    #carousel-wrapper #menu #testimoni #current-isi-testimoni {
        height: 100px ;
    }
    
    #carousel-wrapper #menu #next-option{
        margin: 0 5rem 0 0 ;
        transform: translate(0, 0) rotate(90deg) ;
        bottom: 1rem;
    }

    #carousel-wrapper #menu #previous-option{
        margin: 0 0 0 5rem ;
        transform: translate(0, 0) rotate(-90deg) ;
        bottom: 1rem;
    }

    #carousel-wrapper #gambar-testimoni{
        transform: translate(0,0);
        margin: 1.5rem 1rem 0 1rem ;
        top: 0;
    }
    
}   
/* Media Screen Testimonis Section */

@media screen and (min-width: 1921){
    .about-counter::before,
    .about-counter::after,
    .about-img-wrapper .gear-spin{
        display: none;
    }

    .why-counter::before,
    .why-counter::after,
    .why-img-wrapper .gear-spin{
        display: none;
    }
}

@media screen and (max-width: 1200px){
    .about-counter::before,
    .about-counter::after,
    .about-img-wrapper .gear-spin{
        display: none;
    }

    .why-counter::before,
    .why-counter::after,
    .why-img-wrapper .gear-spin{
        display: none;
    }
}

@media screen and (max-width: 1068px) {
    .benefit-wrapper::before{
        top: 22%;
    }
    .curriculum-wrapper::before{
        top: 22%;
    }
}

@media screen and (max-width: 705px) {
    .benefit-wrapper::before{
        top: 13%;
    }
    .benefit-wrapper::after{
        bottom: -3%;
        overflow-x: hidden;
    }
    .curriculum-wrapper::before{
        top: 13%;
    }
    .curriculum-wrapper::after{
        bottom: -3%;
        overflow-x: hidden;
    }
}

@media screen and (max-width: 900px){
    .landing-page1{
        flex-direction: column;
        height: 80%;
        margin-block: 7rem 2rem !important;
    }

    .img-wrapper1{
        width: 90%;
    }

    .img-wrapper1 img{
        width: 100%;
    }

    .lp-description1{
        width: 100%;
    }

    .lp-description1 img{
        width: 250px;
    }

    .curriculum-quotes{
        width: 700px;
    }

    .cirlce-frame{
        width: 250px;
        top:-2rem;
    }

    .circle-img-wrapper{
        height: 250px;
    }

    .second-circle-img-wrapper{
        width: 200px;
        height: 200px;
    }
    
    .quotes-wrapper{
        height: 180px;
        padding-inline: 2% 30%;
    }

    .quotes-wrapper p{
        font-size: 0.7rem;
    }

    .quotes-wrapper h2{
        font-size: 0.8rem;
    }

    .quotes-wrapper button {
        margin: 0;
    }

}

@media screen and (max-width: 750px){
    .about-wrapper{
        flex-direction: column;
        height: -moz-fit-content;
        height: fit-content;
        align-items: center;
    }

    .about-counter img{
        margin-block: 2rem;
    }

    .about-description{
        max-width: 90%;
        align-items: center;
        padding-inline: 1rem;
    }

    .why-us-wrapper{
        flex-direction: column-reverse;
        height: -moz-fit-content;
        height: fit-content;
        align-items: center;

    }

    .why-counter img{
        margin-block: 2rem;
    }

    .why-description{
        max-width: 90%;
        align-items: center;
        padding-inline: 1rem;
    }

    .quotes{
        margin-inline: 1rem;
        height: 500px;
        justify-content: center;
        align-items: flex-start;
    }

    .quotes-wrapper{
        padding-inline: 1rem;
        flex-direction: column;
        width: 90%;
        border-radius: 10px;
        background-color: white !important;
    }

    .cirlce-frame{
        position: relative;
        top: 50%;
        left: 25%;
    }
}

@media screen and (max-width: 700px){
    .title{
        font-size: 1.2rem;
    }    

    .section-image{
        width: 150px;
    }
}

@media screen and (max-width: 600px){
    .cirlce-frame{
        left: 20%;
    }

    .awards{
        margin-inline: 1rem;
    }
}

@media screen and (max-width: 500px){
    .landing-page1{
        height: auto;
    }

    .img-wrapper1{
        width: 80%;
        height: 230px;
    }

    .img-wrapper1 img{
        width: 100%;
        height: 230px;
    }

    .lp-description1{
        width: 100%;
    }

    .lp-description1 img{
        width: 200px;
    }

    .about-description h3{
        font-size: 0.9rem
    }

    .why-description h3{
        font-size: 0.9rem;
    }

    .quotes-wrapper{
        height: 200px;
    }

    .cirlce-frame{
        left: 15%;
    }

    .title{
        margin-inline: 1rem;
    }    
}

@media screen and (max-width: 450px){
    .cirlce-frame{
        left: 10%;
    }
}
