/* ============================================================================================== */
/* ============================================= company ======================================== */
/* ============================================================================================== */

#company-contact-section .tax-id {
    position: relative;
    padding: 10px 0;
    background: linear-gradient(to right,rgba(var(--custom-rgb-color-secondary),0), rgba(var(--custom-rgb-color-secondary),0.1),rgba(var(--custom-rgb-color-secondary),0));
    margin-top: 10px;
}
#company-contact-section .contact-row,
#company-contact-section .contact-row>.contact-col {
    position: relative;
}
#company-contact-section .contact-row {
    display: flex;
    flex-wrap: nowrap;
    width: calc(100% + 60px);
    margin: 0 -30px;
}
#company-contact-section .contact-row>.contact-col {
    padding: 0 30px;
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
}
#company-contact-section .contact-row>.contact-col+.contact-col {
    border-left: 1px solid rgba(var(--custom-rgb-color-black),0.1);
}

#company-contact-section .contact-row>.contact-col.this-col-address {}

#company-contact-section .contact-item-row,
#company-contact-section .contact-item-row>.contact-item-col {
    position: relative;
}
#company-contact-section .contact-item-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
#company-contact-section .contact-item-row .title {
    font-weight: 600;
}
#company-contact-section .contact-item-row>.contact-item-col.this-col-icon {
    width: 50px;
    height: 50px;
    font-size: 45px;
    line-height: 50px;
    text-align: center;
}
#company-contact-section .contact-item-row>.contact-item-col.this-col-detail {
    width: calc(100% - 50px);
    padding-left: 15px;
}
#company-contact-section .contact-item-row,
#company-contact-section .contact-item-row a {
    color: rgba(var(--custom-rgb-color-black),1);
}
#company-contact-section .contact-item-row a {
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
#company-contact-section .contact-item-row a:hover {
    color: rgba(var(--custom-rgb-color-secondary),1);
}

/* ============================================================================================== */
/* ============================================== social ======================================== */
/* ============================================================================================== */

#social-contact-section {
    position: relative;
}
/* #company-contact-section+#social-contact-section {
    padding-top: 0 !important;
} */

#social-contact-section .social-section {
    position: relative;
}
#social-contact-section .social-section+.social-section {
    margin-top: 60px;
}
#social-contact-section .social-row {
    position: relative;
    margin-top: 60px;
}
#social-contact-section .social-title {
    position: relative;
    text-align: center;
    line-height: 30px;
}
#social-contact-section .social-title:before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),0.1);
    display: flex;
    align-items: center;
}
#social-contact-section .social-title>.title {
    position: relative;
    display: inline-block;
    background-color: rgba(var(--custom-rgb-color-gray-light),1);
    padding: 0 15px;
}


/* social card group */
#social-contact-section ul.social-card-group,
#social-contact-section ul.social-card-group > li {
    position: relative;
    list-style: none !important;
    padding: 0;
    margin: 0;
}
#social-contact-section ul.social-card-group {
    display: flex;
    justify-content: center;
    width: calc(100% + 20px);
    margin: 0 -10px;
}
#social-contact-section ul.social-card-group > li {
    width: calc(100% / 5);
    padding: 0 10px;
}
/* social card item */
#social-contact-section .social-card-item,
#social-contact-section .social-card-item>.this-icon,
#social-contact-section .social-card-item>.this-detail {
    position: relative;
}
#social-contact-section .social-card-item {
    position: relative;
    display: block;
    background: linear-gradient(to bottom,rgba(var(--custom-rgb-color-white),1),rgba(var(--custom-rgb-color-white),0));
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#social-contact-section .social-card-item,
#social-contact-section .social-card-item>.this-detail>.text {
    color: rgba(var(--custom-rgb-color-black),1);
}
#social-contact-section .social-card-item>.this-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	font-size: 25px;
	line-height: 0;
	text-align: center;
	border-radius: 20px;	
	margin: 0 auto;
	top: -20px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
    overflow: hidden;
}
#social-contact-section .social-card-item>.this-icon.color-primary {
    background-color: rgba(var(--custom-rgb-color-primary),1);
    color: rgba(var(--custom-rgb-color-white),1);
}
#social-contact-section .social-card-item>.this-icon.color-black {
    background-color: rgba(var(--custom-rgb-color-black),1);
    color: rgba(var(--custom-rgb-color-white),1);
}
#social-contact-section .social-card-item:hover>.this-icon {
    background-color: rgba(var(--custom-rgb-color-white),1) !important;
}
#social-contact-section .social-card-item>.this-icon:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0;
    transition: opacity 0.2s ease;
	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
    z-index: 1;
}
#social-contact-section .social-card-item:hover>.this-icon:before {
    opacity: 1;
}
#social-contact-section .social-card-item:hover>.this-icon {
	animation-duration: 0.15s;
    animation-name: iconAnimate;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes iconAnimate {
    from {
        top:-20px;
    }  
    to {
        top:-15px;
    }
}
#social-contact-section .social-card-item>.this-icon > i {
    position: relative;
    line-height: 0;
    height: 0;
	transform: scale(1);
	transition: transform 0.1s ease;
	-webkit-transition: transform 0.1s ease;
	-moz-transition: transform 0.1s ease;
	-ms-transition: transform 0.1s ease;
	-o-transition: transform 0.1s ease;
    z-index: 2;
}
/* #social-contact-section .social-card-item:hover>.this-icon > i {
	transform: scale(1.1);
} */

#social-contact-section .social-card-item>.this-detail {
    text-align: center; 
    padding: 0 10px 20px 10px;
}
#social-contact-section .social-card-item>.this-detail>.title {
    font-size: 13px;
    line-height: 22px;
}
#social-contact-section .social-card-item>.this-detail>.text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    transition: all 0.1s ease;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
}

/* facebook */
#social-contact-section .social-card-item.facebook>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( 45deg, rgba(14,40,152,1), rgba(14,77,202,1) );
}
#social-contact-section .social-card-item.facebook:hover>.this-detail>.text {
    color: rgba(14,77,202,1);
}

/* instagram */
#social-contact-section .social-card-item.instagram>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( 45deg, rgba(242,0,9,1), rgba(188,0,169,1) );
}
#social-contact-section .social-card-item.instagram:hover>.this-detail>.text {
    color: rgba(225, 48, 108, 1);
}

/* youtube */
#social-contact-section .social-card-item.youtube>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( -45deg, rgba(153,25,25,1), rgba(226,66,66,1) );
}
#social-contact-section .social-card-item.youtube:hover>.this-detail>.text {
    color: rgba(226,66,66,1);
}

/* tiktok */
#social-contact-section .social-card-item.tiktok>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( -45deg, rgba(17,17,17,1), rgba(73,73,73,1) );
}
#social-contact-section .social-card-item.tiktok:hover>.this-detail>.text {
    color: rgba(17,17,17,1);
}

/* line */
#social-contact-section .social-card-item.line>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( -45deg, rgba(42,145,20,1), rgba(99,206,81,1));
}
#social-contact-section .social-card-item.line:hover>.this-detail>.text {
    color: rgba(37,175,1);
}


/* messenger */
#social-contact-section .social-card-item.messenger>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( -45deg, rgba(0,114,255,1), rgba(0,198,255,1));
}
#social-contact-section .social-card-item.messenger:hover>.this-detail>.text {
    color: rgba(0,114,255,1);
}


/* wechat */
#social-contact-section .social-card-item.wechat>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( -45deg, rgba(42,145,20,1), rgba(99,206,81,1));
}
#social-contact-section .social-card-item.wechat:hover>.this-detail>.text {
    color: rgba(37,175,1);
}



/* whatsapp */
#social-contact-section .social-card-item.whatsapp>.this-icon:before {
    color:rgba(var(--custom-rgb-color-white),1);
    background: linear-gradient( -45deg, rgba(42,145,20,1), rgba(99,206,81,1));
}
#social-contact-section .social-card-item.whatsapp:hover>.this-detail>.text {
    color: rgba(37,175,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) {}

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

/* ============================================================================================== */
/* ============================================= company ======================================== */
/* ============================================================================================== */
    
#company-contact-section .contact-row {
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
}
#company-contact-section .contact-row>.contact-col {
    width: 100%;
    flex: none !important;
    justify-content: flex-start;
    padding: 0;
}
#company-contact-section .contact-row>.contact-col+.contact-col {
    border: none;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),0.1);
    padding-top: 15px;
    margin-top: 15px;
}
#company-contact-section .contact-item-row>.contact-item-col.this-col-icon {
    font-size: 35px;
}

/* ============================================================================================== */
/* ============================================== social ======================================== */
/* ============================================================================================== */

/* social card group */
#social-contact-section ul.social-card-group {
    width: calc(100% + 10px);
    margin: 0 -5px;
}
#social-contact-section ul.social-card-group > li {
    width: calc(100% / 4);
    padding: 0 5px;
}

/* social card item */
#social-contact-section .social-card-item>.this-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
    border-radius: 15px;
    top: -15px;
}
#social-contact-section .social-card-item>.this-detail>.title {
    font-size: 13px;
    line-height: 20px;
}
#social-contact-section .social-card-item>.this-detail>.text {
    font-size: 16px;
    line-height: 25px;
}

}

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

/* ============================================================================================== */
/* ============================================= company ======================================== */
/* ============================================================================================== */
    
#company-contact-section .contact-row {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}
#company-contact-section .contact-row>.contact-col {
    width: 100%;
    flex: none !important;
    justify-content: flex-start;
    padding: 0;
}
#company-contact-section .contact-row>.contact-col+.contact-col {
    border: none;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),0.1);
    padding-top: 15px;
    margin-top: 15px;
}
#company-contact-section .contact-item-row>.contact-item-col.this-col-icon {
    font-size: 35px;
}

/* ============================================================================================== */
/* ============================================== social ======================================== */
/* ============================================================================================== */

/* social card group */
#social-contact-section ul.social-card-group {
    width: calc(100% + 10px);
    margin: 0 -5px;
}
#social-contact-section ul.social-card-group > li {
    width: calc(100% / 4);
    padding: 0 5px;
}

/* social card item */
#social-contact-section .social-card-item>.this-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
    border-radius: 15px;
    top: -15px;
}
#social-contact-section .social-card-item>.this-detail>.title {
    font-size: 11px;
    line-height: 15px;
}
#social-contact-section .social-card-item>.this-detail>.text {
    font-size: 13px;
    line-height: 20px;
}

}

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

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

/* ============================================================================================== */
/* ============================================= company ======================================== */
/* ============================================================================================== */
    
#company-contact-section .contact-row {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}
#company-contact-section .contact-row>.contact-col {
    width: 100%;
    flex: none !important;
    justify-content: flex-start;
    padding: 0;
}
#company-contact-section .contact-row>.contact-col+.contact-col {
    border: none;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),0.1);
    padding-top: 15px;
    margin-top: 15px;
}
#company-contact-section .contact-item-row>.contact-item-col.this-col-icon {
    font-size: 35px;
}

/* ============================================================================================== */
/* ============================================== social ======================================== */
/* ============================================================================================== */

#social-contact-section .social-section+.social-section {
    margin-top: 30px;
}
#social-contact-section .social-row {
    margin-top: 0;
}
#social-contact-section .social-title {
    text-align: left;
    margin-bottom: 10px;
}
#social-contact-section .social-title:before {
    display: none;
}
#social-contact-section .social-title>.title {
    display: block;
    padding: 0;
    font-weight: 600 !important;
}

/* socail card group */
#social-contact-section ul.social-card-group {
    flex-wrap: wrap;
}
#social-contact-section ul.social-card-group > li {
    width: 100%;
    padding: 0;
}
#social-contact-section ul.social-card-group > li+li {
    margin-top: 10px;
}
#social-contact-section .social-card-item {
    border-radius: 10px;
    background: linear-gradient(to right,rgba(var(--custom-rgb-color-white),1),rgba(var(--custom-rgb-color-white),0));
}

/* socail card item */
#social-contact-section .social-card-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
}
#social-contact-section .social-card-item>.this-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    border-radius: 10px;
}
#social-contact-section .social-card-item>.this-icon,
#social-contact-section .social-card-item:hover>.this-icon {
    top: 0 !important;
}
#social-contact-section .social-card-item>.this-detail {
    width: calc(100% - 50px);
    padding: 0 0 0 15px;
    text-align: left;
}
#social-contact-section .social-card-item>.this-detail>.title {
    line-height: 20px;
}
#social-contact-section .social-card-item>.this-detail>.text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}

}

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

/* ============================================================================================== */
/* ============================================= company ======================================== */
/* ============================================================================================== */
    
#company-contact-section .contact-row {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}
#company-contact-section .contact-row>.contact-col {
    width: 100%;
    flex: none !important;
    justify-content: flex-start;
    padding: 0;
}
#company-contact-section .contact-row>.contact-col+.contact-col {
    border: none;
    border-top: 1px solid rgba(var(--custom-rgb-color-black),0.1);
    padding-top: 15px;
    margin-top: 15px;
}
#company-contact-section .contact-item-row>.contact-item-col.this-col-icon {
    font-size: 35px;
}

/* ============================================================================================== */
/* ============================================== social ======================================== */
/* ============================================================================================== */

#social-contact-section .social-section+.social-section {
    margin-top: 30px;
}
#social-contact-section .social-row {
    margin-top: 0;
}
#social-contact-section .social-title {
    text-align: left;
    margin-bottom: 10px;
}
#social-contact-section .social-title:before {
    display: none;
}
#social-contact-section .social-title>.title {
    display: block;
    padding: 0;
    font-weight: 600 !important;
}

/* socail card group */
#social-contact-section ul.social-card-group {
    flex-wrap: wrap;
}
#social-contact-section ul.social-card-group > li {
    width: 100%;
    padding: 0;
}
#social-contact-section ul.social-card-group > li+li {
    margin-top: 10px;
}
#social-contact-section .social-card-item {
    border-radius: 10px;
    background: linear-gradient(to right,rgba(var(--custom-rgb-color-white),1),rgba(var(--custom-rgb-color-white),0));
}

/* socail card item */
#social-contact-section .social-card-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
}
#social-contact-section .social-card-item>.this-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    border-radius: 10px;
}
#social-contact-section .social-card-item>.this-icon,
#social-contact-section .social-card-item:hover>.this-icon {
    top: 0 !important;
}
#social-contact-section .social-card-item>.this-detail {
    width: calc(100% - 50px);
    padding: 0 0 0 15px;
    text-align: left;
}
#social-contact-section .social-card-item>.this-detail>.title {
    line-height: 20px;
}
#social-contact-section .social-card-item>.this-detail>.text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}

}

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