html {
    min-height: 100%;
    overflow-x: hidden;
}

html, body {
    width: 100%;
}

body {
    background: #f9f9f9;
    font-family: 'Montserrat', sans-serif, 'FontAwesome';
    color: #002134;
}

a {
    text-decoration: none;
    transition: .3s all ease-in-out;
    color: #002134;
}

a:hover {
    text-decoration: none;
    font-weight: 500;
    color: #002134;
}

a:focus {
    text-decoration: none;
}

p,a,li,h1,h2,h3,h4,h5,h6 {
    line-height: 1.6em;
    margin: 0;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3em;
    /*text-shadow: 0 2px 3px rgba(0, 33, 52, .4);*/
}

@media(max-width: 990px) {
    h1 {
        font-size: 5vw;
    }
}

@media(max-width: 768px) {
    h1 {
        font-size: 30px;
    }
}

@media(max-width: 576px) {
    h1 {
        font-size: 20px;
    }
}

h2 {
    max-width: 660px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    padding: 20px 0;
    margin: auto;
}

@media(max-width: 576px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

@media(max-width: 576px) {
    h3 {
        font-size: 22px;
    }
}


h4 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

ul {
    padding-left: 10px;
}

ul,li {
    list-style-type: none;
}

p {
    width: 100%;
    font-weight: 400;
    margin: 10px auto;
    line-height: 1.6;
}

button {
    border-color: transparent;
}

button:focus {
    outline: none;
}

.img-response {
    max-width: 100%;
}

.hidden {
    display: none;
}

.noPadding {
    padding: 0;
}

.noMargin {
    margin: 0;
}

@media screen and (min-width: 1200px) {
    .hidden-lg { display: none;}
}

@media(max-width: 1200px) {
    .hidden-md { display: none;}
}

@media(max-width: 990px) {
    .hidden-sm { display: none;}
}

@media(max-width: 768px) {
    .hidden-xs { display: none;}
}

/***********************
  Background SVG style
************************/

svg {
    display: block;
    width: 100%;
    margin-bottom: -1px;
}

.white-section {
    background: #fff;
}

.white-svg {
    fill: #fff;
    stroke: #fff;
}

.gray-svg {
    fill: #f9f9f9;
    stroke: #f9f9f9;
    background: #fff;
}

.dark-section {
    background: #002134;
    background: -webkit-linear-gradient(top,  #002134 0%,#0c3248 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #002134 0%,#0c3248 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.dark-section h2 {
    color: #fff;
}

.dark-section img {
    filter: drop-shadow( 0px 4px 10px rgba(0,0,0,.3));
}

.dark-svg {
    fill: #002134;
    stroke: #002134;
    background: #fff;
    width: 100vw;
    right: 0;
}

#header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 9;
}

#header .navbar-nav > li > a{
    text-align: center;
    padding: 5px 3px;
    cursor: pointer;
    transform: perspective(1px) translateZ(0);
    overflow: hidden;
    font-style: normal;
    line-height: 16px;
    text-align: center;
    /*color: #fff;*/
}

#header .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #FF9534;
    height: 2px;
    transition-property: right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

#header .navbar-nav > li> a:hover:before, #header .navbar-nav > li.active > a:before{
  right: 0;
}

#header .navbar-nav > li.active > a {
    font-weight: 500;
}

#header .navbar-nav{
    /* if list exceeds 4, please move closer to the left, margin-right: auto; margin-left: 2%*/
    margin-right: 2%;
    margin-left: auto;
}

#navbar {
    background: rgba(255,255,255,.5);
    padding: 0 20px;
    transition: .3s ease;
}

.navbar-brand {
    padding: 30px 0 20px 0;
}

.navbar-brand svg {
    width: 150px;
    transition: .3s ease;

}

@media(max-width: 1100px) {
    .navbar-brand {
        margin-left: 20px;
    }
}

@media(max-width: 576px) {
    .navbar-brand {
        padding: 20px 0;
        margin: 0;
    }
    
    .navbar-brand svg {
        width: 100px;
    }
    
    .nav-btn {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

}


.dropdown:hover > .dropdown-menu {
    display: block;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 15em;
}

.dropdown-toggle:after {
    display: none;
}

.navbar-nav > li{
    padding: 0 25px;
    transition: .3s ease;
}

@media(max-width:1200px) {
    .navbar-nav > li {
        /*padding: 0 15px;*/
    }
}

.navbar-nav > li > .dropdown-menu > li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: .3s ease;
    color: #002134;
    text-align: center;
}

.navbar-nav > li > .dropdown-menu > li > a {
    color: #002134;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.navbar-nav > li > .dropdown-menu > li:hover {
    background: #4D6471;
}

.navbar-nav > li > .dropdown-menu > li:hover > a{
    color: #fff;
}

.navbar-nav > li > .dropdown-menu > li:nth-last-child(1) {
    border-bottom: none;
}

.navbar-nav > li > .dropdown-menu {
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.1);
    border-radius: 10px;
}

.nav-btn {
    padding: 12px 20px;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    border-radius: 6px !important;
}

.login{
    border: 1px solid #002134;
    color: #002134;
    /*border: 1px solid #fff;*/
    /*color: #fff;*/
}

.login:hover{
    color: #fff;
    background: #002134;
}

.signup{
    /*background: #fb9435;*/
    background: #002134;
    color: #FFFFFF;
    margin: 0 10px;
}

.signup:hover{
    color: #fff;
    /*background: #ce782a;*/
    background: #4D6471;
}

.booking {
    display: block;
}

.btnBooking:before {
    content: "\f274";
    display: block;
    font: 22px 'FontAwesome';
    color: #fff;
    margin-top: 8px;
}

.btnBooking:hover {
    background-color: #FF9534;
}

.btnBooking {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 80px;
    right: 40px;
    border-radius: 30px;
    text-align: center;
    background-color: #002134;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    font-size: 10px;
    color: #fff;
    line-height: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 4;
}

@media(max-width: 576px) {
    .btnBooking {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 100px;
    }
  
}

.search-wrapper{
    margin-right: 10px;
    z-index:100;
}

#search-tool, #search-tool-mobile{
    float:right;
}

#search-tool .input-group,#search-tool-mobile .input-group{
      
    border-bottom: 1px solid #002134;
}

#search-tool .input-group > input, #search-tool-mobile .input-group > input{
     border: 0;
}

.nav-link > i {
    position: relative;
    font-size: 0.8em;
    padding-left: 3px;
    bottom: 1px;
}


/*****************
    nav-icon
******************/

#pc {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#nav-icon, #search-wrapper button.close {
  float: right;
  width: 60px;
  height: 35px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  transform: scale(0.55);
  z-index: 100;
  margin-left: auto;
}

#search-wrapper button.close {
    width: 60px;
    height: 60px;
}

#nav-icon span, #search-wrapper button.close span {
  display: block;
  position: absolute;
  height: 5px;
  width: 80%;
  /*background: #002134;*/
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.open span {
  background-color: #fff !important;
}

.open.btn {
 color:#fff; 
}

#search-button{
    font-size: 0.8em;
    color: #002134;
    /*color: #fff;*/
    align-self: center;
    margin-right: 10px;
}

#nav-icon span:nth-child(1) {
  top: 4px;
}

#nav-icon span:nth-child(2) {
  top: 20px;
}


#nav-icon.open span:nth-child(1), #search-wrapper button.close span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2), #search-wrapper button.close span:nth-child(2) {
  top: 15px;
  color: #fff;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#search-wrapper button.close span:nth-child(1), #search-wrapper button.close span:nth-child(2) {
    top: 30px;
    left: 5px;
}

@media(max-width:767px) {
  #nav-icon {
    transform: scale(0.4);
  }
}

#nav-content {
  position: absolute;
  background: rgba(0, 33, 52, 0.98);
  display: table-column;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  opacity: 0;
  visibility: hidden;
  z-index: -99;
  padding: 80px 200px 100px 200px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

@media(max-width:1200px) {
  #nav-content {
    padding: 50px;
  }
}

@media(max-width:990px) {
  #nav-content {
    padding: 50px 15px 50px 5em;
  }
}

@media(max-width:767px) {
  #nav-content {
    padding: 25px;
    display: block;
  }
}

#nav-icon.open ~ #nav-content {
  z-index: 99;
  visibility: visible;
  opacity: 1;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  height: 100vh;
}

#nav-content ul {
  list-style: none;
  padding: 0;
  color: #fff;
  font-size: 24px;
}

#nav-content li a {
  display: block;
  color: #fff;
  padding: 10px;
  transition: .3s ease;
}

#nav-content div > ul > ul > li > a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 18px;
  padding-bottom: 5px;
  transition: .3s ease;
}
  
#nav-content li a:hover, .link-mobile .active  {
  text-decoration: none;
  color: #FF9534 !important;
  font-weight: 600;
}

.sub-drop > li > a:hover, .sub-drop > li > a.active  {
  padding-bottom: 5px;
}

.link-mobile .active:before,#nav-content li a:hover:before {
  font-family: "FontAwesome";
  content: "\f0da";
  position: relative;
  font-size: 0.8em;
  padding-right: 7px;
  vertical-align: middle;
  bottom: 1px;
}

#menu-mobile.mobile{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

@media(max-width: 414px) {
    #menu-mobile.mobile {
        max-height: 460px;
        overflow: auto;
    }
}

#menu-mobile ul > li.link-mobile {
    margin: 20px 0;
}

#menu-mobile ul > li.link-mobile:nth-child(1) {
    margin: 10px 0;
}

#menu-mobile ul > li.link-mobile:nth-child(1) a {
    padding: 0 10px; 
}

#menu-mobile ul > li:nth-child(4) {
    margin-bottom: -10px;
}

#menu-mobile .sub-drop > li {
    margin: 5px 0 !important;
}

@media (max-width: 1100px){
    #mobile {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    #mobile > #nav-icon {
        margin-left: -15px;
    }
    
    #mobile > .navbar-brand {
        margin-right: auto;
    }
    
    #mobile #search-button {
        font-size: 0.8em;
        color: #fff;
        align-self: center;
        margin-bottom: 30px;
        display: flex;
    }
    
    #pc {
        display: none !important;
    }
}


/*****************
      footer
******************/
#footer{
    width:100%;
    background: #002134;
    color: #fff;
    padding: 3em 0 1em;
}

#footer p{
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-title{
  color: #FF9534;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 20px;
}

#footer a {
  color:#fff;
}

.footer-logo {
   margin: 10px auto;
   align-self: center;
}

.footer-ROAR{
    display: flex;
    justify-content: space-between;
}

.footer-ROAR p {
    font-size: 12px;
}

@media(max-width: 990px) {
    .footer-ROAR {
        display: block;
        margin-top: 10px;
    }
}

.fb{
    background: #3b5998;
    border-radius: 50%;
}

.linkedin{
    background: #0E76A8;
    border-radius: 50%;
}

.footer-social-icons a {
  display: inline-block;
}

.footer-social-icons a:hover {
    text-decoration: none;   
}

@media(max-width: 990px) {
    .footer-links {
        margin-bottom: 40px;
    }
    
    .footer-social-icons {
        text-align: center;
        font-size: 16px !important;
    }
}

.footer-links h3{
    margin-bottom: 1.5rem;
    text-align: left;
}

.phone-icon, .mail-icon{
    margin-right: 6px;
}

.footer-social-icons {
    margin: 20px auto;
}

.footer-social-icons a{
    margin-right: 8px;
}

span.footer-powered {
    float: right;
}

@media(max-width: 990px) {
    span.footer-powered {
        width: 100%;
    }
}

/*****************
      search
******************/
#search-result{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    z-index:999;
}

.search-close{
    /*margin-top:10%;*/
}

#search-result .close{
  font-size:40px;
}


/*****************
    Main Banner
******************/

.main-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
}

#banner {
    position: relative;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;    
    background-size: cover;
    overflow: hidden;
    background-position: 50%;
    background-repeat: no-repeat;
}

#sub-banner {
    position: relative;
    background-attachment: fixed;
    top: -50%;
    height: 60vh;
    display: flex;
    align-items: center;    
    background-size: cover;
    background-position: center -30vh;
    overflow: hidden;
    background-repeat: no-repeat;
    transition: .3s ease;
}

#capa-banner {
    position: relative;
    background-attachment: fixed;
    top: -50%;
    height: 95vh;
    display: flex;
    align-items: center;    
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-repeat: no-repeat;
    transition: .3s ease;
}

@media(max-width: 1200px) {
    #capa-banner {
        height: 85vh;
    }
}

@media(max-width: 768px) {
    #capa-banner {
        height: 70vh;
    }
}

#capa-banner .sub-text {
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
}

@media(max-width: 990px) {
    #sub-banner {
        height: 50vh;
    }
}

@media(max-width: 576px) {
    #banner, #sub-banner, #capa-banner {
        background-attachment: scroll;
        background-position: center;
    }
    
    #capa-banner {
        height: 80vh;
    }
    
    #capa-banner .sub-text {
        font-size: 18px;
    }
}

#sub-banner .overlay, #capa-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.25);
}

@media(max-width: 576px) {
    #sub-banner .banner_text p {
        display: none;
    }
}

.svg {
    position: absolute;
    fill: #fff;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.sub-svg {
    fill: #f9f9f9;
    stroke: #f9f9f9;
    width: 100%;
    margin-top: -7%;
    position: relative;
}

.banner-container {
    margin-top: 10%;
    z-index: 3;
}

.banner-container a {
    width: 200px;
    margin-top: 30px;
}

@media(max-width: 414px) {
    .banner-container {
        top: 5%;
    }
    
    .banner-container a {
        width: 100%;
        margin-top: 0;
        font-size: 14px;
    }
}

#sub-banner .banner-container {
    margin-top: 100px;
    /*margin-left: 8%;*/
}

@media (max-width: 990px) {
    #sub-banner h1 {
       font-size: 6vw;
    }
}

@media (max-width: 768px) {
    #sub-banner h1 {
       font-size: 40px;
    }
}

@media (max-width: 576px) {
    #sub-banner {
        height: 40vh;
    }
    
    #sub-banner h1 {
       font-size: 30px;
    }
}


.main-text {
    float: left;
    /*color: #fff;*/
}

@media(min-width: 990px) {
    .main-text {
        /*margin: 0 50px;*/
    }
}

@media(max-width: 414px) {
    .main-text {
        padding: 0;
    }
}

.main-text ul {
    padding: 0;
}

@media(max-width: 576px) {
    .main-text ul {
        font-size: 12px;
    }
}

.main-text li {
    margin: 4px 0;
}

.main-text i {
    margin-right: 10px;
}

.banner-img-right {
    margin-left: auto;
}

.primary-btn {
    width: 200px;
    padding: 12px 24px;
    color: #fff;
    background: #FF9534;
    border-radius: 10px;
    text-align: center;
}

.primary-btn:hover {
    background: #002134;
    color: #fff;
}

.banner_text {
  color: #fff;
}
    
/*****************
    Home Scroll
******************/

.scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media(max-width: 414px) {
    .scroll {
        display: none;
    }
}

.scroll p {
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.mouse {
	width: 20px;
    height: 30px;
    /*border: 1px solid #002134;*/
    border: 1px solid #fff;
    border-radius: 20px;
    position: relative;
    margin: auto
}

.mouse:before {
	content: '';
	width: 4px;
	height: 4px;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	/*background-color: #002134;*/
	background-color: #fff;
	border-radius: 50%;
	opacity: 1;
	animation: wheel 1.2s infinite;
	-webkit-animation: wheel 1.2s infinite;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 24px;
	}
}

.section {
    padding: 40px 0 50px 0;
}

.main-card {
    padding: 0 10px;
}

.card-image {
    position: relative;
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.card-container {
    position: relative;
    border-radius: 20px;
    padding: 30px 40px 100px;
    box-shadow: 0 2px 10px rgba(169, 169, 169, 0.15);
    background: #fff;
    margin-top: -110px;
    margin-bottom: 30px;
    height: 440px;
    transition: .3s ease;
}

@media(max-width: 1200px) {
    .card-container {
        height: 500px;
    }
}

@media(max-width: 990px) {
    .card-container {
        height: 580px;
        margin-top: -170px;
        padding: 30px 30px 100px;
    }
}

@media(max-width: 768px) {
    .card-container {
        height: auto;
        margin-top: -100px;
    }
    
}

.card-container:hover {
    box-shadow: 0 4px 8px rgba(169, 169, 169, 0.4);
    transform: scale(1.01);
}

.card-container .card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

@media(max-width: 576px) {
    .card-container .card-title {
        font-size: 18px;
    }
}

.card-container .card-content {
    color: #4D6471;
    font-size: 14px;
}

.card-container .card-content > ul > li {
    margin: 8px 0;
    list-style-type: disc;
}

.card-container .card-btn {
    position: absolute;
    width: 80%;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    text-align: center;
    border-radius: 5em;
    background: #FF9534;
    transition: .3s ease;
    color: #fff;
    font-size: 14px;
    padding: 15px 0;
}

.card-container .card-btn:hover {
    background: #002134;
}


/*****************
    Capabilities
******************/

.capa-container {
    margin-top: 0;
    padding: 30px 20px;
    height: 360px;
}

@media(max-width: 576px) {
    .capa-container {
        height: auto;
    }
}

.capa-container .card-content {
    color: #002134;
}

.capa-img {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

@media(max-width: 414px) {
    .capa-img {
        width: 80px;
        height: 80px;
    }
}

.capa-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.capa-title.highlighter {
    color: #FBB345;
}

.capa-title.canvas {
    color: #7D3D82;
}

.capa-title.staple {
    color: #2D7E3E;
}

.capa-title.binder {
    color: #0EA0C4;
}

/*****************
    Pricing
******************/

#pricing {
  margin-top: 20px;
  padding: 30px 20px;
  margin-bottom: 0;
}

#pricing h2{
  max-width:100%;
}

.pricing-container {
    margin-top: 20px;
    padding: 30px 20px;
    margin-bottom: 0;
}

@media(max-width: 1200px) {
    .pricing-container {
        height: 440px;
    }
}

@media(max-width: 990px) {
    .pricing-container {
        height: 500px;
    }
}

@media(max-width: 768px) {
    .pricing-container {
        height: auto;
    }
}

.pricing-container .card-title{
  margin-bottom: 35px;
}

.pricing-container p{
  font-size: 20px;
  font-weight: 600;
  text-align:center;
}

.pricing-container span{
  font-size:50px; 
}

.pricing-container li{
  list-style-type:none !important;
}

.pricing-container li:before{
  content:"\f058";
  color: #FF9534;
  padding-right:8px;
}

.month{
  margin-bottom: 20px;
}
.month p{
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align:center;
}
#pricing .top-info{
    text-align: center;
    font-size: 12px;
    color: #999;
}
#pricing .bottom-info{
    text-align: left;
    font-size: 14px;
    margin: 10px 20px;
    font-weight: 600;
}


/******************************** 
  Home page clients slider start 
********************************/

.sliderwrap {
    width: 100%;
    height: 80px !important;
    margin-top: 20px;
}

@media(max-width: 767px) {
    .sliderwrap {
        height: 100px;
        width: auto;
    }
}

@media(max-width: 400px) {
    .sliderwrap {
        height:180px;
    }
}

.bxslider li img {
    margin: 10px auto;
    height: 55px !important;
}

@media(max-width: 768px) {
    .bxslider li img {
        height: 40px !important;
    }
}

@media(max-width: 580px) {
    .bxslider li img {
        height: 30px !important;
    }

    .bxslider li {
        width: 160px !important;
    }
}

@media(max-width: 490px) {
    .bxslider li img {
        height: 40px !important;
    }
}

.sliderwrap {
    overflow: hidden;
}

.bx-wrapper .bx-loading {
    background-color: transparent !important;
}

.bx-wrapper .bx-viewport {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    height: 80px!important
}

.bx-wrapper {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}

/********************************
  Home page clients slider end 
********************************/


/****************************** 
  Home page award slider start 
********************************/
.award-slider{
    height: 180px !important;
}

.aslider li img{
    height: 151px !important;
}

@media(max-width: 490px) {
    .aslider li img{
        height: 110px !important;
    }
}

.award-slider .bx-wrapper .bx-viewport{
    height: 180px !important;
}
/****************************** 
  Home page award slider end 
********************************/

/********************************** 
  Home page partners card start 
***********************************/

.media-logo {
    background-color: #fff;
    height: 100%;
    box-shadow: 0 2px 10px rgba(169, 169, 169, 0.2);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .3s ease;
}

.media-logo:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(169, 169, 169, 0.4);
}

.media-logo img {
    height: 46px;
    width: auto;
    margin: 8px auto;
}

@media(max-width: 360px) {
    .media-logo img {
        height:48px;
    }
}

.black-logo-background {
    background-color: #333;
}

.red-logo-background {
    background-color: #AF1E23;
}

/****************************** 
  Home page partners card end 
*******************************/

.media-coverage a{
    display: block;
}


/****************
    Modal style
****************/

.modal-dialog {
    max-width: 60%;
    margin: auto;
    transition: .3s ease;
}

@media(max-width: 990px) {
    .modal-dialog {
        max-width: 80%;
    }
}

@media(max-width: 576px) {
    .modal-dialog {
        max-width: 90%;
    }
}

.modal-header {
    border-bottom: 0;
    border-radius: 0;
    padding: 30px 30px 0;
}

.modal-content {
    border: none;
    border-radius: 20px;
}

.modal-body {
    padding: 0 60px 40px;
}

@media(max-width: 990px) {
    .modal-body {
        padding: 0 40px 40px;
    }
}

@media(max-width: 576px) {
    .modal-body {
        padding: 0 20px 40px;
    }
}

.body-text ul {
    color: #FF9534;
    margin: 20px 0;
}

.body-text li {
    margin: 10px;
    padding: 0;
    list-style-type: disc;
    font-weight: 500;
}

#discover01 .btn, #discover02 .btn, #discover03 .btn {
    margin: auto;
    display: block;
}

#discover03 .partners {
    margin: 20px auto;
}

#discover03 .partners .row {
    margin-bottom: 20px;
}

#discover03 .partners p.partners-title{
    text-align: center;
    font-weight: 500;
    margin: 20px auto;
}

#discover03 .partners-img {
    text-align: center;
    display: block;
}

#discover03 .partners-img p {
    font-size: 14px;
}

#discover03 .partners img {
    max-width: 100px;
    height: 100px;
    object-fit: contain;
    width: 100%;
    margin: 10px 0;
}


/****************************
   featureList & capaList
****************************/

.featureList, .capaList {
    margin: 20px auto;
}

.featureList-icon, .capaList-icon {
    width: 100px;
    height: 100px;
    margin: auto;
}

.featureList-text, .capaList-text {
    text-align: center;
}

.featureList-text h4, .capaList-text h4 {
    margin: 20px auto 10px;
    max-width: 280px;
    /*height: 54px;*/
}

#canvas .capaList-text h4 {
    color: #622B60;
}

#highlighter .capaList-text h4 {
    color: #FCC024;
}

#staple .capaList-text h4 {
    color: #228340;
}

#binder .capaList-text h4 {
    color: #19B5F0;
}

.capaList-text ul {
    text-align: left;
    font-size: 14px;
}

.highlighter-banner-container {
    margin-top: 0;
}

@media(max-width: 414px) {
    .highlighter-banner-container {
        margin-top: 100px;
    }
}

.highlighter-banner-container .term-btn {
    color: #FCC024;
    text-decoration: underline;
    vertical-align: bottom;
    display: inline;
    margin-left: 20px;
}

@media(max-width: 414px) {
    .highlighter-banner-container .term-btn {
        text-align: center;
        display: block;
        margin: 20px auto;
    }
}

.highlighter-banner-container .primary-btn, #highlighter .primary-btn {
    background: #FCC024;
}

#highlighter .primary-btn {
    display: block;
    margin: 20px auto;
}

.client-used-image img, .highlighter-convert img {
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

.convert-arrow {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.convert-arrow img {
    box-shadow: none;
}

.convert-content {
    display: flex;
    align-items: center;
    margin: 30px auto;
}

ul.highlighter-banner-subtext li {
    display: flex;
    margin: 10px 0;
    align-items: center;
}

@media(max-width: 576px) {
    ul.highlighter-banner-subtext li {
        font-size: 12px;
    }
}

ul.highlighter-banner-subtext li:before {
    content: '';
    background: url('https://canvas3.ytml.com.au/site_assets/media/files/dc7124a3-4bdd-40dd-ace4-47e44bec4ff9/dc7124a3-4bdd-40dd-ace4-47e44bec4ff9.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    object-fit: cover;
}

.capaList ul li {
    list-style-type: disc;
    
}

@media(max-width: 576px) {
    .featureList-text h4, .capaList-text h4 {
        max-width: 100%;
        height: auto;
    }
}

.featureList-text p, .capaList-text p {
    font-size: 14px;
    text-align: left;
}


/****************
   Contact us
****************/

#map {
    height: 600px;
    background-color: #002134;
}

@media(max-width: 990px) {
    #map {
        height: 400px;
    }
}

.contact-card {
    margin: 40px auto;
}

.sub-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: #002134;
}

.contact-details {
    margin-bottom: 50px;
    display: inline-block;
    vertical-align: top;
}

.contact-details h3, .contact-details h4 {
    text-align: left;
}

.contact-details h4 {
    font-weight: 500;
    margin-top: 20px;
}

.contact-details p, .contact-details a {
    color: #4D6471;
    font-size: 14px;
}

.contact-form {
    margin-top: 40px;
}

#formWidgetSubmitResultText {
    font-size: 16px;
    color: #002134;
    /*float: left;*/
}

#seido-appointments #formWidgetSubmitResultText {
    color: gold;
    font-size: 14px
}

@media(max-width: 479px) {
    #formWidgetSubmitResultText {
        font-size:18px
    }
}


/******************
   Privacy Policy
******************/

.afterheader .sub-title {
    max-width: 100%;
}

.afterheader .sub-title p {
    color: #002134;
}

.afterheader .row {
    margin-top: 60px;
}

.afterheader .row:nth-child(1) {
    margin: 0;
}

.afterheader h4 {
    margin-bottom: 10px;
    text-align: left;
}

.afterheader a {
    color: #FF9534;
}

.afterheader ul {
    margin: 14px 0;
    color: #4D6471;
    padding-left: 30px;
}

.afterheader li {
    list-style-type: disc;
}

.afterheader p {
    color: #4D6471;
}

.content-section {
    padding: 20px 0;
}

.afterheader .section-title {
    width: 100%;
}



/*****  Seido Help *****/
.help-container {
    max-width: 840px;
}

.help-row {
    align-items: center;
}

.help-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

.help-title .icon {
    max-width: 100px;
    margin: 0 20px;
}

.help-title .white-icon {
    fill: #fff;
    stroke: #fff;
}

.help-title .text h2, .help-title .text h5 {
    text-align: left;
    padding: 0;
    margin: 5px;
}

.help-title .text h5 {
    font-weight: 300;
}

.seido-help-video h2, .seido-help-video h5 {
    color: #fff !important;
}

.seido-help-video a {
    color: #6fb7f5 !important;
    padding: 10px;
    display: block;
}

.help-title p{
    font-size: 14px;
    color: #999;
    font-weight: 300;
}

.seido-help-content a, .seidoHelp-form-card a {
    color: #337ab7;
}

.seidoHelp-form-card a.btn {
    color: #fff;
    margin-top: 20px;
}

.seido-help-content li {
    font-size: 14px;
    margin: 10px 0;
    min-width: 50%;
    display: inline-block;
}

.seido-help-content p {
    color: #999;
    font-weight: 300;
    margin-bottom: 20px;
}

.seido-help-operation:before {
    position: absolute;
    left: -44.4vw;
    width: 60%;
    height: 70%;
    background-color: #000;
    transform: skewX(-20deg);
    z-index: -1;
}

.seido-help-operation ul li:before, .seido-help-app ul li:before {
    content: "\f1c1";
    font-family: "FontAwesome";
    display: inline-block;
    font-weight: 900;
    color: #db3e42;
    margin-right: 10px;
    font-size: 14px;
}

.seidoHelp-form-card {
    margin: auto;
    text-align: center;
}

.seidoHelp-form-card p {
    line-height: 2;
}

.seidoHelp-btn {
    margin-top: 30px;
    font-weight: 500;
    padding: 1.2em 5em;
    background: #fff;
    color: #000 !important;
    border: 1px solid #000;
}

.seidoHelp-btn:hover {
    color: #fff !important;
    background-color: #000;
    border: none;
    opacity: 1;
}

/* Video Cast*/

.video-list {
    text-align: left;
}

.p-card__img-wrapper, .p-card__inner > p, .p-card__inner > .row {
    display: none;
}

h2.p-card__heading {
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    color: #6fb7f5 !important;
    padding: 0 10px;
    transition: .3s all ease-in-out;
}

h2.p-card__heading:hover {
    opacity: .7;
}

.p-card__heading:before {
    content: "\f144";
    font-family: "FontAwesome";
    display: inline-block;
    font-weight: 900;
    color: rgb(255, 204, 18);
    margin-right: 10px;
    font-size: 14px;
}

.cast-show-list {
    color: #fff;
}

.table-responsive {
    overflow: hidden;
}

.table-responsive, #searchLoadingImg {
    text-align: center;
    margin: auto;
}

#searchLoadingImg {
    color: #002134;
    text-align: center;
}

@media(max-width: 990px) {
    .seido-help-container {
        width: 80%;
        top: 80%;
        margin-left: 0;
        padding: 0;
    }
    
    .seido-help-text {
        background: #000;
        text-align: left;
        padding: 30px;
    }
    
    .bg-text {
        color: #db3e41;
    }
    
    .seido-help-text h1, .seido-help-text p {
        color: #fff;
    }
    
    .seido-help-text h1:after {
        background: #fff;
    }
    
    .seido-help-content .container {
        display: block;
    }
    
    .section-title-border, .seido-help-operation .section-title-border:after, .seido-help-app .section-title-border:after, .seido-help-video .section-title-border:after, .help-title h2, .help-title h5 {
        text-align: center;
        margin: 10px auto;
    }
    
    
}

@media(min-width: 1200px) {
    .seido-help-container {
        max-width: 600px;
        margin-left: 0 !important;
    }
}

@media(max-width: 768px) {
    .seidoHelp-form-card, .seido-help-content li {
        width: 100%;
    }
}

.table-responsive ul{
    text-align: left;
    padding-left: 0;
}




/***********************\
      Site Map
\***********************/

.sitemap-section ul{
  margin-top: 0;
  list-style: none;
  padding-left: 0;
  margin-top:  10px;
}

.sitemap-section ul li:before{
  content: none;
}

.sitemap-section ul li{
  text-indent: 0;
}

.sitemap-section .sitemap-menu{
  margin-bottom: 10px;
}
.sitemap-section .sitemap-menu > a{
  display: block;
  background: linear-gradient(to right, #828181, #fff );
  color: #fff;
}
.sitemap-section .sitemap-item{
  margin-bottom: 20px;
}
.sitemap-section .sitemap-item > a{
  display: block;
  background: linear-gradient(to right, #828181, #fff );
  color: #fff;
}

.sitemap-section .sitemap-menu .sitemap-item a{
  color: #000;
  background: none;
}

.sitemap-section .sitemap-menu .sitemap-item{
  width: 40%;
  display:  inline-block;
  margin-bottom: 0;
  vertical-align:  top;
  padding-bottom:  5px;
}

@media(max-width: 660px){
  .sitemap-section .sitemap-menu .sitemap-item{
    width: 80%;
  }
}

.sitemap-section .content_body a{
    padding: 3px;
}

.sitemap-section .content_body a:hover{
    text-decoration: underline !important;
}

.si-wrapper-top {
    width: 80%;
    transform: translate(-50%, -100%);
}

.gm-style {
    font-family: 'Montserrat', sans-serif;
}

.si-content h3:after {
    content: '';
    width: 10px;
    height: 2px;
    background: #fff;
    margin: 10px auto;
    display: block;
}

.si-content p {
    text-align: center;
}


/********************
  Contact / Goto Top
*********************/
.btnContact:before {
    content: "\f0e0";
    display: block;
    font: 22px 'FontAwesome';
    color: #fff;
    margin-top: 8px;
}

.btnContact {
    color: #fff;
    font-size: 10px;
    line-height: 20px;
    background-color: #002134;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.btnContact:hover {
    background-color: #FF9534;
}

.btnContact, .btntoTop {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 20px;
    right: 40px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 4;
}

@media(max-width: 768px) {
    .btntoTop {
        display: none !important;
    }
}

@media(max-width: 576px) {
    .btnContact {
        width: 60px;
        height: 60px;
        right: 20px;
    }
}

.homeTop {
    bottom: 160px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,.3) !important;
}

.homeTop:before {
    /*content: "\f077";*/
    content: "\f0a6";
    display: inline-block;
    vertical-align: middle;
    font: 22px 'FontAwesome';
    color: #002134;
    margin-top: 6px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 4;
}

.homeTop:hover, .homeTop:hover:before {
    color: #FF9534;
}


/*Search*/


#search-form {
    width: 300px;
    transform: translateX(-50%);
    text-align: center
}

@media(max-width: 767px) {
    #search-form {
        width:250px
    }
}

@media(max-width: 767px) {
    #search-form {
        width:220px
    }
}

.search-box {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%)
}

#search-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(-100%,0%);
    -moz-transform: translate(-100%,0%);
    -o-transform: translate(-100%,0%);
    -ms-transform: translate(-100%,0%);
    transform: translate(-100%,0%);
    opacity: 0;
    overflow: auto;
}

#search-wrapper .input-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin-top: -51px
}

#search-wrapper input[type="search"] {
    color: #fff;
    width: 100%;
    background: rgba(0,0,0,0);
    font-size: 20px;
    font-weight: 300;
    text-align: left;
    border: 0;
    margin: 0 auto;
    padding: 4px 10px;
    outline: none;
    border-bottom: 1px solid #fff;
}

.searchLoadingImg {
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 10px;
}

#search-wrapper input[type="search"]::placeholder {
    color: #fff
}

#search-wrapper input[type="search"]:-ms-input-placeholder,#search-wrapper input[type="search"]::-ms-input-placeholder {
    color: #fff
}

#search-wrapper button.close {
    position: absolute;
    top: -60px;
    right: 0;
    opacity: 1;
    padding: 20px;
}

#search-wrapper.open {
    -webkit-transform: translate(0px,0px);
    -moz-transform: translate(0px,0px);
    -o-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
    opacity: 1;
    z-index: 110
}

#page-result {
    color: #fff;
    margin-top: 30px
}

li.search-item {
    font-size: 14px;
    list-style-type: none;
}

li.search-item a {
    color: #FF9534;
}

li.search-item a:hover {
    text-decoration: underline;
    color: #FF9534;
}

/******************\
    Bottom Banner
\******************/

.bottom-banner {
    border-radius: 80px 80px 0 0;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    transition: .3s ease;
}

.bottom-banner p {
    font-size: 28px;
    font-weight: 500;
}

@media(max-width: 576px) {
    .bottom-banner p {
        font-size: 18px;
    }
    
    .bottom-banner {
        border-radius: 0;
        padding: 20px 0;
    }
}

.bottom-banner a {
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: block;
}

@media(max-width: 990px) {
    .bottom-banner a {
        max-width: 350px;
        margin: auto;
        margin-top: 30px;
    }
}

/******************\
    CANVAS page
\******************/

.work-product .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
    width: 100%;
    opacity: 1;
    transition: .3s ease;
}

.work-product .overlay:hover {
    opacity: 0;
}

.work-product .overlay p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.work-product img {
    width: 100%;
    object-fit: cover;    
}

.work-product .product, .work-product .product-vertical {
    float: left;
}

#canvas .bottom-banner {
    background-color: #622B60;
}

.advantage-img {
    margin: 20px auto 40px;
}

.advantage-content {
    margin: auto;
}

.advantage-cell {
    margin: 10px auto;
}

.advantage ul li {
    list-style-type: disc;
}

/******************\
    Form widget
\********************/

.formwidget {
    margin: auto;
}

.formwidget label {
    font-weight: 500;
}

.radio label {
    font-weight: 400;
    font-size: 14px;
    margin: 8px 0;
    cursor: pointer;
}

#btnFWSubmit {
    color: #fff;
    background: #002134;
    padding: 10px 30px;
    border-radius: 6px;
    transition: .3s ease;
}

#btnFWSubmit:hover {
    background: #ff9534;
}

.registerForm {
    margin: 0 auto 60px;
    background: #fff;
    padding: 40px 100px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media(max-width: 990px) {
    .registerForm {
        padding: 40px 60px;
    }
}

@media(max-width: 576px) {
    .registerForm {
        padding: 40px 36px;
    }
}

.registerForm h3 {
    margin-bottom: 20px !important;
}

.other-radio .form-control {
    margin-left: 16px;
    display: none;
}

.g-recaptcha {
    margin: 0 auto 20px;
    width: 304px;
}

.help-block {
    color: #e43939;
    margin-left: 15px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 1.5rem;
}


/*****************\
    Highlighter
\*****************/

.client-used-content h4{
    text-align: left;
}

.client-used-content {
    padding-left: 40px;
}

.client-used:nth-child(2n) > .client-used-content {
    padding-left: 15px; 
    padding-right: 40px;
}

.client-used:nth-child(2n) > .client-used-image {
    order: 2;
}

@media(max-width: 990px) {
    .client-used-content {
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .client-used-image {
        order: 0 !important;
    }
}

.client-used {
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.client-used-image .hover {
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 100%;
    background: rgba(0, 33, 52, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.client-used-image .hover:hover {
    opacity: 0;
}

.client-used-image .hover-content {
    padding: 50px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    display: block;
}

.client-used-image .hover .icon {
    fill: #fff;
    width: 50px;
    margin: 20px auto;
}

@media(max-width: 576px ) {
    .client-used-image .hover-content {
        font-size: 12px; 
        padding: 30px;
    }
    
    .client-used-image .hover h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .client-used-image .hover .icon {
        display: none;
    }
}

.client-used-image .hover h5 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
}

.client-used-image .hover span {
    font-weight: 500;
}

.more-btn {
    padding: 10px 20px;
    color: #fff;
}

.client-used .more-btn {
    background: #FCC024;
    margin-right: 10px;
}

.more-btn:hover {
    color: #fff;
}

.client-used .line-btn {
  color: #FCC024;
  text-align: center;
  padding: 10px 20px;
  cursor: pointer;
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  border-radius: 0;
}

.client-used .line-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #FCC024;
    height: 4px;
    transition-property: right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.client-used .line-btn:hover:before {
  right: 0;
}

.ekko-lightbox .modal-body {
    padding: 60px 40px;
}

.ekko-lightbox-container {
    /*width: 800px;*/
    /*height: auto;*/
}

.ekko-lightbox-nav-overlay {
    display: none;
}


/***** Home core features *****/

.home-core-features .btn{
    margin: 30px auto;
}


a[href$='/capabilities']{
    pointer-events: none;
}

/***************************
      registration from
****************************/
#regform-1,#regform-2,#regform-3 {
    width: 100%;
    border: none
}

#regform-1 {
    height: 100%
}

@media (max-width: 992px){
/*#regform-1 {*/
/*    height:1100px*/
/*}*/
}
.service_section > .container > .row {
    overflow: hidden
}

.registration_banner .overlay {
    background-color: rgba(44,84,130,0.8)
}

.registration a {
    color: #002134;
}
.registration a:hover {
    color: #FF9534;
}
.registration {
    background-color: #f9f9f9;
    padding-bottom: 4em
}

#regform-2 {
    height: 100%
}

.reg-container {
    height: 550px;
}

.registration ul {
    list-style-type: initial
}

#regform-3 {
    height: 100%
}

#reg-img {
    max-width: 280px
}

.TC-header p {
    font-weight: bold;
    text-decoration: underline;
    padding-top: 40px;
    font-size: 20px;
    margin-top: 0;
}


/***************************
      News / Media
****************************/
#cast-show-list {
    width: 100%;
}

#news .post-area .col-lg-4, #news .post-area .col-md-6 {
    float: left;
    min-height: 600px;
}

#news .post-content {
    margin-bottom: 60px;
}

#news .load-more {
    text-align: center;
    display: block;
    cursor:  pointer;
    width: 160px;
    margin: 30px auto;
}

#news .preview-image img {
    width: 100%;
}

#news .preview-content {
    color: #5E5E5E;
    font-size: 14px;
    margin: 10px 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    min-height: 66px;
}

#news .post-title {
    position: relative;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    max-height: 60px;
    font-weight: bold;
}

#news .post-more a{
    font-size: 14px;
    transition: .3s ease;
}

#news .post-more i {
    margin-right: 8px;
    font-size: 12px;
}

#news .post-more:hover a{
    color: #FF9534;
}

#news .post-more:hover i {
    transform: translateX(4px);
}

#news .btn-more {
    padding: 12px 30px;
    background: #002134;
    color: #fff;
    font-weight: 500;
    transition: .3s ease;
}

#news .btn-more:hover {
    background: #FF9534;
}

.cp1{
    margin-bottom:60px;   
}

#Cp1{
    width:100%;
    height:100%;
}

.home_video {
    margin-top: 20px;
}

.home_video li {
    margin: 16px 0;
    margin-left: 20px;
    text-indent: -11px;
    font-weight: 500;
    color: #fff;
}

.home_video li i {
    color: #FF9534;
    font-size: inherit;
    margin-right: 8px;
}

.home_video .video {
    width: 100%;
    height: 360px;
    object-fit: cover;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #0b3046;
}

.home_video .video:before {
    position: absolute;
    content: "";
    width: calc(100% - 30px);
    height: inherit;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
}

@media(max-width: 414px) {
    .home_video .video {
        height: 300px;
    }
}

.home_video a.play-button{
    font-size: 5em;
    color: #fff;
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    opacity: 0.6;
}

.home_video a.play-button:hover {
    opacity: 1;
}

.article-info {
    margin-bottom: 20px;
}

.article-info .left i {
    margin-right: 8px;
}

.article-info .date {
    text-align: center;
}

#article-section {
    margin-bottom: 40px;
}

.dynamicdocs-point, .dynamicdocs-point a {
    color: #ff7a01;
    font-weight: 500;
}



