/* ============================================================================================== */
/* ========================================= COMPANY CONTACT ==================================== */
/* ============================================================================================== */

#company-contact-section {
    position: relative;
    background-image: url(../../images/sites/contact/bg-contact.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(var(--custom-rgb-color-primary),1);
}
#company-contact-section,
#company-contact-section a {
    color: rgba(var(--custom-rgb-color-white),1) !important;
}
#company-contact-section>.container {
    padding-top: 80px;
    padding-bottom: 330px;
}
#company-contact-section .title-row {
    text-align: center;
}
/* #company-contact-section .contact-row {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#company-contact-section ul.contact-group,
#company-contact-section ul.contact-group>li {
    position: relative;
    list-style: none !important;
    padding: 0;
    margin: 0;
}
#company-contact-section ul.contact-group {
    display: flex;
    flex-wrap: nowrap;
}
#company-contact-section ul.contact-group>li {
    min-width: 300px;
}
#company-contact-section ul.contact-group>li+li:before {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    border-left: 1px solid rgba(var(--custom-rgb-color-white),1);
    opacity: 0.3;
}
#company-contact-section .contact-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 50px;
}
#company-contact-section .contact-item>.col-icon,
#company-contact-section .contact-item>.col-detail {
    position: relative;
}
#company-contact-section .contact-item>.col-icon {
    width: 60px;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    text-align: center;
    color: rgba(var(--custom-rgb-color-highlight-on-primary),1);
    text-shadow: 0 3px 7px rgba(var(--custom-rgb-color-highlight-on-primary),0.5);
}
#company-contact-section .contact-item>.col-detail {
    width: calc(100% - 60px);
    padding: 0 0 0 20px;
    text-align: left;
}
#company-contact-section .contact-item>.col-detail>.title {
    font-weight: 500;
} */

/* ============================================================================================== */
/* ============================================= SOCIAL ========================================= */
/* ============================================================================================== */

#company-socail-section {
    position: relative;
    padding-bottom: 60px;
}
.card-social-row {
    position: relative;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
}
.card-social-row ul.card-social-group,
.card-social-row ul.card-social-group>li {
    position: relative;
    list-style:  none !important;    
    margin: 0;
    padding: 0;
}
.card-social-row ul.card-social-group {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.card-social-row ul.card-social-group>li {
    padding: 0 10px 0 10px;
    width: calc(100% / 3);
}
ul.card-social-group .card-social-item {
    position: relative;
    display: block;
    background-color: rgba(255,255,255,1);
    border-radius: 10px;
    padding: 10px 15px 10px 10px;
    margin-bottom: 20px;
    top: 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0);
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}
ul.card-social-group .card-social-item:hover {
    top: -5px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
ul.card-social-group .card-social-item>.inside,
ul.card-social-group .card-social-item>.inside>[class*="col-"] {
    position: relative;
}
ul.card-social-group .card-social-item>.inside {
    display: flex;
    align-items:center;
    flex-wrap: nowrap;
}
ul.card-social-group .card-social-item>.inside>.col-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
    line-height: 60px;
    text-align: center;
    /* color: rgba(0,126,244,1) !important;
    background-color: rgba(0,123,255,0.1); */
    border-radius: 8px;    
    overflow: hidden;
}
ul.card-social-group .card-social-item>.inside>.col-icon:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--custom-rgb-color-primary),1);
    opacity: 1;
    transition: 0.3s opacity ease;
    -webkit-transition: 0.3s opacity ease;
    -moz-transition: 0.3s opacity ease;
    -ms-transition: 0.3s opacity ease;
    -o-transition: 0.3s opacity ease;
}
ul.card-social-group .card-social-item:hover>.inside>.col-icon:before {
    opacity: 0;
}
ul.card-social-group .card-social-item>.inside>.col-icon .icon {
    position: relative;
    height: 0 !important;
    z-index: 2;
}
ul.card-social-group .card-social-item>.inside>.col-detail {
    width: calc(100% - 80px);
    padding: 5px 0 0 20px;
}
ul.card-social-group .card-social-item>.inside>.col-detail>.title {
    font-weight: 700;
    text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
ul.card-social-group .card-social-item>.inside>.col-detail>.detail {
    text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
ul.card-social-group .card-social-item>.inside>.col-action {
    width: 20px;
    font-size: 10px;
    text-align: center;
    opacity: 0.5;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}
ul.card-social-group .card-social-item:hover>.inside>.col-action {
    opacity: 1;
}

ul.card-social-group .card-social-item.line>.inside>.col-detail>.title .channel-social {
    color: rgba(48,160,16,1) !important
}
ul.card-social-group .card-social-item.facebook>.inside>.col-detail>.title .channel-social {
    color: rgba(14,77,202,1) !important;
}
ul.card-social-group .card-social-item.instagram>.inside>.col-detail>.title .channel-social {
    color:rgba(217,1,85,0.7) !important;
}
ul.card-social-group .card-social-item.messenger>.inside>.col-detail>.title .channel-social {
    color: rgba(0,127,248,1) !important;
}
ul.card-social-group .card-social-item.youtube>.inside>.col-detail>.title .channel-social {
    color: rgba(204,0,0,1) !important;
}

ul.card-social-group .card-social-item>.inside>.col-icon.img-bg {
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

/* ============================================================================================== */
/* =========================================== COMPANY MAP ====================================== */
/* ============================================================================================== */

#company-map-section {
    position: relative;
    z-index: 2;
}

.google-map-section,
.google-map-row,
.google-map-row>.google-map-col {
    position: relative;
}
.google-map-section {
    display: flex;
    flex-direction: column;
    background-color: rgba(var(--custom-rgb-color-white),1);
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    height: 450px;
    margin-top: -250px;
    margin-bottom: 100px;
    box-shadow: 0 15px 80px 0 rgba(var(--custom-rgb-color-black-default),0.15);
}
.google-map-section>.google-map-title {
    text-align: center;
    margin: 20px 0;
}
.google-map-section>.google-map-title.on-mobile {
    display: none;
}
.google-map-section>.google-map-title.on-desktop {
    display: block;
}
.google-map-section>.google-map-title.on-inline {
    margin: 15px 0 20px 0;
}

.google-map-row,
.google-map-row>.google-map-col{
    height: 100%;
}
.google-map-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}
.google-map-row>.google-map-col.this-col-iframe {
    flex: 1 0 0;
    background-color: rgba(var(--custom-rgb-color-light-gray),1);
    border-radius: 8px;
    overflow: hidden;
}
.google-map-row>.google-map-col.this-col-detail {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 30px 20px 30px;
}

.google-map-row>.google-map-col.this-col-iframe>iframe {
    position: absolute;
    width: calc(100% + 300px);
    height: calc(100% + 300px);
    top: -150px;
    left: -150px;
    border: none !important;
    opacity: 0.95;
    filter: brightness(90%);
    filter: contrast(125%);
    filter: saturate(50%);
    filter: hue-rotate(700deg);
}

.google-map-row>.google-map-col.this-col-detail .google-map-title {

}

.google-map-row ul.map-menu-group,
.google-map-row ul.map-menu-group>li {
    position: relative;
    list-style: none !important;
    margin: 0;
    padding: 0;
}
.google-map-row ul.map-menu-group>li+li {
    border-top: 1px solid rgba(var(--custom-rgb-color-black),0.1);
}
.google-map-row ul.map-menu-group {
    margin: auto 0 0 0;
}
.google-map-row ul.map-menu-group>li .map-menu-item {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
}
.google-map-row ul.map-menu-group>li .map-menu-item>.text,
.google-map-row ul.map-menu-group>li .map-menu-item>.icon {
    position: relative;
}
.google-map-row ul.map-menu-group>li .map-menu-item>.text {
    text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.google-map-row ul.map-menu-group>li .map-menu-item.suffix-icon {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.google-map-row ul.map-menu-group>li .map-menu-item.suffix-icon>.text {
    flex: 1 0 0;
    padding-right: 10px;
}
.google-map-row ul.map-menu-group>li .map-menu-item.suffix-icon>.icon {
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    opacity: 0;
    right: 10px;
    transition: opacity 0.3s ease, right 0.3s ease;
    -webkit-transition: opacity 0.3s ease, right 0.3s ease;
    -moz-transition: opacity 0.3s ease, right 0.3s ease;
    -ms-transition: opacity 0.3s ease, right 0.3s ease;
    -o-transition: opacity 0.3s ease, right 0.3s ease;
}
.google-map-row ul.map-menu-group>li .map-menu-item.suffix-icon:hover>.icon {
    opacity: 1;
    right: 0;
}

/* ============================================================================================== */
/* =========================================== CONTACT FORM ==================================== */
/* ============================================================================================== */

#company-contact-form-section {
    position: relative;
    z-index: 1;
}


/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {

/* ============================================================================================== */
/* ============================================= SOCIAL ========================================= */
/* ============================================================================================== */

.card-social-row ul.card-social-group>li {
    width: calc(100% / 2);
}

}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {

/* ============================================================================================== */
/* ============================================= SOCIAL ========================================= */
/* ============================================================================================== */

.card-social-row ul.card-social-group>li {
    width: calc(100% / 2);
}

}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {

/* ============================================================================================== */
/* ============================================= SOCIAL ========================================= */
/* ============================================================================================== */

.card-social-row ul.card-social-group>li {
    width: 100%;
}
.card-social-row ul.card-social-group>li+li {
    margin-top: 10px;
}
ul.card-social-group .card-social-item {
    margin-bottom: 0;
}

}

/* sm - xs */
@media (max-width: 767.98px) {

/* ============================================================================================== */
/* ============================================= SOCIAL ========================================= */
/* ============================================================================================== */

.card-social-row ul.card-social-group>li {
    width: 100%;
}
.card-social-row ul.card-social-group>li+li {
    margin-top: 10px;
}
ul.card-social-group .card-social-item {
    margin-bottom: 0;
}
ul.card-social-group .card-social-item>.inside>.col-detail {
    padding-left:15px;
}

}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {

/* ============================================================================================== */
/* ========================================= COMPANY CONTACT ==================================== */
/* ============================================================================================== */

/* ============================================================================================== */
/* =========================================== COMPANY MAP ====================================== */
/* ============================================================================================== */


}

/* xs */
@media (max-width: 575.98px) {

/* ============================================================================================== */
/* ========================================= COMPANY CONTACT ==================================== */
/* ============================================================================================== */

#company-contact-section>.container {
    padding-top: 20px;
    padding-bottom: 220px;
}
#company-contact-section .title-row {
    text-align: left;
}
/* #company-contact-section .contact-row {
    margin-top: 30px;
}
#company-contact-section ul.contact-group {
    flex-wrap: wrap;
}
#company-contact-section ul.contact-group>li {
    min-width: 100%;
    border-top: 1px solid rgba(var(--custom-rgb-color-white),0.3);
}
#company-contact-section ul.contact-group>li+li:before {
    display: none !important;
}
#company-contact-section .contact-item {
    padding: 15px 0;
}
#company-contact-section .contact-item>.col-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
}
#company-contact-section .contact-item>.col-detail {
    width: calc(100% - 50px);
    padding: 0 0 0 10px;
} */

/* ============================================================================================== */
/* =========================================== COMPANY MAP ====================================== */
/* ============================================================================================== */


.google-map-section {
    height: 550px;
    margin-top: -200px;
    margin-bottom: 40px;
}
.google-map-row {
    flex-wrap: wrap;
}
.google-map-row>.google-map-col {
    height: auto;
    width: 100% !important;
}
.google-map-row>.google-map-col.this-col-iframe {
    flex: none;
    height: 300px;
}
.google-map-row>.google-map-col.this-col-detail {
    padding: 0 15px !important;
}

/* ============================================================================================== */
/* ============================================= SOCIAL ========================================= */
/* ============================================================================================== */

ul.card-social-group .card-social-item>.inside>.col-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
}
ul.card-social-group .card-social-item>.inside>.col-detail {
    width: calc(100% - 70px);
    padding: 5px 0 0 15px;
}

/* ============================================================================================== */
/* =========================================== CONTACT FORM ==================================== */
/* ============================================================================================== */


}

/* xs custom */
@media (max-width: 399.98px) {}