/* #################################################
    Website Application Layout Custom StyleSheet
#################################################### */
body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-text-color { color: #058248; }
.main-background-color { background-color: #058248; }
#text-color-1 { color: #656464; }

/* ======== Header Content StyleSheet ======== */
    /* Header Content */
    .header-content-container {
        /* width: 38rem; */
        padding: 0 1rem;
        height: 3rem;
        margin: auto;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.2);
    }
    /* hamberger icon for mobile */
    .mobile-hamburger-toggle-botton-wrapper img{ 
        margin-top: 3px; 
        cursor: pointer;
    }
    /* company icon block */
    .company-icon-block {
        width: 35px;
        height: 40px;
        display: flex;
    }
    .company-icon-block img { width: 100%; }

    /* action buttons block */
    .action-buttons-block {
        display: flex;
        flex-flow: row wrap;
    }
    /* file complain, getting start */
    #file-complain-button,
    #getting-start-button {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        text-decoration: none;
        border-radius: 5px;
        background-color: #DAFDEC;
    }
    /* #file-complain-button:hover,
    #getting-start-button:hover {
        color: white;
        background-color: #058248;
    } */

    /* file complain block */
    #file-complain-button {
        width: 100px;
        height: 25px;
        /* margin-right: .5rem; */
    }
    #file-complain-button>span,
    #getting-start-button>span{ margin-right: .5rem; }

    /* getting start block */
    #getting-start-button {
        width: 75px;
        height: 25px;
        display: none;
        margin-right: 0.5rem;
    }
    .website-translation{ 
        margin-top: 2px; 
        display: none;
    }

/* ======== Navbar Content StyleSheet ======== */
    /* mobile navbar overlay content */
    #desktop-navbar-content-wrapper{ display: none; }
    .mobile-navbar-overlay-wrapper {
        height: 0;
        width: 100%;
        position: fixed;
        z-index: 10000;
        top: 48px;
        left: 0;
        overflow-y: hidden;
        transition: height 0.5s ease;
    }
    .mobile-navbar-overlay-wrapper .getting-strart-btn-mobile-wrapper{
        background-color: white;
        padding: 1rem 1rem 0.3rem;
        box-shadow: inset 0px 4px 4px -2px rgba(0, 0, 0, 0.2);
    }
    .getting-strart-btn-mobile-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .getting-strart-btn-mobile-wrapper #mobile-getting-start-button{
        background-color: #DAFDEC;
        width: 88px;
        padding: 7px 0;
        font-size: 13px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        text-decoration: none;
    }
    .getting-strart-btn-mobile-wrapper #mobile-getting-start-button span{ margin-right: 10px; }
    .mobile-overlay-content-wrapper {
        background-color: white;
        padding: 0 1rem 1rem 1rem;
    }
    .mobile-navbar-overlay-wrapper .mobile-overlay-content-wrapper a {
        padding: .5rem 0;
        text-decoration: none;
        font-size: 16px;
        color: black;
        display: block;
        transition: color 0.5s;
        border-bottom: solid 1px #BABCBB;
    }
    .mobile-navbar-overlay-wrapper .mobile-overlay-content-wrapper a:hover { color: #058248; }
    #mobileOverlayGray {
        position: fixed;
        top: 48px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        z-index: 9999;
        transition: opacity .5s;
    }

    /* Navbar Content */
    #desktop-navbar-content-wrapper { background-color: #058248; }
    .navbar-content-container {
        width: 43.5rem;
        height: 30px;
        margin: auto;
        padding-left: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-links-wrapper {
        display: flex;
        list-style-type: none;
    }
    .navbar-links-wrapper li { margin-right: 1.2rem; }
    .navbar-links-wrapper li a {
        font-size: 10px;
        color: white;
        text-decoration: none;
    }
    .navbar-links-wrapper li a:hover { text-decoration: underline; }

/* ======== Footer Content StyleSheet ======== */
    /* Footer Content */
    #footer-content { background-color: #edfdf5; }
    .footer-content-container {
        /* width: 37rem; */
        margin: auto;
        padding: 1rem;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    .footer-content-container p { margin: 0; }
    /* consumer social media info block */
    .consumer-social-media-info {
        /* display: flex;
        flex-flow: column wrap; */
        flex: 50%;
        max-width: 50%;
    }
    .consumer-social-media-info img {
        width: 40px;
        height: 45px;
        margin-bottom: .6rem;
    }
    .consumer-social-media-info p {
        margin-bottom: .6rem !important;
        font-size: 12px;
    }
    /* footer social links wrapper */
    .footer-social-links-wrapper {
        display: flex;
        flex-flow: row wrap;
    }
    .footer-social-links-wrapper a {
        text-decoration: none;
        margin-right: 10px;
    }
    .footer-social-links-wrapper a img {
        width: 16px;
        height: 16px;
    }

    /* consumer sit map info block */
    .footer-heading-block {
        margin-bottom: .6rem !important;
        font-size: 14px;
    }
    .consumer-sitemap-info {
        /* display: flex;
        flex-flow: column wrap; */
        flex: 50%;
        max-width: 50%;
    }
    .footer-sitmap-link-block {
        display: flex;
        flex-flow: column wrap;
    }
    .footer-sitmap-link-block a {
        margin-bottom: .6rem;
        text-decoration: none;
        font-size: 12px;
    }

    /* consumer general info block */
    .consumer-general-info {
        /* display: flex;
        flex-flow: column wrap; */
        flex: 50%;
        max-width: 50%;
    }
    .footer-general-link-block {
        display: flex;
        flex-flow: column wrap;
    }
    .footer-general-link-block a {
        margin-bottom: .6rem;
        text-decoration: none;
        font-size: 12px;
    }

    /* consumer contact block */
    .consumer-contact-info {
        /* display: flex;
        flex-flow: column wrap; */
        flex: 50%;
        max-width: 50%;
    }
    .footer-contact-info-block {
        display: flex;
        flex-flow: column wrap;
    }
    .footer-contact-info-block img {
        width: 15px;
        height: 15px;
    }
    .footer-contact-info-block span {
        margin-left: .5rem;
        margin-bottom: .4rem;
        font-size: 12px;
    }
    .email-block,
    .tel-block,
    .location-block {
        display: flex;
    }

    .footer-border {
        width: 42.5rem;
        height: .8px;
        margin: 1rem auto;
        background-color: black;
    }

    .footer-company-text {
        width: 100%;
        display: flex;
        justify-content: center;
        font-size: 12px;
    }
    .footer-company-text span { margin-left: .6rem; }

    /*********** Modal Popup Custom Style ***********/
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(39, 39, 39, 0.5);
        opacity: 0;
        transition: opacity 10s ease;
    }
    /* Modal Content/Box */
    .modal-content {
        background-color: #fefefe;
        margin: 0 auto;
        margin-top: 2rem;
        padding: 8px 20px;
        border-radius: 10px;
        max-width: 30rem;
        transform: translateY(-50px);
        transition: transform 10s ease;
        text-align: center;
    }
    .modal.show {
        display: block;
        opacity: 1;
    }
    .modal.show .modal-content {
        transform: translateY(0);
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 35px;
        font-weight: bold;
    }
    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    .btn-control-wrapper{ 
        margin-top: 15px;
        display: inline-grid; 
    }
    .modal-body .btn{
        width: 300px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 10px;
        cursor: pointer;
        border-radius: 8px;
    }
    .border{ 
        border: solid 1px #058248; 
        color: #058248; 
    }
    .guest{ 
        color: #058248; 
        margin-top: 20px;
        margin-bottom: 20px;
        cursor: pointer;
    }
    .btn-control-wrapper .btn-green{
        background-color: #058248;
        color: white;
        border: solid 1px #058248;
    }
    .text-decoration-none{ text-decoration: none; }


/* ################
    Media Query
################### */

/* =====  Mobile View (!) Width ( 320px <-> 425px ) (!) ===== */
    /* @media only screen and ( min-width: 325px ) { }  */
    @media only screen and ( min-width: 425px ) {
        /***** header *****/


        /***** footer *****/
        .footer-content-container{ padding: 1rem 3rem; }
    } 

/* =====  Tablet View (!) Width ( 425px <-> 768px ) (!) ===== */
    @media only screen and ( min-width: 768px ) {
        /****** header ********/
        .header-content-container { 
            width: 38rem; 
            box-shadow: none;
        }
        #desktop-navbar-content-wrapper { display: block; }
        .mobile-hamburger-toggle-botton-wrapper{ display: none; }
        #file-complain-button { margin-right: .5rem; }
        #getting-start-button{ display: inline-flex; }
        .website-translation { display: flex; }

        /****** footer blog ******/
        .footer-content-container { width: 37rem; }
        .consumer-social-media-info,
        .consumer-sitemap-info,
        .consumer-general-info,
        .consumer-contact-info{
            flex: 25%;
            max-width: 25%;
        }
        .footer-heading-block { font-size: 12px; }
        .consumer-social-media-info p,
        .footer-sitmap-link-block a,
        .footer-general-link-block a,
        .footer-contact-info-block span{
            font-size: 11px;
        }
        .footer-company-text { font-size: 9px; }
    }

/* ===== Medium Laptop View (!) Width ( 768px <-> 1024px ) (!) ===== */
    @media only screen and ( min-width: 912px ) {
        .header-content-container {
            width: 45.3rem;
            padding: .3rem 0;
        }
        #file-complain-button, #getting-start-button { font-size: 12px; }
        #file-complain-button {
            width: 120px;
            height: 28px;
        }
        #getting-start-button {
            width: 95px;
            height: 28px;
        }
        .website-translation img { width: 33px; }
        .company-icon-block {
            width: 40px;
            height: 45px;
        }
        .navbar-content-container {
            width: 50rem;
            height: 40px;
        }
        .navbar-links-wrapper li a { font-size: 12px; }
        .footer-content-container { width: 42rem; }
        .footer-social-links-wrapper a img {
            width: 19px;
            height: 19px;
        }
        .footer-heading-block { font-size: 15px; }
        .footer-sitmap-link-block a,
        .footer-general-link-block a {
            font-size: 14px;
        }  
        .footer-contact-info-block img {
            width: 18px;
            height: 18px;
        }
        .footer-contact-info-block span { font-size: 12px; }
        .footer-company-text { font-size: 11px; }
        .consumer-social-media-info p { font-size: 14px; }
    }

/* =====  Large Laptop View (!) Width ( 1024px <-> 1920px ) (!) ===== */
    @media only screen and ( min-width: 1024px ) {
        .company-icon-block {
            width: 45px;
            height: 50px;
        }
        .consumer-slider-block { width: 64rem; }
        .header-content-container { width: 51.3rem; }
        .navbar-content-container { width: 56rem; }
        #file-complain-button, 
        #getting-start-button {
            font-size: 15px;
            margin-right: 1rem;
        }
        .website-translation { margin-top: 3px; }
        #file-complain-button {
            width: 130px;
            height: 30px;
            margin-right: 1rem;
        }
        #getting-start-button {
            width: 105px;
            height: 30px;
        }
        .navbar-links-wrapper li { margin-right: 1.9rem; }
        .footer-content-container { width: 51rem; }
        .consumer-social-media-info img {
            width: 45px;
            height: 50px;
        }
    }
    
    @media only screen and ( min-width: 1200px ){
        .header-content-container {
            width: 59.3rem;
            padding: .8rem 0;
        }
        .company-icon-block {
            width: 50px;
            height: 55px;
        }
        #file-complain-button, 
        #getting-start-button {
            font-size: 17px;
            margin-right: 1.5rem;
        }
        .website-translation { margin-top: 4px; }
        .website-translation img { width: 40px; }
        #file-complain-button {
            width: 160px;
            height: 35px;
            margin-right: 1.5rem;
        }
        #getting-start-button {
            width: 125px;
            height: 35px;
        }
        .navbar-content-container { width: 64rem; }
        .navbar-links-wrapper li a { font-size: 14px; }
        .action-buttons-block { margin-right: 2rem; }
        .footer-content-container { padding: 2.5rem 3rem; }
        .consumer-social-media-info img {
            width: 50px;
            height: 55px;
        }
        .consumer-social-media-info p { font-size: 17px; }
        .footer-heading-block { font-size: 18px; }
        .footer-sitmap-link-block a, 
        .footer-general-link-block a {
            font-size: 17px;
        }
        .footer-social-links-wrapper a img {
            width: 22px;
            height: 22px;
        }
        .footer-contact-info-block img {
            width: 21px;
            height: 21px;
        }
        .consumer-social-media-info p { margin-bottom: .9rem !important; }
        .footer-contact-info-block span { font-size: 15px; }
        .footer-company-text { font-size: 13px; }
    }

    @media only screen and ( min-width: 1280px ){
        .header-content-container { width: 61.3rem; }
        .navbar-content-container { width: 66rem; }
        #file-complain-button, 
        #getting-start-button {
            font-size: 18px;
        }
        .navbar-links-wrapper li a { font-size: 15px; }
        .navbar-content-container { height: 46px; }
        .footer-content-container { width: 60rem; }
        .footer-company-text { font-size: 14px; }
        .footer-border { width: 62.5rem; }

    }

    @media only screen and ( min-width: 1366px ){
        .header-content-container { width: 68.3rem; }
        .navbar-content-container { width: 73rem; }
        .footer-content-container { width: 67rem; }
        .footer-border { width: 67.5rem; }
    }

    @media only screen and ( min-width: 1400px ){
        .header-content-container { width: 65.3rem; }
        .company-icon-block {
            width: 55px;
            height: 60px;
        }
        .header-content-container { padding: 1rem 0; }
        #file-complain-button {
            width: 170px;
            height: 40px;
        }
        #getting-start-button {
            width: 135px;
            height: 40px;
            margin-right: 1.4rem;
        }
        .website-translation img { width: 47px; }
        .navbar-content-container { width: 70rem; }
        .navbar-links-wrapper li a { font-size: 16px; }
        .navbar-content-container { height: 51px; }
        .footer-content-container { width: 64rem; }
        .consumer-social-media-info p { font-size: 19px; }
        .consumer-social-media-info img {
            width: 55px;
            height: 60px;
        }
        .footer-social-links-wrapper a img {
            width: 26px;
            height: 26px;
        }
        .footer-heading-block { font-size: 22px; }
        .footer-sitmap-link-block a, 
        .footer-general-link-block a {
            font-size: 20px;
        }
        .footer-contact-info-block img {
            width: 24px;
            height: 24px;
        }
        .footer-contact-info-block span { font-size: 17px; }
        .footer-border { width: 64.5rem; }
        .footer-company-text { font-size: 15px; }
    }

    @media only screen and ( min-width: 1440px ){
        .header-content-container { width: 68.3rem; }
        .navbar-content-container { width: 73rem; }
        .navbar-links-wrapper li { margin-right: 2rem; }
        .navbar-links-wrapper li a { font-size: 17px; }
        .navbar-content-container { height: 54px; }
        .footer-content-container { width: 67rem; }
    }

    @media only screen and ( min-width: 1600px ){
        .header-content-container { width: 74.3rem; }
        .company-icon-block {
            width: 60px;
            height: 65px;
        }
        .header-content-container { padding: 1.5rem 0; }
        #file-complain-button, 
        #getting-start-button {
            font-size: 21px;
        }
        .website-translation img { width: 55px; }
        #file-complain-button {
            width: 190px;
            height: 45px;
        }
        #getting-start-button {
            width: 155px;
            height: 45px;
        }
        .navbar-links-wrapper li { margin-right: 1.7rem; }
        .navbar-links-wrapper li a { font-size: 20px; }
        .navbar-content-container {
            height: 63px;
            width: 79rem;
        }
        .footer-content-container { width: 73rem; }
        .footer-social-links-wrapper a img {
            width: 30px;
            height: 30px;
        }
        .footer-heading-block { font-size: 25px; }
        .footer-sitmap-link-block a, 
        .footer-general-link-block a {
            font-size: 23px;
        }
        .footer-contact-info-block img {
            width: 28px;
            height: 28px;
        }
        .footer-contact-info-block span { font-size: 20px; }
        .footer-border {
            width: 73.5rem;
            margin: 1.8rem auto;
        }
        .footer-company-text { font-size: 18px; }
        .consumer-social-media-info p { font-size: 22px; }
        .consumer-social-media-info img {
            width: 60px;
            height: 65px;
        }
    }

    @media only screen and ( min-width: 1680px ){
        .header-content-container { width: 81.3rem; }
        #file-complain-button {
            width: 200px;
            height: 50px;
        }
        #file-complain-button, 
        #getting-start-button {
            font-size: 23px;
        }
        #getting-start-button {
            width: 160px;
            height: 50px;
        }
        .website-translation { margin-top: 6px; }
        .website-translation img { width: 60px; }
        .navbar-links-wrapper li a { font-size: 21px; }
        .navbar-content-container { width: 86rem; }
        .navbar-links-wrapper li { margin-right: 2.4rem; }
        .footer-content-container { width: 78rem; }
    }

    @media only screen and ( min-width: 1920px ){
        .header-content-container { width: 92.3rem; }
        .company-icon-block {
            width: 70px;
            height: 75px;
        }
        .header-content-container { padding-bottom: 2.3rem; }
        #file-complain-button {
            width: 250px;
            height: 55px;
        }
        #getting-start-button {
            width: 210px;
            height: 55px;
        }
        .website-translation img { width: 65px; }
        .navbar-content-container { width: 96.6rem; }
        .navbar-links-wrapper li a { font-size: 24px; }
        .navbar-links-wrapper li { margin-right: 2.2rem; }
        .navbar-content-container { height: 75px; }
        .footer-content-container { width: 88rem; }
        .consumer-social-media-info img {
            width: 70px;
            height: 75px;
        }
        .consumer-social-media-info img {
            width: 70px;
            height: 75px;
        }
        .consumer-social-media-info p { font-size: 25px; }
        .footer-social-links-wrapper a img {
            width: 40px;
            height: 40px;
        }
        .consumer-social-media-info p { margin-bottom: 1.5rem !important; }
        .consumer-social-media-info img { margin-bottom: 1rem; }
        .footer-heading-block { font-size: 28px; }
        .footer-sitmap-link-block a, 
        .footer-general-link-block a {
            font-size: 26px;
        }
        .footer-contact-info-block img {
            width: 32px;
            height: 32px;
        }
        .footer-contact-info-block span { font-size: 23px; }
        .footer-company-text { font-size: 20px; }
        .footer-border {
            width: 88.5rem;
            margin: 2rem auto;
        }
    }
