
.h500onCC {
    height: 50px;
}


.section5 {
    min-height: 110vh;
    background: -o-linear-gradient(45deg,rgb(79, 79, 255), skyblue);
    background: linear-gradient(45deg,rgb(79, 79, 255), skyblue);
    padding-top: 90px;
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}
.head5 {
    font-size: 50px;
    z-index: 5;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 90%;
    position: relative;
    font-family: var(--poppins);
    font-weight: 600;
    color: rgb(217, 217, 217);
    text-shadow: 0px 1px 4px #0000008f;
}
.head5sub {
    font-size: 20px;
    z-index: 5;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    font-family: var(--poppins);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.648);
    text-shadow: 0px 1px 2px #00000050;
}
.head5details, .sub_head5details {
    font-family: var(--poppins);
    font-weight: 500;
    line-height: 60px;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: rgb(222, 235, 255);
    text-shadow: 0px 1px 4px #0000008f;
}
.head5details {
    font-size: 30px;
}
.sub_head5details {
    font-size: 25px;
    line-height: 50px;
    color: rgb(209, 228, 255);
}
.directory, .files {
    position: relative;
    
}
.directory {
    padding-left: 30px;
}

.directory .files::after {
    content: '#';
    height: 20px;
    width: 20px;

    border-radius: 15px;
    position: absolute;
    font-size: 12px;
    background: rgb(30, 78, 162);
    left: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: rgb(186, 228, 255);
}

.iconText {
    border-radius: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 7px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: rgba(255, 255, 255, 0.164);
    padding-right: 20px;
}
.iconText img {
    height: 70px;
    width: 70px;
    background: rgba(255, 255, 255, 0.737);
    border-radius: 100px;
    padding: 5px;
}





/* THE AIR FRAME */

.the_air_frame {
    position: absolute;
    top: 90px;
    right: 20px;
    max-width: 600px;
    width: 100%;
    height: 300px;
    z-index: 1;
    opacity: 0.8;
}
@media (max-width: 600px) {
    .the_air_frame {
        right: auto;
        left: 0;
        height: 200px;
        overflow: hidden;
    }
}
.the_air_frame .cl1,
.the_air_frame .cl2,
.the_air_frame .cl3,
.the_air_frame .plane {
    position: absolute;
}
.the_air_frame .cl1 {
    height: 40%;
    top: 10%;
    left: 20%;
    -webkit-animation: cloudMove 4s linear 0s infinite;
            animation: cloudMove 4s linear 0s infinite;
}
.the_air_frame .cl2 {
    height: 20%;
    top: 40%;
    left: 0;
    -webkit-animation: cloudMove 4s linear 1s infinite;
            animation: cloudMove 4s linear 1s infinite;
}
.the_air_frame .cl3 {
    height: 50%;
    right: 0;
    bottom: 10px;
    -webkit-animation: cloudMove 4s linear 2s infinite;
            animation: cloudMove 4s linear 2s infinite;
}
.the_air_frame .plane {
    height: 70%;
    right: 0%;
    bottom: 20%;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.the_air_frame .plane.active {
    right: 20%;
    -webkit-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
            transform: rotate(10deg);
    -webkit-animation: planeMove 4s linear 1s infinite;
            animation: planeMove 4s linear 1s infinite;
}

@-webkit-keyframes cloudMove {
    0%, 100% {
        -webkit-transform: translate(0px, 0px);
                transform: translate(0px, 0px);
    }
    25% {
        -webkit-transform: translate(5px, -10px);
                transform: translate(5px, -10px);
    }
    75% {
        -webkit-transform: translate(0px, 10px);
                transform: translate(0px, 10px);
    }
}

@keyframes cloudMove {
    0%, 100% {
        -webkit-transform: translate(0px, 0px);
                transform: translate(0px, 0px);
    }
    25% {
        -webkit-transform: translate(5px, -10px);
                transform: translate(5px, -10px);
    }
    75% {
        -webkit-transform: translate(0px, 10px);
                transform: translate(0px, 10px);
    }
}
@-webkit-keyframes planeMove {
    0%, 100% {
        -webkit-transform: translate(0px, 0px) rotate(10deg);
                transform: translate(0px, 0px) rotate(10deg);
    }
    25% {
        -webkit-transform: translate(-5px, -10px) rotate(13deg);
                transform: translate(-5px, -10px) rotate(13deg);
    }
    50% {
        -webkit-transform: translate(-15px, 5px) rotate(8deg);
                transform: translate(-15px, 5px) rotate(8deg);
    }
    75% {
        -webkit-transform: translate(2px, 10px) rotate(10deg);
                transform: translate(2px, 10px) rotate(10deg);
    }
}
@keyframes planeMove {
    0%, 100% {
        -webkit-transform: translate(0px, 0px) rotate(10deg);
                transform: translate(0px, 0px) rotate(10deg);
    }
    25% {
        -webkit-transform: translate(-5px, -10px) rotate(13deg);
                transform: translate(-5px, -10px) rotate(13deg);
    }
    50% {
        -webkit-transform: translate(-15px, 5px) rotate(8deg);
                transform: translate(-15px, 5px) rotate(8deg);
    }
    75% {
        -webkit-transform: translate(2px, 10px) rotate(10deg);
                transform: translate(2px, 10px) rotate(10deg);
    }
}


/* DEVELOPMENT SECTION */

.section4 {
    background: var(--section-lime);
    padding-top: 90px;
}
.section4 .main4 {
    position: relative;
    background: url(./pics/CRANE.png);
    background-repeat: no-repeat;
    background-position: 20% 80%;
    background-attachment: fixed;
    background-size: 300px;
    padding-bottom: 50px;
}

.floating2 {
    height: 50px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 5px 25px;
    letter-spacing: 2px;
    font-weight: 900;
    font-family: var(--poppins);
    color: var(--section-lime);
    background: var(--section-lime-light);
    font-size: 30px;
    border-radius: 200px;
    line-height: 42px;
    position: sticky;
    top: 90px;
    z-index: 99;
}

.section4 .main4 .subheading {
    font-family: var(--poppins);
    color: var(--section-lime-light);
    margin-top: 30px;
    letter-spacing: 3px;
}




.development_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.development_section .left {
    position: sticky;
    top: 160px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    overflow: hidden;
}
.development_section .left .project_title {
    font-size: 28px;
    font-family: var(--poppins);
    color: var(--section-lime-light);
    font-weight: 600;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.381);
}
.development_section .left .project_sub_title {
    font-size: 18px;
    font-family: var(--poppins);
    color: var(--section-lime-light);
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.381);
}


.development_section .right {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
}
.development_section .right .pics {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--section-lime-light);
}
.development_section .right .pics img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.246);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.246);
}


/* SECTION 3  */


.section3 {
    background: var(--section-blue);
    padding-top: 90px;
}




.section3 .main3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 50px;
}



.section3 .main3 .left {
    position: sticky;
    top: 120px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    overflow: hidden;
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
}
.section3 .main3 .left img.floating {
    position: absolute;
    max-width: 300px;
    z-index: -1;
}
.section3 .main3 .left img.floating:nth-child(1) {
    left: 0px;
    bottom: 0;
}
.section3 .main3 .left img.floating:nth-child(2) {
    top: 0;
    right: -100%;
}

.section3 .floating1 {
    height: 50px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 5px 25px;
    letter-spacing: 2px;
    font-weight: 900;
    font-family: var(--poppins);
    color: var(--section-blue);
    background: var(--section-blue-head);
    font-size: 30px;
    border-radius: 200px;
    line-height: 45px;
    position: sticky;
    top: 90px;
    z-index: 99;
    /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.144); */
}
.section3 .main3 .right {
    z-index: 10;
    padding: 10px;
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
}

.subheading {
    font-family: var(--poppins);
    color: var(--section-blue-head);
    margin-top: 30px;
    letter-spacing: 3px;
}


ul.food_items {
    list-style-type: none;
    padding-top: 10px;
}
ul.food_items li {
    width: calc(100% - 20px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(222, 222, 222, 0.145)), to(rgba(255, 255, 255, 0.05)));
    background: -o-linear-gradient(rgba(222, 222, 222, 0.145), rgba(255, 255, 255, 0.05));
    background: linear-gradient(rgba(222, 222, 222, 0.145), rgba(255, 255, 255, 0.05));
    border-radius: 6px;
    color: rgb(216, 228, 252);
    padding: 5px 15px;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.subheading, ul.food_items li {
    text-shadow: 0px 2px 4px rgba(40, 40, 40, 0.53);
}




div.hudai {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
}

.food_img_card {
    background: #cecdffe1;
    max-width: 260px !important;
    min-height: 320px;
    padding: 10px;
    border-radius: 20px;
}
.food_img_card .img {
    width: 240px;
    height: 240px;
    overflow: hidden;
    border-radius: 14px;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.246);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.246);
}
.food_img_card .img img {
    width: 100%;
}
.food_img_card .title {
    height: 60px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    line-height: 25px;
    font-size: 20px;
    font-family: var(--poppins);
    color: var(--section-blue);
}



/* SECTION 2 */


.section2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.section2 .floating_bg {
    height: 100%;
    width: 80%;

    background: url(./pics/bigV.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 50% 40%;

    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
}
.section2 .subsection {
    height: 500px;
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.section2 .subsection .company_card_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
}


.subsection .company_card_container::before {
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background: var(--front-line-color);
    position: absolute;

    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 35px;
}
.subsection .company_card_container::after {
    content: '';
    height: 2px;
    width: 38px;
    background: var(--front-line-color);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0px;
}
.subsection.right .company_card_container::before {
    left: 35px;
}
.subsection.right .company_card_container::after {
    left: -1px;
}

.subsection .company_card_container .company_card {
    width: calc(100% - 50px);
    background: rgb(255, 255, 255, 0.4);
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.362);
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.362);
    border: 1px solid rgba(255, 255, 255, 0.743);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    padding: 25px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.subsection.right .company_card_container {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
}




.subsection .company_card_container .company_card .content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
}
.subsection .company_card_container .company_card .content.picture {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 20;
}
.subsection .company_card_container .company_card .content > img {
    height: 150px;
    width: 150px;
}

.company_card .content p {
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: bold;
    color: var(--company-card-text);
    text-shadow: 0px 1px 3px #0000005a;
}

.icon_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    z-index: 10;
}
.icon_items .icon_item {
    background: #c5c5c58d;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-family: var(--poppins);
    font-weight: 700;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
}
.icon_items .icon_item:hover {
    background: #a5a5a5b9;
}
.icon_items .icon_item div {
    height: 30px;
    width: 30px;
}
.icon_items .icon_item div img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
}



 /* only section 2 */
@media (max-width: 950px) {

    .h500onCC {
        height: 20px;
    }

    .section2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        min-width: 200px;
    }
    .section2 .subsection {
        width: 100%;
    }
    
    .section2 .subsection .company_card_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: right;
            -ms-flex-pack: right;
                justify-content: right;
        position: relative;
    }

    .subsection .company_card_container::before {
        left: 35px;
    }
    .subsection .company_card_container::after {
        left: -1px;
    }
    
    .subsection .company_card_container .company_card {
    
        width: calc(100% - 50px);
        background: rgb(255, 255, 255, 0.4);
        -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.362);
                box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.362);
        border: 1px solid rgba(255, 255, 255, 0.743);
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    
    
    
    
    .subsection .company_card_container .company_card .content {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 10px;
    }
    .subsection .company_card_container .company_card .content > img {
        height: 90px;
        width: 90px;
    }

    .icon_items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 5px;
    }
    .icon_items .icon_item {
        background: #c5c5c58d;
        border-radius: 8px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 10px;
        font-family: var(--poppins);
        font-weight: 500;
        padding: 5px 10px;
        font-size: 12px;
        line-height: 14px;
    }
    .icon_items .icon_item div {
        height: 25px;
        width: 25px;
    }
    

}

@media (max-width: 950px) and (min-width: 1px) {
    .subsection .company_card_container .company_card {
    
        width: calc(100% - 50px);
        background: rgb(255, 255, 255, 0.4);
        -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.362);
                box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.362);
        border: 1px solid rgba(255, 255, 255, 0.743);
        padding: 10px;
    
        display: -webkit-box;
    
        display: -ms-flexbox;
    
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .subsection .company_card_container .company_card .content > img {
        height: 110px;
        width: 110px;
    }
    .h100 {
        height: 50px;
    }
}

@media (max-width: 700px) {
    /* SECTION 3  */


        
    .section3 .main3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .section3 .main3 .left {
        top: 0;
        width: 100%;
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }
    .section3 .main3 .left img.floating {
        max-width: 200px;
    }
    .section3 .main3 .left img.floating:nth-child(2) {
        right: 0;
    }

    .section3 .floating1 {
        font-size: 18px;
        margin: 0 auto;
    }
    .section3 .main3 .right {
        z-index: 10;
        padding: 0px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }

    .subheading {
        text-align: center;
        font-size: 16px;
    }


    ul.food_items {
        list-style-type: none;
        padding-top: 10px;
    }
    ul.food_items li {
        width: 100%;
        text-align: center;
    }

    .subheading, ul.food_items li {
        text-shadow: 0px 2px 4px rgba(40, 40, 40, 0.53);
    }


    div.hudai {
        gap: 10px;
        row-gap: 20px;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }
    .food_img_card {
        width: 47%;
        min-height: 100px;
        padding: 5px;
        border-radius: 8px;
    }
    .food_img_card .img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        border-radius: 6px;
    }
    .food_img_card .img img {
        width: 100%;
        
    }
    .food_img_card .title {
        height: 0;
        min-height: 40px;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-weight: 600;
        letter-spacing: 0.5px;
        line-height: 14px;
        font-size: 14px;
        font-family: var(--poppins);
        color: var(--section-blue);
    }

    /* DEVELOPMENT SECTION */

    .section4 .main4 {
        background-position: 50% 50%;
        background-size: 250px;
        padding-bottom: 0px;
    }

    .floating2 {
        margin: 0 auto;
        font-weight: 700;
        font-size: 20px;
        letter-spacing: 1px;
    }

    .section4 .main4 .subheading {
        font-family: var(--poppins);
        color: var(--section-lime-light);
        margin-top: 30px;
        letter-spacing: 3px;
    }




    .development_section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-bottom: 50px;
    }
    .development_section .left {
        position: relative;
        top: 0;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }
    .development_section .left .project_title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .development_section .left .project_sub_title {
        font-size: 16px;
        font-weight: 500;
    }


    .development_section .right {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }
    .development_section .right .pics {
        width: 100%;
        padding: 8px;
    }
    .development_section .right .pics img {
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.446);
                box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.446);
    }




    .section5 {
        min-height: 110vh;
        background: -o-linear-gradient(45deg,rgb(79, 79, 255), skyblue);
        background: linear-gradient(45deg,rgb(79, 79, 255), skyblue);
        padding-top: 90px;
        position: relative;
    }
    .head5 {
        font-size: 30px;
        color: rgb(217, 217, 217);
    }
    .head5sub {
        font-size: 14px;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.759);
    }
    .head5details, .sub_head5details {
        font-family: var(--poppins);
        font-weight: 500;
        line-height: 60px;
        letter-spacing: 1px;
        text-transform: capitalize;
        color: rgb(222, 235, 255);
        text-shadow: 0px 1px 4px #0000008f;
    }
    .head5details {
        font-size: 18px;
        line-height: 200%;
    }
    .sub_head5details {
        font-size: 16px;
        
        line-height: 180%;
        color: rgb(209, 228, 255);
    }
    .directory, .files {
        position: relative;
        
    }
    .directory {
        padding-left: 30px;
    }
    
    .directory .files::after {
        height: 15px;
        width: 15px;
        font-size: 8px;
    }
    
    .iconText {
        gap: 10px;
        padding-right: 10px;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        width: 100%;
    }
    .iconText img {
        height: 45px;
        width: 45px;
        padding: 2px;
    }
    .iconText .head5details {
        line-height: 120%;
    }
    
}

@media (max-width: 950px) and (min-width: 501px) {
    
}