
/* Css For Visarzo */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header/style-one/style-two
5. Main Slider/style-one/style-two
6. Intro Section
7. Welcome Section
9. Cta Section
8. Research Fields
10. Testimonial Section
11. Researches Section
12. Team Section
14. Video
15. Fact Counter
16. News Section
19. Clients Section
20. Main Footer
21. Footer Bottom
22. Research Style Two
23. Innovative Solution
24. Discover Section
25. Testimonial Section
26. Chooseus Section
27. News Style Two
28. Page Title
29. Research Page Section
30. Research Details
31. Professor Page Section
32. Professor Details
33. About Section
34. Error Section
35. Blog Page Section
36. Blog Details
37. Blog Sidebar
38. Contact Section
39. Google Map


**********************************************/



/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
  font-size:15px;
  color:#555555;
  line-height:28px;
  font-weight:400;
  background:#ffffff;
  font-family: 'Open Sans', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1170px;
    padding: 0px 15px;
  }
}

.container-fluid{
  padding: 0px;
}
.left{
  float: left;
}
.right{
  float: right;
}

.auto-container{
  position:static;
  max-width:1370px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}



button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-size: 15px;
  line-height: 28px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #555555;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  color: #222222;
  margin: 0px;
  transition: all 500ms ease;
}

/* Preloader */

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/preloader.png);
}

.preloader-close{
  position: fixed;
  z-index: 999999;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  right: 0;
  bottom: 0;
  font-weight: 600;
}

.preloader.style-two .preloader-close{

}

.loader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/** button **/

.theme-btn-one{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 11.5px 28px;
  z-index: 1;
}

.theme-btn-one:hover{

}

.theme-btn-one i{
  position: relative;
  font-size: 16px;
}

.theme-btn-one:hover:after{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn-one:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.theme-btn-one:hover:after {
  opacity: 1;
}

.theme-btn-two{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #fff !important;
  text-align: center;
  border-radius: 2px;
  padding: 14.5px 36px;
  z-index: 1;
}

.theme-btn-two i{
  position: relative;
  margin-left: 10px;
  font-size: 16px;
}

.theme-btn-two:hover:after{
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn-two:after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #162e40;
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.theme-btn-two:hover:after {
  opacity: 1;
}



.pagination{
  position: relative;
  display: block;
}

.pagination li{
  display: inline-block;
  margin: 0px 3px;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #e4e4e4;
  text-align: center;
  color: #555555;
  background: transparent;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.active{
  color: #fff;
  background: #2d5883;
  border-color: #2d5883;
}

.sec-pad{
  padding: 120px 0px !important;
}

.sec-pad-2{
  padding: 110px 0px !important;
}

.scroll-top{
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 15px;
  font-size: 24px;
  z-index: 99;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  transition: 1s ease;
}

.scroll-top:hover{
  background: #0c2136 !important;
}

.scroll-top.open {
  bottom: 50px;
}

.sec-title{
  position: relative;
  display: block;
  margin-bottom: 27px;
  padding-bottom: 24px;
}

.sec-title.centred{
  text-align: center;
  padding-bottom: 34px;
}

.sec-title:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  /*left: 0px;
  bottom: 0px;*/
}

.sec-title.centred:before{
  left: 50%;
  transform: translateX(-50%);
  margin-left: -8px;
}

.sec-title .dotted-box .dotted{
  position: absolute;
  left: 43px;
  width: 3px;
  height: 3px;
  bottom: 0px;
}

.sec-title .dotted-box .dotted:nth-child(2) {
  left: 49px;
}

.sec-title .dotted-box .dotted:last-child {
  left: 55px;
}

.sec-title.centred .dotted-box .dotted{
  left: 50%;
  margin-left: 15px;
}

.sec-title.centred .dotted-box .dotted:nth-child(2) {
  left: 50%;
  margin-left: 21px;
}

.sec-title.centred .dotted-box .dotted:last-child {
  left: 50%;
  margin-left: 27px;
}

.sec-title p{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
}

.sec-title.light p,
.sec-title.light h2{
  color: #fff
}




/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  background: #CB3129;
  left:0px;
  top:0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width:100%;
  z-index:0;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-header.style-one .header-upper .logo-box img.vis-xs{
    display: none;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/** header-upper **/

.main-header .header-upper{
  position: relative;
  display: block;
  width: 100%;
}

.main-header.style-one .header-upper .outer-container{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  padding-left: 100px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.main-header.style-one .header-upper .logo-box{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 75px;
  width: 220px;
  height: 1px;
}

.main-header.style-one .header-upper .logo-box img{
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 9;
  width: 210px;
  height: 134px;
  display: block;
}

.main-header.style-one .header-upper .upper-left{
  position: relative;
  padding: 0px 0px;
}

.main-header.style-one .header-upper .upper-left .btn-box{
  position: relative;
  display: inline-block;
  float: left;
  padding: 1px 0px;
}

/** main-menu **/

.main-menu{
  float: left;
}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  padding:38px 0px 36px 0px;
  margin: 0px 18px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:hover > a{
  color: #CB3129
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:18px;
  line-height:30px;
  font-weight:400;
  opacity:1;
  font-family: 'Cabin', sans-serif;
  color:#fff;
  z-index:1;
  text-transform: uppercase;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown > a:after{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  font-size: 15px;
  color: #9393a1;
  top: 0px;
  right: 0px;
  display: none;
  transition: all 500ms ease;
}

.main-menu .navigation > li.dropdown.current > a:after,
.main-menu .navigation > li.dropdown:hover > a:after{

}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:250px;
  z-index:100;
  display:none;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0px;
  background-color: #fff;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}

.main-menu .navigation > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding:14px 0px;
  line-height:24px;
  font-weight:400;
  font-family: 'Cabin', sans-serif;
  font-size:16px;
  text-transform:capitalize;
  color:#222;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > a:hover{
  
}

.main-menu .navigation > li > .megamenu li > a:hover{

}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position:absolute;
  right:20px;
  top:14px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  right:100%;
  top:-2px;
  width:230px;
  z-index:100;
  display:none;
  padding: 10px 0px;
  background-color: #fff;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  font-size: 16px;
  padding:14px 0px;
  line-height:24px;
  font-weight:400;
  font-family: 'Cabin', sans-serif;
  text-transform:capitalize;
  color:#222;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease; 
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #3b3b3b;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}

/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  font-weight: 500;
  padding: 3px 0px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:30px 25px;
  text-align:left;  
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:#000;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  -webkit-transition:all 0.7s ease;
  -moz-transition:all 0.7s ease;
  -ms-transition:all 0.7s ease;
  -o-transition:all 0.7s ease;
  transition:all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #202020;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition:all 0.7s ease;
  -moz-transition:all 0.7s ease;
  -ms-transition:all 0.7s ease;
  -o-transition:all 0.7s ease;
  transition:all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  background:#fff; 
  color: #3b3b3b;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:30px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 80px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}


/** search pop-up style **/

.main-header.style-one .search-box-outer {
  position: relative;
  float: left;
  padding: 32.5px 24px;
  /*border-left: 1px solid rgba(255,255,255,0.2);*/
}

.main-header.style-one .search-box-outer .search-toggler{
  position: relative;
  font-size: 22px;
  color: #fff;
  padding: 5px 10px;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  transition: all 500ms ease;
}

.main-header .search-box-outer .search-toggler:hover{
  
}

.search-popup{
  position:fixed;
  left:0;
  top:0px;
  width:100%;
  height:100%;
  z-index:99999;
  visibility:hidden;
  opacity:0;
  overflow:auto;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform:translateY(101%);
  -ms-transform:translateY(101%);
  transform:translateY(101%);
  transition:all 700ms ease;
  -moz-transition:all 700ms ease;
  -webkit-transition:all 700ms ease;
  -ms-transition:all 700ms ease;
  -o-transition:all 700ms ease;
}

.search-popup.popup-visible{
  -webkit-transform:translateY(0%);
  -ms-transform:translateY(0%);
  transform:translateY(0%);
  visibility:visible;
  opacity:1;
}

.search-popup .overlay-layer{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  display:block;
}

.search-popup .close-search{
  position:absolute;
  right:25px;
  top:25px;
  font-size:22px;
  color:#ffffff;
  cursor:pointer;
  z-index:5;
  transition: all 500ms ease;
}

.search-popup .search-form{
  position:relative;
  padding:0px 15px 0px;
  max-width:1024px;
  margin:0 auto;  
  margin-top:150px;
  margin-bottom: 100px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.search-popup .search-form fieldset{
  position:relative;
  border-radius:12px;
}

.search-popup .search-form fieldset input[type="search"]{
  position:relative;
  height:70px;
  padding:20px 250px 20px 30px;
  background:#ffffff;
  line-height:30px;
  font-size:24px;
  color:#233145;
  border-radius:7px;
}

.search-popup .search-form fieldset input[type="submit"]{
  position:absolute;
  display:block;
  right:0px;
  top:0px;
  text-align:center;
  width:220px;
  height:70px;
  padding:20px 10px 20px 10px;
  color:#ffffff !important;
  line-height:30px;
  font-size:20px;
  cursor:pointer;
  text-transform:uppercase;
  border-radius:0px 7px 7px 0px;
}

.search-popup .search-form fieldset input[type="submit"]:hover{
  transform: translateY(0px);
}

.search-popup h3{
  text-transform:uppercase;
  font-size:20px;
  font-weight:600;
  color:#ffffff;
  margin-bottom:20px;
  letter-spacing:1px;
  text-align:center;  
}

.search-popup .recent-searches{
  font-size:16px;
  color:#ffffff;
  text-align:center;
}

.search-popup .recent-searches li{
  display:inline-block;
  margin:0px 10px 10px 0px; 
}

.search-popup .recent-searches li a{
  display:block;
  line-height:24px;
  border:1px solid #ffffff;
  padding:7px 15px;
  color:#ffffff;
  border-radius:3px;
  -webkit-transition:all 0.5s ease;
  -moz-transition:all 0.5s ease;
  -ms-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
  transition:all 0.5s ease;
}

.search-popup .recent-searches li a:hover{
  
}

.sticky-header .main-menu .navigation > li{
  padding: 0px !important;
  margin: 0px !important;
}

.sticky-header .main-menu .navigation > li > a{
  padding: 20px 30px;
  color: #fff !important;
}

.sticky-header .main-menu .navigation > li.current > a, 
.sticky-header .main-menu .navigation > li:hover > a{

}

/*.sticky-header .logo-box .logo{
  position: relative;
  padding: 12.5px 0px !important;
}*/
.sticky-header .logo-box .logo img{
  height: 70px;
}

/** banner-section **/

.banner-section{
  position: relative;
}


.banner-section .swiper-container{
  height: 100%;
}

/** about-section **/

.about-section{
  position: relative;
  padding: 100px 0px 340px 0px;
  margin-bottom: -246px;
}

#image_block_1 .image-box{
  position: relative;
  /*margin-right: 70px;*/
}

#image_block_1 .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

#image_block_1 .image-box .image:before {
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(22, 46, 64, 0) 0%, rgba(22, 46, 64, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 46, 64, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(22, 46, 64, 0) 0%, rgba(22, 46, 64, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

#image_block_1 .image-box:hover .image:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

#image_block_1 .image-box .image img{
  width: 100%;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

#image_block_1 .image-box .box{
  position: absolute;
  bottom: -70px;
  width: calc(100% - 160px);
  left: 80px;
  background: #fff;
  padding: 10px;
  z-index: 1;
}

#image_block_1 .image-box .box .inner{
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  background: #fff;
  border: 8px solid #2d5883;
  padding: 38px 40px;
}

#image_block_1 .image-box .box .inner span{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 24px;
}

#image_block_1 .image-box .box .inner h1{
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 0px;
}

#image_block_1 .image-box .box .inner p{
  font-size: 15px;
  font-weight: 400;
  color: #222;
}

#image_block_1 .image-box .box .inner .icon-box .icon{
  position: absolute;
  width: 171px;
  height: 171px;
  background: #edf6ff;
  border-radius: 50%;
}

#image_block_1 .image-box .box .inner .icon-box .icon-1{
  left: -20px;
  bottom: -20px;
}

#image_block_1 .image-box .box .inner .icon-box .icon-2{
  right: -90px;
  top: -135px;
}

#content_block_1 .content-box .bold-text p{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 15px;
}

#content_block_1 .sec-title:before{
  top: -20px;
}

#content_block_1 .sec-title h2{
  font-size: 34px;
  font-weight: normal;
  line-height: 43px;
}

#content_block_1 .content-box .text{
  margin-bottom: 31px;
}

#content_block_1 .content-box{
  position: relative;
}

/*.about-section #content_block_1 .content-box{
  margin-left: -30px;
}*/

.about-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}


/** feature-section **/

.feature-block-one{
  position: relative;
  z-index: 1;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-block-one .inner-box .text{
  position: relative;
  padding: 31px 15px;
}

.feature-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.feature-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .image-box img{
  transform: scale(1.03);
}

.feature-block-one .inner-box .image-box::before{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(22,46,64,.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.feature-block-one .inner-box:hover .image-box::before{
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  transition: all 500ms ease;
}

h3 a{
  display: inline-block;
  color: #222;
}

h3 a:hover{

}

.bg-color-1{
  background: #2d5883;
}


/** cta-section **/

.cta-section{
  position: relative;
  padding: 185px 0px 100px 0px;
  margin-top: -94px;
}

.cta-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 10px;
}

.cta-section .inner-box .text{
  position: relative;
  display: inline-block;
  padding: 0px 85px;
}

.cta-section .inner-box .text:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 22px;
  bottom: 12px;
}

.cta-section .inner-box .text:after{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  right: 22px;
  bottom: 12px;
}

.cta-section .inner-box .text .dotted-box .dotted{
  position: absolute;
  width: 3px;
  height: 3px;
}

.cta-section .inner-box .text .dotted-box .dotted:first-child{
  left: 16px;
  bottom: 12px;
}

.cta-section .inner-box .text .dotted-box .dotted:nth-child(2){
  left: 10px;
  bottom: 12px;
}

.cta-section .inner-box .text .dotted-box .dotted:nth-child(3){
  left: 4px;
  bottom: 12px;
}

.cta-section .inner-box .text .dotted-box .dotted:nth-child(4){
  right: 16px;
  bottom: 12px;
}

.cta-section .inner-box .text .dotted-box .dotted:nth-child(5){
  right: 10px;
  bottom: 12px;
}

.cta-section .inner-box .text .dotted-box .dotted:last-child{
  right: 4px;
  bottom: 12px;
}

.cta-section .inner-box p{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}


/** service-section **/

.service-section{
  position: relative;
  padding: 105px 0px 100px 0px;
}

.service-section:before{
  position: absolute;
  content: '';
  background: #eff2f5;
  width: 100%;
  height: 660px;
  left: 0px;
  top: 510px;
  right: 0px;
}


.service-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  text-align: center;
  padding: 48px 15px 42px 15px;
  margin-bottom: 60px;
  margin-top: 30px;
  border-bottom: 1px solid #2d5883;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover{
  padding-bottom: 72px;
  margin-bottom: -30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0px;
  bottom: -1px;
  right: 0px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover:before{
  transform: scale(1,1);
}

.service-block-one .inner-box .icon-box{
  position: relative;
  display: block;
  font-size: 90px;
  line-height: 90px;
  color: #2d5883;
  margin-bottom: 25px;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .icon-box{

}

.service-block-one .inner-box span{
  position: relative;
  display: block;
  font-size: 14px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.service-block-one .inner-box h3{
  margin-bottom: 14px;
}

.service-block-one .inner-box .link{
  position: absolute;
  display: block;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  bottom: 26px;
  text-align: center;
  transform: scale(1.0);
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: all;
  transition-property: all;
}

.service-block-one .inner-box:hover .link{
  visibility: visible;
  opacity: 1;
}

.service-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 16px;
}

.service-section .owl-dots{
  position: relative;
  display: block;
  text-align: center;
}

.service-section .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  background: #cccccc;
  border-radius: 5px;
  margin: 0px 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-section .owl-theme .owl-dots .owl-dot.active span,
.service-section .owl-theme .owl-dots .owl-dot span:hover{
  width: 18px;
  background: #2d5883;
}


/** apply-section **/

.apply-section{
  position: relative;
}

.apply-section .inner-box{
  position: relative;
  padding-left: 380px;
  z-index: 1;
}

.apply-section .inner-box .image-box{
  position: absolute;
  display: block;
  overflow: hidden;
  left: 0px;
  top: 0px;
}

.apply-section .inner-box .image-box img{
  width: 100%;
}

.apply-section .inner-box .image-box:before {
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(22, 46, 64, 0) 0%, rgba(22, 46, 64, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 46, 64, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(22, 46, 64, 0) 0%, rgba(22, 46, 64, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.apply-section .inner-box:hover .image-box:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.apply-section .inner-box .content-box{
  position: relative;
  overflow: hidden;
  padding: 53px 50px 60px 70px;
}

.apply-section .inner-box .content-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 6px;
}

.apply-section .inner-box .content-box h2{
  display: block;
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 33px;
}

.apply-section .inner-box .content-box .theme-btn-one{
  border: 2px solid #fff;
  padding: 12.5px 30px;
}

.apply-section .inner-box .content-box .theme-btn-one i{
  color: #fff;
  margin-right: 10px;
  transition: all 500ms ease;
}

.apply-section .inner-box .content-box .theme-btn-one:hover i{

}

.apply-section .inner-box .content-box .icon-box .icon{
  position: absolute;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.apply-section .inner-box .content-box .icon-box .icon-1{
  left: -70px;
  bottom: -75px;
}

.apply-section .inner-box .content-box .icon-box .icon-2{
  top: -70px;
  right: -190px;
}


/** funfact-section **/

.funfact-section{
  position: relative;
}

.counter-block-one .inner-box{
  position: relative;
  display: block;
  border-right: 1px solid #e0e6ed;
  padding: 90px 70px 95px 70px;
}

.counter-block:first-child .counter-block-one .inner-box{
  border-left: 1px solid #e0e6ed;
}

.counter-block-one .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 70px;
  font-family: 'Open Sans', sans-serif;
  color: #2d5883;
  font-weight: 300;
  margin-bottom: 13px;
}

.counter-block-one .inner-box h3{
  font-weight: 400;
  line-height: 29px;
}

.bg-color-2{
  background: #0c2136;
}


/** training-section **/

.training-section{
  position: relative;
  padding: 105px 0px 110px 0px;
}

.training-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.training-section .top-inner{
  position: relative;
  margin-bottom: 43px;
}

.training-section .top-inner .text {
  position: relative;
  display: block;
  margin-top: 42px;
  padding-left: 40px;
}

.training-section .top-inner .text p {
  font-size: 19px;
  line-height: 30px;
  color: #fff;
}

.training-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.training-block-one .inner-box .content-box{
  position: relative;
  display: block;
}

.training-block-one .inner-box .content-box .image-box{
  position: relative;
  display: block;
}

.training-block-one .inner-box .content-box .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  box-shadow: inset 0px -130px 40px -70px rgba(0, 0, 0, 0.9);
  z-index: 1;
  transition: all 500ms ease;
}

.training-block-one .inner-box .content-box .image-box img{
  width: 100%;
}

.training-block-one .inner-box .content-box .text{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  padding: 15px 15px 22px 15px;
  z-index: 1;
  opacity: 1;
  transition: all 500ms ease;
}

.training-block-one .inner-box:hover .content-box .text{
  opacity: 0;
}

.training-block-one .inner-box .content-box .text h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}

.training-block-one .inner-box .overlay-box{
  position: absolute;
  left: 0px;
  top: 30px;
  right: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 2;
  padding: 40px 15px;
  opacity: 0;
  transition: all 500ms ease;
}

.training-block-one .inner-box:hover .overlay-box{
  opacity: 1;
  top: 0px;
}

.training-block-one .inner-box .overlay-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.9;
}

.training-block-one .inner-box .overlay-box .text{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 15px 15px;
  transform: translate(-50%,-50%);
}

.training-block-one .inner-box .overlay-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.training-block-one .inner-box .overlay-box p{
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 12px;
  color: #fff;
}

.training-block-one .inner-box .overlay-box a{
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.training-block-one .inner-box .overlay-box a span{
  display: inline-block;
  border-bottom: 1px solid #fff;
}

.training-block-one .inner-box .overlay-box a i{
  margin-left: 10px;
}

.training-section .owl-nav{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 70px;
}

.training-section .owl-nav .owl-prev,
.training-section .owl-nav .owl-next{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  width: 48px;
  height: 48px;
  line-height: 46px;
  border: 2px solid #717c87;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  margin: 0px 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.owl-nav,.owl-dots{
  display: none;
}

.training-section .owl-nav .owl-prev:hover,
.training-section .owl-nav .owl-next:hover{

}


/** immigration-section **/

.immigration-section{
  position: relative;
  padding: 105px 0px 165px 0px;
}

.immigration-section .sec-title{
  margin-bottom: 70px;
}

.immigration-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
}

.immigration-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.immigration-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.5;
  z-index: 1;
}

.immigration-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.immigration-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.immigration-block-one .inner-box .text{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 30px 15px;
  z-index: 1;
}

.immigration-block-one .inner-box .text h3 a{
  color: #fff;
}

.immigration-block-one .inner-box .text h3 a:hover{
  text-decoration: underline;
}

.immigration-section .more-text{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 34px;
}

.immigration-section .more-text h3{
  font-weight: 400;
}

.immigration-section .more-text h3 a span{
  display: inline-block;
  line-height: 24px;
  transition: all 500ms ease;
}

.immigration-section .more-text h3 a i{
  position: relative;
  font-size: 14px;
  color: #2d5883;
  margin-left: 10px;
  font-weight: 600;
  top: -2px;
}

.immigration-section .more-text h3 a:hover span{
  color: #2d5883 !important;
  border-color: #2d5883 !important;
}

.bg-color-3{
  background: #eff2f5;
}


/** choose-section **/

.choose-section{
  position: relative;
  padding: 105px 0px;
}

.choose-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.choose-section .image-layer{
  position: absolute;
  top: -60px;
  right: 0px;
}

#content_block_2 .content-box{
  position: relative;
  display: block;
  max-width: 590px;
  width: 100%;
}

#content_block_2 .content-box .text{
  position: relative;
  margin-bottom: 37px;
}

#content_block_2 .content-box .inner-box .single-item{
  position: relative;
  padding-left: 110px;
  margin-bottom: 37px;
}

#content_block_2 .content-box .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

#content_block_2 .content-box .inner-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 45px;
  color: #000;
  background: #fff;
  text-align: center;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
  transition: all 500ms ease;
}

#content_block_2 .content-box .inner-box .single-item:hover .icon-box{
  color: #fff;
}

#content_block_2 .content-box .inner-box .single-item h3{
  margin-bottom: 10px;
}


/** testimonial-section **/

.testimonial-section{
  position: relative;
  padding: 105px 0px;
}

.testimonial-block-one{
  position: relative;
  display: block;
  border: 1px solid #e4e4e4;
  padding: 46px 30px 49px 50px;
  transition: all 500ms ease;
}

.testimonial-block-one:hover{
  border-color: #2d5883;
}

.testimonial-block-one .inner-box{
  position: relative;
  padding-left: 170px;
}

.testimonial-block-one .inner-box .author-inner{
  position: absolute;
  left: 0px;
  top: 11px;
  text-align: center;
}

.testimonial-block-one .inner-box .author-inner .image-box{
  position: relative;
  display: inline-block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 7px;
}

.testimonial-block-one .inner-box .author-inner .image-box img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-inner h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0px;
}

.testimonial-block-one .inner-box .author-inner .designation{
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #222;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  margin: 0px;
}

.testimonial-block-one .inner-box .content-inner .rating-box{
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.testimonial-block-one .inner-box .content-inner .rating-box h6{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
  color: #2d5883;
  margin-right: 12px;
}

.testimonial-block-one .inner-box .content-inner .rating-box .rating{
  position: relative;
  display: inline-block;
}

.testimonial-block-one .inner-box .content-inner .rating-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 10px;
  line-height: 26px;
  color: #ffce4a;
}

.testimonial-section .owl-dots{
  display: block;
  text-align: center;
  margin-top: 58px;
}

.testimonial-section .owl-theme .owl-dots .owl-dot.active span, 
.testimonial-section .owl-theme .owl-dots .owl-dot span:hover {
  width: 18px;
}

.testimonial-section .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  background: #cccccc;
  border-radius: 5px;
  margin: 0px 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-section .sec-title{
  margin-bottom: 70px;
}


/** inquiry-section **/

.inquiry-section{
  position: relative;
  padding: 105px 0px 110px 0px;
}

.inquiry-section .pattern-layer{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.inquiry-section .inner-box h4{
  position: relative;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}

.inquiry-section .inner-box h2{
  position: relative;
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 33px;
}

.inquiry-section .inner-box .inquiry-form .form-group{
  position: relative;
  margin-bottom: 15px;
}

.inquiry-section .inner-box .inquiry-form .form-group:last-child{
  margin-bottom: 0px;
}

.inquiry-section .inner-box .inquiry-form .form-group input[type='text'],
.inquiry-section .inner-box .inquiry-form .form-group input[type='email'],
.inquiry-section .inner-box .inquiry-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #476c92;
  border: 1px solid #476c92;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.inquiry-section .inner-box .inquiry-form .form-group input::-webkit-input-placeholder{
  color:#fff;
}

.inquiry-section .inner-box .inquiry-form .form-group textarea::-webkit-input-placeholder{
  color:#fff;
}

.inquiry-section .inner-box .inquiry-form .form-group textarea{
  height: 132px;
  resize: none;
  margin-bottom: 25px;
}

.inquiry-section .inner-box .inquiry-form .form-group textarea:focus,
.inquiry-section .inner-box .inquiry-form .form-group input:focus{

}

.inquiry-section .inner-box .inquiry-form .form-group .theme-btn-two{
  padding: 14.5px 33px;
}

.inquiry-section .inner-box .inquiry-form .form-group .theme-btn-two i{
  margin-left: 0px;
  margin-right: 10px;
}

.inquiry-section .content-box h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}

.inquiry-section .content-box .rating{
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.inquiry-section .content-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 35px;
  color: #ffce4a;
  margin-right: 2px;
}

.inquiry-section .content-box h2{
  position: relative;
  font-size: 60px;
  line-height: 68px;
  color: #fff;
  margin-bottom: 10px;
}

.inquiry-section .content-box span{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 51px;
}

.inquiry-section .content-box .info-box li{
  position: relative;
  padding-left: 70px;
  padding-bottom: 35px;
  margin-bottom: 29px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.inquiry-section .content-box .info-box li:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}

.inquiry-section .content-box .info-box li i{
  position: absolute;
  left: 0px;
  top: 7px;
  font-size: 45px;
  line-height: 45px;
  color: #fff;
}

.inquiry-section .content-box .info-box li p{
  color: #fff;
  font-weight: 400;
  margin-bottom: 0px;
}

.inquiry-section .content-box .info-box li h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #fff;
  margin: 0px;
}

.inquiry-section .content-box .info-box li h3 a{
  display: inline-block;
  color: #fff;
}

.inquiry-section .content-box .info-box li h3 a:hover{

}

.inquiry-section .content-box{
  position: relative;
  display: block;
  max-width: 360px;
  width: 100%;
  margin-left: 80px;
}


/** news-section **/

.news-section{
  position: relative;
  padding: 80px 0px 80px 0px;
  background: #F4F4F4;
}

.news-section .pro-title-inner h1{
  color: #000;
}

.news-section .top-inner{
  position: relative;
  margin-bottom: 40px;
}

.news-section .top-inner .text{
  position: relative;
  display: block;
  margin-top: 42px;
  padding-left: 40px;
}

.news-section .top-inner .text p{
  font-size: 19px;
  line-height: 30px;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  background: #eff2f5;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover{
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
.news-block-one .inner-box .image-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.news-block-one .inner-box:hover .image-box::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: all;
  transition-property: all;
}

.news-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
  opacity: 0.2;
}

.news-block-one .inner-box .lower-content{
  position: relative;
  padding: 39px 30px 36px 35px;
}

.news-block-one .inner-box .lower-content .post-date{
  position: absolute;
  right: 30px;
  top: -58px;
  width: 78px;
  height: 78px;
  border-radius: 2px;
  text-align: center;
  padding: 12px 10px;
  z-index: 2;
}

.news-block-one .inner-box .lower-content .post-date h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0px;
}

.news-block-one .inner-box .lower-content .post-date span{
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 0px;
}

.news-block-one .inner-box .lower-content h3 a{
  margin-bottom: 12px;
  word-break:break-all;
  font-size: 18px;
  overflow: hidden;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
}

.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  display: block;
  padding-bottom: 14px;
  margin-bottom: 13px;
}

.post-content{
  margin-bottom: 10px;
}

.news-block-one .inner-box .lower-content .post-info:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 0px;
  bottom: 0px;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  margin-right: 20px;
}

.news-block-one .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #8a8b8c;
  width: 1px;
  height: 17px;
  top: 6px;
  right: -13px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}

.news-block-one .inner-box .lower-content .post-info li:last-child{
  margin-right: 0px;
}

.news-block-one .inner-box .lower-content .post-info li a{
  display: inline-block;
  color: #555;
}

.news-block-one .inner-box .lower-content .post-info li a:hover{

}

.news-block-one .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  font-family: 'Cabin', sans-serif;
  color: #555555;
}

.news-block-one .inner-box .lower-content .link a i{
  position: relative;
  font-size: 16px;
  margin-left: 10px;
  color: #2d5883;
}

.news-block-one .inner-box .lower-content .link a:hover{
  
}


/** clients-section **/

.clients-section{
  position: relative;
  padding-bottom: 110px;
}

.clients-section .logo-image img{
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.clients-section .logo-image:hover img{
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}


/** main-footer **/

.main-footer{
  position: relative;
  background: #262524;
}

.main-footer .footer-top{
  position: relative;
  display: block;
  padding: 80px 0px 85px 0px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-footer .footer-top .logo-widget{
  position: relative;
  margin-right: -35px;
  margin-top: 5px;
}

.main-footer .footer-top .logo-widget .footer-logo{
  position: relative;
  margin-bottom: 28px;
}

.main-footer .footer-top p{
  color: #AAAAAA;
  line-height: 26px;
  margin-bottom: 26px;
}

.main-footer .footer-widget h1{
  font-size: 38px;
  color: #EA1507;
  font-weight: 700;
}

.main-footer .footer-widget h3{
  color: #AAAAAA;
  font-size: 16px;
  font-weight: normal;
  margin: 10px 0;
}

.main-footer .footer-widget h2{
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #fff;
}

.main-footer .footer-widget h3 i{
  font-size: 20px;
  line-height: 20px;
  color: #AAAAAA;
}

.main-footer .footer-widget p{
  margin-bottom: 0px;
}

.main-footer .footer-widget p a{
  color: #AAAAAA
}

.main-footer .footer-widget p a:hover{
  color: #fff;
}

.main-footer .footer-top .logo-widget .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.main-footer .footer-top .logo-widget .social-links li:last-child{
  margin-right: 0px;
}

.main-footer .footer-top .logo-widget .social-links li a{
  display: inline-block;
  font-size: 15px;
  color: #7b8a9a;
}

.main-footer .footer-top .logo-widget .social-links li a:hover{

}

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

.main-footer .wx p{
  color: #fff;
  margin-top: 10px;
}

.main-footer .footer-top .widget-title{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.main-footer .footer-top .widget-title h3{
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0px;
}

.main-footer .footer-top .footer-column:nth-child(2) .links-widget{
  margin-left: 60px;
}

.main-footer .footer-top .footer-column:nth-child(3) .links-widget{
  margin-left: 25px;
}

.main-footer .footer-top .links-widget .widget-content .list li{
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.main-footer .footer-top .links-widget .widget-content .list li:last-child{
  margin-bottom: 0px;
}

.main-footer .footer-top .links-widget .widget-content .list li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #AAAAAA;
  /*padding-left: 25px;*/
}

.main-footer .footer-top .links-widget .widget-content .list li a:before{
  position: absolute;
  content: "\f106";
  font-family: 'Flaticon';
  font-size: 14px;
  font-weight: 600;
  left: 0px;
  top: 1px;
  color: #7b8a9a;
  display: none;
  transition: all 500ms ease;
}

.main-footer .footer-top .links-widget .widget-content .list li a:hover{
  color: #fff;
}

.main-footer .footer-top .links-widget .widget-content .list li a:hover:before{
  color: #fff;
}

.main-footer .footer-top .newsletter-widget .newsletter-form .form-group{
  position: relative;
  margin: 0px;
}

.main-footer .footer-top .newsletter-widget .newsletter-form .form-group input[type='email']{
  position: relative;
  width: 100%;
  height: 56px;
  background: #2a3c4e;
  border: 1px solid #2a3c4e;
  font-size: 15px;
  font-weight: 300;
  color: #abb0b5;
  border-radius: 2px;
  padding: 10px 70px 10px 20px;
  transition: all 500ms ease;
}

.main-footer .footer-top .newsletter-widget .newsletter-form .form-group input:focus{

}

.main-footer .footer-top .newsletter-widget .newsletter-form .form-group input::-webkit-input-placeholder{
  color:#abb0b5;
}

.main-footer .footer-top .newsletter-widget .newsletter-form .form-group button{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 56px;
  height: 56px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-radius: 0px 2px 2px 0px;
  text-align: center;
}

.main-footer .footer-top .newsletter-widget p{
  margin-bottom: 22px;
}

.main-footer .footer-top .newsletter-widget{
  margin-left: -10px;
}

.main-footer .footer-bottom{
  position: relative;
  padding: 40px 0px;
}

.main-footer .footer-bottom .copyright p{
  color: #7b8a9a;
  line-height: 26px;
}

.main-footer .footer-bottom .copyright p a{
  display: inline-block;
  color: #7b8a9a;
  text-transform: uppercase;
}

.main-footer .footer-bottom .copyright p a:hover{

}

.main-footer .footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.main-footer .footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background: #4c5b6c;
  width: 2px;
  height: 16px;
  top: 8px;
  right: -12px;
}

.main-footer .footer-bottom .footer-nav li:last-child:before{
  display: none;
}

.main-footer .footer-bottom .footer-nav li:last-child{
  margin-right: 0px;
}

.main-footer .footer-bottom .footer-nav li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 300;
  color: #7b8a9a;
}

.main-footer .footer-bottom .footer-nav li a:hover{

}

.mobile-menu .contact-info ul li a:hover{
  
}

.mobile-menu .social-links li a:hover{
  
}

/*内页开始*/
.page{
  margin: 50px 0;
}
.page a{
  padding: 4px 8px;
  background: #1B3478;
  color: #fff;
  margin: 0 0px;
  display: inline-block;
}
.page a:hover{
  background: #EA1508;
}
.page .current{
  padding: 8px 12px;
  color: #fff;
  margin: 0 4px 0 0;
  background: #EA1508;
}
.page select{
  display: none;
}
.insidebanner{
  height: 400px;
  position: relative;
  transition: all 500ms ease;
}
.insidebanner.companybanner{
  background: url(../images/com.jpg)no-repeat center;
}
.insidebanner.productbanner{
  background: url(../images/probanner.jpg)no-repeat center;
}
.insidebanner.casebanner{
  background: url(../images/casebanner.jpg)no-repeat center;
}
.insidebanner.newsbanner{
  background: url(../images/newsbanner.jpg)no-repeat center;
}

.insidebanner.contactbanner{
  background: url(../images/contactbanner.jpg)no-repeat center;
}
.insidebanner .swi{
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: #fff;
  min-height: 50px;
  /*line-height: 80px;*/
  width: 100%;
}
.insidebanner .swi a{
  color: #fff;
}
.insidebanner .swi i{
  font-size: 20px;
  margin-right: 10px;
  color: #fff;
}

/*** 

====================================================================
  贝斯特精神 Section
====================================================================

***/

.highlights-section-two {
    position: relative;
    padding: 0px 0px;
    z-index: 1;
    overflow: hidden;
}

.highlights-section-two .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.highlights-section-two .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.70);*/
}

.highlights-section-two .image-layer:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.40);
}

.highlights-section-two .carousel-outer {
    position: relative;
}

.featured-block-five {
    position: relative;
}

.owl-theme .featured-block-five {
    margin: 0;
}

.featured-block-five .inner-box {
    position: relative;
    display: block;
    padding: 110px 40px 130px;
}

.featured-block-five .inner-box:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    height: 150%;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    z-index: 1;
}

.featured-block-five .content {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateY(-200px);
    transform: translateY(-200px);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}

.featured-block-five .inner-box:hover .content,
.center .featured-block-five .inner-box .content {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.featured-block-five .count-box {
    position: absolute;
    right: 40px;
    top: 40px;
    font-size: 100px;
    line-height: 1em;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.10;
    font-family: 'Manjari', sans-serif;
    visibility: hidden;
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}

.featured-block-five .inner-box:hover .count-box,
.center .featured-block-five .inner-box .count-box {
    visibility: visible;
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 500ms ease 500ms;
    -moz-transition: all 500ms ease 500ms;
    -ms-transition: all 500ms ease 500ms;
    -o-transition: all 500ms ease 500ms;
    transition: all 500ms ease 500ms;
}

.featured-block-five .icon-box {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 1em;
    color: #ffffff;
    margin-bottom: 25px;
}

.featured-block-five .content {
    position: relative;
    display: block;
}

.featured-block-five h3 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0px;
}

.featured-block-five .dz{
  min-height: 112px;
}

.featured-block-five .dz p{
  color: #AAAAAA;
  font-family: 'Yahei';
  font-weight: 400;
}

.featured-block-five h3 a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.featured-block-five h3 a:hover {
    color: #EB1508;
}

.featured-block-five .text {
    color: #bababa;
    margin-bottom: 30px;
}

.featured-block-five .read-more {
    position: relative;
    display: block;
}

.featured-block-five .read-more a {
    position: relative;
    display: block;
    color: #00378A;
    background: #ffffff;
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.featured-block-five .read-more a:hover {
    background: #00378A;
    color: #ffffff;
}

.featured-block-five .bottom-text {
    position: absolute;
    left: 0px;
    bottom: 0px;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Manjari', sans-serif;
    padding: 0px 40px 16px;
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(-0px);
    transform: translateY(0px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.featured-block-five .inner-box:hover .bottom-text,
.center .featured-block-five .inner-box .bottom-text {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateY(80px);
    transform: translateY(80px);
}

.highlights-section-two .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -60px;
    height: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.highlights-section-two .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -100px;
    background: none;
    height: 60px;
    border: none;
    text-align: center;
    line-height: 60px;
    color: #ffffff;
    font-size: 48px;
    opacity: 0.30;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.highlights-section-two .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -100px;
    background: none;
    height: 60px;
    border: none;
    text-align: center;
    line-height: 60px;
    color: #ffffff;
    font-size: 48px;
    opacity: 0.30;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.highlights-section-two .owl-nav .owl-prev:hover,
.highlights-section-two .owl-nav .owl-next:hover {
    color: #00378A;
    opacity: 1;
}

.with-separator h2 {
    padding-bottom: 27px;
}

.separator {
    margin: 0 auto;
}

 .separator {
    position: relative;
    width: 26px;
    height: 0;
}

 .separator:before {
    content: '';
    position: absolute;
    top: -7px;
    left: 100%;
    margin-left: 10px;
    width: 36px;
    border-bottom: 2px solid #EA1508;
}

 .separator:after {
    content: '';
    position: absolute;
    top: -7px;
    right: 100%;
    margin-right: 10px;
    width: 36px;
    border-bottom: 2px solid #EA1508;
    display: none;
}

.separator:after {
    display: block;
}

 .separator .cir {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #EA1508;
    border-radius: 50%;
}

 .separator .c-1 {
    left: 0;
}

 .separator .c-2 {
    left: 7px;
    background: #EA1508;
}

 .separator .c-3 {
    left: auto;
    right: 0;
}


/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/


/** header-style-two **/

.main-header.style-two{
  position: relative;
}

.main-header.style-two .outer-box{
  position: relative;
}

.main-header.style-two .main-menu .navigation > li > a{
  color: #222;
  font-weight: 500;
}

.main-header.style-two .main-menu .navigation > li{
  padding: 43px 0px 41px 0px;
  margin: 0px 13px;
}

.main-header.style-two .logo-box .logo{
  position: relative;
  padding: 30px 0px;
}

.main-header.style-two .menu-right-content{
  margin: 31px 0px 0px 45px;
}

.main-header.style-two .menu-right-content .theme-btn-two{
  padding: 12.5px 30px;
}


/** banner-style-two **/

.banner-section.style-two .banner-carousel .slide-item{
  padding: 180px 0px 220px 0px;
  max-height: 700px;
}

.banner-section.style-two .banner-carousel .content-box h1{
  line-height: 72px;
}

.banner-section.style-two .banner-carousel .content-box .title-text{
  padding-bottom: 23px;
}

.banner-section.style-two .banner-carousel .content-box.centred .title-text{
  margin-bottom: 35px;
}

.banner-section.style-two .banner-carousel .content-box.centred .title-text:before {
  left: 50%;
  transform: translateX(-50%);
  margin-left: -8px;
}

.banner-section.style-two .banner-carousel .content-box.centred .title-text .dotted-box .dotted {
  left: 50%;
  margin-left: 15px;
}

.banner-section.style-two .banner-carousel .content-box.centred .title-text .dotted-box .dotted:nth-child(2) {
  left: 50%;
  margin-left: 21px;
}

.banner-section.style-two .banner-carousel .content-box.centred .title-text .dotted-box .dotted:last-child {
  left: 50%;
  margin-left: 27px;
}

.banner-section.style-two .banner-carousel .slide-item:before {
  background: rgba(0,0,0,0.65);
}


/** feature-style-two **/

.feature-style-two{
  position: relative;
}

.feature-style-two .inner-container{
  position: relative;
  margin-top: -156px;
  z-index: 1;
}

.feature-block-two{
  margin-bottom: 50px;
  background: #fff url(../images/copy.png)no-repeat right bottom;
}

.feature-block-two .inner-box{
  position: relative;
  display: block;
  /*background: #eff2f5;*/
  padding: 20px 20px 0 20px;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover{
  padding-bottom: 20px;
  margin-bottom: -50px;
}

.feature-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.feature-block-two .inner-box:hover:before{
  height: 100%;
  top: 0px;
}

/*.feature-block-two .inner-box:after{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 100%;
  height: 8px;
  left: 0px;
  bottom: 0px;
}*/

.feature-block-two .inner-box .title-inner{
  position: relative;
  display: block;
  padding-left: 75px;
  min-height: 70px;
  transition: all 500ms ease;
}


.ic1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 66px;
  background: url(../images/1-1.png)no-repeat center;
  font-size: 60px;
  line-height: 60px;
  color: #2d5883;
  transition: all 500ms ease;
}
.ic2{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 66px;
  background: url(../images/2-1.png)no-repeat center;
  font-size: 60px;
  line-height: 60px;
  color: #2d5883;
  transition: all 500ms ease;
}
.ic3{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 66px;
  background: url(../images/3-1.png)no-repeat center;
  font-size: 60px;
  line-height: 60px;
  color: #2d5883;
  transition: all 500ms ease;
}
.ic4{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 66px;
  background: url(../images/4-1.png)no-repeat center;
  font-size: 60px;
  line-height: 60px;
  color: #2d5883;
  transition: all 500ms ease;
}

.icc1:hover .ic1{
  background: url(../images/1-2.png)no-repeat center;
}

.icc2:hover .ic2{
  background: url(../images/2-2.png)no-repeat center;
}

.icc3:hover .ic3{
  background: url(../images/3-2.png)no-repeat center;
}

.icc4:hover .ic4{
  background: url(../images/4-2.png)no-repeat center;
}

.feature-block-two .inner-box .title-inner h3{
  line-height: 29px;
  padding-top: 7px;
  padding-bottom: 3px;
}
.feature-block-two .inner-box .title-inner p{
  color: #888888;
  line-height: 20px;
}

.feature-block-two .inner-box:hover .title-inner .icon-box,
.feature-block-two .inner-box:hover .title-inner h3,
.feature-block-two .inner-box:hover .title-inner p,
.feature-block-two .inner-box:hover .text p{
  color: #fff;
}

.feature-block-two .inner-box .link{
  position: relative;
  display: block;
  opacity: 0;
  height: 16px;
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .1s;
  transition-duration: .1s;
  -webkit-transition-property: all;
  transition-property: all;
}

.feature-block-two .inner-box:hover .link{
  opacity: 1;
  height: 20px;
}

.feature-block-two .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.feature-block-two .inner-box .link a i{
  margin-left: 10px;
  font-weight: 600;
}

.feature-block-two .inner-box .link a span{
  display: inline-block;
  border-bottom: 1px solid #fff;
}

.feature-block-two .inner-box .text p{
  margin-bottom: 11px;
}

.feature-block-two .inner-box:hover .text p{
  margin-bottom: 21px;
}


/** about-style-two **/

.about-style-two{
  position: relative;
  background: #F8F8F8 url(../images/qx.png) no-repeat center;
  padding: 70px 0px 100px 0px;
}

.about-style-two #image_block_2 .image-box{
  margin-top: 9px;
  padding-right: 15px;
}

#image_block_2 .image-box{
  position: relative;
  display: block;
  /*padding-left: 45px;*/
}

#image_block_2 .image-box img{
  width: 100%;
}

#image_block_2 .image-box .image-2{
  position: absolute;
  left: 0px;
  top: -55px;
}

#image_block_2 .image-box .image-3{
  position: absolute;
  right: -95px;
  bottom: -105px;
  z-index: -1;
}

#image_block_2 .image-box:before{
  position: absolute;
  content: '';
  background: #f4f6f8;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  left: 80px;
  top: -80px;
  z-index: -1;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

#image_block_2 .image-box:after{
  position: absolute;
  content: '';
  border: 3px solid #f4f6f8;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: 50px;
  bottom: -75px;
  z-index: -2;
}

#content_block_3{
  padding-left: 40px;
  box-sizing:border-box;
}

#content_block_3 .sec-title{
  padding-top: 40px;
  padding-bottom: 15px;
}

#content_block_3 .btn-box{
  text-align: right;
}


#content_block_3 h2{
  font-size: 31px;
  text-align: right;
  font-weight: normal;
  line-height: 45px;
}
#content_block_3 p{
  font-weight: 400;
  word-break:break-all;
  overflow: hidden;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}
#content_block_3 .sec-title:before{
  top: 0px;
  right: 0px;
  width: 60px;
  height: 7px;
  background: #EB1508
}

#content_block_3 .content-box .text{
  margin-bottom: 41px;
}

#content_block_3 ul{
  justify-content:right;
  margin-bottom: 30px;
}
#content_block_3 ul li{
  text-align: center;
  position: relative;
  padding: 5px 15px;
}
#content_block_3 ul li div[class*=kj]{
  width: 46px;
  height: 44px;
  background-size: 46px 44px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 500ms ease;
  margin: 0 auto;
}

#content_block_3 .kj1{
  background: url(../images/01-2.png)no-repeat center;
}

#content_block_3 .kk1:hover .kj1{
  background: url(../images/01-1.png)no-repeat center;
}

#content_block_3 .kj2{
  background: url(../images/02-2.png)no-repeat center;
}

#content_block_3 .kk2:hover .kj2{
  background: url(../images/02-1.png)no-repeat center;
}

#content_block_3 .kj3{
  background: url(../images/03-2.png)no-repeat center;
}

#content_block_3 .kk3:hover .kj3{
  background: url(../images/03-1.png)no-repeat center;
}

#content_block_3 ul li:hover .kj1{
  opacity: 1;
}
#content_block_3 ul li:hover img{
  opacity: 0;
}
#content_block_3 ul li:hover p{
  color: #ec4e4f
}

#content_block_3 ul li p{
  margin-top: 8px;
}


/*product-style-two*/
.product-style-two{
  padding: 70px 0 0 0;
  background: url(../images/product.jpg)no-repeat center;
}

.product-style-two .auto-container{
  position: relative;
}


.pro-title-inner{
  text-align: center;
  color: #fff;
}
.main .pro-title-inner{
  margin-top: 100px;
}

.pro-title-span{
  padding: 5px 20px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  background: #EB1608;
  font-weight: 700;
}

.pro-title-inner h1{font-size: 36px;color: #fff;margin: 10px 0 40px 0;}
.pro-title-inner h2{font-size: 36px;color: #fff;margin-bottom: 10px;}
.pro-title-inner p{color: #fff;font-size: 18px;}

.product{
  background: #fff;
  padding: 40px 20px 0 20px;
  box-sizing:border-box;
  border-radius: 20px  20px  0px  0px;
  margin-top: 85px;
  position: relative;
}

.product-style-two .auto-container .float-more{
  position: absolute;
  width: 65px;
  height: 65px;
  border: 4px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  font-size: 16px;
  background: #EB1508;
  color: #fff;
  top: -32.5px;
  left: 50%;
  margin-left: -32.5px;
  transition: all 500ms ease;
}

.product-style-two .auto-container .float-more:hover{
  background: #213448;
}

/** service-style-two **/

.service-style-two{
  position: relative;
  padding-top: 80px;
}

.service-style-two .sec-title{
  padding-bottom: 45px;
  margin-bottom: 40px;
}

.paul{
  border-right:1px solid #DCDCDC;
}

.paul h1{
  font-size: 32px;
  margin-top: 10px;
}

.chris{
  padding-left: 100px;
  font-weight: 400;
}

.service-style-two .sec-title h2{
  margin-bottom: 14px;
}

.service-style-two .sec-title span{
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 30px;
}

.service-block-two{
  margin: 30px 0px;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
}

.service-block-two .inner-box .image-box{
  position: relative;
  display: block;
  background: none;
  overflow: hidden;
}

.service-block-two .inner-box .image-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.1);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.service-block-two .inner-box:hover .image-box::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.service-block-two .inner-box .image-box img{
  width: 100%;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: all;
  transition-property: all;
}

.service-block-two .inner-box:hover .image-box img{
 /* opacity: 0.2;*/
  transform: scale(1.05);
}

.service-block-two .inner-box .lower-content{
  position: relative;
  display: block;
}

.service-block-two .inner-box .lower-content .box{
  position: relative;
  padding: 64px 15px 41px 15px;
}

.service-block-two .inner-box .lower-content .box .icon-box{
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: #2d5883;
  font-size: 40px;
  color: #fff;
  z-index: 2;
}

.service-block-two .inner-box .lower-content .box h3{
  margin-bottom: 14px;
}

.service-block-two .inner-box .lower-content .link{
  position: relative;
  display: block;
  padding: 22px 15px;
  border-top: 1px solid #e0e6ed;
}

.service-block-two .inner-box .lower-content .link:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .link:before{
  width: 100%;
  left: 0px;
}

.service-block-two .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  color: #222;
}

.service-block-two .inner-box .lower-content .link a i{
  position: relative;
  margin-left: 10px;
  font-size: 14px;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .link a i,
.service-block-two .inner-box:hover .lower-content .link a{
  color: #fff !important;
}

.service-style-two .owl-theme .owl-dots{
  display: block;
  text-align: center;
  margin-top: 5px;
}

.service-style-two .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  background: #cccccc;
  border-radius: 5px;
  margin: 0px 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-style-two .owl-theme .owl-dots .owl-dot.active span,
.service-style-two .owl-theme .owl-dots .owl-dot span:hover{
  width: 18px;
  background: #EA1508;
}

.service-style-two .more-text{
  position: relative;
  display: block;
  padding: 65px 0px;
  border-top: 1px solid #d2dbe4;
}

.service-style-two .more-text h3{
  font-weight: 400;
}

.service-style-two .more-text span{
  display: inline-block;
  line-height: 24px;
  transition: all 500ms ease;
}

.service-style-two .more-text a i{
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
  color: #2d5883;
}

.service-style-two .more-text a:hover span{
  color: #2d5883;
  border-color: #2d5883;
}

.service-style-two .three-item-carousel{
  padding-bottom: 40px;
}

/*产品内页 产品中心*/
.product-in-list{
  margin: 100px 0;
}

.nice-select{
  display: none;
}

.page{
  text-align: right;
}

.product-in-list .prod-r .cici{
  padding: 3px;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

.product-in-list .prod-r .cici span{
  position: absolute;
  /*background: #DA0600;*/
  display: block;
  transition: all 300ms ease;
}

.product-in-list .prod-r .cici img{
  transition: all 500ms ease;
}

.product-in-list .prod-r ul li{
  margin-bottom: 50px;
}

.prod-r{
  margin-top: 50px;
}

.product-in-list .prod-r ul li:hover .cici img{
  transform: scale(1.1);
}

.product-in-list .prod-r .cici .c1{
  width: 100%;
  height: 3px;
  left: -100%;
  top: 0px;
  background: linear-gradient(to right, #080E96 0%,#DA0600 60%,#FF6459 100%);
}

.product-in-list .prod-r .cici .c2{
  width: 3px;
  height: 100%;
  right: 0;
  top: -100%;
  background: linear-gradient(to bottom,  #080E96 0%,#DA0600 60%,#FF6459 100%);
}

.product-in-list .usb li{
  padding: 10px 50px;
  margin: 0px 10px 20px 10px;
  border:1px solid #ccc;
  box-sizing:border-box;
  border-radius: 30px;
  background: #e5e5e5;
}

.product-in-list .usb li a{
  color: #000;
}

.product-in-list .usb li:hover{
  transition: all 500ms ease;
  background: #DA0600;
}

.product-in-list li.active{
  background: #DA0600;
}

.product-in-list li.active a{
  color: #fff;
}

.product-in-list .usb li:hover a{
  color: #fff;
}

.product-in-list .lbj{
  margin-top: 20px;
  box-sizing:border-box;
}

.product-in-list .lbj li.active{
  background: #DA0600;
}

.product-in-list .lbj li.active a{
  color: #fff;
}

.product-in-list .lbj li:hover{
  background: #DA0600;
}

.product-in-list .lbj li:hover a{
  color: #fff;
}

.product-in-list .lbj li{
  padding: 5px 30px;
  color: #000;
  border:1px solid #e5e5e5;
  margin: 0 10px;
  margin-bottom: 10px;
  box-sizing:border-box;
}

.product-in-list .lbj li a{
  color: #000;
}

.product-in-list .lbj {
  margin-bottom: 50px;
}

.product-in-list .prod-r .cici .c3{
  width: 100%;
  height: 3px;
  right: -100%;
  bottom: 0;
  background: linear-gradient(to left,  #080E96 0%,#DA0600 60%,#FF6459 100%);
}

.product-in-list .prod-r .cici img{
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.product-in-list .prod-r .cici .c4{
  width: 3px;
  height: 100%;
  left: 0;
  bottom: -100%;
  background: linear-gradient(to top,  #080E96 0%,#DA0600 60%,#FF6459 100%);
}

.product-in-list .prod-r ul li:hover .cici .c1{
  left: 0;
}

.product-in-list .prod-r ul li:hover .cici .c2{
  top: 0;
}

.product-in-list .prod-r ul li:hover .cici .c3{
  right: 0;
}

.product-in-list .prod-r ul li:hover .cici .c4{
  bottom: 0;
}

.product-in-list .prod-r ul li p{
  text-align: center;
  line-height: 50px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  font-weight: 400;
}
.product-in-list .prod-r ul li:hover p{
  color: #FF6359;
}


.bigimage img{
  width: 100%;
  height: 100%;
  object-fit:contain;
}


.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gallery-top {
  height: 100%;
  width: 100%;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  position: absolute;
  right: -100%;
  bottom: 0px;
}

.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.hotline{width:100%;background:#f8f8f8;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:22px 30px 30px 30px;margin-top:30px}
.hotline>h4{font-size:32px;color:#bd1121;font-weight:400;margin-bottom:9px}
.hotline>h4>span{font-size:14px;color:#373737;font-weight:lighter;position:relative;top:-5px}
.hotline .order-btn>a{float:left;width:160px;height:50px;line-height:50px;display:block;text-align:center;font-size:16px;font-weight:lighter;margin-right:18px;-webkit-transition:350ms 0s all ease;-moz-transition:350ms 0s all ease;-ms-transition:350ms 0s all ease;-o-transition:350ms 0s all ease;transition:350ms 0s all ease;position:relative;overflow:hidden}
.hotline .order-btn>a:before{display:block;content:'';position:absolute;bottom:0;left:0;width:100%;height:100%;-webkit-transition:350ms 0s all ease;-moz-transition:350ms 0s all ease;-ms-transition:350ms 0s all ease;-o-transition:350ms 0s all ease;transition:350ms 0s all ease}
.hotline .order-btn>a:first-of-type:before{background:#bd1121}
.hotline .order-btn>a:nth-of-type(2):before{background:#ddd}
.hotline .order-btn>a:hover:before{height:2px}
.hotline .order-btn>a:first-of-type:hover{color:#bd1121}
.hotline .order-btn>a:after{display:block;content:attr(data-attr);position:absolute;bottom:0;left:0;width:100%;height:100%;-webkit-transition:350ms 0s all ease;-moz-transition:350ms 0s all ease;-ms-transition:350ms 0s all ease;-o-transition:350ms 0s all ease;transition:350ms 0s all ease}
.hotline .order-btn>a:first-of-type{color:#fff}
.hotline .order-btn>a:nth-of-type(2){color:#363636}
.hotline .order-btn>span{float:left;display:flex;justify-content:flex-start;align-items:center;height:50px;margin-left:20px}
.hotline .order-btn>span a{display:block;margin-right:30px;width:16px;height:16px;background:url(../images/css_sprites.png) -82px -10px;-webkit-transition:350ms 0s all ease;-moz-transition:350ms 0s all ease;-ms-transition:350ms 0s all ease;-o-transition:350ms 0s all ease;transition:350ms 0s all ease}
.hotline > h4 > span{font-weight: 400;}
.order-btn{
  margin-top: 30px;
}
.zproinfo_right > h4{
  font-size: 24px;
  font-weight: bold;
}

.clear{clear:both;}
.tabs{margin: 50px 0;}
.tabs-list { list-style:none; }
.tabs-list li {float: left;text-align: center;color: #fff;border-right: 1px solid #fff;box-sizing:border-box; display:inline-block; *display:inline; *zoom:1; width: 33.333333%; margin-bottom:2px; }
.tabs-list li a { display:block; height:45px; line-height:45px; padding:0 30px; background-color:#EBEBEB; color:#000; text-decoration:none; font-size:14px; transition:all 0.4s ease 0s; }
.tabs-list li a:hover { background-color:#CB3029;color: #fff; }
.tabs-list li.active a { background-color:#CB3029; color:#fff; }
.tab-content {padding: 40px 0;}
.tabs .accordion-handle { display:none; }

.tabs-vertical-left, .tabs-vertical-right { *zoom:1; }
.tabs-vertical-left:before, .tabs-vertical-left:after, .tabs-vertical-right:before, .tabs-vertical-right:after { visibility:hidden; display:block; font-size:0;content:" "; clear:both; height:0; }
.tabs-vertical-left .tabs-list, .tabs-vertical-right .tabs-list { width:25%; }
.tabs-vertical-left .tabs-list li, .tabs-vertical-right .tabs-list li { display:block; margin:0 0 5px 0; width:100%; }
.tabs-vertical-left .tabs-list li a, .tabs-vertical-right .tabs-list li a { height:auto; padding:8px 20px; line-height:1.5; }
.tabs-vertical-left .tabs-container, .tabs-vertical-right .tabs-container { width:75%; }
.tabs-vertical-left .tabs-list { float:left; }
.tabs-vertical-left .tabs-container { float:right; }
.tabs-vertical-left .tabs-container .tab-content { margin:0 0 0 15px; }
.tabs-vertical-right .tabs-list { float:right; }
.tabs-vertical-right .tabs-container { float:left; }
.tabs-vertical-right .tabs-container .tab-content { margin:0 15px 0 0; }

.accordion-handle { position:relative; margin-bottom:10px; background-color:#ebebeb; text-decoration:none; color:#fff; cursor:pointer; transition:all 0.4s ease 0s; }
.accordion-handle:hover { background-color:#CB3029; }
.accordion-handle.active { background-color:#CB3029; color:#fff; }
.accordion-handle.active h4{color: #fff;}
.accordion-handle h4 { height:38px; line-height:38px; padding:0 15px; font-size:14px; font-weight:normal; }
.accordion-handle i { display:block; width:38px; height:38px; overflow:hidden; position:absolute; right:0; top:0; background:url(../images/icon-accordion.gif) no-repeat top center; }
.accordion-handle.active i { background-position:bottom center; }
.accordion-content { margin-bottom:15px; display:none; }

.page ul{
  margin: 0px;
}
.page ul li{
  width: 50%;
  text-align: left;border-bottom: 1px solid #ccc;
  line-height: 40px;
}
.page ul li.right{
  text-align: right
}

@media only screen and ( max-width:768px ){
  .responsive-tabs .tabs-list { display:none; }
  .responsive-tabs .accordion-handle { display:block; } 
  .responsive-tabs.tabs-vertical-left .tabs-container, .responsive-tabs.tabs-vertical-right .tabs-container { width:100%; float:none; }
  .responsive-tabs.tabs-vertical-left .tabs-container .tab-content, .responsive-tabs.tabs-vertical-right .tabs-container .tab-content { margin:10px 0 15px; } 
}

/** apply-style-two **/

.apply-style-two{
  position: relative;
  padding: 105px 0px;
}


.apply-style-two .single-item .inner-box{
  position: relative;
  display: block;
  padding-right: 30px;
}

.apply-style-two .single-item .inner-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  color: #2d5883;
  font-weight: 700;
  margin-bottom: 20px;
}

.apply-style-two .single-item .inner-box .icon-box .arrow{
  position: absolute;
  top: 32px;
  left: 192px;
  width: 125px;
  height: 21px;
  background-repeat: no-repeat;
}

.apply-style-two .single-item .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 60px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border: 1px dashed #345e87;
  background: transparent;
  border-radius: 50%;
  margin-bottom: 38px;
  transition: all 500ms ease;
}

.apply-style-two .single-item .inner-box:hover .icon-box{
  color: #fff !important;
}

.apply-style-two .single-item .inner-box h3{
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 14px;
}


/** immigration-style-two **/

.immigration-style-two{
  position: relative;
}

.immigration-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.immigration-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.immigration-block-two .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
  object-fit:cover;
}

.immigration-block-two .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.immigration-block-two .inner-box .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  /*background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.9) 100%);*/
  z-index: 1;
  transition: all 500ms ease;
}

.immigration-block-two .inner-box:hover .image-box:before{
  background: rgba(0,0,0,0.6);
}

.immigration-block-two .inner-box .content-box{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 30px 30px 70px 30px;
  z-index: 1;
}

.immigration-block-two .inner-box .content-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  opacity: 0;
  text-align: center;
  margin-bottom: 9px;
  transition: all 500ms ease;
}

.immigration-block-two .inner-box .content-box h4 a{
  display: inline-block;
  color: #fff;
}

.immigration-block-two .inner-box .content-box h4 a:hover{
  text-decoration: underline;
}

.immigration-block-two .inner-box .content-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
  color: #fff;
  margin: 0px;
  transition: all 500ms ease;
}

.immigration-block-two .inner-box:hover .content-box h4,
.immigration-block-two .inner-box:hover .content-box h2{
  transform: translateY(-90px);
  opacity: 1;
}

.immigration-block-two .inner-box .content-box .theme-btn-one{
  border: 2px solid #fff;
  padding: 12.5px 31px;
}

.immigration-block-two .inner-box .content-box .theme-btn-one i{
  margin-left: 10px;
}

.immigration-block-two .inner-box .content-box .btn-box{
  position: absolute;
  left: 80px;
  bottom: -56px;
  transition: all 500ms ease;
}

.immigration-block-two .inner-box:hover .content-box .btn-box{
  bottom: 70px;
}


/** offer-section **/

.offer-section{
  position: relative;
  padding: 80px 0px 80px 0px;
  border-bottom: 1px solid #e0e6ed;
}

.party-section{
  background: #F1F1F1;
  width: 100%;
}

.offer-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-repeat: no-repeat;
}

.offer-section .single-item .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 30px;
}

.offer-section .single-item .inner-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  /*box-shadow: inset 0px -130px 60px -40px rgba(0, 0, 0, 0.9);*/
  z-index: 1;
  transition: all 500ms ease;
}

.offer-section .single-item .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.offer-section .single-item .inner-box .image-box::before{
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  z-index: 1;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.offer-section .single-item .inner-box:hover .image-box::before{
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.offer-section .single-item .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.offer-section .single-item .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.offer-section .single-item .inner-box .text{
  /*position: absolute;*/
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  /*padding: 15px 15px 22px 15px;*/
  z-index: 1;
  transition: all 500ms ease;
}

.offer-section .single-item .inner-box .text h4{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #000;
  margin: 0px;
  transition: all 500ms ease;
}

.offer-section .single-item .inner-box .text h4 a{
  color: #fff;
  display: inline-block;
}

.offer-section .single-item .inner-box:hover .text{
  background: #EA1508;
}

.offer-section .single-item .inner-box:hover .text h4{
  color: #fff;
}

.offer-section .owl-nav{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.offer-section .owl-nav .owl-prev, 
.offer-section .owl-nav .owl-next{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #222;
  font-weight: 700;
  width: 48px;
  height: 48px;
  line-height: 46px;
  border: 1px solid #dedede;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  margin: 0px 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.offer-section .owl-nav .owl-prev:hover, 
.offer-section .owl-nav .owl-next:hover{
  color: #fff;
}

.offer-section .sec-title{
  margin-bottom: 60px;
}


/** team-section **/

.team-section{
  position: relative;
  padding: 105px 0px;
}

.team-section .top-inner{
  position: relative;
  margin-bottom: 40px;
}

.team-section .top-inner .text{
  position: relative;
  display: block;
  margin-top: 42px;
  padding-left: 40px;
}

.team-section .top-inner .text p{
  font-size: 19px;
  line-height: 30px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  background: #000;
  overflow: hidden;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img{
  opacity: 0.3;
  transform: scale(1.05);
}

.team-block-one .inner-box .lower-content{
  position: relative;
  padding-top: 37px;
}

.team-block-one .inner-box .lower-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.team-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: #222;
}

.team-block-one .inner-box .lower-content h4 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  margin: 0px;
}


/** funfact-style-two **/

.funfact-style-two{
  position: relative;
}

.funfact-style-two .inner-container{
  position: relative;
  margin-bottom: -230px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.counter-block-two .inner-box{
  position: relative;
  display: block;
  padding: 72px 90px 65px 90px;
  text-align: center;
  min-height: 368px;
}

.counter-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255,0.3);
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.counter-block:last-child .counter-block-two .inner-box:before{
  display: none;
}

.counter-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 35px;
}

.counter-block-two .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 55px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.counter-block-two .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0px;
}


/** testimonial-style-two **/

.testimonial-style-two{
  position: relative;
  padding: 335px 0px 110px 0px;
}

.testimonial-style-two .testimonial-block-one{
  position: relative;
  margin: 30px 0px;
  background: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-style-two .owl-theme .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  background: #cccccc;
  border-radius: 5px;
  margin: 0px 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-style-two .owl-theme .owl-dots .owl-dot.active span,
.testimonial-style-two .owl-theme .owl-dots .owl-dot span:hover{
  width: 18px;
}

.testimonial-style-two .sec-title{
  margin-bottom: 40px;
}

.testimonial-style-two .pattern-layer{
  position: absolute;
  top: 150px;
  right: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}



/*** 

====================================================================
                        About-Page
====================================================================

***/


.page-title{
  position: relative;
  display: block;
  padding: 220px 0px 120px 0px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
}

.page-title .content-box .title-box{
  position: relative;
  display: block;
  margin-bottom: 31px;
  padding-bottom: 14px;
}

.page-title .content-box .title-box:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 0px;
  bottom: 0px;
}

.page-title .content-box .title-box .dotted-box .dotted{
  position: absolute;
  left: 44px;
  width: 3px;
  height: 3px;
  bottom: 0px;
}

.page-title .content-box .title-box .dotted-box .dotted:nth-child(2){
  left: 50px;
}

.page-title .content-box .title-box .dotted-box .dotted:last-child{
  left: 56px;
}

.page-title .content-box .title-box h1{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  margin: 0px;
}

.page-title .content-box .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'Cabin', sans-serif;
  color: #fff;
  font-weight: 400;
  padding-right: 30px;
  margin-right: 12px;
}

.page-title .content-box .bread-crumb li:last-child{
  padding-right: 0px;
  margin-right: 0px;
}

.page-title .content-box .bread-crumb li:before{
  position: absolute;
  content: "\f106";
  font-family: 'Flaticon';
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  top: 1px;
  right: 0px;
}

.page-title .content-box .bread-crumb li:last-child:before{
  display: none;
}

.page-title .content-box .bread-crumb li i{
  margin-right: 8px;
}

.page-title .content-box .bread-crumb li a{
  color: #fff;
}

.page-title .content-box .bread-crumb li a:hover{

}

.apply-style-two.about-page{
  padding-bottom: 165px;
}

.main-footer.about-page{
  margin-top: -30px;
}

.main-footer.about-page .footer-top{
  padding-top: 135px;
}



/*** 

====================================================================
                        Coaching-Page
====================================================================

***/


.coaching-page-section{
  position: relative;
  padding: 105px 0px 35px 0px;
}

.coaching-page-section .sec-title{
  margin-bottom: 70px;
  padding-bottom: 45px;
}

.coaching-page-section .sec-title h2{
  margin-bottom: 14px;
}

.coaching-page-section .sec-title span{
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
}

.coaching-page-section .service-block-two{
  margin: 0px 0px 75px 0px;
}

.coaching-page-section .service-block-two .inner-box .lower-content .box{
  padding-top: 39px;
}


/** sidebar-page-container **/

.sidebar-page-container{
  position: relative;
  padding: 110px 0px;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li{
  position: relative;
  display: block;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  color: #222;
  padding: 21px 40px;
  background: #e7ecf2;
  z-index: 1;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a:after{
  position: absolute;
  content: '';
  background: #d2dbe4;
  width: 1px;
  height: 32px;
  top: 19px;
  right: 74px;
  transition: all 500ms ease;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a.active:after,
.sidebar-page-container .sidebar .sidebar-categories .categories-list li a:hover:after{
  background: rgba(255,255,255,0.2);
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a.active,
.sidebar-page-container .sidebar .sidebar-categories .categories-list li a:hover{
  color: #fff;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a:before{
  position: absolute;
  content: '';
  background: #2d5883;
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a.active:before,
.sidebar-page-container .sidebar .sidebar-categories .categories-list li a:hover:before{
  width: 100%;
  left: 0px;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li:nth-child(2n+1) a{
  background: #eff2f5;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a i{
  position: relative;
  font-size: 16px;
  font-weight: 600;
  float: right;
  color: #c8d1db;
  transition: all 500ms ease;
}

.sidebar-page-container .sidebar .sidebar-categories .categories-list li a.active i,
.sidebar-page-container .sidebar .sidebar-categories .categories-list li a:hover i{
  
}

.sidebar-page-container .sidebar .sidebar-widget{
  position: relative;
  margin-bottom: 45px;
}

.sidebar-page-container .sidebar .sidebar-widget:last-child{
  margin-bottom: 0px;
}

.sidebar-page-container .sidebar .widget-title{
  position: relative;
  display: block;
  padding-bottom: 15px;
  margin-bottom: 36px;
}

.sidebar-page-container .sidebar .widget-title h3{
  color: #DB0700;
  margin: 0px;
}

.sidebar-page-container .sidebar .widget-title:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 0px;
  bottom: 0px;
}

.sidebar-page-container .sidebar .widget-title .dotted-box .dotted{
  position: absolute;
  left: 43px;
  width: 3px;
  height: 3px;
  bottom: 0px;
}

.sidebar-page-container .sidebar .widget-title .dotted-box .dotted:nth-child(2) {
  left: 49px;
}

.sidebar-page-container .sidebar .widget-title .dotted-box .dotted:last-child {
  left: 55px;
}

.sidebar-page-container .sidebar .sidebar-download .widget-title h3{
  color: #fff;
}

.sidebar-page-container .sidebar .sidebar-download .widget-title:before{
  background: #fff !important;
}

.sidebar-page-container .sidebar .sidebar-download .widget-title .dotted-box .dotted{
  background: #fff !important;
}

.sidebar-page-container .sidebar .sidebar-download{
  display: block;
  padding: 34px 35px 5px 35px;
}

.sidebar-page-container .sidebar .sidebar-download .widget-title{
  margin-bottom: 29px;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li{
  position: relative;
  display: block;
  padding-left: 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 29px;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li i{
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 32px;
  line-height: 32px;
  color: #fff;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 5px;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li h4 a{
  display: inline-block;
  color: #fff;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li h4 a:hover{
  text-decoration: underline;
}

.sidebar-page-container .sidebar .sidebar-download .widget-content .download-list li span{
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: rgba(255,255,255,0.7);
  margin: 0px;
}

.sidebar-page-container .sidebar .sidebar-categories-2{
  padding: 33px 35px 39px 35px;
  background: #eff2f5;
}

.sidebar-page-container .sidebar .sidebar-categories-2 .categories-list li{
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.sidebar-page-container .sidebar .sidebar-categories-2 .categories-list li:last-child{
  margin-bottom: 0px;
}

.sidebar-page-container .sidebar .sidebar-categories-2 .categories-list li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  color: #222;
  padding: 2px 0px;
  padding-left: 52px;
}

.sidebar-page-container .sidebar .sidebar-categories-2 .categories-list li a:before{
  position: absolute;
  content: '';
  background: #d2dbe4;
  width: 1px;
  height: 100%;
  left: 28px;
  top: 0px;
}

.sidebar-page-container .sidebar .sidebar-categories-2 .categories-list li a:after{
  position: absolute;
  content: "\f106";
  font-family: 'Flaticon', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #c8d1db;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.sidebar-page-container .sidebar .sidebar-categories-2 .categories-list li a:hover:after{
  
}

.sidebar-page-container .sidebar .sidebar-categories-2 .widget-title{
  padding-bottom: 21px;
}

.sidebar-page-container .sidebar .sidebar-assessment{
  padding: 33px 35px 40px 35px;
  background: #eff2f5;
}

.sidebar-page-container .sidebar .nice-select{
  position: relative;
  width: 100%;
  height: 56px;
  border: none;
  line-height: 56px;
  border-radius: 0px;
  padding: 0px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #222;
  z-index: 9;
}

.sidebar-page-container .sidebar .nice-select:after{
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #a6a6a6;
  border-right: 2px solid #a6a6a6;
  right: 20px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group .select-box{
  position: relative;
  display: block;
  min-height: 56px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group{
  position: relative;
  margin-bottom: 15px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group:last-child{
  margin-bottom: 0px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group input[type='text'],
.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group input[type='email'],
.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 300;
  color: #222;
  padding: 10px 20px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group input::-webkit-input-placeholder{
  color:#222;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group textarea::-webkit-input-placeholder{
  color:#222;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group textarea{
  height: 132px;
  resize: none;
  margin-bottom: 25px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group input:focus,
.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group textarea:focus{

}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group .theme-btn-two{
  padding: 14.5px 27px;
}

.sidebar-page-container .sidebar .sidebar-assessment .assessment-form .form-group .theme-btn-two i{
  margin-right: 10px;
}

.group-title{
  position: relative;
  display: block;
  padding-bottom: 17px;
  margin-bottom: 27px;
}

.group-title h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 45px;
  color: #222;
  font-weight: 600;
  margin: 0px;
}

.group-title:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 0px;
  bottom: 0px;
}

.group-title .dotted-box .dotted{
  position: absolute;
  left: 43px;
  width: 3px;
  height: 3px;
  bottom: 0px;
}

.group-title .dotted-box .dotted:nth-child(2) {
  left: 49px;
}

.group-title .dotted-box .dotted:last-child {
  left: 55px;
}

.coaching-details-content .content-style-one .image-box{
  position: relative;
  display: block;
  margin-bottom: 52px;
}

.coaching-details-content .image-box img{
  width: 100%;
}

.coaching-details-content .content-style-one .text h3{
  position: relative;
  font-size: 24px;
  line-height: 34px;
  font-family: 'Open Sans', sans-serif;
  color: #555;
  font-weight: 500;
  margin-bottom: 15px;
}

.coaching-details-content .content-style-one .text p{
  margin-bottom: 28px;
}

.coaching-details-content .content-style-one .text p:last-child{
  margin-bottom: 0px;
}

.coaching-details-content .content-style-one{
  position: relative;
  margin-bottom: 56px;
}

.coaching-details-content .two-column .content-box h3{
  margin-bottom: 15px;
}

.coaching-details-content .two-column .content-box span{
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.coaching-details-content .two-column .content-box .list li{
  position: relative;
  display: block;
  font-weight: 300;
}

.coaching-details-content .two-column .content-box .list li a{
  display: inline-block;
  color: #2d5883;
  line-height: 16px;
  border-bottom: 1px solid #2d5883;
}

.coaching-details-content .two-column{
  position: relative;
  margin-bottom: 53px;
}

.coaching-details-content .content-style-two h3{
  margin-bottom: 15px;
}

.coaching-details-content .content-style-two .text{
  position: relative;
  margin-bottom: 65px;
}

.coaching-details-content .content-style-two .inner-box .single-item{
  position: relative;
  display: block;
  text-align: center;
  padding: 0px 0px;
}

.coaching-details-content .content-style-two .inner-box .single-item:before{
  position: absolute;
  content: '';
  background: #e0e6ed;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.coaching-details-content .content-style-two .inner-box .column:last-child .single-item:before{
  display: none;
}

.coaching-details-content .content-style-two .inner-box .single-item .icon-box{
  position: relative;
  display: inline-block;
  font-size: 70px;
  line-height: 70px;
  color: #2d5883;
  margin-bottom: 30px;
}

.coaching-details-content .content-style-two .inner-box .single-item h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}

.coaching-details-content .content-style-two{
  position: relative;
  margin-bottom: 56px;
}

.accordion-content h3{
  margin-bottom: 19px;
}

.accordion-box .block{
  position: relative;
  display: block;
  background: #fff;
  margin-bottom: 1px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child{
  margin-bottom: 0px;
}

.accordion-box .block .acc-content{
  position:relative;
  display:none;
  padding: 17px 20px 16px 20px;
  background: #F4F4F4;
}

.accordion-box .block .acc-content p{
  line-height: 32px;
  font-weight: 300;
  border-bottom: 1px solid #ccc;
  padding: 0 5px 0 5px;
}

.accordion-box .block .acc-content a{
  color: #000;
}

.accordion-box .block .acc-content.current{
  display:block;  
}

.accordion-box .block .acc-btn .icon-outer{
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  color: #fff;
  z-index: 1;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon-outer{
  color: #fff;
}

.accordion-box .block .acc-btn.active{
  background: #DA0600;
}

.accordion-box .block .acc-btn.active h5{
  color: #fff;
}

.accordion-box .block .acc-btn:hover h5{
  color: #DA0600;
}

.accordion-box .block .acc-btn.active:hover h5{
  color: #fff;
}

.accordion-box .block.active-block .acc-btn .icon-outer{
  transform: rotate(-180deg);
}

.accordion-box .block .acc-btn{
  position: relative;
  display: block;
  background: #080E96;
  padding: 7px 15px;
  /*padding-right: 60px;*/
  cursor: pointer;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn h5{
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0px;
  transition: all 500ms ease;
}

.team-page-section{
  position: relative;
  padding: 110px 0px 40px 0px;
}

.team-page-section .team-block-one .inner-box{
  margin-bottom: 65px;
}



/*** 

====================================================================
                        Faq-Page
====================================================================

***/

.faq-section{
  position: relative;
  padding: 105px 0px 102px 0px;
}

.faq-section .top-inner{
  position: relative;
  margin-bottom: 36px;
}

.faq-section .top-inner .text{
  position: relative;
  display: block;
  margin-top: 42px;
  padding-left: 40px;
}

.faq-section .top-inner .text p{
  font-size: 19px;
  line-height: 30px;
}

.faq-section .accordion-box .block .acc-content {
  padding: 27px 20px 26px 25px;
}

.faq-section .accordion-box .block .acc-btn{
  padding-left: 25px;
}

.faq-section .accordion-box .block .acc-btn .icon-outer{
  transform: rotate(-180deg);
}

.faq-section .accordion-box .block.active-block .acc-btn .icon-outer {
  transform: rotate(0deg);
}

.faq-section.style-two{
  padding: 0px 0px 110px 0px;
}

.faq-section.style-two .inner-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 34px;
}

.faq-section.style-two .accordion-box .block .acc-btn.active h5{
  color: #222;
}



/*** 

====================================================================
                        Error-Page
====================================================================

***/


.error-section{
  position: relative;
  padding: 150px 0px;
}

.error-section .content-box h1{
  position: relative;
  display: block;
  font-size: 200px;
  line-height: 150px;
  font-weight: 700;
  margin-bottom: 20px;
}

.error-section .content-box h2{
  position: relative;
  display: block;
  font-size: 44px;
  line-height: 52px;
  color: #222;
  font-weight: 600;
  margin-bottom: 21px;
}

.error-section .text a{
  color: #3b3b3b;
  font-weight: 600;
}

.error-section .text a:hover{
  text-decoration: underline;
}



/*** 

====================================================================
                        Service-Page
====================================================================

***/

.service-style-two.service-page-1 .service-block-two{
  margin: 0px 0px 50px 0px;
}

.service-style-two.service-page-1 .sec-title{
  margin-bottom: 70px;
}

.service-style-two.service-page-1 .more-text{
  margin-top: 60px;
}

.clients-section.service-page{
  padding-top: 110px;
}

.clients-section.service-page .logo-image img{
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

.clients-section.service-page .logo-image:hover img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}

.service-section.service-page-2 .service-block-one .inner-box{
  margin: 0px 0px 100px 0px;
}

.service-section.service-page-2 .service-block-one .inner-box:hover{
  margin-bottom: -70px;
}

.service-section.service-page-2{
  padding-bottom: 10px;
}

.service-section.service-page-2:before{
  height: 860px;
}

.service-details-content .content-style-two .inner-box{
  position: relative;
  margin-bottom: 50px;
}

.sidebar-page-container .service-details-content .content-style-two .inner-box .single-item .icon-box{

}

.sidebar-page-container .service-details-content .content-style-two .inner-box .single-item h4{
  line-height: 24px;
  margin-bottom: 16px;
}

.service-details-content .two-column .content-box .list li{
  padding-left: 25px;
  margin-bottom: 4px;
}

.service-details-content .two-column .content-box .list li:last-child{
  margin-bottom: 0px;
}

.service-details-content .two-column .content-box .list li:before{
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  font-size: 14px;
  left: 0px;
  top: 1px;
}

.service-details-content .two-column .text{
  position: relative;
  display: block;
  margin-top: 53px;
}

.service-details-content .two-column .text h3{
  margin-bottom: 15px;
}



/*** 

====================================================================
                        Blog-Page
====================================================================

***/


.blog-grid .news-block-one .inner-box{
  margin-bottom: 70px;
}

.sidebar-page-container .news-block-one .inner-box{
  margin-bottom: 60px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content .post-date{
  right: inherit;
  left: 50px;
  top: -40px;
  width: 165px;
  height: 50px;
  padding: 15px 10px;
  border-radius: 2px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content .post-date h5{
  position: relative;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.news-inner{
  margin-top: 100px;
  margin-bottom: 40px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content h2 a{
  display: inline-block;
  color: #222;
}

.sidebar-page-container .news-block-one .inner-box .lower-content h2 a:hover{

}

.sidebar-page-container .news-block-one .inner-box .lower-content p{
  margin-bottom: 23px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content {
  padding: 0px 30px 35px 50px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content .post-info{
  margin-bottom: 30px;
}

.sidebar-page-container .news-block-one .inner-box .single-item-carousel .owl-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.sidebar-page-container .news-block-one .inner-box .single-item-carousel .owl-nav .owl-prev,
.sidebar-page-container .news-block-one .inner-box .single-item-carousel .owl-nav .owl-next{
  position: absolute;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: rgba(0,0,0,0.5);
  text-align: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 500ms ease;
}

.sidebar-page-container .news-block-one .inner-box .single-item-carousel .owl-nav .owl-prev{
  left: 30px;
}

.sidebar-page-container .news-block-one .inner-box .single-item-carousel .owl-nav .owl-next{
  right: 30px;
}

.sidebar-page-container .news-block-one .inner-box:hover .single-item-carousel .owl-nav .owl-prev,
.sidebar-page-container .news-block-one .inner-box:hover .single-item-carousel .owl-nav .owl-next{
  background: rgba(255,255,255,0.5);
}

.news-block-one .inner-box .image-box .video-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.news-block-one .inner-box .image-box .video-btn a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  color: #2d5883;
  text-align: center;
  border-radius: 50%;
}

.blog-list .pagination-wrapper{
  position: relative;
  padding-top: 10px;
}

.sidebar-page-container .sidebar .sidebar-search{
  position: relative;
  margin-bottom: 35px;
}

.sidebar-page-container .sidebar .sidebar-search .form-group{
  position: relative;
  margin: 0px;
}

.sidebar-page-container .sidebar .sidebar-search .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #0c2136;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  padding: 10px 90px 10px 20px;
  transition: all 500ms ease;
}

.sidebar-page-container .sidebar .sidebar-search .form-group input::-webkit-input-placeholder{
  color:#fff;
}

.sidebar-page-container .sidebar .sidebar-search .form-group button{
  position: absolute;
  top: 16px;
  right: 27px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 500ms ease;
}

.sidebar-page-container .sidebar .sidebar-search .form-group input:focus + button,
.sidebar-page-container .sidebar .sidebar-search .form-group button:hover{

}

.sidebar-page-container .sidebar .sidebar-search .form-group button:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 25px;
  left: -24px;
  top: 2px;
}

.sidebar-page-container .blog-sidebar .sidebar-categories-2{
  background: transparent;
  border: 1px solid #e0e6ed;
  margin-bottom: 35px;
}

.sidebar-page-container .blog-sidebar .sidebar-post{
  padding: 31px 35px 44px 35px;
  border: 1px solid #e0e6ed;
  margin-bottom: 35px;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post{
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ececec;
  min-height: 76px;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post:last-child{
  margin-bottom: 0px;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 1px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  /*background: #0c2136;*/
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
  max-height: 100%;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post:hover .post-thumb img{
  opacity: 0.2;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post h5 a{
  display: inline-block;
  color: #222;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post h5 a:hover{

}

.sidebar-page-container .blog-sidebar .sidebar-post .post-inner .post .post-date{
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: #2d5883;
}

.sidebar-page-container .blog-sidebar .sidebar-support{
  position: relative;
  display: block;
  background: #DA0600;
  margin-bottom: 35px;
}

.sidebar-page-container .blog-sidebar .sidebar-support .image-box img{
  width: 100%;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box{
  position: relative;
  padding: 36px 35px 8px 35px;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li{
  position: relative;
  display: block;
  padding-left: 50px;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li:last-child{
  margin-bottom: 0px;
  border-bottom: none;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li i{
  position: absolute;
  left: 0px;
  top: 9px;
  font-size: 35px;
  line-height: 35px;
  color: #fff;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li p{
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0px;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li h3 a{
  display: inline-block;
  color: #fff;
}

.sidebar-page-container .blog-sidebar .sidebar-support .content-box li h3 a:hover{
  text-decoration: underline;
}

.sidebar-page-container .blog-sidebar .sidebar-assessment{
  background: transparent;
  border: 1px solid #e0e6ed;
}

.sidebar-page-container .blog-sidebar .sidebar-assessment .assessment-form .form-group input[type='text'], 
.sidebar-page-container .blog-sidebar .sidebar-assessment .assessment-form .form-group input[type='email'], 
.sidebar-page-container .blog-sidebar .sidebar-assessment .assessment-form .form-group textarea{
  border-color: #e0e6ed;
}

.sidebar-page-container .blog-sidebar .nice-select{
  border: 1px solid #e0e6ed;
}

.blog-details-content .news-block-one .inner-box .image-box::before{
  display: none;
}

.blog-details-content .news-block-one .inner-box:hover .image-box img{
  opacity: 1;
  transform: scale(1);
}
#prev_next {
  margin-top: 50px;
  width: 100%;
}

#prev_next li{
  line-height: 40px;
  /*border-bottom: 1px solid #e5e5e5;*/
  text-indent: 20px;
  width: 50%;
}
#prev_next li.right{
  text-align: right;
}

#prev_next li a{
  color: #000;
}

#prev_next li a:hover{
  color: #DA0600;
}

/*.blog-details-content .news-block-one .inner-box .lower-content{
  padding: 48px 0px 0px 0px;
}
*/
.blog-details-content .news-block-one .inner-box{
  background: transparent;
  box-shadow: none !important;
  margin-bottom: 34px;
}

.blog-details-content .news-block-one .inner-box .lower-content p{
  margin-bottom: 28px;
}

.blog-details-content .news-block-one .inner-box .lower-content .text p:last-child{
  margin-bottom: 0px;
}

.blog-details-content .news-block-one .inner-box .lower-content .text blockquote{
  position: relative;
  display: block;
  background: #eff2f5;
  padding: 38px 70px 43px 65px;
  margin: 40px 0px 37px 0px;
}

.blog-details-content .news-block-one .inner-box .lower-content .text blockquote i{
  position: absolute;
  right: 45px;
  bottom: 30px;
  font-size: 50px;
  line-height: 50px;
}

.blog-details-content .news-block-one .inner-box .lower-content .text blockquote p{
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.blog-details-content .news-block-one .inner-box .lower-content .text blockquote h5{
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}

.blog-details-content .two-column .text h3{
  margin-bottom: 15px;
}

.blog-details-content .two-column .text p{
  margin-bottom: 32px;
}

.blog-details-content .two-column .text ul li{
  position: relative;
  display: block;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  margin-bottom: 6px;
  padding-left: 25px;
}

.blog-details-content .two-column .text ul li:last-child{
  margin-bottom: 0px;
}

.blog-details-content .two-column .text ul li:before{
  position: absolute;
  content: "\f106";
  font-family: 'Flaticon';
  font-size: 12px;
  font-weight: 600;
  left: 0px;
  top: 0px;
}

.blog-details-content .two-column .image-box img{
  width: 100%;
}

.blog-details-content .two-column .lower-box{
  position: relative;
  display: block;
  margin-top: 57px;
  margin-bottom: 40px;
}

.blog-details-content .two-column .lower-box h3{
  margin-bottom: 15px;
}

.blog-details-content .two-column .lower-box p{
  margin-bottom: 28px;
}

.blog-details-content .two-column .lower-box p:last-child{
  margin-bottom: 0px;
}

.blog-details-content .post-share-option{
  position: relative;
  display: block;
  background: #eff2f5;
  padding: 20.5px 35px;
  margin-bottom: 62px;
}

.blog-details-content .post-share-option ul li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.blog-details-content .post-share-option .tags li a{
  color: #222;
}

.blog-details-content .post-share-option ul li a:hover{

}

.blog-details-content .post-share-option .social-links li{
  margin-right: 25px;
}

.blog-details-content .post-share-option .social-links li:last-child{
  margin-right: 0px;
}

.blog-details-content .post-share-option .social-links li a{
  position: relative;
  color: #2d5883;
  font-size: 14px;
}

.blog-details-content .post-share-option .social-links li a:before{
  position: absolute;
  content: '';
  background: #d2dbe4;
  width: 1px;
  height: 22px;
  top: -2px;
  right: -13px;
}

.blog-details-content .post-share-option .social-links li:last-child a:before{
  display: none;
}

.blog-details-content .comments-area .comment-box .comment{
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 25px;
}

.blog-details-content .comments-area .comment-box .comment:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-area .comment-box .comment .thumb-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.blog-details-content .comments-area .comment-box .comment .thumb-box img{
  width: 100%;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner{
  position: relative;
  display: block;
  border: 1px solid #e4e4e4;
  padding: 29px 30px 26px 50px;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner .comment-info h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0px;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner .comment-info .comment-time{
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 22px;
  font-style: italic;
  color: #222;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner .comment-info{
  margin-bottom: 9px;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner p{
  margin-bottom: 17px;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner a i{
  font-size: 14px;
  margin-left: 8px;
  color: #2d5883;
}

.blog-details-content .comments-area .comment-box .comment .comment-inner a:hover{
  color: #2d5883 !important;
}

.blog-details-content .comments-area .group-title{
  margin-bottom: 50px;
}

.blog-details-content .comments-area{
  position: relative;
  display: block;
  margin-bottom: 62px;
}

.blog-details-content .comments-form-area .comment-form .form-group{
  position: relative;
  margin-bottom: 20px;
}

.blog-details-content .comments-form-area .comment-form .form-group:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area .comment-form .form-group input[type='text'],
.blog-details-content .comments-form-area .comment-form .form-group input[type='email'],
.blog-details-content .comments-form-area .comment-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  font-weight: 300;
  color: #222;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.blog-details-content .comments-form-area .comment-form .form-group textarea{
  height: 200px;
  resize: none;
}

.blog-details-content .comments-form-area .comment-form .form-group input::-webkit-input-placeholder{
  color:#222;
}

.blog-details-content .comments-form-area .comment-form .form-group textarea::-webkit-input-placeholder{
  color:#222;
}

.blog-details-content .comments-form-area .comment-form .form-group input:focus,
.blog-details-content .comments-form-area .comment-form .form-group textarea:focus{
  border-color: #2d5883;
}

.blog-details-content .comments-form-area .comment-form .form-group .theme-btn-two i{
  margin-right: 10px;
}

.blog-details-content .comments-form-area .comment-form .form-group .theme-btn-two{
  padding: 14.5px 27px;
}

.blog-details-content .comments-form-area .comment-form .form-group.message-btn{
  padding-top: 15px;
}

.blog-details-content .comments-form-area .group-title{
  margin-bottom: 47px;
}

.blog-details-content .comments-form-area .group-title h2{
  margin-bottom: 6px;
}



/*** 

====================================================================
                        Contact-Page
====================================================================

***/

.contact-page-section{
  position: relative;
  padding: 105px 0px 110px 0px;
}

.contact-page-section .top-inner{
  position: relative;
  margin-bottom: 36px;
}

.contact-page-section .top-inner .text{
  position: relative;
  display: block;
  margin-top: 42px;
  padding-left: 40px;
}

.contact-page-section .top-inner .text p{
  font-size: 19px;
  line-height: 30px;
}

.contact-page-section #contact-google-map{
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
}

.contact-page-section .info-inner{
  position: relative;
  display: block;
  padding: 110px 0px 70px 0px;
  border-bottom: 1px solid #e0e6ed;
  margin-bottom: 100px;
}

.contact-page-section .info-inner .single-item .inner-box{
  position: relative;
  display: block;
  text-align: center;
  padding: 23px 0px 20px 0px;
}

.contact-page-section .info-inner .single-item .inner-box:before{
  position: absolute;
  content: '';
  background: #e0e6ed;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.contact-page-section .info-inner .single-column:last-child .single-item .inner-box:before{
  display: none;
}

.contact-page-section .info-inner .single-item .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 70px;
  line-height: 70px;
  color: #2d5883;
  font-weight: 600;
  margin-bottom: 44px;
  transition: all 500ms ease;
}

.contact-page-section .info-inner .single-item .inner-box:hover .icon-box{
  transform: rotateY(-180deg);
}

.contact-page-section .info-inner .single-item .inner-box h3{
  margin-bottom: 20px;
}

.contact-page-section .info-inner .single-item .inner-box p{
  position: relative;
  font-size: 19px;
  line-height: 30px;
  color: #222;
  font-weight: 400;
  margin: 0px;
}

.contact-page-section .info-inner .single-item .inner-box p a{
  color: #222;
}

.contact-page-section .info-inner .single-item .inner-box p a:hover{

}

.contact-page-section .contact-form-inner .sec-title h2{
  font-size: 36px;
  line-height: 45px;
}

.contact-page-section .contact-form-inner .sec-title.centred{
  padding-bottom: 22px;
  margin-bottom: 70px;
}

.contact-page-section .contact-form-inner .default-form .form-group{
  position: relative;
  margin-bottom: 30px;
}

.contact-page-section .contact-form-inner .default-form .form-group:last-child{
  margin-bottom: 0px;
}

.contact-page-section .contact-form-inner .default-form .form-group input[type='text'],
.contact-page-section .contact-form-inner .default-form .form-group input[type='email'],
.contact-page-section .contact-form-inner .default-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #e4e4e4;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #222;
}

.contact-page-section .contact-form-inner .default-form .form-group textarea{
  height: 150px;
  resize: none;
}

.contact-page-section .contact-form-inner .default-form .form-group input::-webkit-input-placeholder{
  color:#222;
}

.contact-page-section .contact-form-inner .default-form .form-group textarea::-webkit-input-placeholder{
  color:#222;
}

.contact-page-section .contact-form-inner .default-form .form-group .nice-select{
  height: 56px;
  border: 1px solid #e4e4e4;
  border-radius: 0px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 300;
  color: #222;
  padding-right: 25px;
}

.contact-page-section .contact-form-inner .default-form .form-group .nice-select:after{
  height: 7px;
  width: 7px;
  border-bottom: 2px solid #222;
  border-right: 2px solid #222;
}

.contact-page-section .contact-form-inner .default-form .form-group input:focus,
.contact-page-section .contact-form-inner .default-form .form-group textarea:focus{

}

.contact-page-section .contact-form-inner .default-form .form-group .theme-btn-two i{
  margin-right: 10px;
}

/*** 

====================================================================
  Contact Section
====================================================================

***/

.contact-section {
    position: relative;
    padding: 110px 0px 70px;
    background: #ffffff;
}

.contact-section .sec-title {
    margin-bottom: 40px;
}

.contact-section .left-col,
.contact-section .right-col {
    position: relative;
    margin-bottom: 20px;
}

.contact-section .right-col .inner {
    position: relative;
    display: block;
}

.contact-section .left-col .inner-box {
    position: relative;
    display: block;
}

.contact-section .left-col .images {
    position: relative;
    margin-right: 210px;
}

.contact-section .left-col .image {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.contact-section .left-col .image img {
    display: block;
    width: 100%;
}

.contact-section .left-col .image:last-child {
    margin-left: 70px;
    margin-bottom: 0;
}

.contact-section .form-box {
    position: relative;
}

.contact-section .form-box .form-group {
    margin-bottom: 20px;
}

.contact-section .form-box .form-group input,
.contact-section .form-box .form-group textarea,
.contact-section .form-box .form-group .ui-selectmenu-button.ui-button {
    font-size: 14px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.contact-section .form-box .form-group textarea {
    height: 140px;
}

.contact-section .form-box button {
    display: block;
    width: 100%;
}

.contact-section .form-box button .btn-title {
    padding: 11px 20px 8px;
}

.map-section {
    position: relative;
}

.map-data {
    text-align: center;
    font-size: 15px;
    color: #7f8a99;
    font-weight: 400;
    line-height: 1.7em;
}

.map-data h6 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #061138;
}

.map-canvas {
    height: 500px;
}

.contact-info-box {
    position: relative;
}

.contact-section .left-col .contact-info-box {
    position: absolute;
    right: 30px;
    top: 60px;
    width: 300px;
    background: #ffffff;
}

.contact-info-box .inner {
    position: relative;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.10);
}

.contact-info-box .info-header {
    position: relative;
    padding: 20px 30px 15px;
    background: #00378A;
    color: #ffffff;
}

.contact-info-box .info-header h4 {
    font-weight: 700;
    margin: 0;
}

.contact-info-box .info {
    position: relative;
    padding: 10px 30px;
    background: #ffffff;
}

.contact-info-box .info li {
    position: relative;
    padding: 30px 0px 25px;
    line-height: 24px;
    font-size: 15px;
    color: #757575;
    font-family: 'Manjari', sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-info-box .info li .content {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-left: 62px;
    min-height: 60px;
}

.contact-info-box .info li a {
    color: #757575;
}

.contact-info-box .info li a:hover {
    text-decoration: underline;
    color: #00378A;
}

.contact-info-box .info li:last-child {
    border-bottom: 0;
}

.contact-info-box .info li strong {
    display: block;
    position: relative;
    color: #222222;
    font-size: 18px;
    font-weight: 700;
}

.contact-info-box .info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 60px;
    font-size: 40px;
    color: #DA0600;
}

.contact-info-box .info h4 {
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 10px;
}

.right-col .sec-title::before{
  left: 0px;
  bottom:66px;
}

/*** 

====================================================================
  Default Form
====================================================================

***/

.default-form {
    position: relative;
}

.default-form .row {
    margin: 0 -10px;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 10px;
}

.default-form .row .form-group {
    padding: 0 5px;
}

.default-form .form-group .field-label {
    position: relative;
    display: block;
    color: #7f8a99;
    font-size: 13px;
    line-height: 24px;
    text-align: left;
    font-family: 'Manjari', sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    font-size: 15px;
    color: #222222;
    line-height: 28px;
    font-weight: 400;
    padding: 12px 20px 8px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 0px;
    font-family: 'Manjari', sans-serif;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-form .form-group textarea {
    height: 105px;
    padding-top: 12px;
    resize: none;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group input[type="file"]:focus,
.default-form .form-group input[type="number"]:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus,
.form-group .ui-selectmenu-button.ui-button:focus,
.form-group .ui-selectmenu-button.ui-button:active {
    border-color: #DA0600;
}

.default-form ::-webkit-input-placeholder {
    color: #757575;
}

.default-form ::-moz-input-placeholder {
    color: #757575;
}

.default-form ::-ms-input-placeholder {
    color: #757575;
}

.default-form label.error {
    color: #ff0000;
    font-size: 14px;
    text-transform: capitalize;
    text-align: left;
    display: block;
    font-family: 'Manjari', sans-serif;
    padding-top: 5px;
}

.default-form .check-block {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.default-form .check-block input {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.default-form .check-block label {
    position: relative;
    display: block;
    padding-left: 30px;
    line-height: 26px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.default-form .check-block label:before {
    content: '';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    color: #00378A;
    line-height: 16px;
    font-size: 10px;
    text-align: center;
    border: 1px solid #d0d0d0;
    font-weight: 800;
}

.default-form .check-block input:checked+label:before {
    content: '\f00c';
    border-color: #00378A;
}

.content-box .default-form label.error {
    color: #ffffff;
    font-size: 16px;
    padding-top: 10px;
}

.btn-style-one .btn-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
    padding: 18px 30px 12px;
    background: #DA0600;
    border-radius: 0px;
    z-index: 1;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.right-col h2{
  font-size: 36px;
}

.mb-30{
  margin-bottom: 30px !important;
}

.mr-0{
  margin: 0px !important;
}

/*隐藏底部*/
.footm{background: #1f55a6;position: fixed;left: 0;right: 0;bottom:0;z-index: 100000;display: none;}
.footm ul{display: flex;align-items: center;justify-content: center;}
.footm ul li{flex:1;color: #fff;line-height: 20px;padding:10px 0; text-align: center;background: #1c2b4a;border-right: solid 1px rgba(255,255,255,.1);box-sizing: border-box;}
.footm ul li:last-child{background: #fa331c;}
.footm ul li a{color: #fff;font-size:14px;}
.footm ul li a i{color: #fff;font-size:18px;}
