/*!
Theme Name: THCmedia-company
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: thcmedia-company
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

THCmedia-company is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');*/


/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');*/

@font-face {
    font-family: "Avenir Next Condensed";
    src: url("assets/fonts/Avenir-Next-Condensed.ttc") format("ttc");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next";
    src: url("assets/fonts/Avenir-Next.ttc") format("ttc");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Material";
    src: url("assets/fonts/materialdesignicons.woff") format("ttc");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Material', sans-serif;
    margin: 0!important;
    overflow-x: hidden;
}

:root {
    --primary-color: #425a84;
    --secondary-color: #f3a100;
}

a {
    text-decoration: none!important;
}

.text-center {
    text-align: center;
}

b,
strong {
    font-weight: 700!important;
}

ul,
ol,
li {
    list-style: none;
}

img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

p{
    color: #5f727f;
    font-size: 16px;
    font-weight: 400;
}
.img-wrap {
    position: relative;
    height: auto;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
}

.img-wrap img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    transform: translateZ(0);
    margin: 0 auto;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}

.container {
    max-width: 1300px;
    width: 100%;
    /*margin: 0 auto;*/
    /*padding: 0 15px;*/
}

.tit{
    color: #fff;
    font-size: 65px;
    white-space: nowrap;
    letter-spacing: 0;
    font-weight: 200;
}




/* section-slider */
.section-slider{
    position: relative;
}

.list-slider .item-slider .banner-content{
    position: absolute;
    top: 30%;
    margin-left: 14%;
    width: 60%;
}
.list-slider .item-slider .banner-content .tit{
    font-weight: 400;
}
.banner-content .tit.bold{
    font-weight: 600!important;
}

.banner-content p{
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    letter-spacing:0 ;
    word-wrap: break-word;
}
.list-slider .item-slider .image-slider{
    width: 100%;
    height: 700px;
}

.list-slider .item-slider{
    position: relative;
}
.list-slider .item-slider:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000a8;
}

.slick-slide img{
    max-height:100%;
 max-width: 100%;
 min-height:100%;
 min-width:100%;
 object-fit:cover;
}

.slick-dots li button:before{
    display: none;
}

.section-slider .left_arrow{
    background-color: initial;
    left: 20px;
}

.section-slider .right_arrow{
    right: 20px;
    background-color: initial;
}

.go-top {
    position:fixed;
    bottom: 20%;
    right: 3%;
    padding:20px;
    display:none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
}
  .go-top:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f106";
    background-color: #E5E8F0;
    padding: 4px 15px;
    color: #6a6e7c;
    position: absolute; 
    bottom:10px;
    font-size: 28px;
}

 /* .item-slider.slick-current {
	animation: grow 4s  ;
	opacity: 1;
} 

@keyframes grow {
    0%{
        transform: scale(1.3);
      }
      100%{
        transform: scale(1);
      }
}  */

.control.active, .control:hover {
	background-color: #fff;
	opacity: 1;
	transform: scale(1.2);
}

button.scroll_down {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    height: 50px;
    width: 30px;
    bottom: 20px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
}

button.scroll_down:before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: scroll_down_btn-animation 2s infinite;
    animation: scroll_down_btn-animation 2s infinite;
    box-sizing: border-box;
}

@keyframes scroll_down_btn-animation {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes scroll_down_btn-animation {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 20px);
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.swiper-button-next, .swiper-button-prev{
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

.section-slider .swiper-button-next{
    right: 10%;
    left: auto;
}

.section-slider .swiper-button-prev{
    left: 10%;
    right: auto;
}


/* section-introduce */
/*.section-introduce{*/
/*    height: 500px;*/
/*}*/
.section-introduce .wrap-img img{
    display: none;
}

.section-introduce .box-intro{
    display: flex;
    width: 100%;
}

.section-introduce .box-intro .item{
    width: 50%;
}

.section-introduce .box-content{
    margin: 10% 10% 13% 7%;
}

.box-content .block-title{
   text-align: center;
   margin-bottom: 35px;
}

.box-content .block-title .title{
    color: var(--secondary-color);
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
}

.section-introduce .right{
    padding-right: 0;
}

/* service */
.section-service h2.tit{
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    font-size: 50px;
    padding: 40px 0;
}


.block-service .item-service {
    box-shadow: 0 1px 3px -2px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    background-color: rgb(255, 255, 255);
    border-color: rgb(223, 229, 232);
    text-align: center;
    margin-bottom: 30px;
    height: 400px;
    padding: 82px 62px;
}

.block-service .item-service:hover{
    background-color: var(--primary-color) ;
    transition: 0.5s;
}

.block-service .item-service:hover .icon-ser{
    background: #fff;
    transition:  all 2s;
}

.block-service .item-service .icon-ser img{
    position: absolute;
    left: -6%;
    top: -9%;
    width: auto;
}



.block-service .item-service:hover .name-ser{
    color: #fff;
}

.block-service .item-service:hover p{
    color: #fff;
}


.block-service .item-service .icon-ser{
    background: rgb(240, 240, 244);
    padding: 10px;
    width: 85px;
    align-items: center;
    margin: 0 auto;
    padding: 22px;
    height: 85px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 24px;
}

.icon-ser i{
    text-align: center;
    font-size: 40px;
    color: rgb(30, 89, 172);
}

.item-service .name-ser{
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}


/* GIOITHIEU */

.section{ 
    padding-top: 8% ;
}

.section-story{
    padding-top: 12%;
}


.comment-reply-title{
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 600;
    /*text-align: center;*/
    margin-bottom: 20px;
}

.section-intro .intro-wrap{
    padding: 44px 100px;
}

.intro-wrap .inf-intro{
    padding: 20px 10px;
    border: 4px solid #f69e2b;
    margin-top: 30px;
    height: 228px;
    margin-right: 20px;
    position: relative;
}

.intro-wrap .inf-intro p{
    font-size: 24px;
    text-align: center;
    margin: 35px 0;
    
}

.intro-wrap .fas.fa-quote-left{
    position: absolute;
    top: 14%;
    font-size: 40px;
    left: 32px;
    color: #f69e2b;
}

.intro-wrap .fas.fas.fa-quote-right{
    position: absolute;
    right: 10%;
    bottom: -2px;
    font-size: 40px;
    color: #f69e2b;
}

.list-item-intro{
    margin-top: 30px;
    margin-left: 20px;
}

.list-item-intro .item{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.list-item-intro .item .number{
    width: 10%;
    background: #f69e2b;
    text-align: center;
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 48px;
    margin-right: 20px;
}

.list-item-intro .item .txt-intro{
    width: 90%;
}

/* section-core-value */
.section.section-core-value{
    padding-top: 2%;
}


.section-core-value .list-value {
    padding:65px;
}

.section-core-value .list-value .item-value{
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}
.section-core-value .list-value .item-value .icon{
    width: 20%;
}

.section-core-value .list-value .item-value .icon img{
    width: 75%;
}

.section-core-value .list-value .item-value .item-inf-wrapper .item-title{
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.section-core-value .list-value .item-value .item-inf-wrapper .item-title:hover{
    color: var(--secondary-color);
}
/* .section-core-value .list-value .item-value .item-inf-wrapper{
    width: 75%;
} */

/* section-story */
.sc h2.tit{
    color: var(--primary-color);
    font-size: 45px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-story {
    padding-top: 4%;
}

.section {
    padding: 4%;
}

.section-story  .block-story .txt-top{
    margin: 0 20px;
    text-align: center;
}

.section-story .box-list-str{
    margin-top: 30px;
}

.section-story .box-list-str .item{
    margin-bottom: 24px;
}

.section-story .box-list-str .left{
    order: 1;
}
.section-story .box-list-str .right{
    order: 2;
}
.section-story .box-list-str .item:nth-child(even) .left{
    order: 2;
}
.section-story .box-list-str .item:nth-child(even) .right{
    order: 1;
}
.section-story .box-list-str .item:nth-child(odd) .left{
    order: 2;
}
.section-story .box-list-str .item:nth-child(odd) .right{
    order: 2;
}

.section-story .box-list-str .item p{
    text-align: justify;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
}


.section-story .box-list-str .item img{
    height: 100%;
}

/* section-recuit */
 .block-recruit{
    padding: 0 60px;
    margin-top: 80px;
}
 .block-recruit .item-post{
    padding-bottom: 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid #dfe5e8;
}

.block-recruit .item-post .post-title .entry-title{
    margin: 24px 0;
}

.block-recruit .post-text p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.block-recruit .sharing-popup .list-social{
    bottom: 100%;
    left: 50%;
}


.info.clearfix .post-sharing i.fa-share-alt-square:hover{
    color: #1142BC;
    transition: 0.5s;
}

.info.clearfix{
    margin-top: 28px;
}


/* section-new */
.section-new .block-new{
    padding: 0 60px;
    margin-top: 80px;
}
/* .section-new .list-new{
    padding: 0 20px;
} */
.section-new .list-new .item-new{
    box-shadow: 0 1px 3px -2px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    padding: 20px;
    margin-bottom:30px;
    height: 550px;
}

.section-new .list-new .item-new:hover{
    box-shadow: 2px 2px 7px 2px #d0cbcb;
}

.section-new .list-new .item-new .image-new{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    height: 200px;

}

.section-new .list-new .item-new .image-new img{
    height: 100%;
}
.section-new .list-new .item-new .image-new::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}

.section-new .list-new .item-new .image-new:hover:before{
    opacity: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    background-color: rgba(255, 255, 255, 0.8);

}

.section-new .list-new .item-new .btn-hv{
    position: absolute;
    top: 150%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-family: 'thegem-icons';
    font-size: 35px;
    line-height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    opacity: 0;
    text-align: center;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: top 0.4s, opacity 0.4s, -webkit-transform 0s 0.4s;
    transition: top 0.4s, opacity 0.4s, transform 0s 0.4s;
    z-index: 10;
    background: #1142BC;
}

.section-new .list-new .item-new .image-new:hover .btn-hv{
    opacity: 1;
    top: 50%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: top 0s, opacity 0.4s, -webkit-transform 0.4s;
    transition: top 0s, opacity 0.4s, transform 0.4s;
}

.section-new .list-new .item-new .btn-hv i{
    text-align: center;
    display: block;
    position: absolute;
    top: 14px;
    font-size: 40px;
    right: 14px;
    color: #fff;
    
}

.item-new .description{
    margin-top: 15px;
    position: relative;
}

.item-new .description .post-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    font-size: 18px;
}

 .post-meta{
    margin-bottom: 20px;
}

.post-meta .post-mt-left{
    color: #5f727f
}

.post-meta .post-mt-left .author{
    border-right: 1px solid var(--primary-color);
}

.post-meta .post-mt-left .post-meta-category{
    margin-left: 10px;
}

.post-meta .post-mt-left .post-meta-category a{
    color: var(--primary-color);
}

.post-meta .post-mt-right{
    float: right;
}

.post-mt-right .mt-icon{
    margin-right: 10px;
    color: #5f727f;
}

.post-mt-right .mt-icon-cmt{
    border-right:1px solid;
}

.post-mt-right .mt-icon-cmt:hover{
    color: #1142BC;
}

.post-title a{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.post-title .light{
    font-weight: 400;
}
.post-text{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-text p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info.clearfix{
    display: flex;
    align-items: center;
}

.info.clearfix .post-sharing{
    margin-right: 10px;
}

.info.clearfix .post-sharing i.fa-share-alt-square{
    font-size: 35px;
    color: #F69F2B;
}

.info.clearfix .btn-readmore{
    border: 2px solid var(--primary-color);
    padding: 2px 15px;
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.info.clearfix .btn-readmore:hover{
    color: #fff;
    background: var(--primary-color);
    transition: 1s;
}

.sharing-popup .list-social{
    background-color: #dfe5e8;
    position: absolute;
    display: none;
    opacity: 0;
    bottom: 15%;
    border-radius: 25px;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    white-space: nowrap;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    left: -20px;
    margin-bottom: -10px;
}

.sharing-popup .list-social a{
    margin-right: 10px;
}


.sharing-popup .list-social.active{
    display: inherit;
    opacity: 1;
    margin-bottom: 0;
}

.sharing-popup .list-social a i{
    color: #99a9b5;
}

.sharing-popup .list-social::after{
    content: "";
    width: 8px;
    height: 30px;
    border-top: solid 17px #dfe5e8;
    border-left: solid 4px transparent;
    border-right: solid 4px transparent;
    position: absolute;
    left: 20px;
    bottom: -29px;
}



.far.minus.fa-minus-circle{
    display: none;
}

.service-title.show .fa-minus-circle{
    display: block;
}



/* demo */
/* .section_contact .wrapper_section_contact{
    margin-top: 80px;
}

.section_quote .block-quote{
    margin-top: 80px;
} */


/* Single-new */
.section-comment{
    margin-top: 30px;
}
.section-comment .form-wrap{
    margin: 0 30px;
}
.section-comment h3.tit{
    text-align: left;
    margin-left: 15px;
}

.section-comment h3.tit i{
    color: #dfe5e8;
}
.comment-form-comment textarea{
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid var(--secondary-color);
    padding: 20px;
}
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url
{
    width: 31.3%;
    margin-right: 2% !important;
    float: left;
    position: relative;
    flex-direction: column;
    display: flex;
}

.form-comment .block-form{
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}


.comment-form .comment-form-author input,
.comment-form .comment-form-email input,
.comment-form  .comment-form-url input{
    width: 100%;
    border: 1px solid var(--secondary-color);
    height: 50px;
    padding: 20px;
    position: relative;
}

.form-comment .block-form .icon-fr{
    position: absolute;
    right: 30px;
    top: 14px;
}

.form-comment .block-form .icon-fr i{
    font-size: 24px;
    color: var(--secondary-color);
}
.form-comment .comment-form-cookie{
    margin: 0 15px;
    display: flex;
    align-items: center;
   
}

.form-comment .comment-form-cookie input{
    width: auto;
}

.form-comment .comment-form-cookie label{
    margin-bottom: 0;
}

.form-comment .btn-submit{
    margin-left: 20px;
}

.body_content table{
    margin-bottom: 12px;
    width: 100%;
}

.body_content table tbody, tr, td{
    border: 1px solid #dddddd;
}

.body_content table tbody tr td{
    padding: 10px;
}












