
/** banner-section **/

.banner-section{
  position           : relative;
  width              : 100%;
  padding            : 110px 0px;
  background-size    : cover;
  background-repeat  : no-repeat;
  background-position: center;
}

.banner-section .bg-layer{
  position             : absolute;
  left                 : 0px;
  top                  : 0px;
  width                : 55%;
  height               : 100%;
  background-blend-mode: multiply;
  clip-path            : polygon(0% 0%, 100% 0%, 83% 100%, 0% 100%, 0% 0%);
  background-repeat    : no-repeat;
  background-size      : cover;
}

.banner-carousel{
  position: relative;
}

.banner-carousel .slide-item{
  position: relative;
}

.banner-section.style-one .banner-carousel .content-box{
  position          : relative;
  display           : block;
  background        : -webkit-linear-gradient(0deg, #eff4f7, #c0d1d9 100%);
  border-radius     : 20px;
  padding           : 70px 80px 77px 80px;
  overflow          : hidden;
  z-index           : 5;
  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-section.style-one .banner-carousel .active .content-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: 700ms;
  -moz-transition-delay   : 700ms;
  -ms-transition-delay    : 700ms;
  -o-transition-delay     : 700ms;
  transition-delay        : 700ms;
}

.banner-section.style-one .banner-carousel .content-box .text{
  position : relative;
  max-width: 450px;
  width    : 100%;
  z-index  : 5;
}

.banner-carousel .content-box .content-bg{
  position: absolute;
  bottom  : 0px;
  right   : 0px;
  z-index : 1;
}

.banner-carousel .content-box h2{
  display      : block;
  font-size    : 44px;
  line-height  : 54px;
  font-weight  : 700;
  margin-bottom: 21px;
}

.banner-carousel .content-box p{
  font-size    : 18px;
  line-height  : 30px;
  color        : #222;
  margin-bottom: 32px;
}

.banner-carousel .content-box .theme-btn-one{
  margin-right: 16px;
  padding     : 14px 45px 15px 45px;
}

.banner-btn{
  position      : relative;
  display       : inline-block;
  overflow      : hidden;
  vertical-align: middle;
  font-size     : 16px;
  line-height   : 25px;
  font-weight   : 700;
  color         : #002222;
  border        : 1px solid #b9c4cb;
  text-align    : center;
  padding       : 13px 40px 14px 40px;
  border-radius : 30px;
  z-index       : 1;
  transition    : all 500ms ease;
}

.banner-btn:hover{
  color: #ffffff;
}

.banner-btn:before{
  position  : absolute;
  content   : '';
  width     : 100%;
  height    : 100%;
  left      : 0px;
  top       : 0px;
  right     : 0px;
  transform : scale(0,0);
  z-index   : -1;
  transition: all 500ms ease;
}

.banner-btn:hover:before{
  transform: scale(1,1);
}

.banner-section.style-one .banner-carousel .content-box .shape .shape-1{
  position         : absolute;
  top              : 75px;
  right            : 40%;
  width            : 113px;
  height           : 113px;
  background-repeat: no-repeat;
  z-index          : 1;
}

.banner-section.style-one .banner-carousel .content-box .shape .shape-2{
  position         : absolute;
  top              : 50px;
  right            : 180px;
  width            : 113px;
  height           : 113px;
  background-repeat: no-repeat;
}

.banner-section.style-one .banner-carousel .content-box .shape .shape-3{
  position         : absolute;
  right            : 280px;
  bottom           : 40px;
  width            : 211px;
  height           : 211px;
  background-repeat: no-repeat;
}

.banner-section.style-one .banner-carousel .content-box .shape .shape-4{
  position         : absolute;
  right            : 320px;
  bottom           : 50px;
  width            : 113px;
  height           : 113px;
  background-repeat: no-repeat;
}

.banner-section.style-one .banner-carousel .content-box .shape .shape-5{
  position         : absolute;
  right            : 60px;
  top              : 80px;
  width            : 211px;
  height           : 211px;
  background-repeat: no-repeat;
}

/** banner-style-two **/

.banner-section.style-two{
  position  : relative;
  width     : 100%;
  overflow  : hidden;
  padding   : 0px;
  background: -webkit-linear-gradient(-90deg, #0d7a83, #162a41 100%);
}

.banner-section.style-two .content-box{
  position: relative;
  width   : 100%;
  padding : 143px 0px 155px 0px;
}

.banner-section.style-two .content-box .text{
  position : relative;
  display  : block;
  max-width: 550px;
  width    : 100%;
  z-index  : 5;
}

.banner-section.style-two .content-box .image-box{
  position          : absolute;
  right             : -80px;
  bottom            : 0px;
  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-section.style-two .banner-carousel .active .image-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: 700ms;
  -moz-transition-delay   : 700ms;
  -ms-transition-delay    : 700ms;
  -o-transition-delay     : 700ms;
  transition-delay        : 700ms;
}

.banner-section.style-two .content-box h2{
  display           : block;
  font-size         : 60px;
  line-height       : 66px;
  color             : #fff;
  font-weight       : 800;
  margin-bottom     : 32px;
  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-section.style-two .banner-carousel .active h2{
  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-section.style-two .content-box p{
  display           : block;
  font-size         : 18px;
  line-height       : 30px;
  color             : #fff;
  margin-bottom     : 42px;
  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-section.style-two .banner-carousel .active 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: 1000ms;
  -moz-transition-delay   : 1000ms;
  -ms-transition-delay    : 1000ms;
  -o-transition-delay     : 1000ms;
  transition-delay        : 1000ms;
}

.banner-section.style-two .content-box .btn-box{
  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-section.style-two .banner-carousel .active .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: 1300ms;
  -moz-transition-delay   : 1300ms;
  -ms-transition-delay    : 1300ms;
  -o-transition-delay     : 1300ms;
  transition-delay        : 1300ms;
}

.banner-btn-two{
  position     : relative;
  display      : inline-block;
  overflow     : hidden;
  font-size    : 17px;
  line-height  : 25px;
  font-weight  : 600;
  color        : #142441 !important;
  background   : #fff;
  text-align   : center;
  padding      : 14px 47px 15px 47px;
  border-radius: 30px;
  z-index      : 1;
  transition   : all 500ms ease;
}

.banner-btn-two:hover{
  color     : #fff !important;
  background: #142441;
}

.banner-btn-two:before{
  position  : absolute;
  content   : '';
  background: #142441;
  width     : 100%;
  height    : 100%;
  left      : 0px;
  top       : 0px;
  transform : scale(0,0);
  z-index   : -1;
  transition: all 500ms ease;
}

.banner-btn-two:hover:before{
  transform: scale(1,1);
}

.banner-section.style-two .pattern-layer .pattern-1{
  position           : absolute;
  left               : 0px;
  bottom             : 0px;
  width              : 100%;
  height             : 100%;
  background-size    : cover;
  background-repeat  : no-repeat;
  background-position: bottom center;
}

.banner-section.style-two .pattern-layer .pattern-2{
  position     : absolute;
  left         : -174px;
  top          : -461px;
  width        : 858px;
  height       : 858px;
  background   : rgba(25,173,168,0.1);
  border-radius: 50%;
}

.banner-section.style-two .content-box .image-box .support-box{
  position: absolute;
  top     : 190px;
  right   : -145px;
}

.banner-section.style-two .content-box .image-box .support-box a{
  position     : relative;
  display      : inline-block;
  font-size    : 20px;
  line-height  : 28px;
  color        : #142441;
  font-weight  : 600;
  background   : #fff;
  border-radius: 50px;
  padding      : 36px 40px 36px 105px;
}

.banner-section.style-two .content-box .image-box .support-box a i{
  position     : absolute;
  left         : 15px;
  top          : 15px;
  width        : 70px;
  height       : 70px;
  line-height  : 70px;
  background   : #dcf2f2;
  border-radius: 50%;
  font-size    : 30px;
  text-align   : center;
}

.banner-section.style-two .content-box .image-box .shape .shape-1{
  position     : absolute;
  left         : 40px;
  top          : 210px;
  width        : 307px;
  height       : 307px;
  border-radius: 50%;
  z-index      : -1;
}

.banner-section.style-two .content-box .image-box .shape .shape-2{
  position     : absolute;
  top          : 40px;
  right        : -40px;
  width        : 380px;
  height       : 380px;
  border-radius: 50%;
  border       : 1px solid rgba(255,255,255,0.5);
  z-index      : -1;
}

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

.banner-section .owl-nav button{
  position     : absolute;
  display      : inline-block;
  width        : 70px;
  height       : 70px;
  line-height  : 74px;
  border       : 1px solid rgba(255,255,255,0.4);
  background   : transparent;
  text-align   : center;
  border-radius: 50%;
  font-size    : 24px;
  color        : rgba(255,255,255,0.4);
  cursor       : pointer;
  transition   : all 500ms ease;
}

.banner-section .owl-nav .owl-prev{
  left: 50px;
}

.banner-section .owl-nav .owl-next{
  right: 50px;
}

.banner-section .owl-nav button:hover{
  background  : #fff;
  border-color: #fff;
  color       : #142441;
}


/** banner-style-three **/

.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-section.style-three{
  padding: 0px 0px;
}

.banner-section.style-three .slide-item{
  padding: 186px 0px 146px 0px;
}

.banner-section.style-three .slide-item:before{
  position  : absolute;
  content   : '';
  background: #000;
  width     : 100%;
  height    : 100%;
  left      : 0px;
  top       : 0px;
  right     : 0px;
  opacity   : 0.5;
  z-index   : 1;
}

.banner-section.style-three .content-box{
  position : relative;
  max-width: 750px;
  margin   : 0 auto;
  padding  : 0px;
  z-index  : 5;
}

.banner-section.style-three .content-box h2{
  margin-bottom: 23px;
}


/** banner-style-four **/

.banner-section.style-four{
  position: relative;
  padding : 95px 0px 170px 0px;
}

.banner-section.style-four .pattern-layer{
  position           : absolute;
  left               : 0px;
  bottom             : 0px;
  width              : 100%;
  height             : 100%;
  background-size    : cover;
  background-repeat  : no-repeat;
  background-position: bottom center;
}

.banner-section.style-four .image-box{
  position          : relative;
  display           : block;
  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-section.style-four .banner-carousel .active .image-box{
  opacity                 : 1;
  -webkit-transform       : translateX(0);
  -moz-transform          : translateX(0);
  -ms-transform           : translateX(0);
  -o-transform            : translateX(0);
  transform               : translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay   : 700ms;
  -ms-transition-delay    : 700ms;
  -o-transition-delay     : 700ms;
  transition-delay        : 700ms;
}

.banner-section.style-four .image-box .image img{
  max-width: 100%;
}

.banner-section.style-four .image-box .text{
  position     : absolute;
  top          : 115px;
  right        : -110px;
  width        : 230px;
  background   : #fff;
  border-radius: 30px;
  padding      : 50px 30px;
  text-align   : center;
  box-shadow   : 0 10px 30px rgba(34,182,175,0.1);
}

.banner-section.style-four .image-box .text h3{
  position     : relative;
  display      : inline-block;
  width        : 80px;
  height       : 80px;
  line-height  : 80px;
  background   : #142441;
  border-radius: 20px;
  text-align   : center;
  font-size    : 32px;
  color        : #fff;
  font-weight  : 700;
  margin-bottom: 34px;
}

.banner-section.style-four .image-box .admin-box{
  position     : absolute;
  left         : -100px;
  bottom       : 95px;
  width        : 350px;
  padding      : 30px 30px 35px 115px;
  background   : #fff;
  border-radius: 100px;
  box-shadow   : 0 10px 30px rgba(34,182,175,0.1);
}

.banner-section.style-four .image-box .admin-box .admin-thumb{
  position     : absolute;
  left         : 20px;
  top          : 20px;
  width        : 80px;
  height       : 80px;
  border-radius: 50%;
}

.banner-section.style-four .image-box .admin-box .admin-thumb img{
  width        : 100%;
  border-radius: 50%;
}

.banner-section.style-four .image-box .admin-box h4{
  margin-bottom: 3px;
}

.banner-section.style-four .content-box h2{
  font-size         : 60px;
  line-height       : 66px;
  font-weight       : 800;
  margin-bottom     : 32px;
  opacity           : 0;
  -webkit-transform : translateY(50px);
  -moz-transform    : translateY(50px);
  -ms-transform     : translateY(50px);
  -o-transform      : translateY(50px);
  transform         : translateY(50px);
  -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-section.style-four .banner-carousel .active .content-box h2{
  opacity                 : 1;
  -webkit-transform       : translateX(0);
  -moz-transform          : translateX(0);
  -ms-transform           : translateX(0);
  -o-transform            : translateX(0);
  transform               : translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay   : 700ms;
  -ms-transition-delay    : 700ms;
  -o-transition-delay     : 700ms;
  transition-delay        : 700ms;
}

.banner-section.style-four .content-box p{
  font-size         : 18px;
  line-height       : 30px;
  color             : #142441;
  margin-bottom     : 42px;
  opacity           : 0;
  -webkit-transform : translateY(50px);
  -moz-transform    : translateY(50px);
  -ms-transform     : translateY(50px);
  -o-transform      : translateY(50px);
  transform         : translateY(50px);
  -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-section.style-four .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: 1000ms;
  -moz-transition-delay   : 1000ms;
  -ms-transition-delay    : 1000ms;
  -o-transition-delay     : 1000ms;
  transition-delay        : 1000ms;
}

.banner-section.style-four .content-box .btn-box{
  opacity           : 0;
  -webkit-transform : translateY(50px);
  -moz-transform    : translateY(50px);
  -ms-transform     : translateY(50px);
  -o-transform      : translateY(50px);
  transform         : translateY(50px);
  -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-section.style-four .banner-carousel .active .content-box .btn-box{
  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.style-four .owl-nav button{
  color       : #c0cccb;
  border-color: #c0cccb;
}

.banner-section.style-four .owl-nav button:hover{
  border-color: #fff;
  color       : #142441;
}

.banner-section.style-four .image-box .shape .shape-1{
  position         : absolute;
  left             : 0px;
  bottom           : 60px;
  width            : 173px;
  height           : 173px;
  background-repeat: no-repeat;
}

.banner-section.style-four .image-box .shape .shape-2{
  position         : absolute;
  right            : -80px;
  bottom           : 240px;
  width            : 173px;
  height           : 173px;
  background-repeat: no-repeat;
}

.banner-section.style-four .anim-icon .anim-icon-1{
  position         : absolute;
  left             : 0px;
  top              : 170px;
  width            : 292px;
  height           : 225px;
  background-repeat: no-repeat;
}

.banner-section.style-four .anim-icon .anim-icon-2{
  position         : absolute;
  left             : 44%;
  top              : 140px;
  width            : 53px;
  height           : 70px;
  background-repeat: no-repeat;
}

.banner-section.style-four .anim-icon .anim-icon-3{
  position         : absolute;
  top              : 130px;
  right            : 460px;
  width            : 66px;
  height           : 67px;
  background-repeat: no-repeat;
}

.banner-section.style-four .anim-icon .anim-icon-4{
  position         : absolute;
  right            : 0px;
  bottom           : 200px;
  width            : 395px;
  height           : 227px;
  background-repeat: no-repeat;
}

/** banner-style-five **/

.banner-section.style-five{
  background: #06194b;
  padding   : 125px 0px 225px 0px;
}

.banner-section.style-five .content-box h2,
.banner-section.style-five .content-box p{
  color: #fff;
}

.banner-section.style-five .content-box .banner-btn{
  color  : #fff;
  padding: 13px 43px 14px 43px;
}

.banner-section.style-five .image-box{
  position      : relative;
  margin        : 0px;
  padding-left  : 130px;
  padding-bottom: 30px;
  padding-top   : 50px;
}

.banner-section.style-five .image-box .image{
  position     : relative;
  display      : block;
  border-radius: 20px;
  z-index      : -1;
}

.banner-section.style-five .image-box .image:before{
  position     : absolute;
  content      : '';
  background   : #1e3060;
  width        : 100%;
  height       : 100%;
  top          : 30px;
  right        : 30px;
  border-radius: 20px;
}

.banner-section.style-five .image-box .image img{
  width        : 100%;
  border-radius: 20px;
}

.banner-section.style-five .image-box .admin-box{
  left         : 0px;
  bottom       : 85px;
  border-radius: 20px;
  padding      : 40px 20px 45px 125px;
}

.banner-section.style-five .image-box .admin-box .admin-thumb{
  left: 30px;
  top : 30px;
}

.banner-section.style-five .image-box .admin-box:before{
  position     : absolute;
  content      : '';
  width        : 100%;
  height       : 100%;
  right        : 20px;
  top          : 20px;
  border-radius: 20px;
  z-index      : -1;
}

.banner-section.style-five .image-box .shape .shape-3{
  position         : absolute;
  top              : 0px;
  right            : -105px;
  width            : 263px;
  height           : 263px;
  background-repeat: no-repeat;
}

.banner-section.style-five .image-box .shape .shape-4{
  position         : absolute;
  left             : 60px;
  bottom           : 120px;
  width            : 263px;
  height           : 263px;
  background-repeat: no-repeat;
  z-index          : -1;
}

.banner-section.style-five .pattern-layer .pattern-1{
  position         : absolute;
  left             : 240px;
  top              : 145px;
  width            : 263px;
  height           : 263px;
  background-repeat: no-repeat;
}

.banner-section.style-five .pattern-layer .pattern-2{
  position         : absolute;
  left             : 0px;
  top              : 0px;
  width            : 994px;
  height           : 100%;
  background-size  : cover;
  background-repeat: no-repeat;
}

.banner-section.style-five .pattern-layer .pattern-3{
  position         : absolute;
  right            : 0px;
  bottom           : 0px;
  width            : 524px;
  height           : 793px;
  background-repeat: no-repeat;
}

.banner-section.style-five .pattern-layer .pattern-4{
  position         : absolute;
  left             : 0px;
  bottom           : 0px;
  width            : 100%;
  height           : 156px;
  background-repeat: no-repeat;
  background-size  : cover;
}/** team-section **/
.team-section{
  position: relative;
  padding: 150px 0px 143px 0px;
}

.image_block_2 .image-box{
  position: relative;
  display: block;
  padding-right: 70px;
}

.image_block_2 .image-box .image{
  position: relative;
  display: block;
  border-radius: 20px;
}

.image_block_2 .image-box .image img{
  width: 100%;
  border-radius: 20px;
}

.image_block_2 .image-box .shape .shape-1{
  position: absolute;
  top: -55px;
  right: 35px;
  width: 136px;
  height: 137px;
  background-repeat: no-repeat;
}

.image_block_2 .image-box .shape .shape-2{
  position: absolute;
  top: 90px;
  right: 20px;
  width: 110px;
  height: 99px;
  background-repeat: no-repeat;
  z-index: 1;
}

.image_block_2 .image-box .shape .shape-3{
  position: absolute;
  left: -45px;
  bottom: 150px;
  width: 83px;
  height: 82px;
  background-repeat: no-repeat;
}

.image_block_2 .image-box .shape .shape-4{
  position: absolute;
  left: -80px;
  bottom: 40px;
  width: 160px;
  height: 160px;
  background: #e8f8f7;
  border-radius: 50%;
  z-index: -1;
}

.content_block_2 .content-box{
  position: relative;
  display: block;
  margin-left: 30px;
}

.content_block_2 .content-box .sec-title{
  margin-bottom: 33px;
}

.content_block_2 .content-box .sec-title h2{
  margin-bottom: 20px;
}

.content_block_2 .content-box .sec-title p{
  line-height: 30px;
}

.content_block_2 .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.content_block_2 .content-box .text h3{
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 17px;
}

.team-section .our-team{
  position: relative;
  display: block;
  padding-top: 100px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 20px;
}

.team-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0,0);
  opacity: 0.6;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box:before{
  transform: scale(1,1);
}

.team-block-one .inner-box .image-box .social-style-one{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0,0);
  width: 100%;
  text-align: center;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-style-one{
  transform: translate(-50%,-50%) scale(1,1);
}

.team-block-one .inner-box .image-box .social-style-one li{
  float: none;
  margin: 0px 6px;
}

.team-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 22px;
}

.team-block-one .inner-box .lower-content h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: #142441;
}

.team-block-one .inner-box .lower-content h4 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
}

/** team-style-two **/

.team-style-two{
  position: relative;
  padding: 150px 0px 145px 0px;
}

.team-style-two .sec-title{
  margin-right: 30px;
  margin-bottom: 0px;
}

.team-style-two .sec-title h2{
  margin-bottom: 26px;
}

.team-style-two .inner-content{
  position: relative;
  margin-right: -400px;
}

.team-style-two .owl-nav{
  position: absolute;
  left: -400px;
  bottom: 108px;
}

.team-style-two .owl-nav .owl-prev,
.team-style-two .owl-nav .owl-next{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: #bbbbbb;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-style-two .owl-nav .owl-prev{
  margin-right: 20px;
}

.team-style-two .owl-nav .owl-prev:hover,
.team-style-two .owl-nav .owl-next:hover{

}

.team-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 662px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}


/** team-style-three **/

.team-style-three{
  position: relative;
}

.team-block-two .inner-box{
  position: relative;
  display: block;
}

.team-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50% 50% 20px 50%;
}

.team-block-two .inner-box .image-box img{
  width: 100%;
  border-radius: 50% 50% 20px 50%;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.team-block-two .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0,0);
  opacity: 0.3;
  z-index: 1;
  transition: all 500ms ease;
}

.team-block-two .inner-box:hover .image-box:before{
  transform: scale(1,1);
}

.team-block-two .inner-box .lower-content{
  position: relative;
  display: block;
  margin: 0px 40px;
}

.team-block-two .inner-box .lower-content .inner{
  position: relative;
  background: #fff;
  padding: 32px 30px 40px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 30px #cbe1e1;
  margin-top: -67px;
  z-index: 1;
}

.team-block-two .inner-box .lower-content .inner h4{
  margin-bottom: 7px;
}

.team-block-two .inner-box .lower-content .inner .designation{
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.team-block-two .inner-box .lower-content .inner .social-style-one li{
  float: none;
  margin: 0px 6px;
}

.team-block-two .inner-box .lower-content .inner .social-style-one li a{
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: transparent;
  border: 1px solid #e6e6e6;
}

.team-block-two .inner-box .lower-content .inner .social-style-one li a:hover{

}

.team-style-three .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 525px;
  height: 525px;
  background-repeat: no-repeat;
}

.team-style-three .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 690px;
  height: 100%;
  background-repeat: no-repeat;
}

.team-style-three.alternat-2 .team-block-two .inner-box .lower-content .inner{
  box-shadow: 0 10px 30px #e7e8ea;
}

.team-section.home-5{
  padding: 143px 0px 0px 0px;
}

.about-page .team-block-two .inner-box .lower-content .inner{
  box-shadow: 0 10px 30px #e7e8ea;
}

.team-page .team-style-three{
  padding: 143px 0px 100px 0px;
}

.team-page .team-block-two .inner-box{
  margin-bottom: 50px;
}

.team-page .team-block-two .inner-box .lower-content .inner{
  box-shadow: 0 10px 30px #e7e8ea;
}
.team-details .content_block_2 .content-box .info{
  position: relative;
  display: block;
  margin-bottom: 23px;
}
.team-details .content_block_2 .content-box .info li {
  position: relative;
  display: block;
  font-size: 16px;
  color: #142441;
  font-weight: 600;
  margin-bottom: 6px;
}
.team-details .content_block_2 .content-box .info li i {
  position: relative;
  font-size: 20px;
  margin-right: 8px;
  top: 2px;
}
.team-details .content_block_2 .content-box .info li a {
  display: inline-block;
  color: #142441;
  font-weight: 400;
}
.team-details {
  position: relative;
  padding-top: 120px;
  padding-bottom: 0px;
}
.team-details .image_block_2 .image-box {
  padding-right: 0;
}
/** service-section **/

.service-section{
  position: relative;
  padding-top: 143px;
  background: #ffffff;
}

.service-section:before{
  position: absolute;
  content: '';
  background: #e9f8f8;
  width: 100%;
  height: calc(100% - 40px);
  left: 0px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 0% 100%, 0% 0%);
}

.service-block-one .inner-box{
  position: relative;
  display: block;
  background: #ffffff;
  overflow: hidden;
  border-radius: 20px;
  padding: 50px 30px 50px 30px;
  box-shadow: 0 10px 30px #edf2f2;
}

.service-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover:before{
  height: 100%;
  top: 0px;
}

.service-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 10px;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .icon-box,
.service-block-one .inner-box:hover h4 a,
.service-block-one .inner-box:hover p{
  color: #ffffff;
}

.service-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 19px;
}

.service-block-one .inner-box h4 a{
  display: inline-block;
  color: #142441;
}

.service-block-one .inner-box h4 a:hover{
  
}

.service-block-one .inner-box p{
  position: relative;
  margin-bottom: 32px;
  transition: all 500ms ease;
}

.service-block-one .inner-box .theme-btn-two{
  background: #f2f3f5;
}

.service-block-one .inner-box .theme-btn-two:hover{

}

.service-section .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 608px;
  height: 563px;
  background-repeat: no-repeat;
}

.service-section .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 513px;
  height: 529px;
  background-repeat: no-repeat;
}


/** service-style-two **/

.service-style-two{
  position: relative;
  padding-bottom: 142px;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 30px 30px 45px 30px;
  box-shadow: 0 15px 30px 10px #f3f6f6;
  margin-bottom: 60px;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover{
  box-shadow: 0 20px 40px 10px #e5edec;
}

.service-block-two .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.service-block-two .inner-box .image-box img{
  width: 100%;
  border-radius: 20px;
}

.service-block-two .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0,0);
  opacity: 0.3;
  z-index: 1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box:before{
  transform: scale(1,1);
}

.service-block-two .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.service-block-two .inner-box .lower-content{
  position: relative;
  padding-top: 51px;
}

.service-block-two .inner-box .lower-content .icon-box{
  position: absolute;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  top: -65px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 40px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.service-block-two .inner-box .lower-content .icon-box:before{
  position: absolute;
  content: '';
  background: #142441;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .icon-box:before{
  transform: scale(1,1);
}

.service-block-two .inner-box .lower-content h4{
  margin-bottom: 18px;
}

.service-block-two .inner-box .lower-content p{
  margin-bottom: 24px;
}

.service-block-two .inner-box .lower-content .theme-btn-two{
  padding: 7.5px 32px;
}


/** service-style-three **/

.service-style-three{
  position: relative;
  padding: 125px 0px 120px 0px;
}

.content_block_7 .content-box{
  position: relative;
  display: block;
  max-width: 370px;
}

.content_block_7 .content-box .sec-title{
  margin-bottom: 34px;
}

.content_block_7 .content-box .text p{
  margin-bottom: 41px;
  line-height: 30px;
}

.content_block_7 .content-box .text .theme-btn-one{
  padding: 14px 49px 15px 49px;
}

.service-block-three .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 50px;
  padding: 50px 30px 52px 30px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 15px 30px 10px #ecefef;
  transition: all 500ms ease;
}

.service-block-three .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.service-block-three .inner-box:hover:before{
  height: 100%;
}

.service-block-three .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 40px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px 10px rgba(34,182,175,0.08);
  margin-bottom: 26px;
  transition: all 500ms ease;
}

.service-block-three .inner-box:hover h4 a{
  color: #fff;
}

.service-style-three .shape .shape-1{
  position: absolute;
  left: 130px;
  top: 40%;
  width: 123px;
  height: 123px;
  background-repeat: no-repeat;
}

.service-style-three .shape .shape-2{
  position: absolute;
  right: 170px;
  bottom: 230px;
  width: 123px;
  height: 123px;
  background-repeat: no-repeat;
}

.service-style-three .shape .shape-3{
  position: absolute;
  left: 110px;
  top: 0px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #f8f9fa;
  z-index: -1;
}

.service-style-three .shape .shape-4{
  position: absolute;
  bottom: 70px;
  right: 200px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: #f8f9fa;
  z-index: -1;
}


/** service-style-four **/

.service-style-four{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-style-four .tab-btn-box{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.service-style-four .tab-btns{
  position: relative;
  margin: 0px -10px;
}

.service-style-four .tab-btns li{
  position: relative;
  display: inline-block;
  float: left;
  width: 20%;
  padding: 0px 10px;
}

.service-style-four .tab-btns li .single-btn-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 33px 20px 27px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-style-four .tab-btns li .single-btn-box .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 40px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background: -webkit-linear-gradient(-90deg, #edf2f7, #fff 100%);
  transition: all 500ms ease;
}

.service-style-four .tab-btns li .single-btn-box:hover .icon-box,
.service-style-four .tab-btns li.active-btn .single-btn-box .icon-box{
  color: #fff;
  background: -webkit-linear-gradient(-90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05) 100%);
}

.service-style-four .tab-btns li .single-btn-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  transition: all 500ms ease;
}

.service-style-four .tab-btns li .single-btn-box:hover h5,
.service-style-four .tab-btns li.active-btn .single-btn-box h5{
  color: #fff;
}

.service-style-four .tab-btns li .single-btn-box:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 10px;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scale(.9) translateY(20px);
  -ms-transform: scale(.9) translateY(20px);
  transform: scale(.9) translateY(20px);
  transition: all 500ms ease;
}

.service-style-four .tab-btns li.active-btn .single-btn-box:before,
.service-style-four .tab-btns li .single-btn-box:hover:before{
  opacity: 1;
  -webkit-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.service-style-four .tab-btns li .single-btn-box:after{
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: 0px;
  opacity: 0;
  transition: all 500ms ease;
}

.service-style-four .tab-btns li .single-btn-box:hover:after,
.service-style-four .tab-btns li.active-btn .single-btn-box:after{
  bottom: -7px;
  opacity: 1;
}

.content_block_9 .content-box{
  position: relative;
  display: block;
}

.service-style-four .content_block_9 .content-box{
  margin-right: 20px;
}

.content_block_9 .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 23px;
}

.content_block_9 .content-box p{
  margin-bottom: 26px;
  line-height: 30px;
}

.content_block_9 .content-box .list-style-one{
  margin-bottom: 46px;
}

.content_block_9 .content-box .theme-btn-one{
  padding: 14px 49px 15px 49px;
}

.image_block_6 .image-box{
  position: relative;
  display: block;
  padding-left: 70px;
  padding-bottom: 50px;
}

.image_block_6 .image-box img{
  width: 100%
}

.image_block_6 .image-box .image-1{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image_block_6 .image-box .image-1:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.image_block_6 .image-box:hover .image-1:before{
  -webkit-animation: shine 2s;
  animation: shine 2s;
}

.image_block_6 .image-box .image-1 img{
  border-radius: 20px;
}

.image_block_6 .image-box .image-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 20px 50px #cbdbd7;
}

.image_block_6 .image-box .image-2 img{
  border-radius: 50px;
}

.image_block_6 .image-box .shape .shape-1{
  position: absolute;
  left: 40px;
  top: 150px;
  width: 143px;
  height: 153px;
  background-repeat: no-repeat;
}

.image_block_6 .image-box .shape .shape-2{
  position: absolute;
  right: -115px;
  bottom: 95px;
  width: 93px;
  height: 93px;
  background-repeat: no-repeat;
}

.image_block_6 .image-box .shape .shape-3{
  position: absolute;
  right: -90px;
  bottom: -20px;
  width: 195px;
  height: 195px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

.service-style-four .sec-title{
  margin-bottom: 72px;
}

.service-style-four .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 525px;
  height: 495px;
  background-repeat: no-repeat;
}

.service-style-four .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 351px;
  height: 551px;
  background-repeat: no-repeat;
}

.service-section.alternat-2:before{
  display: none;
}

.service-section .pattern-layer .pattern-3{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 592px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}/** chooseus-section **/

.chooseus-section{
  position: relative;
}

.chooseus-section .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.chooseus-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 680px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_block_6 .content-box{
  position: relative;
  display: block;
}

.content_block_6 .content-box .inner-box .single-item{
  position: relative;
  display: block;
  padding-left: 115px;
  margin-bottom: 33px;
  min-height: 90px;
  padding-top: 12px;
  padding-bottom: 17px;
}

.content_block_6 .content-box .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

.content_block_6 .content-box .inner-box .single-item .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 1px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #d5f1f1;
  font-size: 40px;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.content_block_6 .content-box .inner-box .single-item:hover .icon-box{
  color: #fff;
}

.content_block_6 .content-box .inner-box .single-item .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.content_block_6 .content-box .inner-box .single-item:hover .icon-box:before{
  transform: scale(1,1);
}

.content_block_6 .content-box .inner-box .single-item h4{
  margin-bottom: 9px;
}

.content_block_6 .content-box .inner-box{
  padding-right: 30px;
}

.content_block_6 .content-box .sec-title{
  margin-bottom: 42px;
}

.image_block_7 .image-box{
  position: relative;
  display: block;
  padding-right: 100px;
  padding-bottom: 134px;
}

.chooseus-section .image_block_7 .image-box{
  margin-right: 50px;
}

.image_block_7 .image-box img{
  border-radius: 50px;
}

.image_block_7 .image-box .image{
  border-radius: 50px;
}

.image_block_7 .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 50px #dfe3e3;
}

.content_block_6 .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.content_block_6 .content-box .text p{
  line-height: 30px;
}

.image_block_9 .image-box{
  position: relative;
  display: block;
  padding-left: 100px;
  padding-bottom: 135px;
}

.chooseus-section .image_block_9 .image-box{
  margin-left: 50px;
}

.image_block_9 .image-box .image{
  border-radius: 50px;
  box-shadow: 0 20px 50px #dfe3e3;
}

.image_block_9 .image-box .image img{
  width: 100%;
  border-radius: 50px;
}

.image_block_9 .image-box .image-1{
  position: relative;
}

.image_block_9 .image-box .image-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #fff;
  padding: 10px;
}

.image_block_9 .image-box .shape .shape-1{
  position: absolute;
  right: -120px;
  bottom: 0px;
  width: 123px;
  height: 123px;
  background-repeat: no-repeat;
}

.image_block_9 .image-box .shape .shape-2{
  position: absolute;
  left: 60px;
  bottom: 220px;
  width: 123px;
  height: 123px;
  background-repeat: no-repeat;
}

.image_block_9 .image-box .shape .shape-3{
  position: absolute;
  right: -115px;
  bottom: 53px;
  width: 270px;
  height: 270px;
  background: #f8f9fa;
  border-radius: 50%;
  z-index: -1;
}/** contact-section **/
.contact-section{
  position: relative;
  padding: 80px 0px;
  min-height: 725px;
}

.contact-section .map-inner{
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.contact-section .map-inner #gmap_canvas{
  position: relative;
  width: 100%;
  height: 730px;
}

.content_block_4 .content-box{
  position: relative;
  display: block;
  z-index: 1;
  padding: 57px 50px 70px 50px;
  border-radius: 20px;
}

.content_block_4 .content-box h2{
  display: block;
  font-size: 42px;
  line-height: 54px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 50px;
}

.content_block_4 .content-box form .form-group{
  position: relative;
  margin-bottom: 20px;
}

.content_block_4 .content-box form .form-group:last-child{
  margin-bottom: 0px;
}

.content_block_4 .content-box form .form-group input[type='text'],
.content_block_4 .content-box form .form-group input[type='email'],
.content_block_4 .content-box form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #fff;
  background: rgba(0,0,0,0.10);
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 300;
  transition: all 500ms ease;
}

.content_block_4 .content-box form .form-group textarea{
  height: 130px;
  resize: none;
  margin-bottom: 10px;
}

.content_block_4 .content-box form .form-group input::-webkit-input-placeholder{
  color:#fff;
}

.content_block_4 .content-box form .form-group textarea::-webkit-input-placeholder{
  color:#fff;
}

.content_block_4 .content-box form .form-group input:focus,
.content_block_4 .content-box form .form-group textarea:focus{
  border-color: rgba(255,255,255,0.5);
}

.content_block_5 .content-box{
  position: relative;
  display: block;
  z-index: 1;
  padding: 57px 50px 70px 50px;
  border-radius: 20px;
  background: #fff;
}

.content_block_5 .content-box h2{
  display: block;
  font-size: 42px;
  line-height: 54px;
  font-weight: 700;
  margin-bottom: 50px;
}

.content_block_5 .content-box form .form-group{
  position: relative;
  margin-bottom: 20px;
}

.content_block_5 .content-box form .form-group:last-child{
  margin-bottom: 0px;
}

.content_block_5 .content-box form .form-group input[type='text'],
.content_block_5 .content-box form .form-group input[type='email'],
.content_block_5 .content-box form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #142441;
  border: 1px solid #dfe6e6;
  border-radius: 30px;
  padding: 10px 30px;
  transition: all 500ms ease;
}

.content_block_5 .content-box form .form-group textarea{
  height: 130px;
  resize: none;
  margin-bottom: 10px;
}

.content_block_5 .content-box form .form-group input::-webkit-input-placeholder{
  color:#142441;
}

.content_block_5 .content-box form .form-group textarea::-webkit-input-placeholder{
  color:#142441;
}

.content_block_5 .content-box form .form-group input:focus,
.content_block_5 .content-box form .form-group textarea:focus{

}
/** feature-section **/

.feature-section{
  position: relative;
}

.feature-section:before{
  position: absolute;
  content: '';
  background: #e9f8f8;
  width: 100%;
  height: 490px;
  left: 0px;
  top: 0px;
}

.feature-section .inner-content{
  position: relative;
  margin: 0px 15px;
}

.feature-section .inner-content .feature-block{
  padding: 0px 0px;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 25px 10px #f3f6f6;
  padding: 50px 30px 59px 50px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover{
  margin-bottom: -60px;
  padding-bottom: 119px;
}

.feature-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #edf6f6;
  font-size: 40px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 25px;
  z-index: 1;
  transition: all 500ms ease;
}

.feature-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-block-one .inner-box:hover .icon-box{
  color: #fff;
}

.feature-block-one .inner-box h4{
  margin-bottom: 18px;
}

.feature-block-one .inner-box .btn-box{
  position: absolute;
  display: flex;
  left: 50px;
  bottom: 50px;
  opacity: 0;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .btn-box{
  opacity: 1;
}

.feature-block-one .inner-box .btn-box .theme-btn-one{
  padding: 6.5px 33px 8.5px 33px;
}

.feature-section .pattern .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 627px;
  height: 490px;
  background-repeat: no-repeat;
}

.feature-section .pattern .pattern-2{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 735px;
  height: 490px;
  background-repeat: no-repeat;
}


.feature-section.alternat-2:before{
  display: none;
}

.feature-section.alternat-2 .inner-content{
  margin-top: -100px;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px 10px #f3f6f6;
}

.feature-section.alternat-2 .feature-block-one .inner-box{
  box-shadow: none;
  border-radius: 0px;
  padding: 50px 40px 59px 40px !important;
  margin: 0px !important;
}

.feature-section.alternat-2 .feature-block:nth-child(2) .feature-block-one .inner-box{
  box-shadow: 0 0px 10px 5px #f3f6f6;
  z-index: 2;
}
/** about-section **/

.about-section{
  position: relative;
}

.content_block_1 .content-box{
  position: relative;
  display: block;
}

.about-section .content_block_1 .content-box{
  margin-right: 75px;
}

.content_block_1 .content-box .bold-text p{
  font-size: 18px;
  line-height: 30px;
  color: #222;
}

.content_block_1 .content-box .bold-text{
  margin-bottom: 31px;
}

.content_block_1 .content-box .text p{
  line-height: 30px;
  margin-bottom: 26px;
}

.content_block_1 .content-box .list-style-one{
  margin-bottom: 46px;
}

.content_block_1 .content-box .sec-title{
  margin-bottom: 45px;
}

.image_block_1 .image-box{
  position: relative;
  display: block;
}

.image_block_1 .image-box .image{
  position: relative;
  display: block;
}

.image_block_1 .image-box .image img{
  width: 100%;
}

.about-section .image_block_1 .image-box{
  margin-right: -57px;
}

.image_block_1 .image-box .text{
  position: absolute;
  top: 80px;
  right: 50px;
  display: inline-block;
  width: 170px;
  height: 170px;
  text-align: center;
  border-radius: 50%;
  background-blend-mode: multiply;
  padding: 32px 0px;
}

.image_block_1 .image-box .text h2{
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

.image_block_1 .image-box .text h5{
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
}

.image_block_1 .image-box .shape .shape-1{
  position: absolute;
  right: 200px;
  bottom: -10px;
  width: 153px;
  height: 162px;
  background-repeat: no-repeat;
}

.image_block_1 .image-box .shape .shape-2{
  position: absolute;
  left: 10px;
  top: 70px;
  width: 211px;
  height: 211px;
  background-repeat: no-repeat;
}

/** about-style-two **/

.about-style-two{
  padding-bottom: 144px;
}

.image_block_3 .image-box{
  position: relative;
  display: block;
  padding-right: 34px;
}

.image_block_3 .image-box .image{
  position: relative;
  display: block;
}

.image_block_3 .image-box .image img{
  width: 100%;
}

.image_block_3 .image-box .text{
  position: absolute;
  left: 30px;
  bottom: 0px;
  display: inline-block;
  width: 170px;
  height: 170px;
  text-align: center;
  border-radius: 50%;
  background-blend-mode: multiply;
  padding: 32px 0px;
}

.image_block_3 .image-box .text h2{
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

.image_block_3 .image-box .text h5{
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
}

.image_block_3 .image-box .shape .shape-1{
  position: absolute;
  left: 20px;
  top: 40px;
  width: 211px;
  height: 211px;
  background-repeat: no-repeat;
}

.image_block_3 .image-box .shape .shape-2{
  position: absolute;
  left: 90px;
  bottom: -18px;
  width: 153px;
  height: 162px;
  background-repeat: no-repeat;
}

.image_block_3 .image-box .shape .shape-3{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 536px;
  height: 553px;
  background-repeat: no-repeat;
}

.content_block_1 .content-box .inner-box{
  position: relative;
  display: block;
  padding-top: 39px;
  margin-top: 31px;
  border-top: 1px solid #e5e5e5;
}

.content_block_1 .content-box .inner-box .single-item{
  position: relative;
  display: block;
  padding-left: 72px;
}

.content_block_1 .content-box .inner-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 11px;
  font-size: 65px;
  line-height: 65px;
}

.content_block_1 .content-box .inner-box .single-item h2{
  display: block;
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 5px;
}

.content_block_1 .content-box .inner-box .single-item h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #848484;
  font-weight: 500;
}

.content_block_1 .content-box .inner-box .single-item:before{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 1px;
  height: 65px;
  top: 12px;
  right: 15px;
}

.content_block_1 .content-box .inner-box .single-column:last-child .single-item:before{
  display: none;
}


/** about-style-three **/

.about-style-three{
  position: relative;
  padding-top: 143px;
  padding-bottom: 50px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 87%, 0% 0%);
}

.image_block_4 .image-box{
  position: relative;
  display: block;
  margin-left: -50px;
  top: 65px;
}

.image_block_4 .image-box .image{
  position: relative;
  display: block;
}

.image_block_4 .image-box .image img{
  width: 100%;
}

.image_block_4 .image-box .text{
  position: absolute;
  left: 15px;
  top: 200px;
  display: inline-block;
  width: 170px;
  height: 170px;
  text-align: center;
  border-radius: 50px;
  background-blend-mode: multiply;
  padding: 32px 0px;
}

.image_block_4 .image-box .text h2{
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

.image_block_4 .image-box .text h5{
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
}

.image_block_4 .image-box .shape .shape-1{
  position: absolute;
  right: 0px;
  bottom: -50px;
  border-radius: 50%;
  background: #fff;
  width: 590px;
  height: 590px;
}

.image_block_4 .image-box .shape .shape-2{
  position: absolute;
  right: 0px;
  bottom: -15px;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 590px;
  height: 590px;
}

.content_block_1 .content-box .singl-block{
  position: relative;
  display: block;
  padding-top: 14px;
  max-width: 390px;
}

.content_block_1 .content-box .singl-block .single-item{
  position: relative;
  display: block;
  padding-left: 115px;
  margin-bottom: 30px;
  padding-bottom: 3px;
  min-height: 90px;
}

.content_block_1 .content-box .singl-block .single-item:last-child{
  margin-bottom: 0px;
}

.content_block_1 .content-box .singl-block .single-item .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 1px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 40px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.content_block_1 .content-box .singl-block .single-item:hover .icon-box{
  color: #fff;
}

.content_block_1 .content-box .singl-block .single-item .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.content_block_1 .content-box .singl-block .single-item:hover .icon-box:before{
  transform: scale(1,1);
}

.content_block_1 .content-box .singl-block .single-item h4{
  margin-bottom: 9px;
}

.about-style-three .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 425px;
  height: 439px;
  background-repeat: no-repeat;
}

.about-style-three .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 671px;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-style-three .content_block_1 .content-box .sec-title{
  margin-bottom: 34px;
}

.content_block_1 .content-box .bold-text p{
  color: #142441;
}


/** about-style-four **/

.about-style-four{
  position: relative;
}

.about-style-four .image_block_5 .image-box{
  margin-right: 30px;
}

.image_block_5 .image-box .shape .shape-3 {
  position: absolute;
  top: 115px;
  left: -40px;
  width: 173px;
  height: 173px;
  background-repeat: no-repeat;
}

.image_block_5 .image-box .shape .shape-4 {
  position: absolute;
  right: 0px;
  bottom: 100px;
  width: 173px;
  height: 173px;
  background-repeat: no-repeat;
}

.image_block_5 .image-box .shape .shape-5{
  position: absolute;
  top: 10px;
  right: 0px;
  width: 510px;
  height: 525px;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-style-four .content_block_1 .content-box .singl-block .single-item{
  padding: 0px 10px;
  margin: 0px;
  padding-top: 40px;
}

.about-style-four .content_block_1 .content-box .singl-block .single-item .icon-box{
  position: relative;
  margin-bottom: 25px;
  background: #edf2f7;
}

.about-style-four .content_block_1 .content-box .singl-block{
  max-width: 100%;
  border-top: 1px solid #ededed;
  margin-top: 0px;
  padding-top: 0px;
}

.about-style-four .content_block_1 .content-box .singl-block .single-item:before{
  position: absolute;
  content: '';
  background: #ededed;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -15px;
}

.about-style-four .content_block_1 .content-box .singl-block .single-column:last-child .single-item:before{
  display: none;
}

.about-style-four .content_block_1 .content-box .sec-title{
  margin-bottom: 34px;
}

.about-style-four .content_block_1 .content-box .text p{
  margin-bottom: 31px;
}

.image_block_5 .image-box{
  position: relative;
  display: block;
  padding-left: 229px;
  padding-bottom: 190px;
}

.image_block_5 .image-box .image{
  display: block;
  border-radius: 50px;
  box-shadow: 0 20px 50px #dfe3e3;
}

.image_block_5 .image-box .image img{
  width: 100%;
  border-radius: 50px;
}

.image_block_5 .image-box .image-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.image_block_5 .image-box .image-1{
  position: relative;
  background: #fff;
  padding: 10px;
  z-index: 1;
}

.image_block_5 .image-box .shape .shape-1{
  position: absolute;
  top: -45px;
  left: 110px;
  width: 173px;
  height: 173px;
  background-repeat: no-repeat;
}

.image_block_5 .image-box .shape .shape-2{
  position: absolute;
  bottom: 130px;
  right: 40px;
  width: 173px;
  height: 173px;
  background-repeat: no-repeat;
}

.image_block_8 .image-box{
  position: relative;
  display: block;
  padding: 70px 250px 125px 0px;
}

.about-style-two .image_block_8 .image-box{
  margin-right: 50px;
}

.image_block_8 .image-box .image{
  border-radius: 20px;
  box-shadow: 0 20px 50px #dfe3e3;
}

.image_block_8 .image-box .image img{
  width: 100%;
  border-radius: 20px;
}

.image_block_8 .image-box .image-2{
  position: absolute;
  top: 0px;
  right: 0px;
}

.image_block_8 .image-box .image-3{
  position: absolute;
  left: 200px;
  bottom: 0px;
  background: #fff;
  padding: 10px;
}

.image_block_8 .image-box .image-1{
  position: relative;
}

.image_block_8 .image-box .shape .shape-1{
  position: absolute;
  left: -65px;
  top: -30px;
  width: 211px;
  height: 211px;
  background-repeat: no-repeat;
}

.image_block_8 .image-box .shape .shape-2{
  position: absolute;
  top: 145px;
  right: 140px;
  width: 153px;
  height: 162px;
  background-repeat: no-repeat;
}

.image_block_8 .image-box .shape .shape-3{
  position: absolute;
  left: 95px;
  bottom: 85px;
  width: 153px;
  height: 162px;
  background-repeat: no-repeat;
}

.research-page .about-section{
  padding: 120px 0px 150px 0px;
}
/** events-section **/

.events-section{
  position: relative;
}

.events-section .sec-title{
  margin-bottom: 100px;
}

.event-block-one .inner-box{
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  padding: 0px 30px 30px 30px;
  transition: all 500ms ease;
}

.event-block-one .inner-box:hover{
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}

.event-block-one .inner-box .post-date{
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  background: #f2f3f5;
  text-align: center;
  border-radius: 50%;
  border: 5px solid #ffffff;
  padding: 13px 0px 10px 0px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  margin-top: -45px;
  margin-bottom: 23px;
}

.event-block-one .inner-box .post-date h3{
  display: block;
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
}

.event-block-one .inner-box .post-date h3 span{
  display: block;
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  color: #142441;
  text-transform: uppercase;
  margin-top: 4px;
}

.event-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-block-one .inner-box h4 a{
  display: inline-block;
  color: #142441;
}

.event-block-one .inner-box h4 a:hover{

}

.event-block-one .inner-box .info li{
  position: relative;
  display: block;
  font-size: 15px;
  padding-left: 26px;
  margin-bottom: 2px;
}

.event-block-one .inner-box .info li:last-child{
  margin-bottom: 0px;
}

.event-block-one .inner-box .info li i{
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 18px;
}

.event-block-one .inner-box .info{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.event-block-one .inner-box p{
  margin-bottom: 24px;
}

.event-block-one .inner-box .thumb-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 5px;
}

.event-block-one .inner-box .thumb-list li:last-child{
  margin: 0px !important;
}

.event-block-one .inner-box .thumb-list li .image{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #ffffff;
  padding: 4px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}

.event-block-one .inner-box .thumb-list li .image img{
  width: 100%;
  border-radius: 50%;
}

.events-section .pattern .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 271px;
  height: 620px;
  background-repeat: no-repeat;
}

.events-section .pattern .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 588px;
  height: 465px;
  background-repeat: no-repeat;
}

.events-style-two .event-block-one .inner-box{
  padding: 0px;
  overflow: hidden;
  box-shadow: 0 15px 20px 10px #f3f6f6;
  transition: all 500ms ease;
}

.events-style-two .event-block-one .inner-box:hover{
  box-shadow: 0 20px 30px 10px #e5edec;
}

.event-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.event-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.event-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  opacity: 0.6;
  transition: all 500ms ease;
}

.event-block-one .inner-box:hover .image-box:before{
  height: 100%;
}

.event-block-one .inner-box .image-box a{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  font-size: 0px;
  color: #fff;
  z-index: 1;
}

.event-block-one .inner-box .lower-content{
  padding: 0px 30px 38px 30px;
}

.events-section.alternat-2{
  padding-bottom: 230px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%, 0% 0%);
}

.events-section.alternat-2 .event-block-one .inner-box{
  border-radius: 50px;
  padding-top: 115px;
  padding-bottom: 80px;
}

.events-section.alternat-2 .event-block-one .inner-box .post-date{
  width: 140px;
  height: 140px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
  margin-top: 0px;
  border: 10px solid #fff;
  padding-top: 30px;
}

.events-section.alternat-2 .event-block-one .inner-box .post-date h3{
  font-size: 35px;
}

.events-section.alternat-2 .event-block-one .inner-box .post-date span{
  font-size: 17px;
}

.event-block-one .inner-box .info li strong{
  font-weight: 600;
  color: #142441;
}

.events-section.alternat-2 .event-block-one .inner-box h4{
  margin-bottom: 20px;
}

.events-section.alternat-2 .event-block-one .inner-box .info{
  margin-bottom: 23px;
}

.event-block-one .inner-box .link{
  position: absolute;
  left: 0px;
  width: 100%;
  text-align: center;
  bottom: -21px;
}

.event-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  color: #142441;
  box-shadow: 0 10px 30px #cbe1e1;
  z-index: 1;
}

.event-block-one .inner-box .link a:hover{
  color: #fff;
}

.events-section.alternat-2 .sec-title{
  margin-bottom: 125px;
}

.events-section.home-4{
  position: relative;
  width: 100%;
  padding-bottom: 330px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.events-page .events-style-two{
  position: relative;
  padding: 143px 0px 120px 0px;
}

.events-page .event-block-one .inner-box{
  margin-bottom: 30px;
}

.events-page .events-style-two .pattern-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 917px;
  height: 578px;
  background-repeat: no-repeat;
}

.events-page.events-style-two{
  position: relative;
  padding: 143px 0px 120px 0px;
}

.events-page.event-block-one .inner-box{
  margin-bottom: 30px;
}

.events-page.events-style-two .pattern-layer {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 917px;
  height: 578px;
  background-repeat: no-repeat;
}