 @font-face {

font-family: 'Dancing Script' ;
src: url('../fonts/DancingScript-Regular.ttf') format('truetype');

}
@font-face {

font-family: 'Ubuntu' ;
src: url('../fonts/Ubuntu-Regular.ttf') format('truetype');

}


/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
  font-size:15px;
  color:#000;
  line-height:30px;
  font-weight:400;
  background:#ffffff;
  font-family: 'Ubuntu', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1600px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1200px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  color: #000;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 0px;
  font-style: normal;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6 {
  position:relative;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}


@keyframes pulse {
    50% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1),
        0 0 0 60px rgba(255, 255, 255, 0.1);
    }
}

@keyframes pulse-2 {
    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.2),
        0 0 0 40px rgba(0, 0, 0, 0.1);
    }
}

/** button **/

.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 15px;
  height: 50px;
  padding: 12px 80px 12px 40px;
  background: transparent;
  line-height: 26px;
  color: #4527a4;
  border: 1px solid #4527a4;
  font-weight: 500;
  border-radius: 30px;
  text-transform: capitalize;
  transition: all 500ms ease;
  cursor: pointer;
  z-index: 1;
}

.theme-btn:hover{
  color: #fff;
}

.theme-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #4527a4;
  border-radius: 30px;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.theme-btn:hover:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}

.theme-btn i{
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #4527a4;
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  transition: all 900ms ease;
}

.theme-btn:hover i{
  background: transparent;
}

.theme-btn-two{
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(47deg,#0041c2 0,#55b5d4 100%);
  border-radius: 30px;
  text-align: center;
  padding: 10px 30px;
  cursor: pointer;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn-two:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

.theme-btn-two:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.theme-btn-two:hover{
  color: #0140bf;
  background: #fff;
  box-shadow: 0 0 15px rgb(0 63 190 / 58%);
}


.pagination{
  position: relative;
  display: block;
}

.pagination li{
  display: inline-block;
  margin: 0px 6px;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 38px;
  font-weight: 500;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  text-align: center;
  color: #777;
  background: transparent;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.active{
  color: #fff;
  border-color: #4527a4;
  background: #4527a4;
}

.pagination li:last-child a,
.pagination li:first-child a{
  background: #222222;
  border-color: #222222;
  color: #fff;
}

.sec-pad{
  padding: 154px 0px 120px 0px;
}

.sec-pad-two{
  padding: 100px 0px !important;
}

.sec-pad-three{
  padding: 200px 0px !important;
}

.sec-pad-four{
  padding: 100px 0px 70px 0px !important;
}

.preloader{
  position: fixed; 
  left:0px;
  top:0px;
  height:100%;
  width: 100%;
  z-index:999999;
  background-color:#4527a4;
  background-position:center center;
  background-repeat:no-repeat;
  background-image:url(../images/icons/preloader.gif);
}

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 16px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: #222;
  transition: 1s ease;
}

.scroll-top:hover{
 background: linear-gradient(225deg,#0041c2 0,#08153a 100%);
  -webkit-box-shadow: 2px 2px 0px #222;
  -ms-box-shadow: 2px 2px 0px #222;
  box-shadow: 2px 2px 0px #222;
}

.scroll-top.open {
  bottom: 80px;
  right: 15px;
}

.scroll-top span{
  color: #fff;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}

.sec-title{
  position: relative;
  display: block;
}

.sec-title.center{
  text-align: center;
}

.sec-title h6{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.sec-title h6:before{
  position: absolute;
  content: '';
  background: #cccccc;
  width: 130px;
  height: 2px;
  left: 0px;
  bottom: 0px;
}

.sec-title.center h6:before,
.sec-title.center h6:after{
  left: 50%;
  transform: translateX(-50%);
}

.sec-title h6:after{
  position: absolute;
  content: '';
  background: #777777;
  width: 45px;
  height: 4px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
  -webkit-mask-image: linear-gradient(-75deg, rgba(244,55,55,0.6) 50%, #f43737 50%, rgba(0,0,0,1) 70%);
  -webkit-mask-size: 200%;
/*  animation: shine 2s infinite;*/
}

.sec-title p{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  margin: 0px;
}

.sec-title.center h6,
.sec-title.center p{
  text-align: center;
}

.margin_left_30{
  margin-left: 30px !important;
}

.margin_right_30{
  margin-right: 30px !important;
}

.margin_bottom_30{
  margin-bottom: 30px !important;
}

.margin_left_100{
  margin-left: 100px !important;
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
/*  position:absolute;*/
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
 background: #0080cf;
  left:0px;
  top:0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width:100%;
  z-index:0;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.main-header .outer-container.sub-header{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  background: #01103f;
}
.main-header .outer-container.sub-header{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.main-header .outer-container .logo-box .logo{
  position: relative;
  padding: 10px 0px 0px 70px;
}



/** main-menu **/

.main-menu{
  position:relative;
  float:left;
}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  position:relative;
  margin:0px;
}

.main-menu .navigation > li{
  position:relative;
  float:left;
  z-index:2;
  padding:35px 0px 25px 0px;
  margin: 0px 25px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:30px;
  font-weight:500;
  opacity:1;
  color:#fff;
  padding: 0px;
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}
.main-menu .navigation > li > a:hover{
color: #4aaaff !important;
}
.main-menu .navigation > li > ul{
  position:absolute;
  left:0px;
  top:100%;
  width:280px;
  z-index:100;
  display:none;
  opacity: 0;
  visibility: hidden;
  padding: 20px 0px;
  background-color: #ffffff;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}

.main-menu .navigation > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > a{
  position:relative;
  display:block;
  padding:6px 0px;
  line-height:24px;
  font-weight:400;
  font-size:14px;
  text-transform:capitalize;
  color:#222;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:hover{
  color:#4527a4;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:-2px;
  width:230px;
  z-index:100;
  display:none;
  padding: 20px 0px;
  background-color: #ffffff;
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  -moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
  box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:6px 0px;
  line-height:24px;
  font-weight:400;
  font-size:14px;
  text-transform:capitalize;
  color:#222;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a{
  color:#4527a4;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease; 
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:10px;
  top:8px;
  width:34px;
  height:30px;
  border:1px solid #ffffff;
  text-align:center;
  font-size:16px;
  line-height:26px;
  color:#ffffff;
  cursor:pointer;
  z-index:5;
  display:none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #4527a4;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header.home-16 .menu-area .mobile-nav-toggler .icon-bar,
.main-header.home-1 .menu-area .mobile-nav-toggler .icon-bar,
.main-header.home-3 .menu-area .mobile-nav-toggler .icon-bar,
.main-header.home-7 .menu-area .mobile-nav-toggler .icon-bar,
.main-header.home-8 .menu-area .mobile-nav-toggler .icon-bar,
.main-header.home-9 .menu-area .mobile-nav-toggler .icon-bar,
.main-header.home-11 .menu-area .mobile-nav-toggler .icon-bar{
  background: #fff;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


.main-menu .navigation .megamenu{
  width: 500px;
}

.main-menu .navigation .megamenu:before{
  position: absolute;
  content: '';
  background: #e5e5e5;
  width: 2px;
  height: calc(100% - 60px);
  left: 42%;
  top: 30px;
}
.logo-box a img{
  width: 100px;
}

.main-menu .navigation>li> .megamenu li {
  position: relative;
  display: block;
  width: 50%;
  float: left;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
/*  padding:30px 25px;*/
  text-align:left;  
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:#000;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  -webkit-transition:all 0.7s ease;
  -moz-transition:all 0.7s ease;
  -ms-transition:all 0.7s ease;
  -o-transition:all 0.7s ease;
  transition:all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #000;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  background: #fff;
  visibility: visible;
  -webkit-transition:all 0.7s ease;
  -moz-transition:all 0.7s ease;
  -ms-transition:all 0.7s ease;
  -o-transition:all 0.7s ease;
  transition:all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 27px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  color:#4527a4;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  /*border-bottom: 1px solid rgba(255,255,255,0.10);*/
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #0080cf;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a,
.mobile-menu .navigation li > a:hover{
  color:#0080cf !important;  
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  background:#4527a4; 
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:30px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  color:#00aeef;  
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 80px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  text-decoration: underline;
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}

/** stricky-header **/

.sticky-header .main-menu .navigation > li{
  margin: 0px;
}

.sticky-header .main-menu .navigation > li > a{
  padding: 27px 23px !important;
}

.sticky-header .main-menu .navigation > li > a{
  color: #fff !important;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a{
  background: #fff;
  color: #0080cf !important;
}

.sticky-header .logo-box{
  position: relative;
  float: left;
  padding: 8px 0px 7px 70px;
}

.sticky-header .menu-area{
  position: relative;
  float: right;
}

.sticky-header .main-menu .navigation > li > a:before{
  display: none;
}

.sticky-header .main-menu .navigation > li{
  padding: 0px !important;
  margin: 0px !important;
}

.sticky-header .main-menu .navigation > li:before{
  display: none;
}






.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;
}



.ripple {
  position: absolute;
  left: -6px;
  top: -6px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
  -webkit-animation: ripple 5s infinite;
  animation: ripple 5s infinite;
}

.ripple:before {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ripple:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
            box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
            box-shadow: 0 0 0 50px rgba(255, 255, 255, .0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
  }
}


/** main-footer **/

.main-footer{
  position: relative;
  padding-top: 150px;
}

.main-footer .image-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-footer .footer-top{
  position: relative;
  padding: 105px 0px 100px 0px;
  border-bottom: 1px solid #dddddd;
}

.main-footer .footer-top .footer-logo{
  margin-bottom: 32px;
}

.main-footer .footer-top .about-widget{
  position: relative;
  margin-right: 60px;
  margin-top: -8px;
}

.main-footer .footer-top .about-widget .text{
  position: relative;
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 27px;
}

.main-footer .footer-top .about-widget .social-links h6{
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #4527a4;
}

.main-footer .footer-top .about-widget .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.main-footer .footer-top .about-widget .social-links li:last-child{
  margin-right: 0px;
}

.main-footer .footer-top .about-widget .social-links li:first-child{
  margin-right: 30px;
}

.main-footer .footer-top .about-widget .social-links li a{
  font-size: 16px;
  color: #777;
}

.main-footer .footer-top .about-widget .social-links li a:hover{
  color: #4527a4;
}

.main-footer .footer-top .widget-title{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #222;
  padding-bottom: 9px;
  margin-bottom: 39px;
}

.main-footer .footer-top .widget-title:before{
  position: absolute;
  content: '';
  background: #4527a4;
  width: 45px;
  height: 2px;
  left: 0px;
  bottom: 0px;
  -webkit-mask-image: linear-gradient(-75deg, rgba(244,55,55,0.6) 50%, #f43737 50%, rgba(0,0,0,1) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}

.main-footer .footer-top .widget-title:after{
  position: absolute;
  content: '';
  background: #f2f0f9;
  width: 3px;
  height: 2px;
  left: 36px;
  bottom: 0px;
}

.main-footer .footer-top .links-widget .list li{
  position: relative;
  display: block;
  margin-bottom: 11px;
  padding-left: 18px;
}

.main-footer .footer-top .links-widget .list li:last-child{
  margin-bottom: 0px;
}

.main-footer .footer-top .links-widget .list li a{
  display: inline-block;
  font-size: 16px;
  color: #777;
}

.main-footer .footer-top .links-widget .list li a:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-size: 16px;
  color: #777;
  font-weight: 700;
  left: 0px;
  top: 0px;
  transition: all 500ms ease;
}

.main-footer .footer-top .links-widget .list li a:hover,
.main-footer .footer-top .links-widget .list li a:hover:before,
.main-footer .footer-top .contact-widget .list li a:hover{
  color: #4527a4;
}

.main-footer .footer-top .contact-widget .list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 42px;
  color: #777;
  padding-left: 35px;
}

.main-footer .footer-top .contact-widget .list li:first-child{
  margin-bottom: 42px;
}

.main-footer .footer-top .contact-widget .list li a{
  color: #777;
}

.main-footer .footer-top .contact-widget .list li i{
  position: absolute;
  left: 0px;
  top: 13px;
  color: #4527a4;
}

.main-footer .footer-top .contact-widget .widget-title{
  margin-bottom: 33px;
}

.main-footer .footer-bottom{
  position: relative;
  padding: 14px 0px;
  text-align: center;
}

.main-footer .footer-bottom .copyright{
  font-size: 16px;
  color: #4527a4;
}

.main-footer .footer-bottom .copyright a{
  color: #4527a4;
}

.main-footer .footer-bottom .copyright a:hover{
  text-decoration: underline;
}


/** sidebar **/

.main-header .nav-box{
  position:absolute;
  left: 33px;
  top: 10px;
  width:20px;
  color:#ffffff;
  font-size:28px;
  padding:24px 0px 23px;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.main-header .nav-box:before{
  position: absolute;
  content: '';
  background: #4527a4;
  width: 260px;
  height: 260px;
  left: -160px;
  top: -135px;
  box-shadow: 0 0 0px 45px rgba(104, 157, 235, 0.4);
  border-radius: 50%;
}

.main-header .nav-box .nav-btn{
  position:relative;
  cursor: pointer;
}

.main-header .nav-btn .icon{
  position:relative;
  height:3px;
  width:20px;
  float:right;
  display:inline-block;
  margin-bottom:7px;
  background-color:#fff;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.xs-sidebar-group .xs-overlay{
  left:0%;
  top:0;
  position:fixed;
  height:100%;
  opacity:0;
  width:100%;
  visibility:hidden;
  -webkit-transition:all .4s ease-in .8s;
  -o-transition:all .4s ease-in .8s;
  transition:all .4s ease-in .8s;
  cursor:url(../images/icons/cross-out.png),
  pointer; 
  z-index: 999999;
}

.xs-sidebar-group.isActive .xs-overlay{
  opacity:.9;
  visibility:visible;
  -webkit-transition:all .8s ease-out 0s;
  -o-transition:all .8s ease-out 0s;
  transition:all .8s ease-out 0s;
  right:100%;
}

.xs-sidebar-group .widget-heading{
  position:absolute;
  top:0;
  right:0;
  padding:25px;
}

.xs-sidebar-widget{
  position:fixed;
  left:-100%;
  top:0;
  bottom:0;
  width:100%;
  max-width:360px;
  z-index:999999;
  overflow:hidden;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  background-color:#ffffff;
  -webkit-transition:all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition:all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition:all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility:hidden;
  opacity:0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget{
  opacity:1;
  visibility:visible;
  left:0;
  -webkit-transition:all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition:all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition:all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget{
  padding:40px;
}

.close-side-widget{
  color:#1768dd;
  display:block;
}

.sidebar-widget-container{
  position:relative;
  top:150px;
  opacity:0;
  visibility:hidden;
  -webkit-transition:all .3s ease-in .3s;
  -o-transition:all .3s ease-in .3s;
  transition:all .3s ease-in .3s;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container{
  top:0px;
  opacity:1;
  visibility:visible;
  -webkit-transition:all 1s ease-out 1.2s;
  -o-transition:all 1s ease-out 1.2s;
  transition:all 1s ease-out 1.2s;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}

.xs-overlay{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  opacity:.5;
  z-index:0;
}

.xs-bg-black{
  background-color:#000000;
}

.xs-menu-tools>li{
  display:inline-block;
  margin-right:15px;
}

.xs-menu-tools>li:last-child{
  margin-right:0;
}

.xs-menu-tools>li>a{
  color:#000000;
  text-decoration:none;
}

.sidebar-info-contents{
  position:relative;
}

.close-side-widget{
  position:relative;
  color:#4527a4;
  font-size:24px;
  -webkit-transition:all 0.5s ease;
  -moz-transition:all 0.5s ease;
  -ms-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
  transition:all 0.5s ease;
}

.close-side-widget:hover{
  color:#222;
}

.sidebar-info-contents .content-inner{
  position:relative;
}

.sidebar-info-contents .content-inner .logo {
  padding:0px 0px 40px;
}

.sidebar-info-contents .content-inner .logo img{
  display:inline-block;
  max-width:100%; 
}

.sidebar-info-contents .content-inner .content-box{
  position:relative;
}

.sidebar-info-contents .content-inner .content-box h4{
  position:relative;
  font-size:20px;
  color:#222;
  font-weight:700;
  margin-bottom:20px;
}

.sidebar-info-contents .content-inner .content-box .text{
  position:relative;
  font-size:15px;
  color: #777;
  margin-bottom:25px;
}

.sidebar-info-contents .content-inner .content-box .theme-btn-two{
  padding: 10px 50px;
}

.sidebar-info-contents .content-inner .contact-info{
  position:relative;
  margin-top:60px;
}

.sidebar-info-contents .content-inner .contact-info ul li{
  position:relative;
  display: block;
  font-size:15px;
  color: #777;
  margin-bottom:3px;
}

.sidebar-info-contents .content-inner .contact-info ul li a{
  color: #777;
}

.sidebar-info-contents .content-inner .contact-info ul li a:hover{
  color: #4527a4;
}

.sidebar-info-contents .content-inner .contact-info h4{
  position:relative;
  font-size:20px;
  color:#222;
  font-weight:700;
  margin-bottom:20px;
}

.sidebar-info-contents .content-inner .social-box{
  position:relative;
  margin-top:20px;
  margin-bottom:30px;
}

.sidebar-info-contents .content-inner .social-box li{
  position:relative;
  display:inline-block;
  margin-right:6px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.sidebar-info-contents .content-inner .social-box li a{
  position:relative;
  width:36px;
  height:36px;
  color:#222222;
  z-index:1;
  font-size:13px;
  line-height:36px;
  text-align:center;
  border-radius:50%;
  display:inline-block;
  background: transparent;
  border: 1px solid #ededed;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.sidebar-info-contents .content-inner .social-box li a:hover{
  background: #4527a4;
  border-color: #4527a4;
  color: #fff;
}



/*** 

====================================================================
                        Home-Page-Five
====================================================================

***/

.main-header .menu-right-content{
  position: relative;
  float: left;
  margin-top: 70px;
  margin-left: 130px;
}

.main-header .menu-right-content .cart-box-outer{
  position: relative;
  display: inline-block;
}

.main-header .menu-right-content .cart-box-outer a{
  position: relative;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
}

.main-header .menu-right-content .cart-box-outer a span{
  position: absolute;
  top: -3px;
  right: -9px;
  font-size: 11px;
  color: #fff;
  background: #000;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}

/** search box btn **/

.main-header .search-box-outer {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 35px;
}

.main-header .search-box-btn {
  position: relative;
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  background: transparent;
}

.main-header .header-upper.dark .search-box-btn {
  color: #fff;
}

.main-header .search-box-outer .dropdown-menu {
  top: 40px !important;
  padding: 0px;
  width: 330px;
  border-radius: 0px;
  background: #ffffff;
  right: 0;
  left: auto !important;
  transform: translate3d(0px, 0px, 0px) scale3d(0.8,0.8,0.8) !important;
  border-color: transparent;
  border-radius: 3px;
  box-shadow: 7px 5px 30px 0 rgba(72,73,121,0.15);
  transition: .5s ease;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.main-header .search-box-outer .show .dropdown-menu {
    display: block;
    transform: scale3d(1,1,1)!important;
    opacity: 1;
    visibility: visible;
}

.main-header .search-panel .form-container {
  padding: 30px;
}

.main-header .search-panel .form-group {
  position: relative;
  margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 9px 50px 9px 15px;
  height: 50px;
  border: 1px solid #f3f5fe;
  border-radius: 3px;
  background: #f3f5fe;
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
  border-color: #f3f5fe;
}

.main-header .search-panel .search-btn {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
  height: 48px;
  text-align: center;
  color: #111111;
  background: #f3f5fe;
  font-size: 14px;
  border-radius: 0px 3px 3px 0px;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}




/*** 

====================================================================
                        Home-Page-Nine
====================================================================

***/


.contact-section{
  position: relative;
  padding: 30px 0px 0px 0px;
}

.contact-section .info-content .single-info-box{
  /*position: relative;
  padding: 0px 30px;*/
  text-align: initial ;
}

.contact-section .info-content .single-info-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.contact-section .info-content .single-info-box .icon-box img{
  position: relative;
  width: auto;
  transition: all 500ms ease;
}

.contact-section .info-content .single-info-box:hover .icon-box img{
  transform: scale(1.05);
}

.contact-section .info-content .single-info-box h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #222;
  font-weight: 500;
  /*margin: 18px;*/
}

.contact-section .info-content .single-info-box .text{
  position: relative;
  font-size: 16px;
  margin-bottom: 14px;
}

.contact-section .info-content .single-info-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #4527a4;
}

.contact-section .info-content .single-info-box a:hover{
  text-decoration: underline;
}

.contact-section .info-content,
.contact-section .image-container{
  position: relative;
  margin-bottom: 110px;
}

.contact-section .contact-form-area .form-inner .form-group{
  position: relative;
  margin-bottom: 20px;
}

.contact-section .contact-form-area .form-inner .form-group i{
  position: absolute;
  top: 18px;
  right: 30px;
  font-size: 13px;
  font-weight: 700;
  color: #0080cf;
  z-index: 1;
}

.contact-section .contact-form-area .form-inner .form-group input[type='text'],
.contact-section .contact-form-area .form-inner .form-group input[type='email'],
.contact-section .contact-form-area .form-inner .form-group textarea{
  position: relative;
  width: 100%;
  height: 45px;
  background: #fff;
  padding: 10px 60px 10px 30px;
  font-size: 14px;
  font-weight: 500; 
  border-radius: 25px; 
  border: 1px solid #0080cf;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.1);  
  transition: all 500ms ease;                                                                             
}

.contact-section .contact-form-area .form-inner .form-group textarea{
  height: 100px;
  resize: none;
  border-radius: 25px;
}

.contact-section .contact-form-area .form-inner .form-group input:focus,
.contact-section .contact-form-area .form-inner .form-group textarea:focus{
  border-color: #4527a4;
}

.contact-section .contact-form-area .form-inner .message-btn{
  margin: 0px;
}

.contact-section .contact-form-area .form-inner .message-btn .theme-btn-two{
  padding: 13px 38px;
  font-weight: 400;
}

.contact-section .contact-form-area .sec-title h6{
  margin-bottom: 63px;
}

.award-section{
  position: relative;
  padding: 140px 0px 65px 0px;
}

.award-section .content-box{
  position: relative;
  background-image: -webkit-linear-gradient(-90deg, #0080cf 0%, #353b91 100%);
  padding: 35px 42px 40px 260px;
  border-radius: 100px;
}

.award-section .content-box .award-image{
  position: absolute;
  left: -6%;
  top: -31%;
  width: 375px;
  height: 375px;
}

.award-section .content-box .text{
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.award-section .content-box h6{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
/*  font-weight: 700;*/
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}



h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}
.marg-btm-30 {
    margin-bottom: 30px !important;
}

.fw-300, .thin {
    font-weight: 300;
}
.text-center {
    text-align: center!important;
}
.text-transform-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center!important;
}
.divider-30 {
    margin-top: 30px;
}

.response, .color-main, h1.color-main, h2.color-main, h3.color-main, h4.color-main, h5.color-main, h6.color-main {
    border-color: #a9c200;
    color: #a9c200;
}
.animated {
    visibility: visible!important;
}
.animate {
    visibility: hidden;
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}
.fnt-we-700 {
    font-weight: 700 !important;
}

@media (min-width: 992px){
.d-lg-none,  {
    display: none!important;
}

}
.animated {
    visibility: visible!important;
}
.animate {
    visibility: hidden;
}
.scaleAppear {
    -webkit-animation: scaleAppear 750ms ease;
    -moz-animation: scaleAppear 750ms ease;
    -ms-animation: scaleAppear 750ms ease;
    -o-animation: scaleAppear 750ms ease;
    animation: scaleAppear 750ms ease;
}
.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

.response, .color-main, h1.color-main, h2.color-main, h3.color-main, h4.color-main, h5.color-main, h6.color-main {
    border-color: #a9c200;
    color: #a9c200;
}
.animated {
    visibility: visible!important;
}
.animate {
    visibility: hidden;
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

.animated {
    visibility: visible!important;
}


.self-center{
  align-self:center;
}
.clients-style-four p{
  margin-bottom: 15px;
}
.sec-mar-0 {
    margin: 0px !important;
}
.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 130px 0;
    background: #F5F7FC;
}
.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(ellipse at center, #0000 0%, #000f30bf 100%, #9b9b9b 100%);
  content: "";
  opacity: .9;
}
.page-title h1 {
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 48px;
    line-height: 1em;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.page-breadcrumb {
    position: relative;
}
.page-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    padding: 0 15px;
    text-transform: capitalize;
}
.page-breadcrumb li a {
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.page-breadcrumb li:after {
    position: absolute;
    top: 0px;
    right: -5px;
    content: "|";
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
}
.sub-header{
  position: relative !important;
}
.sub-header .navigation > li > a{
color: #fff;
}
.sub-header .navigation > li{
padding: 30px 0px 25px 0px !important;
}
.main-header .sub-header .logo-box .logo{
  padding: 5px 0px 0px 70px !important;
}
.l-100{
  left: -100px;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs {
    display: flex;
    overflow: hidden;
}
.ttm-tabs ul.tabs {
    padding: 0;
    margin: 0;
}
.featured-icon-box.style3:before, .header_search .header_search_content:before, .ttm-bgcolor-darkgrey .tooltip-bottom:before, .ttm-tabs.ttm-tab-style-01 ul.tabs li.active, .ttm-tabs.ttm-tab-style-01 ul.tabs li.active:after {
    border-bottom-color: #cda274;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs li {
    text-align: center;
    margin: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    display: block;
    border-bottom: 2px solid #e7e7e7;
    margin-right: 35px;
}
.ttm-tabs ul.tabs li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs li.active:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    z-index: 1;
    bottom: 0;
    left: 50%;
    right: 50%;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom-color: #fff;
    margin-bottom: -2px;
    margin-left: -7px;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs li.active:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    z-index: 1;
    bottom: 0;
    left: 50%;
    right: 50%;
    border: 6px solid transparent;
    border-top: 0;
    border-bottom-color: #fff;
    margin-bottom: -2px;
    margin-left: -7px;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs li.active a{
    color: #cda274;
  }
  .featured-icon-box.style3:before, .header_search .header_search_content:before, .ttm-bgcolor-darkgrey .tooltip-bottom:before, .ttm-tabs.ttm-tab-style-01 ul.tabs li.active, .ttm-tabs.ttm-tab-style-01 ul.tabs li.active:after {
    border-bottom-color: #cda274;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs li.active:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    bottom: -2px;
    left: 50%;
    right: 50%;
    border: 9px solid transparent;
    border-top: 0;
    border-bottom-color: #000;
    margin-left: -10px;
}
.ttm-tabs.ttm-tab-style-01 ul.tabs li {
    text-align: center;
    margin: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    display: block;
    border-bottom: 2px solid #e7e7e7;
    margin-right: 35px;
}
.ttm-tabs ul.tabs li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.ttm-tabs.ttm-tab-style-01 .content-tab {
    padding-top: 30px;
}
.ttm-tabs .content-tab .content-inner.active {
    display: block;
}
.ttm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    letter-spacing: .3px;
}
.ttm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    letter-spacing: .3px;
}
.ic li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    font-weight: 700;
    color: #4527a4;
    margin-right: 10px;
    
}


.box-s {
  top: 50%;
  left: 50%;
  margin-top: 30px;
  transform: translate(0%, -50%);
  /*position: absolute;*/
  padding: 20px 50px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  font: 16px/24px Arial, sans-serif;
  background-color: #4973ff;
  transition: 
    box-shadow 0.4s ease, 
    background-color 0.4s ease, 
    color 0.4s ease;
  box-shadow: 
    0 0 2px 0 rgba(73, 115, 255, .1), 
    0 0 4px 0 rgba(73, 115, 255, .2), 
    0 0 6px 0 rgba(73, 115, 255, .3), 
    0 0 8px 0 rgba(73, 115, 255, .4),
    0 0 12px 0 rgba(73, 115, 255, .5), 
    0 0 18px 0 rgba(73, 115, 255, .6);
}

.box-s:hover{
  background-color: #ea3c;
  box-shadow: 
    0 0 2px 0 rgba(238, 170, 51, 0.1), 
    0 0 4px 0 rgba(238, 170, 51, 0.2), 
    0 0 6px 0 rgba(238, 170, 51, 0.3), 
    0 0 8px 0 rgba(238, 170, 51, 0.4),
    0 0 12px 0 rgba(238, 170, 51, 0.5), 
    0 0 18px 0 rgba(238, 170, 51, 0.6),
    0 0 4px 0 rgba(238, 170, 51, 0.7);
}

.box-s span {
  color: #fff;
  letter-spacing: 2px;
  z-index: 2;
  position: relative;
  font-weight: 700;
}

.box-s i {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 200px;
  background-color: inherit;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  transition: 
    transform 0.4s linear, 
    top 1s linear;
  overflow: hidden;
}

.box-s i:before,
.box-s i:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
}
.box-s i:before {
  border-radius: 46%;
  background-color: rgba(20, 20, 20, 0.2);
  animation: buttons 5s linear infinite;
}
.box-s i:after {
  border-radius: 40%;
  background-color: rgba(20, 20, 20, 0.5);
  animation: buttons 10s linear infinite;
}

@keyframes buttons {
  0% {
    transform: 
      translate(-50%, -75%) 
      rotate(0deg);
  }
  100% {
    transform: 
      translate(-50%, -75%) 
      rotate(360deg);
  }
}
.outer-container .current > a {
   color: #4aaaff !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}
.img-box1 .img-1 img {
    filter: drop-shadow(0px 5px 32px rgba(21, 40, 76, 0.08));
}
.img-box1 img {
    border-radius: 5px;
}
.img-box1 .img-2 {
    z-index: 1;
    margin: -200px 0 0 auto;
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 72%;
    position: relative;
}
.img-box1 img {
    border-radius: 5px;
}
.position-center {
    position: absolute !important;
    right: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    background-color: rgba(0,0,0,0);
    padding: 0;
}
play-btn.style2:after, .play-btn.style2:before {
    border-radius: 5px;
}
.ripple-animation, .play-btn:after, .play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
.play-btn:after, .play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    transition: all ease .4s;
}
.play-btn.style3 i, .play-btn.style2 i {
    --icon-size: 60px;
    border-radius: 5px;
    --icon-font-size: 18px;
    background: #4527a4;
    color: #fff;
}
 .style2 i :hover .style2 i{
    background: #fff;
    color: #4527a4;
}
.play-btn>i {
    display: inline-block;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    font-size: var(--icon-font-size, 1.5em);
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    z-index: 1;
    transition: all ease .4s;
}
.play-btn.style3 i, .play-btn.style2 i {
    --icon-size: 60px;
    border-radius: 5px;
    --icon-font-size: 18px;
}
play-btn.style2:after, .play-btn.style2:before {
    border-radius: 5px;
}
.ripple-animation, .play-btn:after, .play-btn:before {
    -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.play-btn:after, .play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    transition: all ease .4s;
}
.call-media {
    display: flex;
    align-items: center;
    padding: 10px 40px 10px 10px;
    box-shadow: 0px 10px 31px rgba(169,177,193,.17);
    border-radius: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 40px 0;
    background-color: var(--white-color);
}
.call-media__icon {
    background-color: var(--smoke-color);
    box-shadow: 0px 7px 37px rgba(96,125,185,.11);
    border-radius: 5px;
    width: 95px;
    height: 95px;
    line-height: 95px;
    border-radius: 5px;
    text-align: center;
    margin: 0 20px 0 0;
}
.media-body {
    flex: 1;
}
.call-media__label {
    text-transform: uppercase;
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin: 0 0 12px 0;
}
.call-media__info {
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 0;
}
.call-media__info a {
    color: inherit;
}
.play-btn.style3 i, .play-btn.style2 i {
    --icon-size: 60px;
    border-radius: 5px;
    --icon-font-size: 18px;
}
.section-spc{
  margin: 20px 0px;
}



.hovicon.effect-8:hover {
    background: rgb(69 39 164 / 48%);
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    transform: scale(0.93);
    color: #fff;
}
.content-header {
  position: relative;
  /*left: 50%;*/
}

.content-header h6, .content-header h4 {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  /*position: absolute;
  transform: translate(-50%, -50%);*/
}


@keyframes animate {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}

.contact-map{
      width: 100%;
    height: 350px;
}
.mar-t-50{
margin-top: 50px;
}
.pond-height:after{
 /* top: 175px !important;*/
}
.margin-t-20{
margin-top: 30px; 
}
.contact-bg{
  padding: 44px 44px 0px 44px;
    border-radius: 20px;
    background-image: linear-gradient(135deg,#e3e3e3 0%,#f1f1f1 100%);
}
.mar-btm-40{
  margin-bottom: 40px;
}
.mob-off{
    display: block;
}
.mob-on{
    display: none;
}
.tab-off{
    display: block;
}
.tab-on{
    display: none;
}
.mar-t-20, .single-info-box h6{
  margin-top: 20px;
}
.txt-just{
text-align: justify;
}
.contact-mar{
  margin-top: 40px;
    margin-bottom: 40px;
}
.contact-wid{
  width: 20% !important;
}
.mar-tp-80{
  margin-top: 80px;
}

@media (max-width: 992px){
  .mar-tp-80{
    margin-top: 20px !important;
  }
  .mob-gallery{
padding: 0px !important;
  }
  .mob-tp-15{
    margin-top: 15px;
  }
.wave-footer p{
  padding: 0% 5% !important;
  text-transform: initial;
}
  .sticky-header .logo-box {
    padding: 8px 0px 7px 30px !important;
}
  .fixed-header .logo-box a img{
 width: 70px;
}
  .mori-seg{
    text-align: center !important;
  }
  .mob-on{
    display: block;
}
.flex-l{
  display: inherit !important;
}
.contact-wid{
  width: 70% !important;
  margin-top: 15px !important;
}
.mob-off{
    display: none;
}
.testimonial-style-eight .testimonial-content{
  margin-bottom: 15px !important;
}
.mob-center {
    text-align: center !important;
}
.sec-title h6:before{
  left: 29%;
}
.sec-title h6:after{
  left: 43%;
}
.box-heading{
  text-align: center !important;
}
.count-mob
{
  position: relative;
    bottom: 50%;
}
.counter-style-three .inner-box .layer-bg{
  left: -5px;
    top: -5px;
}
.icon-box.icon_left, .icon-box.icon_right, .icon-box.icon_right.icon-boxes{
  justify-content: center;
}
.mob-footer{
display: flex;
justify-content: center;
}
.main-footer.style-five .footer-top .contact-widget .social-links li{
  float: unset;
}
.mob-just{
  text-align: justify;
}
.case-studies .sec-title{
  margin-bottom: 25px;
}
.case-studies .sec-title h6, .counter-style-three .sec-title h6, #content_block_39 .content-box .text, .crypto-service .sec-title h6, .designe-process .sec-title h6{
   margin-bottom: 20px;
}
.counter-style-three .sec-title{
  margin-bottom: 10px;
}
.sec-title h6, .testimonial-style-eight .sec-title h6 {
  margin: 0px;
}
.sec-title p{
  text-align: center;
  margin-top: 10px;
}
.  h6, .content-header h4{
  font-size: 50px;
}
.contact-section .contact-form-area .sec-title h6{
  margin-bottom: 28px;
}
.testimonial-style-eight .sec-title h5{
  margin-bottom: 3px;
}
.mar-t-50{
  margin-top: 20px;
}
#content_block_39 .content-box .sec-title h6{
  margin-bottom: 17px;
}
#content_block_39 .content-box .text p{
  margin-bottom: 5px;
}

.designe-process-three .owl-nav{
  justify-content: space-between;
    position: absolute;
    top: 46%;
    left: 0%;
    display: flex;
width: 100%;
}

.waves-footer{
  min-height: 35px !important;
  max-height: 55px !important;
}
#content_block_53 .content-box .text{
  margin-bottom: 20px;
}
.position-center{
  right: 32%;
    top: 54%;
}
.gallery-padd{
  padding-bottom: 25px;
}
/*.sub-footer{
  padding: 0px 20px !important;
}*/
/*.sub-footer p{
  margin-bottom: 10px;
}*/

.powered-by {
width: 185px  !important;
}
/*.footer-content{
  height: 9vh !important;
}*/
.inner-wave-footer{
  height: 10vh !important;
}
.mar-minus{
  margin-bottom: -40px;
}

.fadeInLefts, .fadeInRights {
  animation: none !important;
}
.mob-testimonials .owl-dots{
overflow: hidden !important;
    text-overflow: unset !important;
    display: -webkit-box !important;
    width: 71px !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 auto !important;
}
.designe-process-three .owl-nav .owl-prev {
  left: -25px !important;
}
.designe-process-three .owl-nav .owl-next{
  right: -25px !important;
}


}
@media (max-width: 1200px){
  footer .social-links{
    background-color: unset !important;
  }
   footer .social-links a{
    color: #fff !important;
  }

    .menu-outer, .contact-info, .social-links{
background: #fff;
}
.padd-rht-47 li a, .contact-info a, .contact-info li, .contact-info h4, .social-links a{
color: #000 !important;
}
#mCSB_1_container{  
background: #0080cf;
}
  .tab-off{
    display: none;
}
.tab-on{
    display: block;
}
  .single-item{
  width: 100% !important;
}

}
.single-info-box a{
color: #000;
}

/* -----FOOTER STYLE STARTS -------*/
.wave-footer {
  position:relative;
  text-align:center;
 /* background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);*/
 background: #0080cf;
  color:white;
}
.wave-footer p{
  color: #fff;
  padding: 0% 25%;
  text-transform: initial;
}
.wave-footer .social-links li a{
position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
}
.wave-footer li{
  display: inline-block;
    margin-right: 10px;
}
.wave-footer li a{
  color: #fff;
}
.wave-footer ul{
    margin-top: 10px;
}
/*.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}*/

.inner-wave-footer {
  height: 105px;
  width: 100%;
/*  margin-bottom: 30px;*/
  padding-top: 11px;
}

.flex-l { /*Flexbox for containers*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.flex-l a{
  color: #000;
}
.powered-by{
  width: 216px;
    margin-left: 10px;
}
/*.sub-footer{
  padding: 0px 50px;
}*/
.waves-footer {
  position:relative;
  width: 100%;
  height:100px;
  margin-bottom:-15px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.footer-content {
  position:relative;
/*  height: 42px;*/
  text-align:center;
/*  background-color: white;*/
  background: #1243a9;
  padding: 10px 20px;
  padding-bottom: 10px;
}
.footer-content p{
  color: #fff;
}
.footer-content a{
  color: #fff;
}


/* Animation */

.parallax-waves > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax-waves > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax-waves > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax-waves > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax-waves > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/* -----FOOTER STYLE ENDS -------*/

/* -----BEFORE & AFTER STYLE STARTS -------*/

.containers { 
  height: 73.5vw;
  margin: 1vw auto;
  max-height: 620px;
  max-width: 1000px;
  overflow: hidden;
  width: 98vw;
}
.containers figure { 
  background-image: url(../../images-mist/images/home/ba-after.jpg);
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0; 
  position: relative;
  width: 100%; 
}
.first{
  animation: first 2s 1 normal ease-in-out 0.1s; 
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s; 
}
#compare {
  background-image: url(../../images-mist/images/home/ba-before.jpg);
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255,255,255,0.7);
  box-shadow: 10px 0 15px -13px #000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%; 
 /* filter: grayscale(70%);*/
}
.input-bf#slider {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none; 
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none; 
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}
.input-bf#slider::-moz-range-track { 
  background: transparent; 
}
.input-bf#slider::-ms-track {
  border: none; 
  background-color: transparent;
  height: 100vw; 
  left: 0; 
  outline: none; 
  position: relative;
  top: -100vw; 
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color:transparent;
}
.input-bf#slider::-ms-fill-lower {
  background-color:transparent;
}
.input-bf#slider::-webkit-slider-thumb {
  -webkit-appearance:none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.input-bf#slider::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}   
.input-bf#slider::-ms-thumb {
  height: 100vw;
  width: 0.5%; 
  opacity:0;
}
.input-bf#slider::-ms-tooltip {
  display:none;
}
#compare::before {
  background: url(../../images-mist/images/comparision.png) no-repeat scroll 0 center transparent;
  background-size:contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top:0;
  width: 64px;
}
@keyframes first {
  0% {width: 0%; }
  50% {width: 80%; }
  100% {width: 50%; }
}
@-webkit-keyframes first {
  0% {width: 0%; }
  50% {width: 80%; }
  100% {width: 50%; }
}
/* -----BEFORE & AFTER STYLE ENDS -------*/
.italic{
 font-size: 22px !important;
 color: #023aab !important;
}
.title-outer{
  opacity: 0;
}
.sub-banners{
  background-image: url(../../images-mist/images/about-us/best-business-consultant.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.designe-process-three .owl-nav{
  justify-content: space-between;
    position: absolute;
    top: 44%;
    left: 0%;
    display: flex;
width: 100%;
}
.designe-process-three .owl-nav .owl-prev {
  left: -45px;
}
.designe-process-three .owl-nav .owl-next{
  right: -45px;
}

/*---------CONTACT WATER DROP-------*/


   .water.drop-container {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100px;
  width: 100px;
}


.water.drop {
  position: absolute;
  opacity: 0;
  /*top: -25%;*/
  width: 100%;
  height: 100%;
  border-radius: 100% 5% 100% 100%;
  transform: rotate(-45deg);
  margin: 0px;
  box-shadow: 4px 4px 8px 0px #5d5d5d;
  background: linear-gradient(135deg,#00e5ff 0%,#0446a9 100%);
 
  z-index: 1;
}
.drop
{
   animation: drip 4s forwards;
}
.water-h1 {
  color: #fff;
  position: absolute;
  font-size: 2.5em;
  height: 1em;
  top: 30px; left: 0; right: 0; bottom: 0;
  z-index: 2;
  margin: auto;
  text-align: center;
  opacity: 0;
  animation: appear 2s 2.5s forwards;

}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.water.drop-container:before,
.water.drop-container:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 10%;
  right: 50%;
  transform: translate(50%) rotateX(75deg);
  border-radius: 100%;
  opacity: 0;
  width: 75%;
  height: 75%;
  border: 5px solid skyblue;
  animation: dripple 2s ease-out 1s;
  
}

.water.drop-container:after {
  animation: dripple 2s ease-out 1.7s;
  
 
}

@keyframes drip {
  0%{
    opacity: 0;
    top: -100%;
  }
  45% {
    opacity: 1;
    top: 0;
    border-radius: 100% 5% 100% 100%;
    transform: rotate(-45deg);
  }
  100% {
    opacity: 1;
    top: 0;
    transform: rotate(0deg);
    border-radius: 100%;
  }
}

@keyframes dripple {
  0% {

    width: 100px;
    height: 150px;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 250px;
    height: 220px;
    top: -10%;
    opacity: 0;
  }
}


    .water.drop-container2 {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100px;
  width: 100px;
}

.water.drop-container2:before,
.water.drop-container2:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 10%;
  right: 50%;
  transform: translate(50%) rotateX(75deg);
  border-radius: 100%;
  opacity: 0;
  width: 75%;
  height: 75%;
  border: 5px solid skyblue;
  animation: dripple2 2s ease-out 1s;
  animation-delay: 2.5s;
}

.water.drop-container2:after {
  animation: dripple2 2s ease-out 1.7s;
  animation-delay: 3.5s;
 
}

@keyframes drip2 {
  0%{
    opacity: 0;
    top: -100%;
  }
  45% {
    opacity: 1;
    top: 0;
    border-radius: 100% 5% 100% 100%;
    transform: rotate(-45deg);
  }
  100% {
    opacity: 1;
    top: 0;
    transform: rotate(0deg);
    border-radius: 100%;
  }
}

@keyframes dripple2 {
  0% {

    width: 100px;
    height: 150px;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 250px;
    height: 220px;
    top: -10%;
    opacity: 0;
  }
}


  .water.drop-container3 {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100px;
  width: 100px;
}

.water.drop-container3:before,
.water.drop-container3:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 10%;
  right: 50%;
  transform: translate(50%) rotateX(75deg);
  border-radius: 100%;
  opacity: 0;
  width: 75%;
  height: 75%;
  border: 5px solid skyblue;
  animation: dripple2 2s ease-out 1s;
  animation-delay: 3.5s;
}

.water.drop-container3:after {
  animation: dripple2 2s ease-out 1.7s;
  animation-delay: 4.5s;
 
}

@keyframes drip3 {
  0%{
    opacity: 0;
    top: -100%;
  }
  45% {
    opacity: 1;
    top: 0;
    border-radius: 100% 5% 100% 100%;
    transform: rotate(-45deg);
  }
  100% {
    opacity: 1;
    top: 0;
    transform: rotate(0deg);
    border-radius: 100%;
  }
}

@keyframes dripple3 {
  0% {

    width: 100px;
    height: 150px;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 250px;
    height: 220px;
    top: -10%;
    opacity: 0;
  }
}
.fixed-header .menu-area .mobile-nav-toggler .icon-bar{
  background: #fff !important;
}


/* banner */

.bann-txt{
    width: 825px !important;
    height: 100px !important;
    top: 90px !important;
    position: absolute !important;
font-family: work sans,sans-serif !important;
letter-spacing: px !important;
    opacity: 1 !important;
    font-size: 35px !important;
    z-index: 1 !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    color: #fff !important;
    
}
.bann-txt-1{
   width: 750px !important;
    height: 100px !important;
    top: 145px !important;
    position: absolute !important;
font-family: work sans,sans-serif !important;
letter-spacing: px !important;
    opacity: 1 !important;
    font-size: 35px !important;
    z-index: 1 !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: #fff !important;
   
}
.bann-txt-2{
    width: 825px !important;
    height: 100px !important;
    top: 160px !important;
    position: absolute !important;
     font-family: work sans,sans-serif !important;
letter-spacing: 0px !important;
    opacity: 1 !important;
    font-size: 35px !important;
    z-index: 1 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #000 !important;
   
}
.op-cha-1
{
    opacity: 1 !important;
}

.fnt-we-600{
  font-weight: 600 !important;
}
.clr-000{
  color: #000 !important;
}
.clr-fff{
  color: #fff !important;
}
.marg-btm-10
{
  margin-bottom: 10px !important;
}
.marg-tp-10{
  margin-top: 10px !important;
}
.marg-btm-20
{
  margin-bottom: 20px !important;
}
.marg-tp-20{
  margin-top: 20px !important;
}
.marg-tp-40{
  margin-top: 40px !important;
}
.marg-btm-30
{
  margin-bottom: 30px !important;
}
.marg-btm-20
{
  margin-bottom: 20px !important;
}
.marg-btm-40
{
  margin-bottom: 40px !important;
}
.marg-tp-30{
  margin-top: 30px !important;
}
.padd-tp-10{
  padding-top: 10px !important;
}
.padd-btm-10{
  padding-bottom: 10px !important;
}
.padd-tp-20{
  padding-top: 20px !important;
}
.padd-btm-20{
  padding-bottom: 20px !important;
}
.padd-tp-30{
  padding-top: 30px !important;
}
.padd-btm-55{
  padding-bottom: 55px !important;
}
.padd-btm-30{
  padding-bottom: 30px !important;
}.padd-both-10{
  padding-top: 10px;
  padding-bottom: 10px !important;
}
.padd-both-20{
  padding-top: 20px;
  padding-bottom: 20px !important;
}
.padd-both-30{
  padding-top: 30px;
  padding-bottom: 30px !important;
}
.padd-both-50{
  padding-top: 50px;
  padding-bottom: 50px !important;
}
.txt-jus{
  text-align: justify !important;
}
.fnt-we-500{
  font-size: 500 !important;
}

.dis-f{
  display: flex !important;
}
.dis-c{
  display: contents !important;
}
ul.list-styled-1 {
    color: #262c31;
    list-style: none;
    padding: 0;
    font-size: 15px;
}
ul.list-styled-1 li {
    margin-bottom: 3px !important;
}
ul.list-styled-1 li:before {
    color: #0080cf;
        content: "\f35a";
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: 0px;
}
ul.list-styled-2 {
    color: #262c31;
    list-style: none;
    padding: 0;
}
ul.list-styled-2 li {
    margin-bottom: 10px !important;
}
ul.list-styled-2 li:before {
    color: #0041c2;
    content: "\f091";
    font-family: "fontawesome";
    font-size: 16px;
    margin-right: 15px;
    position: relative;
    top: 0px;
}
ul.list-styled-4 {
    color: #262c31;
    list-style: none;
    padding: 0;
    font-size: 15px;
}
ul.list-styled-4 li {
    margin-bottom: 3px !important;
}
ul.list-styled-4 li:before {
    color: #0080cf;
        content: "\f152";
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: 0px;
}
.enquiry-frm{
padding: 20px;
    /*border: 1px solid #474646;*/
    border-radius: 10px;
/*    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);*/
  }

  @media(max-width:991px){

.dis-b{
  display: block !important;
}

.dis-n{
  display: none !important;
}
.wave-footer p{
  margin-top: 61px;
}
.mb-marg-btm-20{
  margin-bottom: 20px !important;
}
.mb-marg-tp-20{
  margin-top: 20px !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;
}
.mori-seg{
  text-align: right;
    margin-right: 13px;
}
.just-end{
  justify-content: end;
}


/*rathis */

body {
  text-transform: capitalize;

}
@media (max-width: 767px){
.filter-menu1 {
    padding: 15px 15px;
    border-radius: 10px;
}
}
.our-history {
    position: relative;
    padding: 35px 0px 20px 0px;
}

.fnt-weight-600
{
font-weight: 600;
}

.fnt-sze-17
{
  font-size: 17px !important;
}

.list-ste{
  list-style: disc;
    margin-left: 20px;
}
.fnt-sze-17
{
font-size: 20px !important;

}

.fnt-wht-700
{
font-weight: 700 !important;
}

.mar-left-60
{
margin-left: 59px !important;
}

.padd-rht-65
{
padding-right: 65px !important;
}

.mar-left-57
{
margin-left: 57px;
}
.padd-rht-47
{
   padding-right: 47px !important;
}

.marg-right-20{
   margin-right: 20px;
}
.ext-content li:before{
content: "\f146";
    margin: 5px 10px 0px 0px;
    font-size: 14px;
    line-height: 24px;
    color: #0c2d58;
    font-weight: 900;
    font-family: Flaticon;
}
.ext-content li{
  display: flex;
}
.padd-tp-53{
  padding-top: 53px;
}
.home-gallery .col-lg-3{
margin-bottom: 20px;
}
.mar-25{
  margin:25px !important;
}
.product{
  padding: 14px !important;
    text-align: center;
    background: #f3f3f3;
    border-radius: 0px 0px 10px 10px;
}
.img-center{
  display: flex;
  justify-content: center;
}
.low-case{
text-transform: lowercase !important;
}

/*button shine*/

 /*.btn-box {
    position: relative;
    float: left;
    margin: 20px 0px 0px 25px;
}
*/
 .btn-box a {
    position: relative;
    top:10px;
    display: inline-block;
    overflow: hidden;
    font-size: 15px;
    color: #fff !important;
    line-height: 20px;
    background:#0080cf;
/*    background: linear-gradient(225deg,#0041c2 0,#08153a 100%);*/
    padding: 11px 18px;
    text-align: center;
    border-radius: 30px;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 700 !important;
}

.btn-box a:before {
    position: absolute;
    content: '';
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 80px;
    width: 8px;
    z-index: -1;
    filter: blur(7px);
    transform: translateX(-15px) rotate(20deg);
    background: rgba(255,255,255,.8);
    animation: shine 1s infinite linear;
    transition: all 600ms ease;
    transform: translateX(-100%);
}

.btn-box a:after {
    position: absolute;
    content: '';
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: -50px;
    z-index: -1;
    border-left: 40px solid transparent;
    border-bottom: 50px solid #0080cf;
    transition: all 600ms ease;
    transform: translateX(100%);
}

@keyframes shine {
    100% {transform: translateX(290px) rotate(20deg) }
}



.shine-btn{
    margin-top: 12px;
}


.slas:after {
  /*  position: absolute;
    right: -145px;
    top: 50%;*/
    z-index: 1;
    cursor: pointer;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
   margin-left: 10px;
    content: "|";
  
}
/*Home testimonials*/
.scroll-animation-wrapper {
    position: relative;
    z-index: 1;
}
.scroll-animation.scroll-right-left {
    -webkit-animation: scroll 80s linear infinite;
    -moz-animation: scroll 80s linear infinite;
    animation: scroll 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.scroll-animation.scroll-left-right {
    -webkit-animation: scrollLeft 80s linear infinite;
    -moz-animation: scrollLeft 80s linear infinite;
    animation: scrollLeft 80s linear infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.scroll-animation {
    display: flex;
    width: -webkit-calc((420px * 16) + (30px * 16));
    width: -moz-calc((420px * 16) + (30px * 16));
    width: 7200px;
    position: relative;
}
.scroll-animation .single-column-20 {
    width: 500px;
    padding: 0 15px;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
@-moz-keyframes scroll {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    transform: translateX(-1750px);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes scrollLeft {
  0% {
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
  to {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}


.left-right{
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 499px){
.titles h2{
  font-size: 26px!important;
}
.left-right{
  padding-top: 0px;
  padding-bottom: 30px;
}
}

.list-styled-1 li{
    text-transform: capitalize!important;
}
ul.list-styled-3 {
    color: #262c31;
    list-style: none;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
}
ul.list-styled-3 li {
    margin-bottom: 3px !important;
    text-transform: capitalize!important;
}
.text1 p{
  font-weight: 500;
  font-size: 15px!important;
}
ul.list-styled-3 li:before {
    color: #0080cf;
    content: "\f192";
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: 0px;
}
.text2 h2{
  font-size: 20px;
  font-weight: 500;
}
/*about us strip*/
.bg-strip {
    position: relative;
    background: url(../../images-mist/images/best-business-guide-in-salem.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
    background-attachment: fixed;
}
.bg-strip2 {
    position: relative;
    background: url(../../images-mist/images/best-business-guide-in-salem.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
    background-attachment: fixed;
}
.bg-strip:before{
   position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
/*    background: rgb(36 46 145 / 82%) none repeat scroll 0 0;*/
    z-index: 0;
}
.strip-set .about-head h3{
    font-size: 17px;
    text-transform: capitalize;
    
}
.strip-set1 .about-head h1{
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 22px;
}
.strip-dv a{
    top: 0px;
}

.bg-strip3 {
    position: relative;
    background: url(../../images-mist/images/best-business-guide-in-salem.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
    background-attachment: fixed;
}
.bg-strip3 {
    position: relative;
    background: url(../../images-mist/images/best-business-guide-in-salem.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
    background-attachment: fixed;
}
.bg-strip3:before{
   position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
/*    background: rgb(36 46 145 / 82%) none repeat scroll 0 0;*/
    z-index: 0;
}
.strip-set1 .about-head h3{
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom:18px;
    text-align: justify;
}
.strip-dv a{
    top: 0px;
}

.test{
  padding-left: 0px!important;
  padding-right: 0px!important;
}
@media only screen and (max-width: 992px){
.strip-set .about-head h3{
  text-align: center;
}
.strip-dv{
  padding-top: 15px;
  text-align: center;
}
}

.enquiry-frm .form-inner .btn-box{
  font-weight: 600;
    font-size: 15px;
    color: #fff;
    padding: 8px 22px;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    background: #0080cf;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-radius: 21px;
}

.process-icon img:hover{
    transform: scale(1.3);
    color: #fff !important;
}
.padding1 h4{
  font-size: 20px!important;
  font-weight: 600!important;
  padding-top: 15px!important;
  padding-bottom: 15px!important;
}
.schedule-section {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}
/*strip*/
.marq-bg {
    padding: 36px 0;
    background: #0080cf;
}

.margquee-list {
    font-size: 20px;
    color: #fff;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    text-transform: capitalize;
}
.margquee-list1{
    font-size: 15px;
    color: #fff;
    line-height: 18px;
    font-weight: 500;
    text-align: center;
    margin: 8px;
    text-transform: capitalize;
}
.content-mob .sec-title h6{
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #0080cf;
    margin-bottom: 3px;
    text-align: center;
    padding: 0;
}
.content-mob .sec-title h6:before, .content-mob .sec-title h6:after{
  display: none;
}
.test{
  margin-top: 51px!important;
}
@media only screen and (max-width: 767px) {
.test{
  margin-top: 0px!important;
}
.text5 p{
  font-size: 14px!important;
}
}
/*.text5 p{
  font-size: 10px!important;
}*/
.color{
  background: #1243a9;
}
@media only screen and (max-width: 499px) {
    .left-right1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .margquee-list {
        line-height: 28px !important;
    }
}
.difference{
  padding-top: 30px;
  padding-bottom: 30px;
}
.images1{
  padding-top: 45px!important;
}
@media only screen and (max-width: 767px) {
  .images1{
    padding-top: 0px!important;
    }
    .difference1{
      padding-top: 0px!important;
      padding-bottom: 3px;
}
}
.difference1{
  padding-top: 30px;
}
@media only screen and (max-width: 992px) {
.images2{
  display: none;
}
.strip-set1 .about-head h3 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 18px;
    text-align: justify;
}
.award-section .content-box .text{
  font-size: 23px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.mobile{
  display: block;
}

.award-section .content-box h6{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 36px;
  color: #fff;
/*  font-weight: 700;*/
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.sample h6{
  font-size: 25px!important;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.sample2 h6{
  font-size: 25px!important;
  padding-bottom: 10px;
  text-align: center;
   font-weight: 600;
}
}
.sample h6{
  font-size: 30px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.sample p{
  text-align: justify;
}
.sample2 h6{
  font-size: 30px;
  padding-bottom: 10px;
  text-align: center;
   font-weight: 600;
}
.sign{
  display: flex;
  justify-content: center;
}
.mobile h2{
 text-align: center;
 color: #0080cf; 
 font-size: 23px;
 margin-top: 10px;
}
.sec-title4 h6 {
    position: relative;
    display: block;
    font-size: 29px;
    line-height: 40px;
    color: #000;
    font-weight: 600;
    padding-bottom: 13px;
    margin-bottom: 10px;
}
.sec-title4 h6:before {
    position: absolute;
    content: '';
    background: #cccccc;
    width: 130px;
    height: 2px;
    left: 0px;
    bottom: 0px;
}
.sec-title4 h6:after {
    position: absolute;
    content: '';
    background: #777777;
    width: 45px;
    height: 4px;
    left: 0px;
    bottom: 0px;
    transition: all 500ms ease;
    -webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.6) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    /* animation: shine 2s infinite; */
}
@media (max-width: 992px) {
    .sec-title4 h6:before {
        left: 29%;
    }
}
@media (max-width: 992px) {
    .sec-title4 h6:after {
        left: 43%;
    }
}
@media only screen and (max-width: 499px) {
    .titles1 h2 {
        font-size: 22px !important;
    }
}
.seo{
color: #0000 !important;
font-size: 0px !important;
margin: 0px !important;
padding: 0px !important; 
}
.seo-p{
  font-size: 16px;
  position: relative;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 0px;
    line-height: 30px;
    font-style: normal;
    transition: all 500ms ease;
    text-align: justify;
}
.seo-sml {
    font-size: 18px !important;
    color: #023aab !important;
    margin-bottom: 10px;
}
#content_block_53 .seo-p{
  text-align: justify;
}
.before-icon b:before{
  color: #0080cf;
    content: "\f152";
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    margin-right: 12px;
    position: relative;
    top: 0px;
}
@media only screen and (min-width: 1200px) {
.before-icon span{
  margin-left: 28px;
}
}
