* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
}

:root {
    --headercolor: rgb(3, 45, 96);
    --btn-sec-color: rgb(1, 118, 211);
    --btn-pry-color: rgb(46, 132, 74);
    --pry-bg-color: rgb(0, 39, 117);
    --pry-hd-color: white;
    --Hhovercolor: rgb(37, 127, 237);
}

#nav {
    display: flex;
    column-gap: 10rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    background-color: white;
    position: fixed;
    top: 0px;
    z-index: 1;


}

#nav #btn {
    display: none;
}

#left-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    /* color: var(--headercolor); */
}

/* #left-nav .bar {
    display: ;
} */

#left-nav ul {
    display: flex;
    color: var(--headercolor);
    font-size: x-large;
    font-weight: bolder;
    gap: 25px;
}

#left-nav ul li {
    list-style-type: none;
}

#left-nav ul li a:hover,
.contact a:hover {
    /* background-color: rebeccapurple; */
    color: var(--Hhovercolor);
}

#left-nav .more .submore {
    display: none;
}

#left-nav .more:hover .submore {
    display: flex;
    flex-direction: column;
    background-color: white;
    position: absolute;
    width: 300px;
    height: 150px;
    gap: 30px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#right-nav {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    /* font-family: Arial, Helvetica, sans-serif; */
    color: rgb(3, 45, 96);
}

#right-nav .login {
    display: flex;
    align-items: center;
    gap: 3px;
}

.login .sublog {
    display: none;
}

.login:hover .sublog {
    display: flex;
    flex-direction: column;
    background-color: white;
    position: absolute;
    width: 270px;
    height: fit-content;
    gap: 20px;
    padding: 10px;
    border-radius: 10px;
    font-size: large;
    top: 70px;
    right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.login:hover,
.globe:hover {
    color: var(--Hhovercolor);
    background-color: rgb(218, 218, 225);
    padding: 8px;
    border-radius: 20px;
}

.globe .sub-globe {
    display: none;
}

.globe .sub-globe h3 {
    color: var(--headercolor);
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 20px;
}

.globe .sub-globe p {
    font-size: large;
    margin-bottom: 10px;
}

.globe .sub-globe .Region {
    display: flex;
    justify-content: space-around;
}

.globe .sub-globe .Region .sub-region {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.globe .sub-globe .Region .vertical-line {
    height: 100%;
    display: inline-block;
    border-left: 1px solid gray;
}

.globe:hover .sub-globe {
    display: flex;
    flex-direction: column;
    gap: 50px;
    top: 90%;
    right: 20px;
    position: absolute;
    height: 380px;
    width: 700px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#right-nav i {
    font-size: x-large;
}

#right-nav button {
    border: none;
    background-color: var(--btn-pry-color);
    padding: 10px 12px;
    font-size: small;
    color: white;
    /* font-weight: bold; */
    border-radius: 3px;
}

#right-nav button:hover {
    background-color: rgb(1, 38, 1);
}

#right-nav button a {
    color: white;
    text-decoration: none;
    font-size: small;
    /* font-weight: bold; */
}

#left-nav a {
    text-decoration: none;
}

main video {
    border-radius: 50px;
}

#mainnav {
    background-color: var(--pry-bg-color);
    color: white;
    height: 40px;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 90px;
}

#mainnav a {
    color: var(--pry-hd-color);
}

#grow-section {
    background-image: url(growsection.jpg);
    background-repeat: repeat;
    height: 33rem;
    display: flex;
    justify-content: space-around;
    padding-top: 100px;
    margin-bottom: 80px;

}

#grow-section .grow-iframe {
    border-radius: 5px;
}


#grow-section .growtext {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#grow-section .growtext h1 {
    color: var(--headercolor);
    font-weight: bolder;
    font-size: 3rem;
}

#grow-section .growtext .btn1 {
    background-color: var(--btn-sec-color);
    padding: 10px 25px;
    border: none;
    font-size: large;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 20px;
}

#grow-section .growtext .btn1:hover {
    background-color: var(--headercolor);
}

#grow-section .growtext .btn2 {
    background-color: white;
    padding: 10px 25px;
    border: 2px solid rgb(1, 118, 211);
    font-size: large;
    color: rgb(1, 118, 211);
    font-weight: bold;
    border-radius: 5px;
}

#grow-section .growtext .btn2:hover {
    color: var(--headercolor);
    border: 2px solid var(--headercolor);
    background-color: rgb(239, 244, 244);
}

#workforce {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

#workforce h1 {
    color: rgb(3, 45, 96);
    font-weight: 10px;
    font-size: 2.5rem;
}

#workforce .btn1 {
    background-color: rgb(1, 118, 211);
    padding: 10px 25px;
    border: none;
    font-size: large;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 20px;
}

#workforce .btn1:hover {
    background-color: var(--headercolor);
}

#workforce .btn2 {
    background-color: white;
    padding: 10px 25px;
    border: 2px solid rgb(1, 118, 211);
    font-size: large;
    color: rgb(1, 118, 211);
    font-weight: bold;
    border-radius: 5px;
}

#workforce .btn2:hover {
    color: var(--headercolor);
    border: 2px solid var(--headercolor);
    background-color: rgb(245, 248, 248);
}

#trusted {
    height: fit-content;
    display: flex;
    flex-direction: column;
}

#trusted .trusted-text {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* margin: 30px auto; */
    padding: 0 20px;
    /* gap: 1100px; */
}

#trusted .trusted-text svg {
    width: 20px;
    height: 20px;
    fill: gray;
}

/* @keyframes marquee {
    0% {
        width: 100%;
        height: 100px;
    }

    25% {
        width: 100%;
        height: 100px;
        transform: translateX(-25%);
    }

    50% {
        width: 100%;
        height: 100px;
        transform: translateX(-50%);
        background-color: blue;
        padding: 10px;
    }

    75% {
        width: 100%;
        height: 100px;
        transform: translateX(-75%);
    }

    100% {
        width: 100%;
        height: 100px;
        transform: translateX(-100%);
        background-color: red;
    }
}

#marq {
    animation-name: marquee;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-play-state: running;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

#start-simply {
    display: flex;
    justify-content: space-around;
}

#start-simply .grow-iframe {
    border-radius: 5px;
    width: 50%;
}

.start-simply-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.start-simply-text2 .hidd {
    /* display: none; */
    /* color: rgb(3, 45, 96); */
    font-weight: 10px;
    /* font-size: 1.2rem; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0 auto;
}

.start-simply-text2 {
    margin-bottom: 40px;
    border-left: 5px solid var(--headercolor);
    padding-left: 10px;
    height: fit-content;

}

.start-simply-text2 .hidd p {
    display: none;
}

.start-simply-text2 .hidd h4:hover p {
    display: block;
}

#start-simply h2 {
    color: rgb(3, 45, 96);
    font-weight: bolder;
    font-size: 1.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#start-simply h4 {
    color: rgb(7, 78, 165);
    font-weight: 10px;
    font-size: 1.5rem;
    /* margin-bottom: 40px; */
}

.start-simply-text1 p {
    font-size: 1.3rem;
    margin: 20px auto;
}

.start-simply-text1 button {
    background-color: rgb(1, 118, 211);
    padding: 10px 25px;
    border: none;
    font-size: large;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 20px;
}

.start-simply-text1 button:hover {
    background-color: var(--headercolor);
}

.analytics-head {
    color: rgb(3, 45, 96);
    font-weight: bolder;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bolder;
    margin: 70px auto;
    width: 80%;
}

.analytics-boxmodel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 40px;
    /* justify-content: center; */
    /* align-items: center; */
    margin: 40px 50px;
    place-self: center;
}

.analytics-boxmodel>:nth-child(13) {
    grid-column: 2;
}

.analytics-boxmodel .analyticsbox {
    display: flex;
    flex-direction: column;
    gap: 45px;
    width: 280px;
    height: fit-content;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.analyticsbox h3 {
    color: var(--headercolor);
    font-weight: bolder;
    font-size: 1.6rem;
    /* text-align: center; */
    font-weight: bolder;
    width: fit-content;
}


.analyticsbox .anal-icon {
    display: flex;
    align-items: center;
    /* background-color: red; */
    padding: 20px auto;
    width: 100%;
    justify-content: space-around;
    /* overflow: hidden; */
}

.anal-icon a {
    color: var(--headercolor);
    font-weight: bolder;
}

.circle {
    width: 30%;
    height: 80px;
    background-color: white;
    border-radius: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.circle img {
    margin-top: 15px;
    margin-left: 15px;
}

#Analytics-section .btn {
    background-color: white;
    padding: 10px 25px;
    border: 2px solid rgb(1, 118, 211);
    font-size: large;
    color: rgb(1, 118, 211);
    font-weight: bold;
    border-radius: 5px;
    margin: 30px auto;
}

#Analytics-section .btn:hover {
    color: var(--headercolor);
    border: 2px solid var(--headercolor);
    background-color: rgb(245, 248, 248);
}

.colorcard {
    position: absolute;
    width: 200px;
    height: 200px;
    border-top-left-radius: 60%;
    background-color: bisque;
    top: 60%;
    right: -30%;
    z-index: -1;
    overflow: hidden;
    /* background-image: url(cloudy_508233-455.avif);
    background-position: center; */

}

.colorcard img {
    width: 100%;
    bottom: 0px;
    right: 35%;
    /* height: 60%; */
    position: absolute;
    filter: opacity(0.5);
}




.analytics-boxmodel2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    /* justify-content: center; */
    /* align-items: center; */
    margin: 40px 50px;
    place-self: center;
}

.analytics-boxmodel2 .analyticsbox {
    display: flex;
    flex-direction: column;
    gap: 45px;
    width: 280px;
    height: fit-content;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: -1;
    overflow: hidden;
}

#Analytics-section2 .img .btn {
    background-color: white;
    padding: 10px 25px;
    border: 2px solid rgb(1, 118, 211);
    font-size: large;
    color: rgb(1, 118, 211);
    font-weight: bold;
    border-radius: 5px;
    margin: 30px auto;
}

#Analytics-section2 .img .btn:hover {
    color: var(--headercolor);
    border: 2px solid var(--headercolor);
    background-color: rgb(245, 248, 248);
}

#Analytics-section2 .img img {
    width: 100%;
}

#sales-section .sub-sales {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    margin: 30px 25px;

}

#sales-section .sub-sales .sales-iframe {
    border-radius: 10px;
    width: 90%;
}


#sales-section .sub-sales .salestexttext p {
    line-height: 15px;
}

#sales-section .sub-sales .salestext h1 {
    color: var(--headercolor);
    font-weight: bolder;
    font-size: 3rem;
    margin-bottom: 20px;
}

#sales-section img {
    width: 100%;
}

#easy-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

#easy-section .easy-iframe {
    border-radius: 5px;
    width: 50%;
}

.easy-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.easy-text2 .hidd {
    /* display: none; */
    /* color: rgb(3, 45, 96); */
    font-weight: 10px;
    /* font-size: 1.2rem; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 20px auto;
}

.easy-text2 {
    margin-bottom: 40px;
    border-left: 5px solid var(--headercolor);
    height: fit-content;
}

.easy-text2 .hidd p {
    display: none;
}

.easy-text2 .hidd h4:hover+p {
    display: block;
    margin: 10px auto;
    position: absolute;
}

#easy-section h2 {
    color: rgb(3, 45, 96);
    font-weight: bolder;
    font-size: 1.9rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#easy-section h4 {
    color: rgb(7, 78, 165);
    font-weight: 10px;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.easy-text1 p {
    font-size: 1.5rem;
    margin: 30px auto;
}

.easy-text1 button {
    background-color: rgb(1, 118, 211);
    padding: 10px 25px;
    border: none;
    font-size: large;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 20px;
}

.easy-text1 button:hover {
    background-color: var(--headercolor);
}

header {
    text-align: center;
    margin: 40px auto;
    color: var(--headercolor);
    font-weight: bolder;
    font-size: 2rem;
}

#integrate {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    margin: 30px auto;
    width: 100%;
}

#integrate .text1,
.text2,
.text3 {
    width: 55%;
}

#integrate h1 {
    color: rgb(3, 45, 96);
    font-weight: 10px;
    font-size: 3rem;
}

#integrate p {
    font-size: x-large;
}

#integrate h3 {
    margin: 30px auto;
}

#integrate .text1 .btn button {
    background-color: rgb(1, 118, 211);
    padding: 10px 20px;
    border: none;
    font-size: large;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin: 20px auto;
}

#integrate .text1 .btn button:hover {
    background-color: var(--headercolor);
}

#integrate img {
    width: 100%;
}

#integrate .text2 .img {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#integrate .text2 .img img {
    width: 55%;
}

#card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 70px auto;
    background-image: url(n-up-flex-learn-as-you-grow-bg_b23ff1.jpg);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: contain;
    height: 220vh;
}

#card-section .card {
    width: 45%;
    height: 100vh;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
    position: relative;
    overflow: hidden;
}

#card-section .card img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 40%;
    filter: none;
    transition-timing-function: ease out;
    transition: width 1s, height 1s, filter 1s;
}

#card-section .card:hover img {
    width: 110%;
    height: 55%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* position: absolute; */
    filter: brightness(0.6);
}

#card-section .card .txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px 30px;
}

#card-section .card .txt p {
    background-color: rgb(215, 215, 242);
    width: fit-content;
    padding: 5px 7px;
    border-radius: 20px;
    margin-top: 20px;
}

#card-section .card .txt a {
    font-size: larger;
    font-weight: bolder;
}

#card-section h2 {
    color: var(--headercolor);
    font-weight: 10px;
    font-size: 1.8rem;
}

#card-section h1 {
    color: var(--headercolor);
    font-weight: 10px;
    font-size: 3rem;
    margin-top: 50px;
}

#card-section a {
    color: var(--headercolor);
    font-weight: 10px;
    font-size: 1rem;
}

#automation-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

#automation-section h1 {
    color: var(--headercolor);
    font-weight: 10px;
    font-size: 2.6rem;
    margin-top: 40px;
    text-align: center;
}

#automation-section p {
    font-weight: 10px;
    font-size: 1.1rem;
    margin: 40px auto;
}

#automation-section a {
    color: var(--headercolor);
    font-weight: bolder;
    font-size: 1.2rem;
    margin: 30px auto;
}

#automation-section .autocard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: auto 40px;
}

#automation-section .autocard .percent-card img {
    width: 100%;
    border-radius: 10px;
}

#automation-section .btn {
    background-color: white;
    padding: 10px 25px;
    border: 2px solid rgb(1, 118, 211);
    font-size: large;
    color: rgb(1, 118, 211);
    font-weight: bold;
    border-radius: 5px;
    margin: 50px auto;
}

#automation-section .btn:hover {
    color: var(--headercolor);
    border: 2px solid var(--headercolor);
    background-color: rgb(245, 248, 248);
}

#lastcard-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 30px;
}

#lastcard-section .image .txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#lastcard-section .image .txt a {
    color: var(--headercolor);
    font-weight: bolder;
    font-size: larger;
}

#lastcard-section img {
    width: 100%;
    border-radius: 10px;
}

#lastcard-section h2 {
    color: var(--headercolor);
    font-weight: 10px;
    font-size: 1.5rem;
    margin-top: 20px;
}












footer {
    width: 100%;
    margin-top: 70px;
}

#top {
    background-color: white;
    width: 100%;
    height: 300px;
    text-align: center;
    color: rgb(3, 45, 96);
    font-size: x-large;
}

#top button {
    background-color: rgb(1, 118, 211);
    padding: 15px 35px;
    border: none;
    font-size: large;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 30px;
}

#top button:hover {
    background-color: var(--headercolor);
}

#down {
    height: 450px;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

#first {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: larger
}

#icon {
    display: flex;
    gap: 20px;
    font-size: 40px;
}

#down .sec {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 15px;
}

#down .sec a {
    text-decoration: none;
}



#footer2 {
    width: 100%;
    height: 100px;
    background-color: rgb(3, 46, 97);
    text-align: center;
    padding-top: 20px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    position: relative;

}

#footer2_opt {
    display: flex;
    align-items: center;
}

.ftGlobe .sub-globe {
    display: none;
}

.ftGlobe .sub-globe h3 {
    color: var(--headercolor);
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 10px 20px;
    text-align: justify;
}

.ftGlobe .sub-globe p {
    font-size: large;
    margin-bottom: 10px;
}

.ftGlobe .sub-globe .Region {
    display: flex;
    justify-content: space-around;
}

.ftGlobe .sub-globe .Region .sub-region {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftGlobe .sub-globe .Region .vertical-line {
    height: 100%;
    display: inline-block;
    border-left: 1px solid gray;
}

.ftGlobe:hover .sub-globe {
    display: flex;
    flex-direction: column;
    gap: 10px;
    bottom: 90%;
    left: 20px;
    position: absolute;
    height: 380px;
    width: 700px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#footer2_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    line-height: 20px;
}

#footer2_text p a:hover {
    color: var(--Hhovercolor);
}

#footer2_nav {
    display: flex;
    gap: 30px;
}

#footer2_nav a {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

#footer2_nav a:hover {
    color: var(--Hhovercolor);
}







/* .marq {
    position: relative;
    max-width: 100%;
    height: 100px;
    overflow: scroll;
}

.slide-fade img {
    height: 40px;
    width: 40px;
} */


/*@media(width>=1200px) {
    .analytics-head {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.7rem;
        text-align: center;
        font-weight: bolder;
        margin: 70px auto;
    }

    .analytics-boxmodel {
        display: grid;
        grid-template-columns: repeat(4, auto);
        grid-template-rows: repeat(4, 1fr);
        gap: 40px;
        */
/* justify-content: center; */
/* align-items: center; */
/* margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel:nth-last-child(-n+2) {
        grid-column: span 2;
        margin: auto;
    }

    .analytics-boxmodel .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding: 40px 35px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        background-image: url(cloudy_508233-455.avif);
        background-position-y: 185%;
    }

    .analyticsbox h3 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.6rem; */
/* text-align: center; */
/* font-weight: bolder;
        width: fit-content;
    }

    .analyticsbox .anal-icon {
        display: flex;
        align-items: center;
        background-color: red;
        overflow: hidden;
        padding: 20px auto;
        width: 100%;
        height: 200px;
        justify-content: space-around;
    }

    .anal-icon a {
        color: rgb(3, 45, 96);
        font-size: large;
        font-weight: bolder;
        background-color: bisque;
    }

    .circle {
        width: 30%;
        height: 70px;
        background-color: white;
        border-radius: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    #Analytics-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }
} */






@media (width>1200px) {
    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    :root {
        --headercolor: rgb(3, 45, 96);
        --btn-sec-color: rgb(1, 118, 211);
        --btn-pry-color: rgb(46, 132, 74);
        --pry-bg-color: rgb(0, 39, 117);
        --pry-hd-color: white;
        --Hhovercolor: rgb(37, 127, 237);
    }

    #nav {
        display: flex;
        column-gap: 10rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 90px;
        background-color: white;
        position: fixed;
        top: 0px;
        z-index: 1;


    }

    #nav #btn {
        display: none;
    }

    #nav .bar {
        display: none;
    }

    #left-nav {
        display: flex;
        gap: 25px;
        align-items: center;
        font-family: Arial, Helvetica, sans-serif;
        /* color: var(--headercolor); */
    }

    #left-nav ul {
        display: flex;
        color: var(--headercolor);
        font-size: x-large;
        font-weight: bolder;
        gap: 25px;
    }

    #left-nav ul li {
        list-style-type: none;
    }

    #left-nav ul li p {
        display: none;
    }

    #left-nav ul .small {
        display: none;
    }

    #prod-list {
        display: none;
    }

    ul li .sublist {
        display: none;
    }

    #left-nav ul li a:hover,
    .contact a:hover {
        /* background-color: rebeccapurple; */
        color: var(--Hhovercolor);
    }

    #left-nav .more .submore {
        display: none;
    }

    #left-nav .more:hover .submore {
        display: flex;
        flex-direction: column;
        background-color: white;
        position: absolute;
        width: 300px;
        height: 150px;
        gap: 30px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #right-nav {
        display: flex;
        gap: 25px;
        justify-content: center;
        align-items: center;
        /* font-family: Arial, Helvetica, sans-serif; */
        color: rgb(3, 45, 96);
    }

    #right-nav .login {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .login .sublog {
        display: none;
    }

    .login:hover .sublog {
        display: flex;
        flex-direction: column;
        background-color: white;
        position: absolute;
        width: 270px;
        height: fit-content;
        gap: 20px;
        padding: 10px;
        border-radius: 10px;
        font-size: large;
        top: 70px;
        right: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    }

    .login:hover,
    .globe:hover {
        color: var(--Hhovercolor);
        background-color: rgb(218, 218, 225);
        padding: 8px;
        border-radius: 20px;
    }

    .globe .sub-globe {
        display: none;
    }

    .globe .sub-globe h3 {
        color: var(--headercolor);
        font-size: large;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 10px 20px;
    }

    .globe .sub-globe p {
        font-size: large;
        margin-bottom: 10px;
    }

    .globe .sub-globe .Region {
        display: flex;
        justify-content: space-around;
    }

    .globe .sub-globe .Region .sub-region {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .globe .sub-globe .Region .vertical-line {
        height: 100%;
        display: inline-block;
        border-left: 1px solid gray;
    }

    .globe:hover .sub-globe {
        display: flex;
        flex-direction: column;
        gap: 50px;
        top: 90%;
        right: 20px;
        position: absolute;
        height: 380px;
        width: 700px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #right-nav i {
        font-size: x-large;
    }

    #right-nav button {
        border: none;
        background-color: var(--btn-pry-color);
        padding: 10px 12px;
        font-size: small;
        color: white;
        font-weight: bold;
        border-radius: 3px;
    }

    #right-nav button:hover {
        background-color: rgb(1, 38, 1);
    }

    #right-nav button a {
        color: white;
        text-decoration: none;
        font-size: large;
        /* font-weight: bold; */
    }

    #left-nav a {
        text-decoration: none;
    }

    main video {
        border-radius: 50px;
    }

    #mainnav {
        background-color: var(--pry-bg-color);
        color: white;
        height: 40px;
        font-weight: bold;
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 90px;
    }

    #mainnav a {
        color: var(--pry-hd-color);
    }

    #grow-section {
        background-image: url(growsection.jpg);
        background-repeat: repeat;
        height: 33rem;
        display: flex;
        justify-content: space-around;
        padding-top: 100px;
        margin-bottom: 80px;

    }

    #grow-section .grow-iframe {
        border-radius: 5px;
    }


    #grow-section .growtext {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #grow-section .growtext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 4rem;
    }

    #grow-section .growtext .btn1 {
        background-color: var(--btn-sec-color);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    #grow-section .growtext .btn1:hover {
        background-color: var(--headercolor);
    }

    #grow-section .growtext .btn2 {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
    }

    #grow-section .growtext .btn2:hover {
        color: var(--headercolor);
        border: 2px solid var(--headercolor);
        background-color: rgb(239, 244, 244);
    }

    #workforce {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    #workforce h1 {
        color: rgb(3, 45, 96);
        font-weight: 10px;
        font-size: 3rem;
    }

    #workforce .btn1 {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    #workforce .btn1:hover {
        background-color: var(--headercolor);
    }

    #workforce .btn2 {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
    }

    #workforce .btn2:hover {
        color: var(--headercolor);
        border: 2px solid var(--headercolor);
        background-color: rgb(245, 248, 248);
    }

    #trusted {
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    #trusted .trusted-text {
        display: flex;
        justify-content: space-between;
        /* align-items: center; */
        /* margin: 30px auto; */
        padding: 0 20px;
        /* gap: 1100px; */
    }

    #trusted .trusted-text svg {
        width: 20px;
        height: 20px;
        fill: gray;
    }

    /* @keyframes marquee {
        0% {
            width: 100%;
            height: 100px;
        }
    
        25% {
            width: 100%;
            height: 100px;
            transform: translateX(-25%);
        }
    
        50% {
            width: 100%;
            height: 100px;
            transform: translateX(-50%);
            background-color: blue;
            padding: 10px;
        }
    
        75% {
            width: 100%;
            height: 100px;
            transform: translateX(-75%);
        }
    
        100% {
            width: 100%;
            height: 100px;
            transform: translateX(-100%);
            background-color: red;
        }
    }
    
    #marq {
        animation-name: marquee;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-play-state: running;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    } */

    #start-simply {
        display: flex;
        justify-content: space-around;
    }

    #start-simply .grow-iframe {
        border-radius: 5px;
        width: 50%;
    }

    .start-simply-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .start-simply-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        /* margin: 20px; */
        /* background-color: red; */
        width: 100%;

    }

    .start-simply-text2 .hidd i {
        display: none;
    }

    .start-simply-text2 {
        margin-bottom: 40px;
        border-left: 5px solid var(--headercolor);
        padding-left: 10px;
        height: fit-content;

    }

    .start-simply-text2 .hidd p {
        display: none;
    }

    .start-simply-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #start-simply h2 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.5rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #start-simply h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .start-simply-text1 p {
        font-size: 1.3rem;
        margin: 20px auto;
    }

    .start-simply-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    .start-simply-text1 button:hover {
        background-color: var(--headercolor);
    }

    .analytics-head {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.7rem;
        text-align: center;
        font-weight: bolder;
        margin: 70px auto;
        width: 80%;
    }

    .analytics-boxmodel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel>:nth-child(13) {
        grid-column: 2;
    }

    .analytics-boxmodel .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    .analyticsbox h3 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 1.6rem;
        /* text-align: center; */
        font-weight: bolder;
        width: fit-content;
    }


    .analyticsbox .anal-icon {
        display: flex;
        align-items: center;
        /* background-color: red; */
        padding: 20px auto;
        width: 100%;
        justify-content: space-around;
        /* overflow: hidden; */
    }

    .anal-icon a {
        color: var(--headercolor);
        font-weight: bolder;
    }

    .circle {
        width: 30%;
        height: 80px;
        background-color: white;
        border-radius: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .circle img {
        margin-top: 15px;
        margin-left: 15px;
    }

    #Analytics-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }

    #Analytics-section .btn:hover {
        color: var(--headercolor);
        border: 2px solid var(--headercolor);
        background-color: rgb(245, 248, 248);
    }

    .colorcard {
        position: absolute;
        width: 200px;
        height: 200px;
        border-top-left-radius: 60%;
        background-color: bisque;
        top: 60%;
        right: -30%;
        z-index: -1;
        overflow: hidden;
        /* background-image: url(cloudy_508233-455.avif);
        background-position: center; */

    }

    .colorcard img {
        width: 50%;
        top: 20%;
        height: 50%;
        position: absolute;
    }




    .analytics-boxmodel2 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel2 .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    #Analytics-section2 .img .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }

    #Analytics-section2 .img .btn:hover {
        color: var(--headercolor);
        border: 2px solid var(--headercolor);
        background-color: rgb(245, 248, 248);
    }

    #Analytics-section2 .img img {
        width: 100%;
    }

    #sales-section .sub-sales {
        display: grid;
        grid-template-columns: auto auto;
        gap: 20px;
        margin: 30px 25px;

    }

    #sales-section .sub-sales .sales-iframe {
        border-radius: 10px;
        width: 90%;
    }


    #sales-section .sub-sales .salestexttext p {
        line-height: 15px;
    }

    #sales-section .sub-sales .salestext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 3rem;
        margin-bottom: 20px;
    }

    #sales-section img {
        width: 100%;
    }

    #easy-section {
        display: flex;
        justify-content: space-around;
        margin-bottom: 30px;
    }

    #easy-section .easy-iframe {
        border-radius: 5px;
        width: 50%;
    }

    .easy-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .easy-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
    }

    .easy-text2 {
        margin-bottom: 40px;
        border-left: 5px solid var(--headercolor);
        height: fit-content;
    }

    .easy-text2 .hidd p {
        display: none;
    }

    .easy-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #easy-section h2 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.9rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #easy-section h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .easy-text1 p {
        font-size: 1.5rem;
        margin: 30px auto;
    }

    .easy-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    .easy-text1 button:hover {
        background-color: var(--headercolor);
    }

    header {
        text-align: center;
        margin: 40px auto;
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2rem;
    }

    #integrate {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin: 30px auto;
        width: 100%;
    }

    #integrate .text1,
    .text2,
    .text3 {
        width: 55%;
    }

    #integrate h1 {
        color: rgb(3, 45, 96);
        font-weight: 10px;
        font-size: 3rem;
    }

    #integrate p {
        font-size: x-large;
    }

    #integrate h3 {
        margin: 30px auto;
    }

    #integrate .text1 .btn button {
        background-color: rgb(1, 118, 211);
        padding: 10px 20px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin: 20px auto;
    }

    #integrate .text1 .btn button:hover {
        background-color: var(--headercolor);
    }

    #integrate img {
        width: 100%;
    }

    #integrate .text2 .img {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    #integrate .text2 .img img {
        width: 55%;
    }

    #card-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 70px auto;
        background-image: url(n-up-flex-learn-as-you-grow-bg_b23ff1.jpg);
        background-repeat: no-repeat;
        background-position: 0% 100%;
        background-size: contain;
        height: 220vh;
    }

    #card-section .card {
        width: 45%;
        height: 100vh;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        /* gap: 40px; */
        position: relative;
        overflow: hidden;
    }

    #card-section .card img {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        height: 40%;
        filter: none;
        transition-timing-function: ease out;
        transition: width 1s, height 1s, filter 1s;
    }

    #card-section .card:hover img {
        width: 110%;
        height: 55%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        /* position: absolute; */
        filter: brightness(0.6);
    }

    #card-section .card .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px 30px;
    }

    #card-section .card .txt p {
        background-color: rgb(215, 215, 242);
        width: fit-content;
        padding: 5px 7px;
        border-radius: 20px;
        margin-top: 20px;
    }

    #card-section .card .txt a {
        font-size: larger;
        font-weight: bolder;
    }

    #card-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
    }

    #card-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3rem;
        margin-top: 50px;
    }

    #card-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1rem;
    }

    #automation-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    #automation-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 2.6rem;
        margin-top: 40px;
        text-align: center;
    }

    #automation-section p {
        font-weight: 10px;
        font-size: 1.1rem;
        margin: 40px auto;
    }

    #automation-section a {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 1.2rem;
        margin: 30px auto;
    }

    #automation-section .autocard {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: auto 40px;
    }

    #automation-section .autocard .percent-card img {
        width: 100%;
        border-radius: 10px;
    }

    #automation-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 50px auto;
    }

    #automation-section .btn:hover {
        color: var(--headercolor);
        border: 2px solid var(--headercolor);
        background-color: rgb(245, 248, 248);
    }

    #lastcard-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 40px 30px;
    }

    #lastcard-section .image .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #lastcard-section .image .txt a {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: larger;
    }

    #lastcard-section img {
        width: 100%;
        border-radius: 10px;
    }

    #lastcard-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-top: 20px;
    }












    footer {
        width: 100%;
        margin-top: 70px;
    }

    #top {
        background-color: white;
        width: 100%;
        height: 300px;
        text-align: center;
        color: rgb(3, 45, 96);
        font-size: x-large;
    }

    #top button {
        background-color: rgb(1, 118, 211);
        padding: 15px 35px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-top: 30px;
    }

    #top button:hover {
        background-color: var(--headercolor);
    }

    #down {
        height: 450px;
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    #first {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: larger
    }

    #icon {
        display: flex;
        gap: 20px;
        font-size: 40px;
    }

    #down .sec {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: 15px;
    }

    #down .sec a {
        text-decoration: none;
    }



    #footer2 {
        width: 100%;
        height: 200px;
        background-color: rgb(3, 46, 97);
        text-align: center;
        padding-top: 20px;
        color: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        position: relative;

    }

    #footer2_opt {
        display: flex;
        align-items: center;
    }

    .ftGlobe .sub-globe {
        display: none;
    }

    .ftGlobe .sub-globe h3 {
        color: var(--headercolor);
        font-size: large;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 10px 20px;
        text-align: justify;
    }

    .ftGlobe .sub-globe p {
        font-size: large;
        margin-bottom: 10px;
    }

    .ftGlobe .sub-globe .Region {
        display: flex;
        justify-content: space-around;
    }

    .ftGlobe .sub-globe .Region .sub-region {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .ftGlobe .sub-globe .Region .vertical-line {
        height: 100%;
        display: inline-block;
        border-left: 1px solid gray;
    }

    .ftGlobe:hover .sub-globe {
        display: flex;
        flex-direction: column;
        gap: 10px;
        bottom: 90%;
        left: 20px;
        position: absolute;
        height: 380px;
        width: 700px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #footer2_text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
        line-height: 20px;
    }

    #footer2_text p a:hover {
        color: var(--Hhovercolor);
    }

    #footer2_nav {
        display: flex;
        gap: 30px;
    }

    #footer2_nav a {
        color: white;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    #footer2_nav a:hover {
        color: var(--Hhovercolor);
    }
}

@media(width<1200px) {
    #nav {
        display: flex;
        column-gap: 1rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 90px;
        background-color: white;
        padding: 0 10px;
        position: fixed;
        top: 0px;
        z-index: 1;
    }

    ul {
        background: white;
        position: absolute;
        /* box-shadow: 6px 6px #888888; */
        display: flex;
        flex-direction: column;
        gap: 70px;
        height: 100vh;
        width: 50%;
        padding-top: 5px;
        left: -100%;
        transition: all .5s;
        top: 65px;

    }

    #left-nav ul li a {
        align-content: start;
        font-size: 25px;
    }

    #left-nav ul li {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }

    .number {
        position: absolute;
        top: 91%;
        left: 90px;
    }

    #left-nav #btn {
        display: none;
    }

    #left-nav .bar {
        float: right;
        /* color: white; */
        font-size: 25px;
    }

    #btn:checked~ul {
        left: 0;
    }

    #right-nav button {
        border: none;
        background-color: var(--btn-pry-color);
        padding: 8px 15px;
        font-size: larger;
        color: white;
        font-weight: bold;
        border-radius: 3px;
    }

    /* #left-nav ul li {
        display: none;
    } */

    #right-nav .contact,
    .globe,
    .login,
    .login-name {
        display: none;
    }

    #mainnav {
        background-color: var(--pry-bg-color);
        color: white;
        height: 60px;
        padding: 10px;
        width: 100%;
        font-weight: bold;
        font-size: 17px;
        display: flex;
        /* flex-direction: column; */
        justify-content: start;
        margin-top: 90px;
    }

    #mainnav a {
        color: gray;
    }

    #grow-section {
        background-image: url(growsection.jpg);
        background-repeat: no-repeat;
        height: fit-content;
        display: flex;
        margin: 20px;
        font-size: 1.5 rem;
        justify-content: center;
        align-items: center;
    }

    #grow-section p {
        font-size: larger;
    }

    #grow-section .grow-iframe {
        border-radius: 5px;
        margin-bottom: 20px;
        width: 50%;
    }


    #grow-section .growtext {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #grow-section .growtext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 3rem;
    }

    #grow-section .growtext .btn {
        display: flex;
        gap: 30px;
        margin-bottom: 20px;
    }

    #grow-section .growtext .btn1 {
        background-color: var(--btn-sec-color);
        /* width: 100%; */
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #grow-section .growtext .btn2 {
        background-color: white;
        /* width: 100%; */
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
    }


    #workforce {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding: 10px;
        margin-bottom: 30px;
        font-size: 1.5 rem;
    }

    #workforce h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 3rem;
    }

    #workforcce .btn {
        display: flex;
        margin-bottom: 20px;
    }

    #workforce .btn1 {
        background-color: rgb(1, 118, 211);
        /* width: 30%; */
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #workforce .btn2 {
        background-color: white;
        /* width: 30%; */
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
    }





    #start-simply {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 10px;
    }

    #start-simply .grow-iframe {
        border-radius: 5px;
        width: 50%;
    }

    .start-simply-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 40%;
    }

    .start-simply-text1 button {
        /* width: 100%; */
    }

    .start-simply-text1 p {
        font-size: large;
    }

    .start-simply-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
        width: 100%;
        /* background-color: blue; */
    }

    .start-simply-text2 .hidd b {
        display: flex;
        justify-content: space-between;
    }

    .start-simply-text2 {
        margin-bottom: 40px;
    }

    .start-simply-text2 .hidd p {
        display: none;
    }

    .start-simply-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #start-simply h2 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #start-simply h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .start-simply-text1 p {
        font-size: 1.3rem;
        margin: 20px auto;
    }

    .start-simply-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    #analytics_section {
        width: 100%;
    }

    .analytics-head {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.7rem;
        text-align: center;
        font-weight: bolder;
        margin: 70px auto;
        width: 80%;
    }

    .analytics-boxmodel {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-template-rows: repeat(5, 1fr);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel>:nth-child(13) {
        grid-column: 1;
    }

    .analytics-boxmodel .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding: 40px 35px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
    }

    .analyticsbox h3 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.6rem;
        /* text-align: center; */
        font-weight: bolder;
        width: fit-content;
    }

    .analyticsbox .anal-icon {
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 20px auto;
        width: 100%;
        height: 200px;
        justify-content: space-around;
    }

    .anal-icon a {
        color: rgb(3, 45, 96);
        font-size: large;
        font-weight: bolder;
    }

    .circle {
        width: 30%;
        height: 70px;
        background-color: white;
        border-radius: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .circle img {
        margin-top: 15px;
        margin-left: 15px;
    }

    #Analytics-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }





    .analytics-boxmodel2 {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-template-rows: repeat(3, auto);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel2>:nth-child(7) {
        /* grid-column: ; */
    }

    .analytics-boxmodel2 .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    #Analytics-section2 .img .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }

    #Analytics-section2 .img img {
        width: 100%;
    }

    #sales-section {
        margin: 10px 30px;
    }

    #sales-section .sub-sales {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 5px;
        margin: 10px 0;

    }

    #sales-section .sub-sales .salestext {
        width: 80%;
    }

    #sales-section .sub-sales .sales-iframe {
        border-radius: 10px;
        width: 100%;
    }


    #sales-section .sub-sales .salestexttext p {
        font-size: larger;
    }

    #sales-section .sub-sales .salestext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    #sales-section img {
        width: 100%;
    }

    #easy-section {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 15px;
        width: 100%;


    }

    #easy-section .easy-iframe {
        border-radius: 5px;
        width: 100%;
    }

    .easy-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .easy-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
    }

    .easy-text2 {
        margin-bottom: 40px;
        border-left: 5px solid var(--headercolor);
        height: fit-content;
    }

    .easy-text2 .hidd p {
        display: none;
    }

    .easy-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #easy-section h2 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #easy-section h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .easy-text1 p {
        font-size: 1.5rem;
        margin: 30px auto;
    }

    .easy-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    header {
        text-align: center;
        margin: 40px auto;
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2.5rem;
    }


    #integrate .text1,
    .text2,
    .text3 {
        width: 100%;
    }

    #integrate {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin: 30px auto;
        width: 90%;
        padding: 10px;
    }

    #integrate h1 {
        color: rgb(3, 45, 96);
        font-weight: 10px;
        font-size: 3rem;
    }

    #integrate p {
        font-size: x-large;
    }

    #integrate .text1 .btn button {
        background-color: rgb(1, 118, 211);
        padding: 5px 20px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        width: 100%;
    }

    #integrate img {
        width: 100%;
    }

    #integrate .text2 .img {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    #integrate .text2 .img img {
        width: 32%;
    }

    #card-section {
        display: grid;
        grid-template-columns: repeat(2, 500px);
        grid-template-rows: repeat(2, 500px);
        background-image: url(n-up-flex-learn-as-you-grow-bg_b23ff1.jpg);
        background-repeat: no-repeat;
        background-position: 0% 100%;
        background-size: contain;
        gap: 20px;
        height: fit-content;
    }

    .analytics-boxmodel>:nth-child(4) {
        grid-column: 1;
    }

    #card-section .card {
        width: 85%;
        height: 500px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        /* gap: 40px; */
    }

    #card-section .card img {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    #card-section .card .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px 30px;
    }

    #card-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
    }

    #card-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3.5rem;
        margin-top: 50px;
        text-align: center;
    }

    #card-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1rem;
    }

    #automation-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    #automation-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3rem;
        margin-top: 40px;
        text-align: center;
    }

    #automation-section p {
        font-weight: 10px;
        font-size: 1.5rem;
        margin: 40px auto;
    }

    #automation-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.2rem;
        margin: 30px auto;
    }

    #automation-section .autocard {
        display: grid;
        grid-template-columns: repeat(3, auto);
        /* grid-template-rows: repeat(3, auto); */
        gap: 20px;
        margin: auto 40px;
    }

    #automation-section .autocard .percent-card img {
        width: 100%;
        border-radius: 10px;
    }

    #automation-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 50px auto;
    }

    #lastcard-section {
        display: grid;
        grid-template-columns: repeat(3, auto);
        /* grid-template-rows: repeat(3, auto); */
        gap: 30px;
        margin: 40px 30px;
    }

    #lastcard-section .image .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #lastcard-section img {
        width: 100%;
        border-radius: 10px;
    }

    #lastcard-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
        margin-top: 20px;
    }















    footer {
        width: 100%;
    }

    #top {
        background-color: white;
        width: 100%;
        height: 300px;
        text-align: center;
        color: rgb(3, 45, 96);
        font-size: x-large;
    }

    #top button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #down {
        height: 450px;
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    #first {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: larger
    }

    #icon {
        display: flex;
        gap: 20px;
        font-size: 40px;
    }

    #down .sec {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: 15px;
    }

    #down .sec a {
        text-decoration: none;
    }



    #footer2 {
        width: 100%;
        height: 150px;
        background-color: rgb(3, 46, 97);
        text-align: center;
        padding-top: 20px;
        color: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    }

    #footer2_text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
        line-height: 20px;
    }

    #footer2_nav {
        display: flex;
        gap: 30px;
    }

    #footer2_nav a {
        color: white;
        font-size: 1rem;
        margin-bottom: 20px;
    }
}






@media(width<912px) {
    #nav {
        display: flex;
        column-gap: 1rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 90px;
        background-color: white;
        padding: 0 10px;
        position: fixed;
        top: 0px;
        z-index: 1;
    }

    ul {
        background: white;
        position: absolute;
        box-shadow: 6px 6px #888888;
        display: flex;
        flex-direction: column;
        gap: 40px;
        height: 100vh;
        width: 50%;
        align-items: center;
        padding-top: 5px;
        left: -100%;
        transition: all .5s;
        top: 65px;
    }

    #left-nav ul li a {
        align-content: start;
        font-size: 25px;
    }

    #left-nav ul li {
        display: flex;
        gap: 70px;
        padding: 0 30px;
        width: 100%;
    }

    #left-nav #btn {
        display: none;
    }

    #left-nav .bar {
        float: right;
        /* color: white; */
        font-size: 25px;
    }

    #btn:checked~ul {
        left: 0;
    }

    #right-nav button {
        border: none;
        background-color: var(--btn-pry-color);
        padding: 8px 15px;
        font-size: larger;
        color: white;
        font-weight: bold;
        border-radius: 3px;
    }

    /* #left-nav ul li {
        display: none;
    } */

    #right-nav .contact,
    .globe,
    .login,
    .login-name {
        display: none;
    }

    #mainnav {
        background-color: var(--pry-bg-color);
        color: white;
        height: 40px;
        padding: 10px;
        width: 100%;
        font-weight: bold;
        font-size: 17px;
        display: flex;
        /* flex-direction: column; */
        justify-content: start;
        margin-top: 90px;
    }

    #mainnav a {
        color: gray;
    }

    #grow-section {
        background-image: url(growsection.jpg);
        background-repeat: repeat;
        height: fit-content;
        display: flex;
        flex-direction: column;
        width: 80%;
        justify-content: center;
        margin: 20px auto;
        font-size: 1.5 rem;
    }

    #grow-section .grow-iframe {
        border-radius: 5px;
        margin-bottom: 20px;
        width: 80%;
    }


    #grow-section .growtext {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #grow-section .growtext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 3rem;
    }

    #grow-section .growtext .btn {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 20px;
    }

    #grow-section .growtext .btn1 {
        background-color: var(--btn-sec-color);
        width: 100%;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #grow-section .growtext .btn2 {
        background-color: white;
        width: 100%;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
    }


    #workforce {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding: 10px;
        margin-bottom: 30px;
        font-size: 1.5 rem;
        width: 80%;
        justify-content: center;
        margin: 5px auto;
    }

    #workforce h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 4.5rem;
    }

    #workforcce .btn {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    #workforce .btn1 {
        background-color: rgb(1, 118, 211);
        width: 100%;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #workforce .btn2 {
        background-color: white;
        width: 100%;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin-top: 20px;
    }





    #start-simply {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        width: 80%;
        justify-content: center;
        margin: 5px auto;
    }

    #start-simply .grow-iframe {
        border-radius: 5px;
        width: 100%;
    }

    .start-simply-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .start-simply-text1 button {
        width: 25%;
    }

    .start-simply-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
    }

    .start-simply-text2 {
        margin-bottom: 40px;
        border-left: 0;
        padding-left: 0;
    }

    .start-simply-text2 .hidd p {
        display: none;
    }

    .start-simply-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #start-simply h2 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #start-simply h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .start-simply-text1 p {
        font-size: 1.3rem;
        margin: 20px auto;
    }

    .start-simply-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    #analytics_section {
        width: 100%;
    }

    .analytics-head {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.7rem;
        text-align: center;
        font-weight: bolder;
        margin: 70px auto;
    }

    .analytics-boxmodel {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(8, 1fr);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        /* place-self: center; */
    }

    .analytics-boxmodel>:nth-child(13) {
        grid-column: 2;
    }

    .analytics-boxmodel .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding: 40px 35px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
    }

    .analyticsbox h3 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.6rem;
        /* text-align: center; */
        font-weight: bolder;
        width: fit-content;
    }

    .analyticsbox .anal-icon {
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 20px auto;
        width: 100%;
        height: 200px;
        justify-content: space-around;
    }

    .anal-icon a {
        color: rgb(3, 45, 96);
        font-size: large;
        font-weight: bolder;
    }

    .circle {
        width: 30%;
        height: 70px;
        background-color: white;
        border-radius: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .circle img {
        margin-top: 15px;
        margin-left: 15px;
    }

    #Analytics-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }


    .analytics-boxmodel2 {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(4, auto);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel2 .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    #Analytics-section2 .img .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }

    #Analytics-section2 .img img {
        width: 100%;
    }

    #sales-section .sub-sales {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* margin: 30px 25px; */

    }

    #sales-section .sub-sales .salestext {
        width: 100%;
    }

    #sales-section .sub-sales .sales-iframe {
        border-radius: 10px;
        width: 100%;
    }


    #sales-section .sub-sales .salestexttext p {
        font-size: larger;
    }

    #sales-section .sub-sales .salestext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    #sales-section img {
        width: 100%;
    }

    #easy-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    #easy-section .easy-iframe {
        border-radius: 5px;
        width: 90%;
    }

    .easy-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 90%;
    }

    .easy-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
    }

    .easy-text2 {
        margin-bottom: 40px;
        border-left: 5px solid var(--headercolor);
        height: fit-content;
    }

    .easy-text2 .hidd p {
        display: none;
    }

    .easy-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #easy-section h2 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #easy-section h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .easy-text1 p {
        font-size: 1.5rem;
        margin: 30px auto;
    }

    .easy-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }

    header {
        text-align: center;
        margin: 40px auto;
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2.5rem;
    }

    #integrate {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin: 30px 0;
        width: 100%;
        padding: 10px;
    }

    #integrate .text1,
    .text2,
    .text3 {
        width: 60%;
    }


    #integrate h1 {
        color: rgb(3, 45, 96);
        font-weight: 10px;
        font-size: 3rem;
    }

    #integrate p {
        font-size: x-large;
    }

    #integrate .text1 .btn button {
        background-color: rgb(1, 118, 211);
        padding: 10px 20px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        width: 50%;
    }

    #integrate img {
        width: 100%;
    }


    #integrate .text2 .img {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    #integrate .text2 .img img {
        width: 50%;
    }

    #card-section {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        background-image: url(n-up-flex-learn-as-you-grow-bg_b23ff1.jpg);
        background-repeat: no-repeat;
        background-position: 0% 100%;
        background-size: contain;
        /* height: 100vh; */
    }

    #card-section .card {
        width: 85%;
        height: 500px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        /* gap: 40px; */
    }

    #card-section .card img {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    #card-section .card .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px 30px;
    }

    #card-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
    }

    #card-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3.5rem;
        margin-top: 50px;
        text-align: center;
    }

    #card-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1rem;
    }

    #automation-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    #automation-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3rem;
        margin-top: 40px;
        text-align: center;
    }

    #automation-section p {
        font-weight: 10px;
        font-size: 1.5rem;
        margin: 40px auto;
    }

    #automation-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.2rem;
        margin: 30px auto;
    }

    #automation-section .autocard {
        display: grid;
        grid-template-columns: repeat(3, auto);
        /* grid-template-rows: repeat(3, auto); */
        gap: 20px;
        margin: auto 40px;
    }

    #automation-section .autocard .percent-card img {
        width: 100%;
        border-radius: 10px;
    }

    #automation-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 50px auto;
    }

    #lastcard-section {
        display: grid;
        grid-template-columns: repeat(3, auto);
        /* grid-template-rows: repeat(3, auto); */
        gap: 30px;
        margin: 40px 30px;
    }

    #lastcard-section .image .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #lastcard-section img {
        width: 100%;
        border-radius: 10px;
    }

    #lastcard-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
        margin-top: 20px;
    }


































    footer {
        width: 100%;
    }

    .footer1 {
        display: none;
    }

    /* #top {
        background-color: white;
        width: 100%;
        height: 300px;
        text-align: center;
        color: rgb(3, 45, 96);
        font-size: x-large;
    }

    #top button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #down {
        height: 450px;
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    #first {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: larger
    }

    #icon {
        display: flex;
        gap: 20px;
        font-size: 40px;
    }

    #down .sec {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: 15px;
    }

    #down .sec a {
        text-decoration: none;
    } */



    #footer2 {
        width: 100%;
        height: 200px;
        background-color: rgb(3, 46, 97);
        text-align: center;
        padding-top: 20px;
        color: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    }

    #footer2_text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
        line-height: 20px;
    }

    #footer2_nav {
        display: flex;
        gap: 30px;
    }

    #footer2_nav a {
        color: white;
        font-size: 1rem;
        margin-bottom: 20px;
    }
}







/* 
@media(width<767px) {
    .analytics-head {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.7rem;
        text-align: center;
        font-weight: bolder;
        margin: 70px auto;
    }

    .analytics-boxmodel {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(8, 1fr);
        gap: 40px; */
/* justify-content: center; */
/* align-items: center; */
/* margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel:nth-last-child(-n+2) {
        grid-column: span 2;
        margin: auto;
    }

    .analytics-boxmodel .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding: 40px 35px;
        width: 280px;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        background-image: url(cloudy_508233-455.avif);
        background-position-y: 185%;
    }

    .analyticsbox h3 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.6rem; */
/* text-align: center; */
/* font-weight: bolder;
        width: fit-content;
    }

    .analyticsbox .anal-icon {
        display: flex;
        align-items: center;
        background-color: red;
        overflow: hidden;
        padding: 20px auto;
        width: 100%;
        height: 200px;
        justify-content: space-around;
    }

    .anal-icon a {
        color: rgb(3, 45, 96);
        font-size: large;
        font-weight: bolder;
        background-color: bisque;
    }

    .circle {
        width: 30%;
        height: 70px;
        background-color: white;
        border-radius: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    #Analytics-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }
} */







@media(width<600px) {
    * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    #nav {
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 90px;
        background-color: white;
        padding: 0 10px;
        position: fixed;
        top: 0px;
        z-index: 1;
    }

    ul {
        background: white;
        position: absolute;
        box-shadow: 6px 6px #888888;
        display: flex;
        flex-direction: column;
        gap: 40px;
        height: 95vh;
        width: 100%;
        align-items: center;
        padding-top: 5px;
        left: -100%;
        transition: all .5s;
        top: 65px;
    }

    #prod-list {
        display: none;
    }

    #prod:hover+#prod-list {
        display: block;
    }

    #prod-list {
        line-height: 40px;
        z-index: 1;
        background-color: white;
    }

    #prod-list i {
        font-size: 0.8rem;
    }

    #prod-list p {
        display: flex;
        justify-content: space-between;
    }


    #left-nav ul li a {
        align-content: start;
        font-size: 25px;
    }

    #left-nav ul li {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        width: 100%;
    }

    #left-nav #btn {
        display: none;
    }

    #left-nav .bar {
        float: right;
        /* color: white; */
        font-size: 25px;
    }

    #btn:checked~ul {
        left: 0;
    }

    .fa-search {
        display: none;
    }

    #right-nav button {
        border: none;
        background-color: var(--btn-pry-color);
        padding: 3px 8px;
        font-size: larger;
        color: white;
        font-weight: bold;
        border-radius: 3px;
    }

    #right-nav button a {
        font-size: small;
    }

    /* #left-nav li {
        display: none;
    } */

    #right-nav .contact,
    .globe,
    .login,
    .login-name {
        display: none;
    }

    #mainnav {
        background-color: var(--pry-bg-color);
        color: white;
        height: 100px;
        padding: 10px;
        width: 100%;
        font-weight: bold;
        font-size: 17px;
        display: block;
        gap: 20px;
        margin-top: 90px;
    }

    #mainnav a {
        color: gray;
        display: flex;
        margin-top: 8px;
    }

    #grow-section {
        background-image: url(indexless.jpg);
        background-repeat: no-repeat;
        background-size: 100% 700px;
        background-position: bottom;
        height: fit-content;
        display: flex;
        flex-direction: column;
        /* margin: 20px; */
        font-size: 1.5 rem;
    }

    #grow-section .grow-iframe {
        border-radius: 5px;
        margin-bottom: 20px;
        width: 100%;
    }


    #grow-section .growtext {
        display: flex;
        flex-direction: column;
        /* gap: 30px; */
    }

    #grow-section .growtext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2.5rem;
    }

    #grow-section .growtext .btn {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 20px;
    }

    #grow-section .growtext .btn1 {
        background-color: var(--btn-sec-color);
        width: 100%;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #grow-section .growtext .btn2 {
        background-color: white;
        width: 100%;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
    }


    #workforce {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding: 10px;
        margin-bottom: 30px;
        font-size: 1.5 rem;
        width: 100%;
    }

    #workforce h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 3.7rem;
        width: 90%;
    }

    #workforcce .btn {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    #workforce .btn1 {
        background-color: rgb(1, 118, 211);
        width: 100%;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
    }

    #workforce .btn2 {
        background-color: white;
        width: 100%;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin-top: 20px;
    }





    #trusted {
        height: fit-content;
    }

    #trusted .trusted-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 30px auto;
        width: 100%;
    }

    #trusted .trusted-text svg {
        width: 20px;
        height: 20px;
        fill: gray;
    }

    @keyframes marquee {
        0% {
            width: 100%;
            height: 100px;
        }

        25% {
            width: 100%;
            height: 100px;
            /* transform: translateX(-25%); */
        }

        50% {
            width: 100%;
            height: 100px;
            /* transform: translateX(-50%); */
            /* background-color: blue; */
            /* padding: 10px; */
        }

        75% {
            width: 100%;
            height: 100px;
            /* transform: translateX(-75%); */
        }

        100% {
            width: 100%;
            height: 100px;
            transform: translateX(-100%);
            /* background-color: red; */
        }
    }

    #marq {
        animation-name: marquee;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-play-state: running;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }






    #start-simply {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
    }

    #start-simply .grow-iframe {
        border-radius: 5px;
        width: 100%;
    }

    .start-simply-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .start-simply-text1 button {
        width: 100%;
    }

    .start-simply-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
    }

    .start-simply-text2 {
        margin-bottom: 40px;
    }

    .start-simply-text2 .hidd p {
        display: none;
    }


    .start-simply-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #start-simply h2 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #start-simply h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .start-simply-text1 p {
        font-size: 1.3rem;
        margin: 20px auto;
    }

    .start-simply-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
    }








    .analytics-head {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.7rem;
        text-align: center;
        font-weight: bolder;
        margin: 70px auto;
    }

    .analytics-boxmodel {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: repeat(16, auto);
        gap: 20px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel>:nth-child(13) {
        grid-column: 1;
    }

    .analytics-boxmodel .analyticsbox {
        display: flex;
        flex-direction: column;
        padding: 40px 35px;
        gap: 45px;
        width: 95%;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
    }

    .analyticsbox h3 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 1.6rem;
        /* text-align: center; */
        font-weight: bolder;
        width: fit-content;
    }

    .analyticsbox .anal-icon {
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 20px auto;
        width: 100%;
        height: 200px;
        justify-content: space-around;
    }

    .anal-icon a {
        color: rgb(3, 45, 96);
        font-size: small;
        font-weight: bolder;
    }

    .circle {
        width: 30%;
        height: 70px;
        background-color: white;
        border-radius: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .circle img {
        margin-top: 15px;
        margin-left: 15px;
    }

    #Analytics-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }


    .analytics-boxmodel2 {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: repeat(8, auto);
        gap: 40px;
        /* justify-content: center; */
        /* align-items: center; */
        margin: 40px 50px;
        place-self: center;
    }

    .analytics-boxmodel2 .analyticsbox {
        display: flex;
        flex-direction: column;
        gap: 45px;
        width: 95%;
        height: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: -1;
        overflow: hidden;
    }

    #Analytics-section2 .img .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 30px auto;
    }

    #Analytics-section2 .img img {
        width: 100%;
    }

    #sales-section .sub-sales {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* margin: 30px 25px; */

    }

    #sales-section .sub-sales .sales-iframe {
        border-radius: 5px;
        width: 100%;
    }

    #sales-section .sub-sales .salestext {
        width: 100%;
    }

    #sales-section .sub-sales .salestexttext p {
        font-size: 2rem;
    }

    #sales-section .sub-sales .salestext h1 {
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 2rem;
        margin-bottom: 20px;
        width: 80%;
    }

    #sales-section img {
        width: 100%;
    }

    #easy-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    #easy-section .easy-iframe {
        border-radius: 5px;
        width: 90%;
    }

    .easy-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 90%;
    }

    .easy-text2 .hidd {
        /* display: none; */
        /* color: rgb(3, 45, 96); */
        font-weight: 10px;
        /* font-size: 1.2rem; */
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        margin: 20px auto;
        border-left: 0;
        padding-left: 0;
    }

    .easy-text2 {
        margin-bottom: 40px;
        border-left: 0;
        height: fit-content;
    }

    .easy-text2 .hidd p {
        display: none;
    }

    .easy-text2 .hidd h4:hover+p {
        display: block;
        margin: 10px auto;
        position: absolute;
    }

    #easy-section h2 {
        color: rgb(3, 45, 96);
        font-weight: bolder;
        font-size: 2rem;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    #easy-section h4 {
        color: rgb(7, 78, 165);
        font-weight: 10px;
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .easy-text1 p {
        font-size: 1.1rem;
        margin: 30px auto;
    }

    .easy-text1 button {
        background-color: rgb(1, 118, 211);
        padding: 10px 25px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        margin-right: 20px;
        width: 100%;
    }

    header {
        text-align: center;
        margin: 40px auto;
        color: var(--headercolor);
        font-weight: bolder;
        font-size: 1.5rem;
        width: 90%;
    }

    #integrate {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        margin: 30px 0;
        width: 100%;
        padding: 10px;
    }

    #integrate .text1,
    .text2,
    .text3 {
        width: 100%;
    }

    #integrate h1 {
        color: rgb(3, 45, 96);
        font-weight: 10px;
        font-size: 2.5rem;
        width: 70%;
        margin: 10px auto;
    }

    #integrate p {
        font-size: large;
    }

    #integrate .text1 .btn button {
        background-color: rgb(1, 118, 211);
        padding: 10px 20px;
        border: none;
        font-size: large;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        width: 100%;
    }

    #integrate img {
        width: 100%;
    }

    #integrate .text2 .img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    #integrate .text2 .img img {
        width: 100%;
    }

    #card-section {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(4, 450px);
        background-image: url(n-up-flex-learn-as-you-grow-bg_b23ff1.jpg);
        background-repeat: no-repeat;
        background-position: 0% 95%;
        background-size: contain;
        gap: 30px;
        height: fit-content;
    }

    #card-section .card {
        width: 85%;
        height: 450px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        /* gap: 10px; */
    }

    #card-section .card img {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    #card-section .card .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px 30px;
    }

    #card-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
    }

    #card-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3.5rem;
        margin-top: 30px;
        text-align: center;
    }

    #card-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1rem;
    }

    #automation-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
        width: 90%;
        margin: 0 auto;
    }

    #automation-section h1 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 3rem;
        margin-top: 10px;
        text-align: center;
        width: 85%;
    }

    #automation-section p {
        font-weight: 10px;
        font-size: 1.5rem;
        margin: 40px auto;
    }

    #automation-section a {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.2rem;
        margin: 30px auto;
    }

    #automation-section .autocard {
        display: grid;
        grid-template-columns: repeat(1, 100%);
        grid-template-rows: repeat(3, auto);
        gap: 20px;
        margin: auto 40px;
    }

    #automation-section .autocard .percent-card img {
        width: 100%;
        border-radius: 10px;
    }

    #automation-section .btn {
        background-color: white;
        padding: 10px 25px;
        border: 2px solid rgb(1, 118, 211);
        font-size: large;
        color: rgb(1, 118, 211);
        font-weight: bold;
        border-radius: 5px;
        margin: 50px auto;
        width: 100%;
    }

    #lastcard-section {
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(3, auto);
        gap: 30px;
        margin: 40px 30px;
    }

    #lastcard-section .image .txt {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #lastcard-section img {
        width: 100%;
        border-radius: 10px;
    }

    #lastcard-section h2 {
        color: var(--headercolor);
        font-weight: 10px;
        font-size: 1.8rem;
        margin-top: 20px;
    }


    #footer {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 100px;
    }

    #top {
        width: 90%;
        background-color: white;
        height: fit-content;
    }

    .footer1 {
        display: none;
    }



    #footer2 {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        background-color: rgb(3, 46, 97);
        text-align: center;
        padding: 20px auto;
        color: white;
        align-items: center;
        /* position: absolute;
        bottom: -50%; */
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    }

    #footer2 .cont {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 45px;
        width: 90%;
        padding-top: 10px;

    }

    #footer2_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: left;
        /* line-height: px; */
        width: 90%;
    }

    .ftGlobe .sub-globe {
        display: none;
    }

    .ftGlobe .sub-globe h3 {
        color: var(--headercolor);
        font-size: large;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 10px 20px;
        text-align: justify;
    }

    .ftGlobe .sub-globe p {
        font-size: large;
        margin-bottom: 10px;
    }

    .ftGlobe .sub-globe .Region {
        display: flex;
        flex-direction: column;
        width: 90%;
        overflow: auto;
        justify-content: center;
        align-items: center;
    }

    .ftGlobe .sub-globe .Region .sub-region {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .ftGlobe .sub-globe .Region .vertical-line {
        height: 100%;
        display: inline-block;
        border-left: 1px solid gray;
    }

    .ftGlobe:hover .sub-globe {
        display: flex;
        flex-direction: column;
        gap: 10px;
        bottom: 90%;
        left: 20px;
        position: absolute;
        height: 400px;
        width: 90%;
        overflow: auto;
        background-color: white;
        padding: 15px;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    #footer2_opt {
        /* width: 30%; */
        display: flex;
    }

    #footer2_nav {
        display: block;
        gap: 30px;
        width: 100%;
        flex-wrap: wrap;
    }

    #footer2_nav,
    #footer2_text a {
        color: white;
        font-size: 1rem;

    }
}