* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgb(0 51 71 / 23%);
    padding: 20px 0;
    z-index: 99;
}

.site-header .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

/* after scroll */
.site-header.scrolled {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

/* text colors */
.site-header.scrolled .logo {
    color: #000;
}

.site-header.scrolled .nav ul li a {
    color: #000;
}

.site-header.scrolled .nav ul li a.active,
.site-header.scrolled .nav ul li a:hover {
    color: #00aba3;
}


.header-menu {
    display: flex;
    justify-content: space-between;
    padding: 0px 5%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;

}

.nav ul li {
    margin: 0 22px;
}

.nav ul li:first-child {
    margin-left: 0;
}

.nav ul li:last-child {
    margin-right: 0;
}

.nav ul li a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
}


.nav ul li a.active,
.nav ul li a:hover,
.nav ul li a:focus {
    color: #00aba3;
}


.nav-btn {
    background: #2b7bff;
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff !important;
}

.logo img {
    display: block;
}

/* ===== HERO ===== */
.hero {
    background:
        url(./images/group-business-associates-discussing-project-development-plans.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 320px 0 140px;
    position: relative;
}

.hero::before {
    background: linear-gradient(to bottom, rgb(255 255 255) 0%, rgba(255, 255, 255, 0) 186%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.header-content {
    text-align: center;
    width: 73%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 70px;
    line-height: 1;
    font-weight: 600;
    color: #003347;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
}

.hero strong {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btns a {
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    background-color: #003347;
    padding: 16px 35px;
    border-radius: 10px;
    color: #fff;
}

.btns a:hover {
    background-color: #00aba3;
}

.header-content {
    transform: scale(0.8);
    animation: zoom 0.8s ease-out forwards;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.problem {
    background: #fff;
    padding: 0;
}

.problem .container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.split {
    display: flex;
    align-items: center;
}

.split-lft {
    width: 50%;
}

.split-lft h2 {
    color: #000;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.split-lft p {
    color: #000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin-bottom: 15px;
}

.split-rgt {
    width: 50%;
    text-align: center;
}

/* ===== CARDS ===== */
.platforms {
    background-color: #f5f5f5;
    padding: 100px 0 100px;
    text-align: center;
}



.platforms h2 {
    font-size: 46px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-bottom: 40px;
    line-height: 1;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    transition: .3s;
    width: 31%;
    color: #000;
}

.card:hover {
    background: #00aba3;
    color: #fff;
}


.card h5 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    color: #000;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0px;
    line-height: 1.5;
}

.card:hover p {
    color: #fff
}

/* }about-kronosys */
.about-kronosys .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-image {
    width: 50%;
}

.about-wrapper {
    width: 50%;
    padding: 0px 20px;
}

.about-text {
    width: 80%;
    margin: auto;
}

.about-image img {
    width: 100%;
    display: block;
}

.about-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: #000;
}

.about-wrapper h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #00aba3;
}

.about-wrapper p {
    color: #000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin-bottom: 0px;
}

.abt-box {
    background: #f5f5f5;
    padding: 40px 50px;
    border-radius: 18px;
    color: #000;
    margin-bottom: 20px;
}

.abt-box:last-child {
    margin: 0;
}

/* kronosys-model */
.kronosys-model {
    padding: 100px 0;
}

.model-head {
    text-align: center;
}

.model-head h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.model-head p {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
}

.model-wrapper {
    display: flex;
    justify-content: center;
}

.model-img img {
    display: block;
    width: 100%;
}

.model-card {
    width: 31%;
    margin: 0 0.6% 0;
    background: #003347;
    color: white;
}

.model-card:hover {
    background: #00aba3;
}

.model-content {
    padding: 25px 30px;
}

.model-content h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    color: #fff;
}

/* ===== MODEL / ABOUT ===== */
.model,
.about {
    background: #0e1324;
    text-align: center;
}

.stakeholders {
    background-color: #f5f5f5;
    padding: 100px 0;
    text-align: center;
}

.stakeholders h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #000;
}

.stakeholders .sub-text {
    margin-bottom: 30px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.stakeholder-wrap {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stake-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    width: 31%
}


.stake-card:hover {
    background-color: #00aba3;
}


.stake-card h5 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.stake-card p {
    color: #000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin-bottom: 0px;
}

.stake-card:hover h5 {
    color: #fff;
}

.stake-card:hover p {
    color: #fff;
}

.contact-us {
    padding: 70px 0;
}

.contact-details {
    display: flex;
}

.details {
    width: 50%;
}

.details h2 {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.cont {
    margin-bottom: 25px;
}

.cont h3 {
    font-family: 'Poppins', sans-serif;
    color: #00aba3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 5px;
}

.cont p {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}


.form {
    width: 50%;
}

.ftr-contact {
    background: #003347;
    padding: 30px 0px 30px;
}

.ftr-contact .ftr-logo {
    margin-bottom: 30px;
}

.ftr-logo img {
    display: block;
    margin: 0 auto 30px;
}

.ftr-nav {
    margin-bottom: 0px;
    width: 35%;
}

.ftr-nav ul li {
    display: inline-block;

}

.ftr-nav ul li {
    margin: 0 1.5% 0;
}

.ftr-nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin-bottom: 0px;
}

.ftr-nav ul li a:hover {
    color: #00aba3;
}


.cont-details h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.company-details {
    margin-bottom: 70px;
}

.ftr-cont {
    color: #fff;
    margin-bottom: 20px;
}

.ftr-cont h4 {
    color: #00aba3;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.ftr-cont p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.ftr-cont a {
    color: #fff;
}

.copyright {
    /*padding: 10px 0px 10px;*/
    background: #003347;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    /*border-top: 1px solid #ffffff80;
    border-bottom: 1px solid #ffffff80;*/
    width: 20%;
}

.logo-contact {
    display: flex;
    gap: 100px;
}

.social-icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    font-size: 0;
    width: 20%;
}

.twitter {
    background-image: url(./images/twitter.png);
    width: 27px;
    height: 27px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.facebook {
    background-image: url(./images/facebook.png);
    width: 17px;
    height: 26px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.instagram {
    background-image: url(./images/instagram.png);
    width: 27px;
    height: 27px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.google {
    background-image: url(./images/google.png);
    width: 27px;
    height: 26px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.twitter:hover {
    background-image: url(./images/twitter-hr.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.facebook:hover {
    background-image: url(./images/facebook-hr.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.instagram:hover {
    background-image: url(./images/instagram-hr.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.google:hover {
    background-image: url(./images/google-hr.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* contact */
.contact-us {
    padding: 100px 0;
}

.contact-details {
    display: flex;
}

.details {
    width: 50%;
}

.details h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1;
    color: #00aba3;
}

.details h2 {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.cont {
    margin: 0 0 25px 25px
}

.cont h3 {
    font-family: 'Poppins', sans-serif;
    color: #00aba3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 5px;
}

.cont p {
    font-weight: 400;
    color: #000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin-bottom: 0px;
}

.cont a {
    color: #000;
}

.company {
    position: relative;
    padding-left: 80px;
    width: 60%;
}

.company::before {
    position: absolute;
    content: "";
    width: 54px;
    height: 50px;
    background-image: url(./images/company.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 9%;
    left: 0%;
}

.address {
    position: relative;
    padding-left: 80px;
    width: 60%;
}

.address::before {
    position: absolute;
    content: "";
    width: 54px;
    height: 50px;
    background-image: url(./images/location.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 9%;
    left: 0%;
}

.contact-name {
    position: relative;
    padding-left: 80px;
    width: 60%;
}

.contact-name::before {
    position: absolute;
    content: "";
    width: 54px;
    height: 50px;
    background-image: url(./images/support.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: -18%;
    left: 0%;
}

.mail {
    position: relative;
    padding-left: 80px;
    width: 60%;
}

.mail::before {
    position: absolute;
    content: "";
    width: 54px;
    height: 50px;
    background-image: url(./images/email.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: -2%;
    left: 0%;
}

.phone {
    position: relative;
    padding-left: 80px;
    width: 60%;
}

.phone::before {
    position: absolute;
    content: "";
    width: 54px;
    height: 50px;
    background-image: url(./images/phone-call.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 12%;
    left: 0%;
}

.map {
    width: 50%;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.small-text h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    color: #00aba3;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.model-content p {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin-bottom: 0px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.split-lft h4 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

/* media query */
/* ===== TOGGLE BUTTON ===== */
.menu-toggle div {
    background: #000;
    height: 3px;
    width: 26px;
    margin: 5px 0;
    border-radius: 3px;
    transition: all .3s ease;
}

/* when active hide bars */
.menu-toggle.active div {
    opacity: 0;
}

.menu-toggle {
    position: relative;
    display: none;
}

/* show X */
.menu-toggle.active::after {
    content: "✕";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.about-image {
    height: 736px;
}

.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .header-menu {
        padding: 0px 3%;
    }

    .hero .container,
    .contact-us .container,
    .stakeholders .container,
    .platforms .container,
    .problem .container,
    .kronosys-model .container {
        width: 100%;
        max-width: 1240px;
        margin: auto;
    }

    .hero {
        padding: 342px 0 140px;
    }

    .hero h1 {
        font-size: 57px;
        margin-bottom: 20px;
    }

    .hero strong {
        font-size: 18px;
    }

    .btns a {
        font-size: 14px;
        padding: 14px 28px;
    }

    .btns {
        gap: 10px;
    }

    .split-lft h2,
    .stakeholders h2,
    .about-wrapper h2,
    .platforms h2,
    .model-head h2,
    .details h2 {
        font-size: 42px;
    }

    .abt-box {
        padding: 25px 40px;
    }

    .about-wrapper h4 {
        font-size: 22px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 85px 0px;
    }

    .small-text h6 {
        font-size: 15px;
    }

    .card img {
        width: 54px;
        height: auto;
    }

    .card {
        padding: 20px;
    }

    .card h5,
    .stake-card h5 {
        font-size: 22px;
    }

    .card h6 {
        font-size: 18px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 18px;
    }

    .model-content h3 {
        font-size: 22px;
    }

    .stakeholder-wrap {
        gap: 25px;
    }

    .stake-card {
        padding: 20px;
    }

    .stake-card img {
        width: 54px;
        height: auto;
    }

    .phone::before,
    .mail::before,
    .contact-name::before,
    .address::before,
    .company::before {
        width: 54px;
        height: 54px;
    }

    .ftr-nav ul li a {
        font-size: 15px;
    }

    .ftr-contact {
        padding: 25px 0px 25px;
    }

    .google,
    .instagram,
    .facebook,
    .twitter {
        transform: scale(0.9);
        margin: 0 -2px;
    }

    .about-image {
        height: 680px;
    }
}


@media (max-width: 1440px) {

    .hero .container,
    .contact-us .container,
    .stakeholders .container,
    .platforms .container,
    .problem .container,
    .kronosys-model .container,
    .ftr-contact .container {
        width: 100%;
        max-width: 1140px;
        margin: auto;
    }

    .site-header {
        padding: 17px 0;
    }

    .hero {
        padding: 305px 0 131px;
    }

    .hero h1 {
        font-size: 54px;
        margin-bottom: 16px;
    }

    .hero strong {
        font-size: 16px;
    }

    .btns a {
        font-size: 13px;
        padding: 12px 20px;
    }

    .btns {
        gap: 7px;
    }

    .split-lft h2,
    .stakeholders h2,
    .about-wrapper h2,
    .platforms h2,
    .model-head h2,
    .details h2 {
        font-size: 40px;
    }

    .split-lft p,
    .ftr-nav ul li a,
    .cont p,
    .stake-card p,
    .model-content p,
    .card p,
    .about-wrapper p {
        font-size: 15px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 17px;
    }

    .abt-box {
        padding: 25px 30px;
    }

    .about-wrapper h4 {
        font-size: 18px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 70px 0px;
    }

    .phone::before,
    .mail::before,
    .contact-name::before,
    .address::before,
    .company::before {
        height: 46px;
        width: 46px;
    }

    .phone,
    .mail,
    .contact-name,
    .address,
    .company {
        padding-left: 65px;
    }

    .card h5,
    .stake-card h5 {
        font-size: 20px;
    }

    .card h6 {
        font-size: 16px;
    }

    .model-content h3 {
        font-size: 18px;
    }

    .small-text h6 {
        font-size: 14px;
    }

    .card img {
        width: 46px;
        height: auto;
    }

    .cards {
        gap: 20px;
    }

    .card {
        padding: 18px;
    }

    .stake-card img {
        width: 46px;
        height: auto;
    }

    .stake-card {
        padding: 18px;
    }

    .ftr-nav {
        width: 38%;
    }

    .nav ul li {
        margin: 0 18px;
    }

    .ftr-contact {
        padding: 20px 0px 20px;
    }

    .about-image {
        height: 650px;
    }

    .model-img img {
        width: 100%;
        height: 100%;
    }
}

@media(max-width:1366px) {

    .hero .container,
    .contact-us .container,
    .stakeholders .container,
    .platforms .container,
    .problem .container,
    .kronosys-model .container,
    .ftr-contact .container {
        width: 100%;
        max-width: 1060px;
        margin: auto;
    }

    .nav ul li a {
        font-size: 14px;
    }

    .site-header {
        padding: 15px 0;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero strong {
        font-size: 16px;
    }

    .btns a {
        font-size: 14px;
        padding: 14px 20px;
    }

    .btns {
        gap: 10px;
    }

    .split-lft h2,
    .stakeholders h2,
    .about-wrapper h2,
    .platforms h2,
    .model-head h2,
    .details h2 {
        font-size: 35px;
    }

    .split-lft p,
    .ftr-nav ul li a,
    .cont p,
    .stake-card p,
    .model-content p,
    .card p,
    .about-wrapper p {
        font-size: 14px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 16px;
    }

    .abt-box {
        padding: 25px 35px;
    }

    .about-wrapper h4 {
        font-size: 17px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 65px 0px;
    }

    .phone::before,
    .mail::before,
    .contact-name::before,
    .address::before,
    .company::before {
        height: 40px;
        width: 40px;
    }

    .phone,
    .mail,
    .contact-name,
    .address,
    .company {
        padding-left: 65px;
    }

    .card h5,
    .stake-card h5 {
        font-size: 18px;
    }

    .card h6 {
        font-size: 16px;
    }

    .model-content h3 {
        font-size: 18px;
    }

    .small-text h6 {
        font-size: 13px;
    }

    .cards {
        gap: 18px;
    }

    .card img {
        width: 40px;
        height: auto;
    }

    .card {
        padding: 15px;
    }

    .stake-card {
        padding: 15px;
    }

    .stake-card img {
        width: 40px;
        height: auto;
    }

    .cont h3 {
        font-size: 15px;
    }

    .ftr-nav {
        width: 38%;
    }

    .google,
    .instagram,
    .facebook,
    .twitter {
        transform: scale(0.7);
        margin: 0 -7px;
    }

    .model-img img {
        width: 100%;
        height: 100%;
    }

    .ftr-contact {
        padding: 15px 0px;
    }

    .about-image {
        height: 600px;
    }
}

@media(max-width:1240px) {

    .hero .container,
    .contact-us .container,
    .stakeholders .container,
    .platforms .container,
    .problem .container,
    .kronosys-model .container,
    .ftr-contact .container {
        width: 100%;
        max-width: 970px;
        margin: auto;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero {
        padding: 249px 0 130px;
    }

    .hero strong {
        font-size: 15px;
    }

    .btns a {
        font-size: 13px;
        padding: 11px 15px;
    }

    .split-lft h2,
    .stakeholders h2,
    .about-wrapper h2,
    .platforms h2,
    .model-head h2,
    .details h2 {
        font-size: 30px;
    }

    .split-lft p,
    .ftr-nav ul li a,
    .cont p,
    .stake-card p,
    .model-content p,
    .card p,
    .about-wrapper p {
        font-size: 13px;
    }

    .about-wrapper h4 {
        font-size: 15px;
    }

    .abt-box {
        padding: 21px 25px;
    }

    .small-text h6 {
        font-size: 12px;
    }

    .card img {
        width: 35px;
        height: auto;
    }

    .card h5,
    .stake-card h5 {
        font-size: 16px;
    }

    .card h6 {
        font-size: 14px;
    }

    .cards {
        gap: 15px;
    }

    .card,
    .stake-card {
        padding: 12px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 15px;
    }

    .model-content h3 {
        font-size: 16px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 60px 0px;
    }

    .stake-card img {
        width: 35px;
        height: auto;
    }

    .phone::before,
    .mail::before,
    .contact-name::before,
    .address::before,
    .company::before {
        height: 35px;
        width: 35px;
    }

    .phone,
    .mail,
    .contact-name,
    .address,
    .company {
        padding-left: 55px;
    }

    .cont h3 {
        font-size: 14px;
    }

    .ftr-nav {
        width: 39%;
    }

    .copyright {
        width: 21%;
    }

    .model-img img {
        width: 100%;
        height: 100%;
    }

    .split-rgt img {
        width: 100%;
        height: auto;
    }

    .about-image {
        height: 560px;
    }

    .nav ul li {
        margin: 0px 16px;
    }
}

@media(max-width:1040px) {

    .hero .container,
    .contact-us .container,
    .stakeholders .container,
    .platforms .container,
    .problem .container,
    .kronosys-model .container,
    .ftr-contact .container {
        width: 100%;
        max-width: 900px;
        margin: auto;
    }

    .nav ul li a {
        font-size: 12px;
    }

    .nav ul li {
        margin: 0 18px;
    }

    .logo img {
        width: 80%;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero {
        padding: 230px 0 96px;
    }

    .hero strong {
        font-size: 14px;
    }

    .btns a {
        font-size: 12px;
        padding: 10px 12px;
    }

    .split-rgt img {
        width: 100%;
        height: auto;
    }

    .split-lft h2,
    .stakeholders h2,
    .about-wrapper h2,
    .platforms h2,
    .model-head h2,
    .details h2 {
        font-size: 26px;
    }

    .split-lft p,
    .ftr-nav ul li a,
    .cont p,
    .stake-card p,
    .model-content p,
    .card p,
    .about-wrapper p {
        font-size: 12px;
    }

    .about-wrapper h4 {
        font-size: 14px;
    }

    .abt-box {
        padding: 21px 16px;
    }

    .small-text h6 {
        font-size: 12px;
    }

    .card img {
        width: 30px;
        height: auto;
    }

    .card h5,
    .stake-card h5 {
        font-size: 14px;
    }

    .card h6 {
        font-size: 12px;
    }

    .cards {
        gap: 10px;
    }

    .card,
    .stake-card {
        padding: 10px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 14px;
    }

    .model-content h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 55px 0px;
    }

    .stake-card img {
        width: 30px;
        height: auto;
    }

    .phone::before,
    .mail::before,
    .contact-name::before,
    .address::before,
    .company::before {
        height: 30px;
        width: 30px;
    }

    .phone,
    .mail,
    .contact-name,
    .address,
    .company {
        padding-left: 50px;
    }

    .stake-card p {
        padding: 0 20px;
    }

    .cont h3 {
        font-size: 13px;
    }

    .ftr-nav {
        width: 39%;
    }

    .copyright {
        width: 23%;
        font-size: 12px;
    }

    .model-img img {
        width: 100%;
        height: 100%;
    }

    .model-content {
        padding: 20px 25px;
    }

    .google,
    .instagram,
    .facebook,
    .twitter {
        transform: scale(0.6);
        margin: 0 -7px;
    }

    .ftr-contact {
        padding: 12px 0px;
    }

    .about-image {
        height: 490px;
    }

}


@media(max-width:991px) {

    .hero .container,
    .contact-us .container,
    .stakeholders .container,
    .platforms .container,
    .about-kronosys .container,
    .problem .container,
    .kronosys-model .container {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 0 20px;
    }

    .nav ul li a {
        font-size: 14px;
    }

    .site-header {
        padding: 15px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero strong {
        font-size: 14px;
    }

    .hero strong br {
        display: none;
    }

    .btns a {
        font-size:13px;
        padding: 12px 20px;
    }

    .btns {
        gap: 7px;
        margin-top: 10px;
    }

    .split {
        flex-direction: column-reverse;
    }

    .split-rgt {
        width: 100%;
    }

    .split-lft {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .split-lft h2,
    .stakeholders h2,
    .about-wrapper h2,
    .platforms h2,
    .model-head h2,
    .details h2 {
        font-size: 30px;
    }

    .split-lft p,
    .ftr-nav ul li a,
    .cont p,
    .stake-card p,
    .model-content p,
    .card p,
    .about-wrapper p {
        font-size: 14px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }
    .abt-box {
        padding: 25px 35px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 15px !important;
    }
    .about-wrapper h4 {
        font-size: 20px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 55px 0px;
    }

    .phone::before,
    .mail::before,
    .contact-name::before,
    .address::before,
    .company::before {
        height: 45px;
        width: 46px;
    }

    .phone,
    .mail,
    .contact-name,
    .address,
    .company {
        padding-left: 65px;
    }

    .card h5,
    .stake-card h5 {
        font-size: 18px;
    }

    .card h6 {
        font-size: 16px;
    }

    .model-content h3 {
        font-size: 18px;
    }

    .small-text h6 {
        font-size: 15px;
    }

    .cards {
        gap: 18px
    }

    .stakeholder-wrap {
        gap: 15px;
    }

    .model-wrapper {
        flex-wrap: wrap;
    }

    .contact-content {
        justify-content: center;
        flex-direction: column;
    }

    .ftr-nav {
        margin-bottom: 10px;
        width: 45%;
    }

    .ftr-contact {
        padding: 20px 0px;
    }

    .social-icon {
        margin-bottom: 10px;
    }

    .copyright {
        width: 23%;
    }

    /* ===== HEADER ===== */

    .header-menu {
        align-items: center;
        position: relative;
        background: #fff;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: all .3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    }

    .nav.active {
        max-height: 400px;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav ul li {
        margin: 12px 0;
    }

    .nav ul li a {
        font-size: 14px;
    }

    .logo img {
        max-width: 150px;
    }

    /* ===== HERO ===== */
    .hero {
        padding: 116px 0 55px;
    }

    .header-content {
        width: 100%;
        max-width: 470px;
    }
    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero strong {
        font-size: 14px;
    }



    /* ===== SPLIT ===== */


    .split-lft,
    .split-rgt {
        width: 100%;
        text-align: center;
    }

    .split-rgt img {
        width: 100%;
        height: auto;
        max-width: 320px;
    }
     .split-lft h2, .stakeholders h2, .about-wrapper h2, .platforms h2, .model-head h2, .details h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    section#about {
    padding: 0 0 30px;
}

    /* ===== ABOUT ===== */
    .about-content {
        flex-direction: column;
    }

    /* ===== CARDS ===== */
      .card, .stake-card {
        width: 100%;
        max-width: 320px;
    }

 .model-card {
        width: 100%;
        margin-bottom: 20px;
        max-width: 350px;
    }

    .stake-card {
        width: 60%;
    }

    /* ===== CONTACT ===== */
    .contact-details {
        flex-direction: column;
    }

    .details,
    .map {
        width: 60%;
        margin: 0 auto;
    }

    .map iframe {
        height: 300px;
    }

    /* ===== FOOTER ===== */
    .contact-content {
        flex-direction: column;
        gap: 10px;
    }
.ftr-nav {
    margin: 0;
}

.about-wrapper{
    width:100%;
    padding:0;
    margin:0;
}
.about-image {
    width: 100%;
    max-width: 320px;
}
    .ftr-nav,
    .social-icon,
    .copyright {
        width: 100%;
        text-align: center;
    }

    .ftr-nav ul li {
        display: block;
        margin: 8px 0;
    }

    .about-wrapper h4 {
        font-size: 16px;
    }

    .small-text h6 {
        font-size: 14px;
    }

    .platforms,
    .kronosys-model,
    .stakeholders,
    .contact-us {
        padding: 40px 0px;
    }

    .stakeholders .sub-text,
    .model-head p {
        font-size: 15px;
    }

    .company,
    .address,
    .contact-name,
    .phone {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .about-image {
        height: auto;
    }

    .platforms h2 {
        margin-bottom: 15px;
    }

    .model-head h2 {
        margin-bottom: 10px;
    }
    .model-head p, .stakeholders .sub-text {
    margin-bottom: 10px;
}

}
@media(max-width:650px) {
    .split-lft h2, .stakeholders h2, .about-wrapper h2, .platforms h2, .model-head h2, .details h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .map {
    width: 100%;
}
    .platforms, .kronosys-model, .stakeholders, .contact-us {
        padding: 30px 0px;
    }
        .hero h1 {
        font-size: 28px;}
}