/*========
  Global
==========*/

section.footer-container {
    padding: 30px 80px;
}

/*===========
  Site Help
=============*/

.icon-box img {
    width: 35px;
    padding: 8px;
    border: 2px solid;
    border-radius: 50%;
}

.icon-box a:hover {
    color: black;
}

.site-help {
    padding-bottom: 0 !important;
}

.icon-box .fa-phone {
    padding: 6px 8px;
}

.icon-box a:hover i {
    color: black;
}

.site-help-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #101213;
}
.site-help-section h2 {
    color: #101213;
    margin-bottom: 18px !important;
}

.site-help {
    width: 60%;
}

.icon-box {
    width: 30%;
    margin-top: 10px;
}

.icon-box p {
    color: #69727d !important;
    margin-top: 5px;
}

.site-help-section {
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 50px auto 0;
    /* font-family: "roboto"; */
}
.icon-box,
.icon-box a {
    display: flex;
}
.icon-box a {
    color: black;
    text-decoration: none;
}
.site-help-section h3,
.site-help-section h2 {
    margin: 0;
}
.icon-box i {
    border: 2px solid;
    border-radius: 50px;
    padding: 8px;
    font-size: 15px;
    margin-right: 15px;
}
.site-help-section h2 {
    font-size: 32px;
    /* font-family: "Roboto"; */
    font-weight: 600;
}

/*============
 Logos Sections
==============*/

body .logos-section {
    padding-bottom: 25px;
    padding-top: 32px;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.logos div {
    flex: 1 1 150px; /* Adjust the minimum width as needed */
    display: flex;
    justify-content: center;
}

.logos img {
    max-width: 100%;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.25s;
    /* height: 35px; */
    height: 45px;
    object-fit: contain;
}

.logos div:hover img {
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
        hue-rotate(0deg);
}

/*============
Links Section
==============*/

.links_column.socials li:nth-of-type(3) img {
    margin-right: 3px;
}

.links_column.socials li:nth-of-type(4) img {
    margin-right: 1px;
}

.links_container img {
    width: 15px;
    margin-right: 5px;
}

.links_container .location {
    width: 12px;
}

.links_section ul:not(:first-of-type) {
    padding-top: 20px !important;
}

.links_column {
    width: 24%;
}
.links_column:nth-child(2),
.links_column:nth-child(3) {
    width: 37%;
}

.links_section {
    /* font-family: "roboto"; */
}

body .links_section {
    background-color: #121310;
    padding: 40px 80px;
}
.links_container {
    display: flex;
    justify-content: space-between;
}
.links_container h5 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}
.links_section ul {
    list-style: none;
    padding: 0;
    color: d9d9d9;
}
.links_section ul a,
.links_section ul li b {
    color: #d9d9d9;
    text-decoration: none;
}

.links_section ul a:hover {
    color: white;
}

.links_section i {
    color: #a8a18f;
    margin-right: 5px;
}
.links_section b,
.links_section li {
    color: white;
}

/*================
Copyright section
==================*/

.copyright_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid white;
    padding-top: 25px;
    margin-top: 50px;
}

.copyright_section div {
    color: white;
}

.copyright_section img {
    width: 200px;
}

/*==============
  Media Quries
===============*/

@media (min-width:1100px){
    section.footer-container .logos {
        padding: 0 4.5% 0 0 !important;
    }
}


@media (min-width: 1000px) {
    .site-help-section {
        width: 940px;
    }
}

/* @media (max-width: 1000px) {
    .site-help-section {
        width: unset;
    }
} */

@media (max-width: 1024px) {
    /*===========
   Global
=============*/

    section.footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /*============
Links Section
==============*/

    .links_column {
        width: auto !important;
        padding: 20px;
    }

    .links_container {
        display: block;
    }

    body .links_section {
        padding: 50px 50px;
    }

    .copyright_section {
        gap: 100px;
    }
    .copyright_section div {
        text-align: right;
    }

    .links_section i {
        font-size: 13px;
    }

    /*================
Site Help Section
==================*/

    .site-help-section {
        padding: 25px;
    }
    .site-help {
        width: 38%;
    }
}

@media (max-width: 767px) {
    /*================
Site Help Section
==================*/

    .site-help-section {
        padding: 20px 25px;
    }

    .site-help-section h2 {
        margin-bottom: 10px !important;
    }

    .site-help-section {
        /* display: block; */
        display: flex;
        flex-wrap: wrap;
        width: 70%;
    }
    .site-help {
        /* width: auto; */
        width: 100%;
        /* margin-bottom: 30px; */
    }

    /*================
   Logo Section
==================*/
    .logos {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px 0;
    }

    /*================
Copyright section
==================*/
    .copyright_section {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    body .links_section {
        padding: 50px 20px;
    }

    .copyright_section div {
        text-align: center;
    }

    .links_column {
        padding: 0 !important;
    }

    .copyright_section div:first-child {
        margin-bottom: 20px;
    }
    .copyright_section a {
        text-align: center;
        float: unset;
    }

    /*==============
Links Section
================*/
    .icon-box {
        width: auto !important;
    }
    .links_container .links_column {
        margin-bottom: 30px;
    }
}

@media (max-width: 400px) {
    .site-help-section {
        width: unset;
    }
}


footer#site-footer {
    display: none;
}

.site-header + .elementor {
    min-height: auto !important;
}

/* .header_row1, .links_container, .copyright_section , .site-help-section , .logos {
    max-width: 1240px;
    margin: 0 auto;
}

.links_container {
    margin-bottom: 50px;
} */

/* Feedback popup */

a.feedback {
    background-color: #5BC0DE;
    color: white !important;
    padding: 12px 20px;
    border-radius: 5px 5px 0px 0px;
    top: 45%;
    position: fixed;
    z-index: 100;
    transform: rotate(90deg);
    left: -3em;
    cursor: pointer;
}

.dialog-close-button:focus-visible {
    outline: none !important;
}

@media (max-width: 767px) {
    a.feedback {
        /* left: -2.2em; */
        left: -3em;
    }
}
