@font-face{
	src: url('../font/Roboto/Roboto-Regular.ttf');
	font-family: Roboto;
}

*{
	font-family: Roboto;
}

/*Trang chủ-------------------------------------------------------------------------------------------------------*/

/* header */

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.menu-small{
	max-width: 60%;
}

.text-small{
	font-size: 1em !important;
	padding-top: 1em;
}

.bg-header{
	z-index: 999;
	background: #FFFFFF;
}

/* header */
.header {
    width: 100%;
    height: auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #ffffff;
 }

 .header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    height: auto;
 }

 ul.menu{
     padding: 0;
 }
 
 .header .navbar {
    max-width: 100%;
    height: auto;
 }
 
 .menu-bar{
    position: absolute;
    top: 0px;
    width: 100%;
 }

 .menu-bar p{
    display: block;
    margin: 0 auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1D60A6;
    padding-top: 9%;
 }

 .header .sub-menu{
	background: #FFFFFF;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	margin-top: 5px;
	overflow: visible;
}

.header .nav-link i{
    padding-right: 5px;
}
 .header .menu > .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 0.75rem;
 }

 .header .menu #phone{
	background: #0E75BC;
 }

 .header .menu #phone:hover{
	 background: #FFFFFF;
 }

 .header .menu #phone a.nav-link{
	 color: #FFFFFF;
	 padding: 5px 10px;
 }

 .header .menu #phone a.nav-link:hover{
	 border: 0.1px solid #0E75BC;
	 background: #FFFFFF;
	 border-radius: 0;
	 color: #0E75BC;
 }
 
 .header .menu > .menu-item > a {
    display: block;
    font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	color: #000000;
	text-transform: uppercase;
    text-decoration: none;
 }
 
 .header .menu > .menu-item > a .expand {
    position: relative;
    display: inline-block;
    height: 0.75rem;
    width: 0.75rem;
    margin-left: 0.35rem;
    border: none;
    outline: none;
    pointer-events: none;
 }
 
 .header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
    position: absolute;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: '';
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #121212;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
 }
 
 .header .menu > .menu-item:hover > a {
    color: #FFFFFF;
	background: #0E75BC;
	border-radius: 5px; 
}
 
 .header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
    background: #198CFF;
 }
 
 .header .menu > .menu-item > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
 }
 
 .header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
	 box-shadow: none;
	 color: #0E75BC;
 }

 .header .menu > .menu-item > .sub-menu {
    position: absolute;
    left: -1rem;
    top: 100%;
    width: 20em;
    height: auto;
    padding: 0 0 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
	z-index: 2;
 }

 .header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
 }
 
 .header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
    padding: 1em 0.5em;
    color: #000000;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    text-decoration: none;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	background: #FFFFFF;
	margin-top: 8px;
 }

 .header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
 }
 
 .header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
 }
 
 .header .closed-menu img{
    display: block;
    width: 1rem;
    height: auto;
 }
 
 .header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
 }
 
 @media only screen and (min-width: 993px) {
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .header .menu > .menu-item-has-children:hover > a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);  
    }
 }
 
 @media only screen and (max-width: 992px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar {
        position: fixed;
        top: 0;
        left: -18rem;
        width: 18rem;
        height: 100%;
        padding: 1rem 0;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #ffffff;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar::-webkit-scrollbar {
        width: 5px;
    }
    .header .navbar::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background: #e6e6e6;
        -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    }
    .header .menu {
        width: 100%;
        height: auto;
    }
    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }
    .header .menu > .menu-item-has-children > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header .menu > .menu-item > a {
        padding: 0.75rem 1rem;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #1A1A1A;
        border-bottom: 0.5px dashed #CECECE;
    }
    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid #f2f2f2;
    }
    .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
        background: #121212;
    }
    .header .menu > .menu-item-has-children.active > a .expand:after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
 
    .header .menu > .menu-item > .sub-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a, .header nav.navbar .menu2 a {
        padding: 0.75rem 0 0.75rem 2rem;
        color: #121212;
        border-bottom: 1px solid #f2f2f2;
		box-shadow: none;
		font-size: 12px;
    }
    .header .opened-menu {
        display: block;
        opacity: 1;
        visibility: visible;
 
    }
    .header .closed-menu{
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        top: 1rem;
        right: 0.5rem;
    }

	.header nav.navbar .menu2{
		display: block;
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		padding: 0;
		border: none;
		outline: none;
		opacity: 1;
		overflow: hidden;
		visibility: visible;
		background: transparent;
		box-shadow: none;	
		margin: -2em 0 0 2em;
	}

 }
 
/*---header--- */

/* main */

/* Banner */

.banner-home{
	background-image: url(../images/trangchu/modern.png),url(../images/trangchu/vector5.png);
	background-repeat: no-repeat;
	background-position: center, center;
	background-position-y: 0 , 0;
	background-size: 100%;
	padding-bottom: 17em;
}

.banner-home .row{
	padding-top: 5em;
}

.banner-home .title-banner{
	padding-top: 5em;
}

.banner-home .title-banner h3{
	font-weight: bold;
	font-size: 35px;
	line-height: 42px;
	color: #FFFFFF;
	letter-spacing: 0.01em;
}

.banner-home .title-banner p{
	font-size: 24px;
	line-height: 28px;
	text-align: justify;
	color: #FFFFFF;
	padding-top: 1em;

}

.banner-home .title-banner h3 span{
	margin-left: 10px;
}

.banner-home .btn {
	display: flex;
}

.banner-home .btn a{
	background: #FFFFFF;
	margin: 10px;
	width: 30%;
	padding: 15px 0;
	font-size: 24px;
	line-height: 28px;
	color: #0E75BC;
	border-radius: 7px;
	border: 1px solid #FFFFFF;
	text-decoration: none;
}

.banner-home .btn a:hover{
	background: #0E75BC;
	color: #FFFFFF;
}

.banner-home .btn a span{
	font-weight: bold;
}

.banner-home .btn a span i{
	margin-right: 10px;
}

.banner-home .images img{
	border-radius: 50%;
}

/* Dịch vụ home */

.title-dv h3{
	text-align: center;
	font-weight: bold !important;
	font-size: 36px !important;
	line-height: 42px;
	color: #0E75BC !important;
	margin-top: 2.5em;
	text-transform: uppercase	;
}

.content-dichvu{
	margin-top: 2.5em;
}

.content-dichvu .row .col-md-12{
	background: #A5DFF9;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.33);
	border-radius: 10px;
	padding: 0 1em;
	height: 28em;
}

.content-dichvu img{
	display: block;
	margin: auto;
	padding-top: 1em;
	max-width: 100%;
}

.content-dichvu h4{
	font-weight: bold;
	font-size: 16px;
	line-height: 21px;
	text-align: center;
	color: #000000;
	margin-top: 1em;
	text-transform: uppercase;
}

.content-dichvu p{
	margin-top: 5px;
	font-size: 14px;
	line-height: 21px;
	text-align: justify;
	color: #000000;
}

.content-2{
	margin-top: 1em;
}

/* vì sao chọn */

.bg-tinhnang{
	margin-top: 5em;
	background-image: url(../images/trangchu/maskgroup.png), url(../images/trangchu/vector4.png);
	background-repeat: no-repeat;
	background-size: 100%;
	padding-top: 12em;
	padding-bottom: 24em;
	
}

.main-tinhnang .col-md-5{
	display: block;
	margin: auto;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	margin-top: 0;
	padding: 1em 0;
	height: 17em;
}

.main-tinhnang .title{
	border-bottom: 3px solid #FFFFFF;
}

.main-tinhnang .col-md-5 img{
	display: block;
	margin: auto;
	background: #0E75BC;
	border-radius: 50%;
	padding: 7px 7px 5px 6px;
}

.main-tinhnang .col-md-5 h4{
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	color: #0E75BC;
	margin-top: 1em;
	text-transform: uppercase;
}

.main-tinhnang .col-md-5 p{
	font-size: 14px;
	line-height: 125.69%;
	text-align: justify;
	color: #0E75BC;
	margin-top: 12px;
	padding: 0 10px;
}

.main-tinhnang .col-md-6 img{
	max-width: 100%;
}
.main-tinhnang .col-md-6 h3{
	font-size: 48px;
	line-height: 56px;
	color: #FFFFFF;
	text-align: center;
}

.main-tinhnang .row-tinhnang-1{
	margin-top: 5em;
}

.row-tinhnang-2{
	margin-top: 3em;
}

.main-tinhnang .box{
	padding-bottom: 5.2em;
}

/* Lợi ích */

.content-loiich{
	margin-top: 4.5em;
}

.img-loiich img{
	border-radius: 50%;
	max-width: 100%;
	margin-top: -14em;
	margin-left: 10em;
}

.img-loiich-2{
	margin-top: -9em;
	margin-left: 3em;
}

.img-loiich-2 img{
	border-radius: 50%;
	border: 10px solid #0E75BC;
}

.main-loiich{
	background: #0E75BC;
	border-radius: 27px;
	margin-left: 2em;
	padding-top: 28px;
}

.main-loiich h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 133.19%;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.main-loiich .rectangle{
	height: 4px;
	background: #FFFFFF;
	width: 90%;
	display: block;
	margin: auto;
}

.list-loiich{
	padding: 10px 20px 50px 20px;
}

.main-loiich ul li{
	list-style: none;
	font-size: 16px;
	line-height: 1.8;
	text-align: justify;
	color: #FFFFFF;
	padding-top: 2em;
}

.main-loiich ul li img{
	padding-right: 5px;
}

span.date{
	display: block;
	font-size: 13px !important;
    letter-spacing: 0.02em;
	font-weight: bold;
    line-height: 1.8em;
    display: block;
	padding: 3px 10px;
	width: 25%;
	background: #0E75BC;
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 1em;
}

/* Về chúng tôi  */

.bg-gioithieu{
	background-image: url(../images/trangchu/vector6.png);
	background-repeat: no-repeat;
	background-size: 100%;
	margin-top: 8em;
	padding-bottom: 13em;
}

.main-gioithieu {
	padding-top: 4.2em;
}

.main-gioithieu .title{
	margin-top: 4em;
}

.main-gioithieu h3{
	font-weight: bold;
	font-size: 36px;
	line-height: 133.19%;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
}

.main-gioithieu p{
	font-size: 16px;
	line-height: 133.19%;
	text-align: center;
	color: #FFFFFF;
	margin-top: 26px;
}

.main-gioithieu .btn{
	display: block;
	margin: auto;
	margin-top: 4em;
}

.main-gioithieu a{
	background: #FFFFFF;
	border-radius: 7px;
	font-size: 24px;
	line-height: 28px;
	color: #0E75BC;
	padding: 15px 13px 15px 18px;
	text-decoration: none;
	border: 1px solid #FFFFFF;
}

.main-gioithieu a:hover{
	background: #0E75BC;
	color: #FFFFFF;
}

/* Tin tức  */

/*---*/

.content-tintuc h3{
	font-weight: bold;
	font-size: 36px;
	line-height: 133.19%;
	text-align: center;
	color: #46B0E1;
	text-transform: uppercase;
	margin-top: 2em;
}

.content-tintuc .main-tintuc{
	margin-top: 2.5em;
}

.content-tintuc ul  {
	display: flex;
	align-items: start;
}

.content-tintuc ul li{
	margin: 1em;
	list-style: none;
	height: auto;
	box-shadow:  0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
	padding: 1em;
	width: 100%;
}

.content-tintuc span.excerpt-dash{
	display: none;
}

.content-tintuc a.title {
	font-weight: bold;
	color: #0E75BC;
	font-size: 1em;
	margin: 1em 0;
	text-decoration: none;
	height: 3em;
}

.content-tintuc a.title:hover{
	color: #fbbe20;
}

.content-tintuc span.excerpt{
	font-size: 12px;
	margin-top: 1em;
}

.content-tintuc .display-posts-listing img {
	display: block;
	margin: auto;
}

.content-tintuc a.more-link{
	margin-top: 1em;
	font-size: 14px;
	text-align: right;
	color: #0E75BC;
}

.content-tintuc ul li.listing-item a{
	display: block;
	clear: both;
}

.listing-item a.image img{
	max-width: 100% !important;
}

/* Form đăng ký nhận tin  */

.form-dangky {
	margin-top: 5.5em;
}

.form-dangky h3{
	font-weight: bold;
	font-size: 36px;
	line-height: 133.19%;
	text-align: justify;
	color: #0E75BC;
	margin-bottom: 20px;
}

.form-dangky .form .nhap{
	border: none;
	outline: none;
	width: 100%;
	background: #A5DFF9;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	padding: 17px 0;
	margin-bottom: 25px;
	text-indent: 14px;
	font-size: 24px;
	line-height: 133.19%;
	text-align: justify;
	color: #000000;
}

/* WP-Form plugin  */

/* div.wpforms-container-full .wpforms-form .wpforms-field{
	padding: 0 !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field label{
	padding-bottom: 0.2em;
	color: #0E75BC;
}

#wpforms-424-field_1-container input, #wpforms-424-field_2-container input, #wpforms-424-field_4-container textarea{
	border: none;
	outline: none;
	width: 100%;
	background: #A5DFF9;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 15px;
	padding: 17px 0;
	margin-bottom: 10px;
	text-indent: 14px;
	font-size: 1em;
	line-height: 133.19%;
	text-align: justify;
	color: #000000;
	padding: 2em 0;
}

#wpforms-424-field_4-container textarea{
	height: 10em;
	padding: 0.5em;
}

#wpforms-submit-424{
	margin-top: 25px;
	display: block;
	margin: auto;
	background: #0E75BC;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 17px 53px 16px 61px;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	text-decoration: none;
	border: 1px solid #0E75BC;
}

#wpforms-submit-424:hover{
	background: #FFFFFF;
	color: #0E75BC;
} */

/* WP-Form plugin  */

.form-dangky .form .nhap::placeholder{
	text-indent: 14px;
	font-size: 24px;
	line-height: 133.19%;
	text-align: justify;
	color: #000000;
}

.form-dangky .form textarea{
	width: 100%;
	background: #A5DFF9;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 26px;
	border: none;
	outline: none;
	text-indent: 14px;
	font-size: 24px;
	line-height: 133.19%;
	text-align: justify;
	color: #000000;
	padding: 0.8em 0.5em 0 0.5em;
	height: 12em;
}

.form-dangky .form textarea::placeholder{
	text-indent: 14px;
	font-size: 24px;
	line-height: 133.19%;
	text-align: justify;
	color: #000000;
}

.form-dangky .dangky{
	margin-top: 25px;
	text-align: center;
}

.form-dangky .dangky input{
	background: #0E75BC;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 17px 53px 16px 61px;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	text-decoration: none;
	border: 1px solid #0E75BC;
	display: block;
	margin: auto;
}

.form-dangky .dangky input.wpcf7-form-control.has-spinner.wpcf7-submit{
	outline: none;
}

.form-dangky .dangky input:hover{
	background: #FFFFFF;
	color: #0E75BC;
}

.wpcf7-not-valid-tip {
	margin-left: 1em;
}

.wpcf7 form.invalid .wpcf7-response-output{
	border: none;
	color: red;
}

.wpcf7 form.failed .wpcf7-response-output{
	border: none;
	color: red;
}

.wpcf7-spinner{
	margin-top: 1em;
}

.form-dangky #map{
	margin-top: 5.5em;
}

/* Đối tác của ATL  */

.title-doitac h3{
	font-weight: bold;
	font-size: 36px;
	line-height: 133.19%;
	text-align: center;
	color: #0E75BC;
	text-transform: uppercase;
	margin-top: 2em;
}

#doitac{
	margin-top: 7em;
}

#doitac img{
	max-width: 100%;
}

.widget-area{
	display: none;
}

/* footer */

button#btn-top{
	border: none;
	outline: none;
	position: fixed;
	bottom: 8em;
	right: 2em;
	z-index: 99;
	cursor: pointer;
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	background: url(../images/footer/top.png) no-repeat center;
}

.bg-footer{
	background-image: url(../images/footer/img-footer.png),url(../images/footer/vector45.png);
	background-repeat: no-repeat;
	background-position-x: 4em, 0;
	background-position-y: -3em, 0, 0;
	background-size: 100%;
	position: relative;
	margin-top: 10em;
	position: relative;
}

.bg-footer .img-footer img{
	position: absolute;
	top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-footer{
	padding-top: 20%;
}

.main-footer h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 40px;
	color: #FFFFFF;
	margin-top: 0.5em;
	letter-spacing: 0.05em;
}

.main-footer h3 span{
	font-size: 30px;
	text-transform: uppercase;
}

.main-footer ul li{
	list-style: none;
	font-size: 18px;
	line-height: 21px;
	color: #FFFFFF;
	margin-left: 0;
	margin-top: 1.5em;
}

.main-footer ul{
	padding: 0;

}

.main-footer .col-md-4 ul li a{
	text-transform: none;
}

.main-footer ul li a{
	font-size: 18px;
	line-height: 21px;
	color: #FFFFFF;
	text-transform: capitalize;

}

.main-footer ul li span{
	font-weight: bold;
}

.main-footer ul li img{
	padding-right: 5px;
}

/* Trang giới thiệu------------------------------------------------------------------------------------------------------------------------------------*/

/* Banner  */

.banner-gioithieu{
	padding: 0;
	z-index: 1;
}

.banner-gioithieu img{
	width: 100%;
}

.banner-gioithieu ul.carousel-indicators li{
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.title-gioithieu h3{
	font-weight: 500 !important;
	font-size: 48px !important;
	line-height: 56px;
	color: #0E75BC !important;
	text-align: center;
	margin-top: 1.5em;
}

/* form-search  */

.form-search{
	display: flex;
	margin-top: 2em;
}

.form-search input{
	padding: 1em 0;
	border: none;
	outline: none;
	background: #FFFFFF;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	text-indent: 26px;
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
	color: #000000;
}

.form-search input::placeholder{
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
	color: #000000;
}

.form-search input#nhap{
	width: 90%;
}
.form-search input#btn-search{
	width: 10%;
	background: url(../images/gioithieu/search.png) no-repeat center 0.6em #0E75BC;
}

.form-search input#btn-search:hover{
	background: url(../images/gioithieu/search.png) no-repeat center 0.6em #FFFFFF;
	transition: 1s ease;
}

/* Chức năng  */

.chucnang{
	margin-top: 5em;
}

.chucnang .col-md-12{
	background: #FFFFFF;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
	
}

.chucnang a {
	text-decoration: none;
}

.chucnang h5{
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
	color: #0E75BC;
	text-align: center;
	margin-top: 35px;
}

.chucnang .box-1{
	background: #FFFFFF;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
	padding: 42px 90px 62px 90px;
	border-top: 22px solid #0E75BC;
	margin-top: 2em;
}

.chucnang .box-2{
	padding: 92px 90px 105px 90px;
	background: #0E75BC;
}

.chucnang .box-2 h5{
	color: #FFFFFF;
}

.chucnang .img-2{
	width: 6em;
	height: 6em;
	border-radius: 50%;
	display: block;
	margin: auto;
}

.chucnang .img, .chucnang .img-3{
	width: 6em;
	height: 6em;
	background: #0E75BC;
	border-radius: 50%;
	display: block;
	margin:  auto;
}

.chucnang .img{
	background: url(../images/gioithieu/icon-1.png) no-repeat center #0E75BC;
}

.chucnang .img-2{
	background: url(../images/gioithieu/icon-2.png) no-repeat center #FFFFFF;
}

.chucnang .img-3{
	background: url(../images/gioithieu/icon-3.png) no-repeat 20px  13px #0E75BC;
}

/* Lựa chọn dịch vụ mà bạn quan tân  */

.luachon{
	margin-top: 4em;
}

.luachon a{
	text-decoration: none;
}

.luachon .col-md-12{
	background: #A5DFF9;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
	padding: 44px 15px 52px 15px;
}

.luachon .col-md-12:hover{
	background: #FFFFFF;
}

.luachon .images, .luachon .images-2, .luachon .images-3, .luachon .images-4{
	width: 4em;
	height: 4em;
	border-radius: 50%;
	display: block;
	margin: 0 auto;
}

.luachon .images{
	background: url(../images/gioithieu/image.png) no-repeat center #0E75BC;
}

.luachon .images-2{
	background: url(../images/gioithieu/image2.png) no-repeat center #0E75BC;
}

.luachon .images-3{
	background: url(../images/gioithieu/image3.png) no-repeat center #0E75BC;
}

.luachon .images-4{
	background: url(../images/gioithieu/image4.png) no-repeat center #0E75BC;
}

.luachon h4{
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	color: #000000;
	margin-top: 1.4em;
	text-transform: uppercase;
}

.banner-main{
	margin-top: 6.5em;
}

.banner-main img{
	width: 100%;
}

/* Giới thiệu về logistics */

.alt-gioithieu{
	margin-top: 10px;
}

.alt-gioithieu .col-md-1, .alt-gioithieu .col-md-4{
	background: #0E75BC;
}

.alt-gioithieu .col-md-7{
	background: #46B0E1;
}

.alt-gioithieu .col-md-4 h3{
	text-align: center;
	font-weight: bold;
	font-size: 36px;
	line-height: 52px;
	color: #FFFFFF;
	padding-top: 2.5em;
}

.alt-gioithieu .col-md-4 p{
	font-size: 24px;
	line-height: 28px;
	text-align: justify;
	color: #FFFFFF;
	padding-right: 2.5em;
	padding: 1.5em 1.5em 0em 1em;
}

.alt-gioithieu .main{
	padding-top: 1em;
}

.alt-gioithieu .col-md-7 ul li{
	list-style: none;
	display: flex;
	align-items: center;
	padding-top: 2em;
}

.alt-gioithieu .main li .img, .alt-gioithieu .main li .img-2, .alt-gioithieu .main li .img-3, .alt-gioithieu .main li .img-4{
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin-right: 1.5em;
}

.alt-gioithieu .main li .img{
	background: url(../images/gioithieu/img.png) no-repeat center #FFFFFF;
}

.alt-gioithieu .main li .img-2{
	background: url(../images/gioithieu/img-2.png) no-repeat center #FFFFFF;
}

.alt-gioithieu .main li .img-3{
	background: url(../images/gioithieu/img-3.png) no-repeat center #FFFFFF;
}

.alt-gioithieu .main li .img-4{
	background: url(../images/gioithieu/img-4.png) no-repeat center #FFFFFF;
}

.alt-gioithieu .main h4{
	font-size: 24px;
	line-height: 28px;
	text-align: justify;
	color: #FFFFFF;
	margin-top: 10px;
}

.alt-gioithieu p{
	font-size: 14px;
	line-height: 16px;
	text-align: justify;
	color: #FFFFFF;
	margin-top: 16px;
	letter-spacing: 0.02em;
}

/* Khách hàng phản hồi  */

.title-gioithieu h6{
	font-size: 18px;
	line-height: 21px;
	text-align: justify;
	color: #0E75BC;
	margin-top: 2.9em;
}

.main-phanhoi{
	margin-top: 7em;
}

.main-phanhoi .col-md-3 {
	display: block;
	margin: 0 auto;
	background: #0E75BC;
	padding: 11px 15px 9px 14px;
}

.main-phanhoi .img-phanhoi-1, .main-phanhoi .img-phanhoi-2, .main-phanhoi .img-phanhoi-3{
	width: 156px;
	height: 156px;
	border-radius: 50%;
	display: block;
	margin: auto;
}

.main-phanhoi .img-phanhoi-1{
	background: url(../images/gioithieu/logo-1.png) no-repeat center #FFFFFF;
}

.main-phanhoi .img-phanhoi-2{
	background: url(../images/gioithieu/logo-2.png) no-repeat center #FFFFFF;
}

.main-phanhoi .img-phanhoi-3{
	background: url(../images/gioithieu/logo-3.png) no-repeat center #FFFFFF;
}

.main-phanhoi p{
	font-size: 13px;
	line-height: 15px;
	text-align: justify;
	color: #FFFFFF;
	margin-top: 19px;
}

.main-phanhoi .xemthem{
	text-align: center;
	margin-top: 4em;
}

.main-phanhoi .xemthem a{
	background: url(../images/gioithieu/group621.png) no-repeat center;
	padding: 18px 42px 16px 42px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	text-decoration: none;
}

/* Dịch vụ  ----------------------------------------------------------------------------------------------------------------------------------------------*/

.banner-dv img{
	width: 100%;
	background: url(../images/dichvu/rectangle.png) no-repeat center;
}

.list-dichvu .col-md-3{
	background: #FFFFFF;
	border: 1px solid #C4C4C4;
	box-sizing: border-box;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.list-dichvu{
	margin-top: -10em;
}

.list-dichvu .col-md-3{
	padding: 16px 15px 10px 15px ;
}

.list-dichvu .icon-dv-1, .list-dichvu .icon-dv-2, .list-dichvu .icon-dv-3, .list-dichvu .icon-dv-4 {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: block;
	margin: auto;
}

.list-dichvu .icon-dv-1{
	background: url(../images/dichvu/icon-1.png) no-repeat center #0E75BC;
}

.list-dichvu .icon-dv-2{
	background: url(../images/dichvu/icon-2.png) no-repeat center #0E75BC;
}

.list-dichvu .icon-dv-3{
	background: url(../images/dichvu/icon-3.png) no-repeat center #0E75BC;
}

.list-dichvu .icon-dv-4{
	background: url(../images/dichvu/icon-4.png) no-repeat center #0E75BC;
}

.list-dichvu h3{
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
	color: #000000;
	text-transform: uppercase;
	margin-top: 18px;
}

.list-dichvu p{
	font-size: 14px;
	line-height: 16px;
	text-align: justify;
	color: #000000;
	margin-top: 26px;
}


.update{
	margin-top: 56px;
	background: #FFFFFF;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-left: 31px solid #0E75BC;
	margin-bottom: 60px;
	padding: 11px 0px 35px 12px
}

.update h3{
	font-size: 24px;
	line-height: 28px;
	text-align: justify;
	color: #000000;
	margin-bottom: 1.5em;
}

.update a{
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #FF0202;
	text-decoration: none;
}

.update a span{
	padding-left: 10px;
}

/* Phí dịch vụ  */

.phi-dichvu{
	margin-top: 3em;
}

.phi-dichvu .col-md-4{
	background: #1695CF;
	padding: 5em 1.2em 0 1.2em;
}

.phi-dichvu .img{
	width: 10em;
	height: 10em;
	border-radius: 50%;
	background: url(../images/dichvu/image29.png) no-repeat center #0E75BC;
	display: block;
	margin: auto;
}

.phi-dichvu h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-top: 1.9em;
}

.phi-dichvu .col-md-4 p{
	font-size: 22px;
	line-height: 26px;
	text-align: justify;
	color: #FFFFFF;
	margin-top: 25px;
}

.phi-dichvu .col-md-8{
	background: #0E75BC;
}

.phi-dichvu .col-md-8 ul{
	padding: 0px 15px 55px 15px;
}
.phi-dichvu .col-md-8 ul li{
	list-style: none;
	margin-top: 25px;
}

.phi-dv{
	display: flex;
}

.phi-dv .item-1, .phi-dv .item-2, .phi-dv .item-3, .phi-dv .item-4, .phi-dv .item-5{
	width: 43px;
	height: 43px;
	border-radius: 50%;
}

.phi-dv .item-1{
	background: url(../images/dichvu/image30.png) no-repeat center #FFFFFF;
}

.phi-dv .item-2{
	background: url(../images/dichvu/image31.png) no-repeat center #FFFFFF;
}

.phi-dv .item-3{
	background: url(../images/dichvu/image32.png) no-repeat center #FFFFFF;
}

.phi-dv .item-4{
	background: url(../images/dichvu/image33.png) no-repeat center #FFFFFF;
}

.phi-dv .item-5{
	background: url(../images/dichvu/image34.png) no-repeat center #FFFFFF;
}

.phi-dv h4{
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	text-align: justify;
	color: #FFFFFF;
	margin-left: 18px;
	padding-top: 8px;
}

.phi-dichvu .col-md-8 p{
	font-size: 14px;
	line-height: 16px;
	text-align: justify;
	color: #FFFFFF;
	margin-top: 15px;
}

/* Kho quốc tế  */

.khoqt{
	margin-top: 8em;
}

.khoqt .title{
	display: flex;
	align-items: center;
}

.khoqt .title h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	color: #0E75BC;
	text-transform: uppercase;
	padding: 0.5em 1em 0 1em;
}

.khoqt p{
	font-size: 18px;
	line-height: 21px;
	text-align: justify;
	color: #0E75BC;
	padding-top: 10px;
}

.khoqt .main{
	margin-top: 1em;
}

.khoqt .main .banner img{
	max-width: 100%;
	background: #0E75BC;
	padding: 30px;
	border-radius: 50%;
}

.khoqt .main .box-1{
	display: flex;
	background: #A5DFF9;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 67px;
	margin-top: 24px;
	padding: 24px 20px 0 33px;
	height: 145px;
}

.khoqt .main .box-1 .item-1, .khoqt .main .box-1 .item-2, .khoqt .main .box-1 .item-3 {
	width: 6em;
	height: 6em;
	border-radius: 50%;
}

.khoqt .main .box-1 .item-1{
	background: url(../images/dichvu/image35.png) no-repeat center #0E75BC;
}

.khoqt .main .box-1 .item-2{
	background: url(../images/dichvu/image36.png) no-repeat center #0E75BC;
}

.khoqt .main .box-1 .item-3{
	background: url(../images/dichvu/image37.png) no-repeat center #0E75BC;
}

.khoqt .main p{
	font-size: 14px;
	line-height: 16px;
	text-align: justify;
	color: #0E75BC;
}

.khoqt .main h4{
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	text-align: justify;
	color: #0E75BC;
	padding-top: 7px;
}

.khoqt .main h4#span{
	margin-top: 1.5em;
}

/* Dịch vụ vận chuyển  */

.dichvu-vc{
	margin-top: 15em;
}

.dichvu-vc .title {
	display: flex;
	justify-content: right;
	align-items: start;
}
.dichvu-vc .title h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	color: #0E75BC;
	padding: 0 1em;
	text-transform: uppercase	;
}

.dichvu-vc .title img{
	padding-top: 7px;
}

.banner-dvvc{
	padding-left: 0;
}

.banner-dvvc img{
	position: absolute;
	max-width: 100%;
	margin-top: -42em;
	background: #FFFFFF;
	border-radius: 0 50% 50% 0;
	padding: 19px 30px 18px 0 ;

}

.dichvu-vc .main{
	background: #0E75BC;
	border-radius: 27px;
	padding: 33px 30px 0px 10px;
}

.dichvu-vc .main p{
	font-size: 18px;
	line-height: 21px;
	text-align: right;
	color: #FFFFFF;
	padding-bottom: 2em;
}

.dichvu-vc .main ul li{
	list-style: none;
	display: flex;
	align-items: start;
	justify-content: right;
	margin-top: 34px;
}

.dichvu-vc .main ul li img{
	margin-left: 10px;
}

.dichvu-vc .main h6{
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	text-align: right;
	color: #FFFFFF;
}

.dichvu-vc .main ul{
	padding-bottom: 5em;
}

/* Chuyển phát  */

.chuyenphat .title {
	display: flex;
	justify-content: right;
	align-items: start;
	margin-top: 9.5em;
}
.chuyenphat .title h3{
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	color: #0E75BC;
	padding: 0 1em;
	text-transform: uppercase	;
}

.chuyenphat .title img{
	padding-top: 7px;
}

.chuyenphat p{
	font-size: 20px;
	line-height: 30px;
	text-align: right;
	color: #0E75BC;
	margin-top: 15px;
}

.bg-chuyenphat{
	background-image: url(../images/dichvu/vector49.png);
	background-repeat: no-repeat;
	background-size: 100%;
}

.main-chuyenphat{
	padding: 8em 0 10em 0em;
	margin-bottom: 11em;
}

.chuyen-phat-block{
	margin-top: 30px;
}

.chuyen-phat-block .icon{
	display: flex;
	justify-content: right;
	align-items: start;
}

.chuyen-phat-block .icon .text {
	background-image: url(../images/dichvu/vector50.png);
	background-repeat: no-repeat;
	background-size: 100%;
	margin-left: 23px;
}

.chuyen-phat-block .icon img{
	padding-top: 8px;
}

.chuyen-phat-block .icon .text h5{
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	text-align: right;
	color: #0E75BC;
	padding: 9px 16px 8.5px 40px;
}

.chuyen-phat-block h6{
	font-size: 18px;
	line-height: 21px;
	text-align: right;
	color: #FFFFFF;
	margin-top: 19px;
}

/* Trang tin tức -------------------------------------------------------------------------------------------------------------------*/

.bg-banner-tintuc{
	padding: 0;
	margin-bottom: 36px;
	border-top: 2px solid #0E75BC;
}

.bg-banner-tintuc .banner img{
	width: 100%;
}

.bg-banner-tintuc .banner h3{
	position: absolute;
	top: 46%;
	left: 13%;
	font-weight: bold;
	font-size: 72px;
	line-height: 84px;
	text-align: center;
	color: #FFFFFF;
}

.block-new .title {
	display: flex;
}

.block-new .title img{
	background: #0E75BC;
	padding: 6px 4px 2px 4px;
	border-radius: 50%;
}

.block-new .title h3{
	font-weight: bold;
	font-size: 36px;
	line-height: 42px;
	text-align: center;
	color: #0E75BC;
	margin-left: 21px;
}

.block-new .line{
	width: 100%;
	background: #0E75BC;
	padding: 4px 0;
	margin: 12px 0px 30px 0px;

}

.page-tin-tuc h1{
	font-size: 3em;
	font-weight: bold;
	color: #0E75BC;
	margin: 0;
}

.page-tin-tuc .title p{
	display: none;
}

/* Phân trang  */

.post-detail{
	clear: both;
}

.page-tin-tuc .post-detail img {
    float: left;
    /* margin: 0 10px 10px 0; */
}

.page-tin-tuc .main  .post-title-gory a{
	color: #0E75BC;
	font-weight: bold;	
	font-size: 19px;
	margin-bottom: 1em;
	text-decoration: none;
}

.page-tin-tuc .main  .post-title-gory a:hover{
	color: #fbbe20;
}

.page-tin-tuc .main .post-item-bv p{
	font-size: 13px !important;
	letter-spacing: 0.02em;
	line-height: 1.8em;
	display: block;
}

.page-tin-tuc a.more-link{
	margin-top: 1em;
	display: table;
	background: #0E75BC;
	padding: 5px 20px;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #0E75BC;
	float: right;
}

.page-tin-tuc a.more-link:hover{
	background: #FFFFFF;
	color: #0E75BC;
}

.page-tin-tuc img{
	width: 195px !important;
	transition: all 1s;

}

.page-tin-tuc .post-detail{
    overflow: hidden;
	float: left;
	border: 5px solid #0E75BC;
	margin-right: 10px;
}

.page-tin-tuc .post-detail:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

.page-tin-tuc .boxtinok{
	border-bottom: 1px solid #0E75BC;
	padding: 4em 0;
}


.wp-pagination{
	position: relative;
}


.pagenavi{
	margin: 2em 0;
	text-align: left;
}

.pagenavi a {
	color: #0E75BC;
	text-decoration: none;
}
   
.pagenavi a:hover {
	color: #fff;
	background: #0E75BC;
}
	
.pagenavi .current{
	color: #fff;
	background: #0E75BC;
	font-size: 12px;
}
   
   
.pagenavi .page-numbers{
	border:1px solid #DDD;
	padding: 5px 11px;
	font-size: 12px;
}

.wp-pagination p.date {
	margin-top: 10px;
}

.wp-pagination p.date i{
	margin-right: 10px;
	color: #0E75BC;
}

/* dịch vụ  */

.block-new .col-md-3 .main{
	padding: 1em;
	box-shadow: 0 10px 20px #0E75BC, 0 6px 6px #0E75BC !important;
}

.block-new .col-md-3 .main ul{
	padding: 0;
}

.block-new .col-md-3 .main ul li{
	list-style: none;
	padding: 1em 0;
}

.block-new .col-md-3 .main ul li a{
	font-size: 16px;
	color: #0E75BC;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.block-new .col-md-3 .main ul li a:hover{
	color: #fbbe20;
}

.block-new .col-md-3 .main ul li a i{
	padding-right: 0.5em;
	font-size: 12px;
}

.block-new #list-dv{
	padding-left: 2em;
}

.block-new .col-md-3 .title .icon{
	width: 39px;
	height: 39px;
	background: #0E75BC;
	border-radius: 50%;
}

.block-new .title i{
	display: block;
	text-align: center;
	margin-top: 12px;
	color: #FFFFFF;
}

.page-tin-tuc ul li{
	border-bottom: 1px solid #0E75BC;
	padding: 4em 0;
}

/* Trang liên hệ --------------------------------------------------------------------------------------------------------------------------------- */

.banner-lh{
	padding: 0;
}

.banner-lh .image img{
	width: 100%;
}

.banner-lh .banner-title{
	position: relative;
	background: #0E75BC;
	border-radius: 14px;
	margin-top: -4em;
}

.banner-lh .banner-title h3{
	font-weight: bold;
	font-size: 36px;
	line-height: 44px;
	color: #FFFFFF;
	padding: 42px 0 43px 0;
	text-align: center;
}

.banner-lh .tvv{
	margin-top: 22px;
}

.banner-lh .tvv img{
	max-width: 100%;
}

.banner-lh .tvv{
	display: flex;
	align-items: start;
	justify-content: center;
}

.banner-lh .tvv p{
	font-weight: 300;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
	margin: 2em 0 0 2.5em;
	
}

/* Liên hệ  */

.lien-he .row .col-md-4, .lien-he .row .col-md-3{
	display: block;
	margin: 0 auto;
	padding: 0;
}

.lien-he{
	margin-top: 7em;
}

.lien-he .live-chat{
	padding-top: 33px;
}

.lien-he ul{
	padding: 0;
}

.lien-he ul li {
	list-style: none;
}

.lien-he .live-chat ul li.title{
	display: flex;
	align-items: start;
	margin-bottom: 12px;
}

.lien-he .live-chat .id1{
	padding-bottom: 1.5em;
}

.lien-he .live-chat ul li.title h4{
	font-size: 24px;
	line-height: 28px;
	color: #000000;
	margin-left: 1em;
}

.lien-he p{
	font-size: 18px;
	line-height: 21px;
	color: #000000;
}

.lien-he  p span{
	font-weight: bold;
	text-transform: capitalize;
}

.lien-he .live-chat ul li.icon{
	display: flex;
	align-items: start;
	margin-top: 3em;
}

.lien-he .live-chat ul li.icon #zalo{
	padding-top: 5px;
}

/* phone  */

.lien-he .phone{
	background: #46B0E1;
	padding: 20px 30px 35px 30px;
}

.lien-he .phone .icon{
	display: flex;
	align-items: start;
	justify-content: center;
	padding-bottom: 1em;
}

.lien-he .phone .icon h4{
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	color: #000000;
	margin: 7px 0 0 5px;
}

.lien-he .phone .id1{
	padding-bottom: 2.5em;
}

.lien-he .phone ul li h3{
	font-weight: 500;
	font-size: 19px;
	line-height: 42px;
	color: #000000;
	padding-top: 1.2em;
}

.lien-he .phone ul li h3 a{
	text-decoration: none;
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	color: #000000;
}

/* email  */

.lien-he .email{
	background: #FFFFFF;
	border: 1px solid #29A1DA;
	box-sizing: border-box;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	padding: 22px 30px 85px 30px;

}

.lien-he .email .icon {
	display: flex;
	align-items: start;
	justify-content: center;
	padding-bottom: 1.3em;
}

.lien-he .email .icon h4{
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	color: #000000;
	padding: 0.4em 0 0 0.5em;
}

.lien-he .email .btn{
	display: block;
	margin: auto;
	padding-top: 5em;
}

.lien-he .email .btn a{
	text-decoration: none;
	background: #0E75BC;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	text-transform: capitalize;
	padding: 15px 50px 11px 50px;
	border: 1px solid #0E75BC;
}

.lien-he .email .btn a:hover{
	background: #FFFFFF;
	color: #0E75BC;
}

/* Thông tin cần lưu ý  */

.luu-y{
	margin-top: 5em;
	background: #0E75BC;
	padding: 27px 0 54px 20px;
}

.luu-y h3{
	font-weight: 500 !important;
	font-size: 30px !important;
	line-height: 35px;
	color: #FFFFFF !important;
}

.luu-y ul{
	padding: 0;
	margin-top: 3em ;
}

.luu-y ul li {
	list-style: none;
	margin-top: 2em;
}

.luu-y ul li a{
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.luu-y ul li a img{
	padding-right: 1.6em;
}

/* Holine  */

.tra-cuu{
	margin-top: 5em;
	background-image: url(../images/lienhe/rectangle.png) , url(../images/lienhe/maskgroup.png);
	background-repeat: no-repeat;
	background-size: 100%;
	padding-bottom: 5em;
}

.tra-cuu h1{
	font-weight: bold !important;
	font-size: 72px !important;
	line-height: 84px !important;
	color: #FFFFFF !important;
	text-align: center;
	padding-top: 45px !important;
	border: none !important;
	margin: 0 !important;
}

.tra-cuu h4, .tra-cuu h4 span{
	font-size: 30px !important;
	line-height: 69.69%;
	text-align: center;
	color: #FFFFFF !important;
	margin-top: 0.5em;
}

.tra-cuu h4 span{
	color: #fbbe20 !important;
	margin-top: 1em;
}

.tra-cuu .search{
	display: flex;
	justify-content: center;
}

.tra-cuu .search input{
	margin: 1em;
	width: 40%;
	padding: 23px 0 21px 0;
	border: none;
	outline: none;
	text-indent: 2em;
	font-size: 30px;
	border-radius: 15px;
}

.tra-cuu .search #tim-dia-chi{
	background-image: url(../images/lienhe/image-2.png);
	background-repeat: no-repeat;
	background-position-x: 10px;
	background-position-y: center;
}

.tra-cuu .search #tim-dia-chi::placeholder{
	font-size: 30px;
	color: #46B0E1;
}

.tra-cuu .search #tra-cuu-mdh{
	background: #0E75BC;
	background-image: url(../images//lienhe/image-3.png);
	background-repeat: no-repeat;
	background-position-x: 10px;
	background-position-y: center;
	color: #FFFFFF;
}

.tra-cuu .search #tra-cuu-mdh::placeholder{
	font-size: 30px;
	color: #FFFFFF;
}

/* Css Mobile --------------------------------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px){
    html, body { 
       max-width: 100%;
	   overflow-x: hidden; 
   }

	/* Trang chủ  */

   .header .brand img{
	   max-width: 35%;
   }

   .header ul.menu{
	   position: absolute;
	   top: 15%;
   }

   .header .wrapper {
	   display: -webkit-box;
   }

   .header .opened-menu {
	   font-size: 1.3em;
	   margin-top: -1em;
	   color: #0E75BC;
   }

   .header .closed-menu{
	   color: #0E75BC;
   }

   .banner-home .title-banner{
	   padding-top: 0;
   }

   .banner-home{
	   padding-bottom: 1em;
	   background: url(../images/trangchu/modern.png) center no-repeat #0E75BC;
   }

   .banner-home .row{
	   padding: 0;
   }

   .header .menu > .menu-item:hover > a{
	   background: #FFFFFF;
	   border-radius: 0;
	   color: #0E75BC;
   }

   .banner-home .title-banner h3{
	   font-size: 22px;
	   text-align: center;
	   line-height: 2em;
	   padding-top: 1.5em;
   }

   .banner-home .title-banner img{
	   max-width: 5%;
   }

   .banner-home .title-banner p{
	   display: none;
   }

   .banner-home .images img{
	   display: none;
   }

   .banner-home .btn a{
	   font-size: 12px;
	   width: 100%;
	   padding: 3px 0;
   }

   .title-dv h3{
	   font-size: 23px !important;
	   margin-top: 1em;
   }

   .content-dichvu {
	   margin-top: 0;
   }
   .content-dichvu .col-md-4{
	   margin-top: 1em;
   }

   .content-dichvu img{
	   max-width: 100%;
	   padding-top: 3em;
   }

   .content-dichvu h4{
	   font-size: 14px;
	   margin-top: 1em;
   }
   .content-dichvu p{
	   font-size: 14px;
   }

   .content-dichvu .col-6{
	   padding: 5px;
   }

   .content-dichvu .col-6 p{
	   display: none;
   }

   .content-dichvu .row .col-md-12{
	   height: 15em;
   }

   .content-2{
	   margin-top: 5px;
   }

   .bg-tinhnang{
	   padding: 0;
	   background: url(../images/trangchu/maskgroup.png) #0E75BC;
	   padding-bottom: 2em;
   }

   .main-tinhnang .title{
	   border: none;
   }

   .main-tinhnang img{
	   max-width: 100%;
   }

   .main-tinhnang .col-md-6 h3{
	   font-size: 26px;
   }

   .main-tinhnang .row-tinhnang-1{
	   margin-top: 0;
   }

   .main-tinhnang .col-md-5{
	   margin: 1em;
	   margin-bottom: 0;
	   height: 14em;
   }

 	.row-tinhnang-2{
	   margin-top: 0;
	   margin: 0.1em;
   }

   .main-loiich {
	   margin-left:  0;	
   }

   .main-loiich h3{
	   font-size: 18px;
   }

   .main-loiich ul li{
	   font-size: 14px;
   }

   .content-loiich .img-loiich-2{
	   display: none;
   }

   .content-loiich{
	   margin-top: 1em;
   }

   .img-loiich img{
	   display: none;
   }

   .img-loiich-2 img{
	   display: none;
   }

   .content-loiich .col-md-6{
	   padding: 0;
   }
   .content-loiich .col-md-6 .img img{
	   display: block;
	   margin:  0 auto;
   }

   .bg-gioithieu{
	   margin-top: 1em;
	   padding: 0;
	   background-size: 100%;

   }

   .main-gioithieu{
	   padding: 0;
   }

   .main-gioithieu .title{
	   margin-top: 1em;
   }

   .main-gioithieu .title h3{
	   font-size: 26px;
   }

   .main-gioithieu .title p{
	   font-size: 14px;
	   margin: 0;
   }

   .main-gioithieu img{
	   display: none;
   }

   .main-gioithieu .btn{
	   margin-top: 5em;
   }

   .main-gioithieu .btn a{
	   background: #0E75BC;
	   color: #FFFFFF;
	   font-size: 18px;
	   border: 1px solid #0E75BC;
   }

   .main-gioithieu .btn a:hover{
	   background: #FFFFFF;
	   color: #0E75BC;
   }

   .content-tintuc h3{
	   font-size: 22px;
   }

   .content-tintuc .main-tintuc{
	   margin-top:  0;
   }

   .content-tintuc ul{
	   display: block;
	   padding: 0 !important;
   }

   .content-tintuc ul li{
	   margin: 0.5em 0;
   }

   .content-tintuc .container{
	   padding: 0;
   }

   .form-dangky{
	   margin-top: 3em;
   }

   .form-dangky h3, .title-doitac h3{
	   font-size: 22px;
	   text-align: center;
   }

   .form-dangky .form input.nhap, .form-dangky .form textarea{
	   font-size: 20px;
   }

   .form-dangky .form input.nhap::placeholder, .form-dangky .form textarea::placeholder{
	   font-size: 20px;
   }

   .form-dangky .dangky input{
	   font-size: 22px;
	   padding: 14px 40px 13px 51px;
   }

   .title-doitac h3{
	   margin-top: 5em;
   }

   .form-dangky img{
	   display: none;
   }

   .form-dangky .dangky a{
	   font-size: 20px;
   }

   #doitac img{
	   max-width: 100%;
   }

   #doitac {
	   margin-top: 2em;
   }

   #doitac .col-6{
	   margin-top: 1em;
   }
   
   .bg-doitac{
	   padding: 0;
   }

   #doitac .carousel-control-prev img, #doitac .carousel-control-next img{
	   max-width: 50%;
   }

   /* footer  */

   button#btn-top{
	   right: 10px;
   }

   .bg-footer{
	   margin-top: 3em;
	   padding: 0;
	   background: url(../images/footer/img-footer.png) no-repeat center #0E75BC;
   }

   .bg-footer .img-footer img{
	   max-width: 100%;
	   opacity: 0.4;
	   margin-top: -2em;
   }

   .main-footer{
	   padding-top: 1em;
   }

   .main-footer h3{
	   font-size: 20px;
   }

   .main-footer ul li a, .main-footer ul li{
	   font-size: 16px
   }

   .main-footer ul.app{
	   display: flex;
	   justify-content: center;
   }

   .main-footer ul.app img{
	   margin: 1em;
   }

   .main-footer .title .col-md-2, .main-footer .title .col-md-3{
	   display: none;
   } 

   .main-footer .title h3{
	   text-align: center;
   }

   .main-footer .logo img{
	   display: block;
	   margin: auto;
   }

/* Trang giới thiệu mobile -------------------------------------------------------------------- */

   .carousel-indicators{
	   top: 80%;
   }

   .banner-gioithieu ul.carousel-indicators li{
	   width: 8px;
	   height: 8px;
	   border-radius: 50%;
   }

   .title-gioithieu h3{
	   font-size: 22px !important;
   }

   .form-search{
	   margin-top: 1em;
   }

   .form-search input{
	   padding: 0.5em 0;
   }

   .form-search input#nhap{
	   width: 100%;
	   font-size: 20px;
   }

   .form-search input#nhap::placeholder{
		font-size: 20px;
   }

   .form-search input#btn-search{
	   width: 20%;
	   background: url(../images/gioithieu/search.png) no-repeat center #0E75BC;
	   background-size: 50%;
   }

   .chucnang{
	   margin-top: 0;
   }

   .chucnang h5{
	   margin-top: 1em;
   }

   .chucnang .col-md-4{
	   margin-top: 1em;
   }

   .chucnang .box-1 {
	   margin-top: 0;
	   padding: 2em 0;
   }

   .chucnang .box-2 {
	   padding: 2em 0;
   }

   .luachon {
	   margin-top: 0;
   }

   .luachon .col-md-12{
	   padding: 2em 0;
   }

   .luachon .col-md-3{
	   margin-top: 1em;
   }

   .alt-gioithieu .main li .img, .alt-gioithieu .main li .img-2, .alt-gioithieu .main li .img-3{
	   width: 100px;
   }

   .luachon h4{
	   font-size: 16px;
   }

   .alt-gioithieu .col-md-4 h3{
	   padding-top: 1em;
	   font-size: 22px;
	   line-height: 1.5em;
   }

   .alt-gioithieu .col-md-4 p{
	   font-size: 18px;
	   padding-top: 0;
   }

   .alt-gioithieu .main{
	   padding: 0;
   }

   .alt-gioithieu .main h4{
	   font-size: 20px;
   }

   .title-gioithieu h6{
	   font-size: 16px;
	   margin-top: 1em;
   }

   .main-phanhoi{
	   margin: 1em;
   }

   .main-phanhoi .col-md-3{
	   margin-top: 1em;
   }

   .main-phanhoi .xemthem a{
	   font-size: 20px;
   }

/* Trang tin tức mobile ------------------------------------------------------------------------------------ */

   .block-new .title {
	   margin-top: 1em;
   }

   .block-new .title h3{
	   font-size: 22px;
	   margin-left: 0;
   }

   .block-new .title .icon img{
	   max-width: 80%;
	   margin-top: 0.4em;
   }

   .block-new .line{
	   padding: 2px 0;
	   margin:  0;
	   margin-bottom: 10px;
   }

   .page-tin-tuc .post-detail img{
	   float: none !important;
   }

   .page-tin-tuc img{
	   width: 100% !important;
   }


   .block-new .col-md-3 .title .icon{
	   margin-right: 0.5em;
   }

   .page-tin-tuc a.more-link{
	   float: none !important;
   }

/* Trang liên hệ mobile --------------------------------------------------------------------------------------------------- */

   	.banner-lh .banner-title {
		   margin-top: -1em;
	   }

	.banner-lh .banner-title h3{
		font-size: 22px;
		padding: 5px 0;
	}

	.banner-lh .tvv{
		 display: block;
	}

	.banner-lh .tvv img{
		display: block;
		margin:  auto;
		margin-bottom: 1em;
	}

	.banner-lh .tvv p{
		margin: 0;
		font-size: 22px;
		text-align: center;
	}

	.lien-he{
		margin-top: 1em;
	}

	.lien-he .row .col-md-3{
		padding: 1em;
	}

	.lien-he .live-chat ul li.title{
		justify-content: center;
	}
	
	.lien-he .live-chat ul li.title h4{
		font-size: 20px;
	}
	.lien-he .live-chat ul li.icon{
		margin-top: 1em;
	}

	.lien-he .live-chat ul li.icon a{
		display: block;
		margin:  auto;
	}

	.lien-he .phone .icon h4, .lien-he .phone .icon h4{
		font-size: 22px;
	}

	.lien-he .phone ul li h3, .lien-he .phone ul li h3 a{
		font-size: 25px;
		text-align: center;
	}

	.lien-he .email .btn{
		padding-top: 2em;
	}

	.lien-he .email .btn a{
		font-size: 22px;
		padding: 10px 40px 7px 40px;
	}

	.luu-y h3{
		font-size: 22px !important;
		text-align: center;
	}

	.luu-y ul li a{
		font-size: 18px;
		line-height: 20px;
		margin-top: 10px;
	}

	.luu-y ul li a img{
		padding-right: 1em;
	}

	.tra-cuu h1{
		font-size: 22px !important;
		line-height: 26px !important;
		padding-top: 2.5em !important;
	}

	.tra-cuu h4, .tra-cuu h4 span{
		font-size: 12px !important;
		line-height: 20px !important;
	} 

	.tra-cuu{
		margin-top: 3em;
		background-image: url(../images/lienhe/rectangle.png), url(../images/lienhe/maskgroup.png);
		background-size: cover;
	}

	.tra-cuu .search{
		display: block;
		margin: auto;
	}

	.tra-cuu h4 span{
		margin-top: 0;
	}

	.tra-cuu .search input {
		width: 100%;
		margin: 0.5em;
		font-size: 18px;
		padding: 0.5em 0;
	}

	.tra-cuu .search #tim-dia-chi, .tra-cuu .search #tra-cuu-mdh{
		background-size: 8%;
		text-indent: 2.4em;
	}

	.tra-cuu .search #tim-dia-chi::placeholder, .tra-cuu .search #tra-cuu-mdh::placeholder{
		font-size: 18px;
	}

/* Trang dịch vụ  */

	.list-dichvu{
		margin-top:0;
	}

	.list-dichvu h3{
		font-size: 14px;
	}

	.list-dichvu p{
		font-size: 12px;
		margin-top: 1em;
	}

	.update{
		margin-top: 2em;
		border-left: 1em solid #0E75BC;
		padding: 11px 0 20px 8px;
		margin-bottom: 0;
	}

	.update h3{
		font-size: 20px;
		margin-bottom: 0.5em;
	}

	.update a{
		font-size: 20px;
	}

	.phi-dichvu{
		margin-top: 1em;
	}

	.phi-dichvu .col-md-4{
		padding: 1em
	}

	.phi-dichvu h3{
		font-size: 20px;
		margin-top: 0.5em;
	}

	.phi-dichvu .col-md-4 p{
		font-size: 18px;
		margin-top: 0.5em;
	}

	.phi-dichvu .img{
		width: 5em;
		height: 5em;
		background-size: 80%;
	}

	.phi-dv h4{
		font-size: 20px;
	}

	.phi-dv .item-1, .phi-dv .item-2, .phi-dv .item-3, .phi-dv .item-4, .phi-dv .item-5{
		width: 2em;
		height: 2em;
		background-size: 80%;
		margin-top: 0.2em;	
	}

	.khoqt{
		margin-top: 2em;
	}

	.khoqt .title{
		justify-content: center;
	}

	.khoqt .title h3{
		font-size: 22px;
	}

	.khoqt p{
		font-size: 16px;
	}

	.khoqt .main .box-1 .item-1, .khoqt .main .box-1 .item-2, .khoqt .main .box-1 .item-3{
		max-width: 50%;	
	}

	.khoqt .main h4{
		font-size: 20px ;
	}

	.khoqt .main .box-1{
		height: auto;
	}

	.khoqt .main .banner img{
		width: 100%;
	}

	.khoqt .main .content{
		padding-bottom: 1.5em;
	}

	.khoqt .main .col-md-6.main-1{
		order: 1;
	}

	.khoqt .main .col-md-6.main-2 img{
		order: 2;
	}

	.banner-dvvc img{
		display: none;
	}

	.dichvu-vc{
		margin-top: 5em;
	}

	.dichvu-vc .main p, .dichvu-vc .main h6{
		font-size: 16px;
		text-align: justify;
		order: 2;
	}

	.dichvu-vc .main ul li img{
		margin: 0;
		order: 1;
		margin-right: 5px;
	}

	.dichvu-vc .main ul{
		padding: 0;
	}

	.dichvu-vc .main ul li{
		margin-top: 1em;
		justify-content: left;
	}

	.chuyenphat .title{
		margin-top: 3em;
	}

	.chuyenphat .title h3{
		text-align: center;
		font-size: 22px;
	}

	.chuyenphat p{
		font-size: 18px;
		text-align: justify;
	}
	
	.bg-chuyenphat{
		background: #0E75BC;
	}

	.main-chuyenphat{
		padding: 2em 0;
		margin-bottom: 5em;
	}

	.chuyen-phat-block .icon .text h5{
		font-size: 20px;
	}

	.chuyen-phat-block h6{
		font-size: 16px;
		text-align: justify;
		text-align: right;
	}

/* post Thông tin chi tiết  */

	#sidebar{
		position: inherit !important;
		float: none;
		margin: 1em;
	}

	.type-post {
		margin: 0 0.5em !important; 
		padding: 1em !important;
	}


	.aligncenter{
		max-width: 100%;
	}

	.type-post h1{
		text-align: center !important;
		font-size: 1.7em !important;
	}

	.type-post h2{
		font-size: 1.4em !important;
		text-align: left;
		line-height: 1.3em;
	}

	.type-post h3{
		font-size: 1.2em !important;
		text-align: left;
	}

	.type-post p{
		font-size: 0.9em !important;
	}
	.wp-caption-text{
		font-size: 0.7em;
	}

	.type-post ul li{
		font-size: 0.9em;
	}

	.type-post ul{
		padding-left: 1em;
	}

	/* Page  */

	.type-page {
		margin: 0 0.5em !important; 
		padding: 0 !important;
	}

	.type-page h1{
		font-size: 28px !important;
		padding-top: 2em;
		text-align: center;
	}

	.type-page p strong{
		font-size: 18px !important;
	}

	.type-page span{
		font-size: 15px !important;
	}
	/*  */

	#post-6, .post-10{
		margin: 0 !important;
	}

	/*  */

	.wp-caption.alignnone{
		display: contents;
	}
 
}

/* Post */

.customize-support{
	position: relative;
}

.type-post .entry-header{
	display: block;
}

.type-post .entry-header .entry-title{
	font-size: 2em;
	font-weight: bold;
	text-align: left;
	text-transform: uppercase;
	line-height: 1.5em;
}

.type-post .entry-header .post-thumbnail{
	display: none;
}

.type-post{
	margin: 0 30% 0 10%;
	box-shadow:  4px 0px 5px rgb(0 0 0 / 10%), 0px 1px 0px rgb(0 0 0 / 11%) !important;
	padding: 2em 1em 2em 0;
}

.type-post h1{
	color: #0E75BC;
}

#ez-toc-container a{
	color: #0E75BC;
}

.type-post h2{
	display: block;
	color: #0E75BC;
	font-size: 1.6em;
}

.type-post h3{
	font-size: 1.3em;
}

.type-post h4{
	font-size: 1em;
	color: #000000;
}

.type-post #ez-toc-container{
	display: inline-block;
	margin-top: 1em;
}

.entry-footer{
	display: none;
}
 
.comments-area.default-max-width.show-avatars{
	display: none;
}

.navigation.post-navigation{
	display: none;
}

.type-post p b{
	color: #0E75BC;
}

.type-post h3{
	color: #000000;
}

#sidebar{
	position: fixed;
	top: 10.5em;
	right: 10%;
	box-shadow:  4px 0px 5px rgb(0 0 0 / 10%), 0px 1px 0px rgb(0 0 0 / 11%) !important;
}

.wp-caption-text{
	font-style: italic;
}

.type-post ul li{
	padding: 0.2em;
}

/* -------------- */

.header .menu2{
	display: none;
	position: absolute;
	width: 15em;
	background: #FFFFFF;
	height: auto;
	padding: 0 0 0.75rem 0;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	-webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
	z-index: 2;
	border-radius: 0 12px 12px 12px;
	overflow: visible;
	border-left: none;	
	margin-left: 320px;
    margin-top: -60px;
}

.header .menu2 li{
	list-style: none;
}

.header .menu2 li a{
	display: block;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
    padding: 1em 0.5em;
    color: #000000;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    text-decoration: none;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	background: #FFFFFF;
	margin-top: 8px;
	padding-left: 1em;
}

.header .menu2 li a:hover{
	color: #0E75BC;
	box-shadow: none;
}

.header  li:hover > .menu2{
    display:  block;
}

/*  */

.dv-kho .sidebar .col-md-12{
	box-shadow: 0px 0px 4px rgba(0 0 0 / 25%);
}

.dv-kho .sidebar .col-md-12 .title{
	padding-top: 1em;
	background: #0E75BC;
}

.dv-kho .sidebar .title h4{
	text-transform: uppercase;
	color: #FFFFFF;
}

/*  */

/* sidebar dich vụ  */

.sidebar-dv .title{
	background: #0E75BC;
	padding: 0.5em 1em;
}

.sidebar-dv .title span{
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	text-transform: capitalize;
}

.list-group-item:first-child{
	border-radius: 0;
}

.sidebar-dv .main ul li a{
	color: #0E75BC;
	font-size: 16px;
	text-decoration: none;
	text-transform: capitalize;
}

.sidebar-dv .main ul li:hover > a{
	color: #FFFFFF;
}

.sidebar-dv .main ul li:hover{
	background: #0E75BC;
}

.sidebar-dv #demo ul li{
	padding-left: 3em;
}

/* css page  */

#post-12 .entry-header,.entry-header, #post-8 .entry-header,#post-10 .entry-header{
	display: none;
}

#post-12, #post-8 ,#post-10 {
	margin: 0;
	padding: 0%;
	box-shadow: none !important;
}

.type-page{
	margin: 0 30% 0 10%;
	box-shadow:  4px 0px 5px rgb(0 0 0 / 10%), 0px 1px 0px rgb(0 0 0 / 11%) !important;
	padding: 1em 2em 1em 0
}

.type-page .entry-header{
	display: block;
	margin-bottom: 3em;
}

.type-page h1{
	font-size: 2em;
	color: #0E75BC;
	font-weight: bold;
	letter-spacing: 0.02em;
	margin-bottom: 1em;
	border-bottom: 3px solid #0E75BC;
	padding-bottom: 0.2em;
}

.type-page h2{
	font-size: 24px;
	color: #0E75BC;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 40px;
}

.type-page h3{
	font-size: 18px;
	color: #0E75BC;
	font-weight: bold;
	line-height: 2em;
}

.type-page h4{
	font-size: 16px;
	color: #0E75BC;
	font-weight: bold;
}

.type-post ol li{
	margin: 2em 0;
}
 	

.type-page ul{
	padding:  0;
}

.type-page ul li{
	list-style: none;
	margin: 1em 0;
	font-size: 1em;
	letter-spacing: 0.02em;
	line-height: 25px;
	color: #000000;
}

.type-page p strong {
	font-size: 20px;
	color: #0E75BC;
}
.type-page span{
	font-size: 16px !important;
	line-height: 2.5em;
}
/*  */























