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

body {
    background-color: rgb(194, 232, 255);
    /* background-image: url(https://www.salesforce.com/content/dam/web/en_us/www/images/company/forms/company-contact-form-background.jpg); */
}

body .heading {
    color: rgb(3, 45, 96);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Geneva, Tahoma, sans-serif;
    font-size: 40px;
    height: 80px;
    align-items: center;
    margin-top: 110px;
    /* margin-bottom: 5px; */
    text-align: center;
}

: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: rgb(3, 45, 96);
}

#left-nav .bar {
    display: none;
}

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

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

#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 li:hover {
    color: rgb(74, 74, 240);
}

#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;
    /* 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);

}

.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: larger;
    color: white;
    font-weight: bold;
    border-radius: 3px;
}

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

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

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

main {
    width: 1000px;
    height: fit-content;
    display: flex;
    gap: 30px;
    margin: 30px auto;
}

::placeholder {
    color: rgb(150, 150, 150);
    font-size: larger;
    padding-left: 5px;
}

main .first-submain {
    width: 48%;
    height: fit-content;
    background-color: white;
    font-size: larger;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 30px 20px;

}

.first-submain input {
    width: 91.5%;
    height: 35px;
    border: 0.5px solid black;
    border-radius: 5px;
    margin: 15px auto;
}

.first-submain select {
    width: 91.5%;
    height: 35px;
    border: 0.5px solid black;
    border-radius: 5px;
    /* margin: 15px auto; */
}

.first-submain label {
    font-size: small;
    margin-top: 20px;
}

#permission_section {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 20px auto;
}

.first-submain .stat {
    font-size: 12px;
}

.first-submain button {
    width: 100%;
    height: 6vh;
    background-color: rgb(11, 92, 171);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: large;
    margin-top: 20px;
}

.first-submain button a {
    text-decoration: none;
    color: white;
}

main .second-submain {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 48%;
}

.second-submain .call {
    width: 100%;
    height: fit-content;
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    line-height: 30px;
}

.second-submain .call a {
    font-size: larger;
}

.second-submain .feedback {
    width: 100%;
    height: fit-content;
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    line-height: 40px;
}

.second-submain .feedback button {
    border: none;
    background-color: rgb(11, 92, 171);
    padding: 13px 10px;
    color: white;
    border-radius: 3px;
    width: 150px;
}

#footer {
    width: 100%;
    height: 260%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* position: fixed; */
}

#down {
    height: 450px;
    display: flex;
    justify-content: flex-start;
    gap: 150px;
    margin-top: 20px;
    background-color: white;
    width: 100%;
    height: 30rem;
    align-items: center;
    padding-left: 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_nav {
    display: flex;
    gap: 30px;
}

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

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

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

    body {
        background-color: rgb(194, 232, 255);
        /* background-image: url(https://www.salesforce.com/content/dam/web/en_us/www/images/company/forms/company-contact-form-background.jpg); */
    }

    body .heading {
        color: rgb(3, 45, 96);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Geneva, Tahoma, sans-serif;
        font-size: 40px;
        height: 80px;
        align-items: center;
        margin-top: 110px;
        /* margin-bottom: 5px; */
        text-align: center;
    }

    :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;
    }

    #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: rgb(3, 45, 96);
    }

    #left-nav .bar {
        display: none;
    }

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

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

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

    #left-nav li:hover {
        color: rgb(74, 74, 240);
    }

    #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;
        /* 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);

    }

    .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: larger;
        color: white;
        font-weight: bold;
        border-radius: 3px;
    }

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

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

    main {
        width: 1000px;
        height: 125vh;
        display: flex;
        gap: 30px;
        margin: 30px auto;
    }

    ::placeholder {
        color: rgb(150, 150, 150);
        font-size: larger;
        padding-left: 5px;
    }

    main .first-submain {
        width: 48%;
        height: fit-content;
        background-color: white;
        font-size: larger;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        padding: 30px 20px;

    }

    .first-submain input {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        margin: 15px auto;
    }

    .first-submain select {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        /* margin: 15px auto; */
    }

    .first-submain label {
        font-size: small;
        margin-top: 20px;
    }

    #permission_section {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin: 20px auto;
    }

    .first-submain .stat {
        font-size: 12px;
    }

    .first-submain button {
        width: 100%;
        height: 6vh;
        background-color: rgb(11, 92, 171);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: large;
        margin-top: 20px;
    }

    .first-submain button a {
        text-decoration: none;
        color: white;
    }

    main .second-submain {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 48%;
    }

    .second-submain .call {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 30px;
    }

    .second-submain .call a {
        font-size: larger;
    }

    .second-submain .feedback {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 40px;
    }

    .second-submain .feedback button {
        border: none;
        background-color: rgb(11, 92, 171);
        padding: 13px 10px;
        color: white;
        border-radius: 3px;
        width: 150px;
    }

    #footer {
        width: 100%;
        height: 260%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* position: fixed; */
    }

    #down {
        height: 450px;
        display: flex;
        justify-content: flex-start;
        gap: 150px;
        margin-top: 20px;
        background-color: white;
        width: 100%;
        height: 30rem;
        align-items: center;
        padding-left: 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: 20px auto;
        color: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    }

    #footer2 .cont {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    #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,
    #footer2_text a {
        color: white;
        font-size: 1rem;

    }
}

@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;
    }

    body {
        background-color: rgb(194, 232, 255);
        /* background-image: url(https://www.salesforce.com/content/dam/web/en_us/www/images/company/forms/company-contact-form-background.jpg); */
    }

    body .heading {
        color: rgb(3, 45, 96);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Geneva, Tahoma, sans-serif;
        font-size: 40px;
        height: 80px;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
        margin-top: 110px;
    }

    #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: inline-flex;
        flex-direction: column;
        gap: 70px;
        height: 100vh;
        width: 100%;
        align-items: center;
        padding-top: 5px;
        left: -100%;
        transition: all .5s;
        top: 65px;
    }

    #left-nav ul li a {
        align-content: start;
    }

    #left-nav ul li {
        display: flex;
        justify-content: center;
        gap: 70px;
    }

    #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;
    }

    main {
        width: 80%;
        height: 940px;
        display: flex;
        gap: 30px;
        margin: 30px auto;
    }

    ::placeholder {
        color: rgb(150, 150, 150);
        font-size: larger;
        padding-left: 5px;
    }

    main .first-submain {
        width: 48%;
        height: 97%;
        background-color: white;
        font-size: larger;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        padding: 30px 20px;

    }

    .first-submain input {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        margin: 20px auto;
    }

    .first-submain select {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        /* margin: 15px auto; */
    }

    .first-submain label {
        font-size: small;
        margin-top: 20px;
    }

    #permission_section {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin: 20px auto;
    }

    .first-submain .stat {
        font-size: 12px;
    }

    .first-submain button {
        width: 100%;
        height: 3.3vh;
        background-color: rgb(11, 92, 171);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: large;
        margin-top: 20px;
    }

    .first-submain button a {
        text-decoration: none;
        color: white;
    }

    main .second-submain {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 48%;
    }

    .second-submain .call {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 30px;
    }

    .second-submain .call a {
        font-size: larger;
    }

    .second-submain .feedback {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 40px;
    }

    .second-submain .feedback button {
        border: none;
        background-color: rgb(11, 92, 171);
        padding: 13px 10px;
        color: white;
        border-radius: 3px;
        width: 150px;
    }
















    #footer {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* position: fixed; */
    }



    #down {
        /* height: 450px; */
        display: flex;
        justify-content: flex-start;
        gap: 60px;
        margin-top: 15px;
        background-color: white;
        width: 100%;
        height: 30rem;
        align-items: center;
        padding: 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: 180px;
        background-color: rgb(3, 46, 97);
        text-align: justify;
        padding: 5px auto;
        color: white;
        align-items: center;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    }

    #footer2 .cont {
        display: flex;
        justify-content: center;
        /* gap: 45px; */
        width: 90%;
    }

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

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

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

    #footer2_nav a {
        margin-right: 13px;
    }

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

    }
}

@media (width<912px) {
    * {
        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;
    }

    body {
        background-color: rgb(194, 232, 255);
        /* background-image: url(https://www.salesforce.com/content/dam/web/en_us/www/images/company/forms/company-contact-form-background.jpg); */
    }

    body .heading {
        color: rgb(3, 45, 96);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Geneva, Tahoma, sans-serif;
        font-size: 40px;
        height: 80px;
        /* align-content: center; */
        text-align: start;
        margin-bottom: 30px;
        margin-top: 110px;
        /* margin-right: 40px; */
        /* background-color: red; */
    }

    #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: 100%;
        align-items: center;
        padding-top: 5px;
        left: -100%;
        transition: all .5s;
        top: 65px;
    }

    #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;
    }

    main {
        width: 80%;
        height: 900px;
        display: flex;
        gap: 30px;
        margin: 30px auto;
    }

    ::placeholder {
        color: rgb(150, 150, 150);
        font-size: larger;
        padding-left: 5px;
    }

    main .first-submain {
        width: 48%;
        height: fit-content;
        background-color: white;
        font-size: larger;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        padding: 30px 20px;

    }

    .first-submain input {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        margin: 20px auto;
    }

    .first-submain select {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        /* margin: 15px auto; */
    }

    .first-submain label {
        font-size: small;
        margin-top: 20px;
    }

    #permission_section {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin: 20px auto;
    }

    .first-submain .stat {
        font-size: 12px;
    }

    .first-submain button {
        width: 100%;
        height: 3.3vh;
        background-color: rgb(11, 92, 171);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: large;
        margin-top: 20px;
    }

    .first-submain button a {
        text-decoration: none;
        color: white;
    }

    main .second-submain {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 48%;
    }

    .second-submain .call {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 30px;
    }

    .second-submain .call a {
        font-size: larger;
    }

    .second-submain .feedback {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 40px;
    }

    .second-submain .feedback button {
        border: none;
        background-color: rgb(11, 92, 171);
        padding: 13px 10px;
        color: white;
        border-radius: 3px;
        width: 150px;
    }
















    #footer {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* position: fixed; */
    }



    #down {
        display: none;
    }

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

    }

    #footer2 .cont {
        display: flex;
        justify-content: center;
        gap: 45px;
        width: 80%;
        margin: 0 auto;
    }

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

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

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

    #footer2_nav a {
        margin-right: 10px;
    }

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

    }
}

@media (width<600px) {
    * {
        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;
    }

    body {
        background-color: rgb(194, 232, 255);
        /* background-image: url(https://www.salesforce.com/content/dam/web/en_us/www/images/company/forms/company-contact-form-background.jpg); */
    }

    body .heading {
        color: rgb(3, 45, 96);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Geneva, Tahoma, sans-serif;
        font-size: 30px;
        height: 80px;
        text-align: left;
        margin-bottom: 30px;
        margin-top: 110px;
        width: 90%;
        margin-left: 23px;
    }

    #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: 100%;
        align-items: center;
        padding-top: 5px;
        left: -100%;
        transition: all .5s;
        top: 65px;
    }

    #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: 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;
    }

    main {
        width: 80%;
        height: 900px;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 30px;
        margin: 30px auto;
    }

    ::placeholder {
        color: rgb(150, 150, 150);
        font-size: larger;
        padding-left: 5px;
    }

    main .first-submain {
        width: 90%;
        height: fit-content;
        background-color: white;
        font-size: larger;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        padding: 30px 20px;
        margin: 0 auto;

    }

    .first-submain input {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        margin: 20px auto;
    }

    .first-submain select {
        width: 91.5%;
        height: 35px;
        border: 0.5px solid black;
        border-radius: 5px;
        /* margin: 15px auto; */
    }

    .first-submain label {
        font-size: small;
        margin-top: 20px;
    }

    #permission_section {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin: 20px auto;
    }

    .first-submain .stat {
        font-size: 12px;
    }

    .first-submain button {
        width: 100%;
        height: 3.3vh;
        background-color: rgb(11, 92, 171);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: large;
        margin-top: 20px;
    }

    .first-submain button a {
        text-decoration: none;
        color: white;
    }

    main .second-submain {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .second-submain .call {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 30px;
    }

    .second-submain .call a {
        font-size: larger;
    }

    .second-submain .feedback {
        width: 100%;
        height: fit-content;
        background-color: white;
        padding: 30px;
        display: flex;
        flex-direction: column;
        line-height: 40px;
    }

    .second-submain .feedback button {
        border: none;
        background-color: rgb(11, 92, 171);
        padding: 13px 10px;
        color: white;
        border-radius: 3px;
        width: 150px;
    }
















    #footer {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* position: fixed; */
    }



    #down {
        display: none;
    }

    #footer2 {
        width: 100%;
        height: fit-content;
        display: block;
        /* flex-direction: column; */
        gap: 30px;
        background-color: rgb(3, 46, 97);
        text-align: center;
        padding: 20px auto;
        color: white;
        align-items: center;
        position: absolute;
        top: 250%;
        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: 10px 0;
    }

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

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

    #footer2_nav {
        display: block;
        margin-bottom: 20px;
        width: 100%;
        /* flex-wrap: wrap; */
    }

    #footer2_nav a {
        margin-right: 10px;
    }

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

    }
}