/** banner-section **/

.banner-section{
  position: relative;
}

.banner-carousel{
  position: relative;
}

.banner-carousel .slide-item{
  position: relative;
  overflow: hidden;
  padding: 120px 0px 125px 0px;
}

.banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(82,84,124,0.2);
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.banner-carousel .slide-item .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 704px;
  height: 833px;
  background-repeat: no-repeat;
}

.banner-carousel .slide-item .image-layer{
  position:absolute;
  left:0px;
  top:0px;
  right: 0px;
  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);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -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%;
  max-width: 550px;
}

.banner-carousel .content-box h3{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height:34px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(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 .active .content-box h3{
  opacity: 1;
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.banner-carousel .content-box h1{
  position: relative;
  display: block;
  color: #fff;
  font-size: 120px;
  line-height: 144px;
  font-weight: 500;
  margin-bottom: 49px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(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 .active .content-box h1{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.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 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms 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: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 120px;
}

.banner-carousel .owl-nav button{
  position: absolute;
  display: inline-block;
  width: 74px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 20px;
  color: #52547c;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 400;
  transition: all 500ms ease;
}

.banner-carousel .owl-nav button:hover{
  background-color: #52547c;
  color: #ffffff;
}

.banner-carousel .owl-nav .owl-prev{
  top: 5px;
}

.banner-carousel .owl-nav .owl-next {
  bottom: 5px;
}


/** banner-style-two **/


.banner-style-two .banner-carousel .content-box h3{
  padding-left: 30px;
}

.banner-style-two .banner-carousel .content-box h1{
  margin-bottom: 29px;
  padding-left: 30px;
}

.banner-carousel .content-box p{
  position: relative;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  padding-left: 30px;
  margin-bottom: 63px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(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 .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-style-two .banner-carousel .content-box{
  position: relative;
  max-width: 950px;
  padding-top: 22px;
}

.banner-style-two .banner-carousel .content-box:before{
  position: absolute;
  content: '';
  background-color: #52547c;
  width: 70px;
  height: calc(100% - 100px);
  left: 0px;
  top: 0px;
}

.banner-style-two .banner-carousel .slide-item{
  padding: 133px 0px;
}

.banner-style-two{
  position: relative;
  overflow: hidden;
}

.banner-style-two .schedule{
  position: absolute;
  left: -50px;
  top: 50%;
  font-size: 18px;
  line-height: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 2;
}

.banner-style-two .big-title{
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 100px;
  line-height: 100px;
  font-family: 'Playfair Display', serif;
  color: rgba(186,187,203,0.3);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.banner-style-two .place-box{
  position: absolute;
  top: -85px;
  right: -145px;
  width: 300px;
  height: 430px;
  border-radius: 50%;
  background-color: #52547c;
  z-index: 2;
  text-align: center;
}

.banner-style-two .place-box .text{
  position: relative;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 140px;
}

.banner-style-two .place-box .text i{
  position: absolute;
  left: 20px;
  top: 150px;
  font-size: 35px;
  line-height: 35px;
}

.banner-style-two .place-box .text p{
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #8081a6;
}

.banner-style-two .place-box .text h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.banner-style-two .banner-carousel .slide-item:before{
  background: rgba(82,84,124,0.4);
}

/** banner-style-three **/


.banner-style-three .banner-carousel .slide-item{
  padding: 315px 0px 200px 0px;
}

.banner-style-three .schedule{
  color: #fff;
}

.banner-style-three .place-box{
  top: inherit;
  bottom: 10px;
  right: -170px;
}

.banner-style-three .place-box .text{
  padding-top: 120px;
}

.banner-style-three .place-box .text i{
  top: 125px;
}

.banner-style-three .banner-carousel .content-box{
  padding: 0px;
}

.banner-style-three .banner-carousel .content-box:before{
  display: none;
}

.banner-carousel .content-box .signature{
  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 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

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

.banner-style-three .banner-carousel .content-box h1 span{
  color: #52547c;
}

.banner-style-three .banner-carousel .content-box h3{
  margin-bottom: 0px;
  line-height: 28px;
  font-weight: 400;
  padding: 0px;
}

.banner-style-three .banner-carousel .content-box h1{
  margin-bottom: 21px;
  padding: 0px;
}

.banner-style-three .banner-carousel .content-box p{
  padding: 0px;
}

.banner-carousel .content-box .content-shape .shape-1{
  position: absolute;
  left: -180px;
  top: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  opacity: 0.4;
  -webkit-animation: zoom-fade 10s infinite linear;
  animation: zoom-fade 10s infinite linear;
}

.banner-carousel .content-box .content-shape .shape-2{
  position: absolute;
  left: 115px;
  top: -150px;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  opacity: 0.2;
  -webkit-animation: zoom-fade 8s infinite linear;
  animation: zoom-fade 8s infinite linear;
}

.banner-carousel .content-box .content-shape .shape-3{
  position: absolute;
  left: 105px;
  top: 150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: 0.1;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}
.banner-carousel .content-box {
  max-width: 700px;
}
.banner-carousel .content-box h1 {
  font-size: 92px;
  line-height: 112px;
}/** service-section **/

.service-section{
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}

.service-block-one .inner-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 50px 35px 40px 35px;
    box-shadow: 0 16px 28px rgb(0 0 0 / 5%);
}

.service-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 170px;
  height: 170px;
  line-height: 170px;
  background-color: #fefaf9;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 24px !important;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .icon-box{
  background-color: rgba(255,255,255,0.1);
}
.service-block-one .inner-box .icon-box img {
  width: 60px;
}
.service-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 59px;
}

.service-block-one .inner-box h3 a{
  display: inline-block;
  color: #52547c;
}

.service-block-one .inner-box:hover h3 a{
  color: #ffffff;
}

.service-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  color: #dcdde5;
  font-weight: 400;
}
.service-block-one .inner-box:before{
  position: absolute;
  content: '';
  background-color: #52547c;
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover:before{
  height: 100%;
}

/** service-style-two **/

.service-style-two{
  position: relative;
  padding-top: 120px;
  margin-bottom: -5px;
}

.service-style-two .sec-title{
  margin-bottom: 60px;
}

.service-style-two .sec-title i{
  position: relative;
  display: block;
  top: 0px;
  margin-bottom: 14px;
}

.service-style-two .sec-title h2{
  line-height: 60px;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  text-align: center;
  max-width: 270px;
  margin: 0 auto;
}

.service-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 270px;
  height: 270px;
  line-height: 270px;
  border-radius: 50%;
  margin-bottom: 23px;
}

.service-block-two .inner-box .icon-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background-repeat: no-repeat;
}

.service-block-two .inner-box .icon-box .bg-layer:before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .icon-box .bg-layer:before{
  opacity: 0.7;
}

.service-block-two .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 170px;
  height: 170px;
  line-height: 170px;
  background-color: #fefaf9;
  text-align: center;
  border-radius: 50%;
}

.service-block-two .inner-box .icon-box .link{
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0,0);
  right: -35px;
  background-color: #fff;
  width: 70px;
  height: 70px;
  line-height: 78px;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0px 20px 0px rgb(0 0 0 / 10%);
}

.service-block-two .inner-box:hover .icon-box .link{
  transform: translateY(-50%) scale(1,1);
}

.service-block-two .inner-box .icon-box .link:hover{
  color: #fff;
}

.service-block-two .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.service-block-two .inner-box .lower-content h3 a{
  position: relative;
  display: inline-block;
  color: #52547c;
}

.service-block-two .inner-box .lower-content p{
  font-size: 16px;
  line-height: 28px;
}

/** service-style-three **/

.service-style-three{
  position: relative;
  padding-top: 120px;
}

.service-style-three .sec-title{
  margin-bottom: 60px;
}

.service-style-three .sec-title i{
  position: relative;
  display: block;
  top: 0px;
  margin-bottom: 14px;
}

.service-style-three .sec-title h2{
  line-height: 60px;
}

.service-block-two .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  background-color: #fff;
  width: 70px;
  height: 70px;
  line-height: 78px;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  color: #dcdde5;
  z-index: 1;
  box-shadow: -1px 2px 5px 0px rgb(0 0 0 / 10%);
}

.service-style-three .service-block-two .inner-box .icon-box{
  background-color: #fefaf9;
}

.service-style-three .service-block-two .inner-box .icon-box .icon{
  background-color: #fff;
  border: 1px solid #f2eef0;
}

.service-style-three .service-block-two .inner-box .lower-content p{
  margin-bottom: 20px;
}

.service-style-three.service-page{
  padding: 120px 0px 20px 0px;
}

.service-style-three.service-page .service-block-two .inner-box{
  margin-bottom: 70px;
}