


/** banner-section **/

.banner-section{
  position: relative;
}

.banner-carousel{
  position: relative;
}

.banner-carousel .slide-item{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  background-size: cover;
}

.banner-section.style-one .banner-carousel .slide-item{
  padding: 243px 0px 160px 0px;
  min-height: 750px;
}

.banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.banner-carousel .slide-item .image-layer{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}

.banner-carousel .active .slide-item .image-layer{
  -webkit-transform:scale(1.15);
  -ms-transform:scale(1.15);
  transform:scale(1.15);
}

.banner-carousel .content-box{
  position: relative;
  display: block;
  z-index:5;
  width: 100%;
}

.banner-carousel .content-box .top-text{
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  border-bottom: 1px solid #fff;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 2px;
  opacity: 0;
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.banner-carousel .active .content-box .top-text{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box h1{
  position: relative;
  display: block;
  color: #fff;
  font-size: 52px;
  line-height: 58px;
  font-weight: 700;
}

.banner-carousel .content-box .title-text{
  position: relative;
  display: block;
  padding-bottom: 26px;
  margin-bottom: 27px;
  opacity: 0;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .content-box .title-text:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 40px;
  height: 3px;
  left: 0px;
  bottom: 0px;
}

.banner-carousel .content-box .title-text .dotted-box .dotted{
  position: absolute;
  left: 43px;
  width: 3px;
  height: 3px;
  background: #fff;
  bottom: 0px;
}

.banner-carousel .content-box .title-text .dotted-box .dotted:nth-child(2){
  left: 49px;
}

.banner-carousel .content-box .title-text .dotted-box .dotted:last-child{
  left: 55px;
}

.banner-carousel .active .content-box .title-text{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .content-box p{
  position: relative;
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 31px;
  opacity: 0;
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: all 1300ms ease;
  -moz-transition: all 1300ms ease;
  -ms-transition: all 1300ms ease;
  -o-transition: all 1300ms ease;
  transition: all 1300ms ease;
}

.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-section .banner-carousel .content-box a.theme-btn-one{
  border: 2px solid #fff;
  padding: 12.5px 28px;
}

.banner-section .banner-carousel .content-box a.theme-btn-one i{
  margin-right: 10px;
}

.banner-carousel .content-box .btn-box{
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1600ms ease;
  -moz-transition: all 1600ms ease;
  -ms-transition: all 1600ms ease;
  -o-transition: all 1600ms ease;
  transition: all 1600ms ease;
}

.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

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

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.banner-section .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.banner-section .owl-nav .owl-prev{
  position: absolute;
  width: 50px;
  height: 50px;
  left: -2px;
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 48px;
  border: 2px solid #fff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  opacity: 0.2;
  cursor: pointer;
}

.banner-section .owl-nav .owl-next{
  position: absolute;
  width: 50px;
  height: 50px;
  right: -2px;
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 48px;
  border: 2px solid #fff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  opacity: 0.2;
  cursor: pointer;
}

.banner-section .banner-carousel:hover .owl-nav .owl-prev,
.banner-section .banner-carousel:hover .owl-nav .owl-next{
  opacity: 1;
}

.banner-section .owl-nav .owl-next:hover{

}

.banner-section .owl-nav .owl-prev:hover{
  
}


/** about-section **/

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

#image_block_1 .image-box{
  position: relative;
  margin-right: 45px;
}

#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 #0f1e42;
  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;
	color: #0f1e42 !important;
  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: 17px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

#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: 15px 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: 19px;
  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:123px 0px 75px 0px;
  margin-top: -61px;
	background-image: url("../images/facts_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center;
}
.cta-section:before {
position: absolute;
    content: '';
    background: #0d1f48;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.9;
}
.cta-section .inner-box h2{
position: relative;
    display: block;
    font-size: 40px;
    line-height: 55px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 900;
}

.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: 18px;
    line-height: 26px;
    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-section .top-inner{
  position: relative;
  margin-bottom: 13px;
}

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

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

.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;
	background: #00a658;
}

.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: 0px;
}


/** funfact-section **/

.funfact-section{
  position: relative;
	background-size: cover;
    background-repeat: no-repeat;
}
.funfact-section:before{
    position: absolute;
    content: '';
    background: #0c1938;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
}
.counter-block-one .inner-box{
    position: relative;
    display: block;
    border-right: 1px solid rgba(255,255,255,.1);
    padding: 25px 20px;
}

.counter-block:first-child .counter-block-one .inner-box{
  border-left: 1px solid rgba(255,255,255,.2);
}

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

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

.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;
}

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

}


/** immigration-section **/

.immigration-section{
  position: relative;
  padding: 66px 0px 57px 0px;
}

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

.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{
  position: relative;
    display: block;
    font-size: 23px;
    line-height: 32px;
    font-weight: 700;
    transition: all 500ms ease;
}
.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: 18px;
}

.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: #9B3121;
  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: 25px 30px 49px 50px;
  transition: all 500ms ease;
}

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

.testimonial-block-one .inner-box{
  position: relative;
}
.testimonial-block-one .inner-box .content-inner p{
      position: relative;
    font-size: 17px;
    line-height: 29px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #292929;
    margin: 0px;
    transition: all 500ms ease;
    text-align: center;
}
.testimonial-block-one .inner-box .author-inner{

  left: 0px;
  margin-top: 20px;
  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: 65px 0px 57px 0px;
}

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

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

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

.news-block-one .inner-box{
  position: relative;
  display: block;
  transition: all 500ms ease;
	margin-bottom: 30px;
}

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

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


.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);
}

.news-block-one .inner-box .lower-content{
  position: relative;
  padding: 33px 23px 31px 26px;
}

.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{
  margin-bottom: 8px;
    line-height: 27px;
}
.news-block-one .inner-box .lower-content p{
  position: relative;
    font-size: 15px;
    line-height: 26px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
	margin-bottom: 10px;
    color: #292929;
    margin: 0px;
    transition: all 500ms ease;
	border-bottom: solid 1px rgba(0,0,0,.1);
	border-top: solid 1px rgba(0,0,0,.1);
	padding: 15px 0;
}

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

.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: 13px;
  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: 15px;
  line-height: 28px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  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: 50px 0;
}

.clients-section .logo-image img{
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  -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{

}


/** main-footer **/

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

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

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

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

.main-footer .footer-top p{
      color: #fff;
    line-height: 24px;
    margin-bottom: 26px;
    font-size: 14px;

}

.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: #fff;
}

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

}

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

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


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

.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: 14px;
  line-height: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #fff;
  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: #fff;
  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: 10px 0px;
}

.main-footer .footer-bottom .copyright p{
  color: #fff;
    line-height: 26px;
    font-size: 14px;
}

.main-footer .footer-bottom .copyright p a{
  display: inline-block;
  color: #fff;
  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: #fff;
  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: #fff;
}

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

}

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

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



/*** 

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

***/


/** header-style-two **/

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

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

.main-header.style-two .header-top{
  padding: 2px 0px;
}

.main-header.style-two .header-top .top-right .search-box-outer{
  position: relative;
  display: inline-block;
  margin-right: 28px;
  padding-right: 26px;
}

.main-header.style-two .header-top .top-right .search-box-outer:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 20px;
  top: 10px;
  right: 0px;
}

.main-header.style-two .header-top .top-right .social-links{
  position: relative;
  display: inline-block;
}

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

.main-header.style-two .main-menu .navigation > li > a{
  color: #222;
  font-weight: 600;
	    letter-spacing: 1px;
}

.main-header.style-two .main-menu .navigation > li{
  padding: 25px 0px;
  margin: 0px 10px;
}

.main-header.style-two .logo-box .logo{
  position: relative;
  padding: 14px 0px;
	max-width: 267px;
	
}

.main-header.style-two .menu-right-content{
  margin: 18px 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: 200px 0px 150px 0px;
  max-height: 580px;
}

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

.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 {
}

/* Banner Style Ends */
