
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;subset=devanagari,latin-ext');

body{
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #212112;
	background-position: center;
	background-repeat: repeat;
	background-size: 7%;
	background-color: #fff;
	overflow-x: hidden;
    transition: all 200ms linear;
}
::selection {
	color: #fff;
	background-color: #8167a9;
}
::-moz-selection {
	color: #fff;
	background-color: #8167a9;
}


/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 20px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	position: fixed;
}
.start-header.scroll-on .navbar-brand img{
	height: 24px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand img{
	height: 50px;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #fff;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #fff;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #fff !important;
	font-weight: 500;
    transition: all 200ms linear;
}

.nav-item.active .nav-link{
	color: #777 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:after{
	position: absolute;
	bottom: 0px;
	left: -10px;
	width: 20%;
	height: 2px;
	content: '';
	background-color: #fff;
	opacity: 0;
    transition: all 0.5s ease;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
	left: 0;
	width: 100%;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
   transition: all 0.5s ease;
}

/* #Primary style
================================================== */

.bg-light {
	background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
	width: 100%;
	display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  margin-top: 40px;
	transform: translateY(-50%);
	z-index: 20;
}

#switch,
#circle {
	cursor: pointer;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
#switch {
	width: 60px;
	height: 8px;
	border: 2px solid #8167a9;
	border-radius: 27px;
	background: #000;
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}

#circle {
	position: absolute;
	top: -11px;
	left: -13px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #000;
}
.switched {
	border-color: #000 !important;
	background: #8167a9 !important;
}
.switched #circle {
	left: 43px;
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	background: #fff;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color:rgb(61, 128, 190);
}




/* #Media
================================================== */

@media (max-width: 767px) { 

    .my-p{
  margin :0px 0px 0px ;
}
	.nav-item:after{
		display: none;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 15px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #fff;
		vertical-align: 0;
	}
	.dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 10px;
		left: -23px;
		width: 1px;
		height: 11px;
		content: "";
		border: none;
		background-color: #fff;
		vertical-align: 0;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	
}

/* #Link to page
================================================== */

.logo {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: block;
	z-index: 100;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
  filter: brightness(10%);
	transition: all 250ms linear;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header-eight {
  position: relative;
}
.main-topheader {
  background-color: #67b043;
  padding-left: 23.4%;
  padding-right: 5.5%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1599px) {
  .main-topheader {
    padding-left: 29%;
    padding-right: 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .main-topheader {
    padding-left: 28%;
  }
}
@media (max-width: 1340px) {
  .main-topheader {
    padding-left: 25%;
  }
}

@media (max-width: 767px) {
  .main-topheader {
    display: none;
  }
}
.main-topheader::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 87.2%;
  content: "";
  border-radius: 0;
  z-index: -1;
  background-color: #32242a;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1658 52" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H1618.27C1625.66 0 1632.45 4.07206 1635.92 10.5907L1658 52H0V0Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: top right;
  mask-size: cover;
}
@media (max-width: 1199px) {
  .main-topheader::after {
    width: 85%;
  }
}
@media (max-width: 992px) {
  .main-topheader::after {
    width: 100%;
    mask-position: top left;
  }
}
.main-header-eight__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.main-header-eight__info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-header-eight__info li {
  font-size: 14px;
  color: #fff;
  /*font-weight: 700;*/
}
.main-header-eight__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header-eight__info li a:hover {
  color: #3d80be;
  background-size: 100% 1px;
}
.main-header-eight__info__icon {
  font-size: 12px;
  margin-right: 2px;
  color: #3d80be;
}
.main-header-eight__right {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.main-header-eight__right .thm-btn--eight {
  background-color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  padding: 1px 12px;
}
.main-header-eight__right .thm-btn--eight:hover {
  color: #fff;
}
@media (max-width: 992px) {
  .main-header-eight__right .thm-btn--eight {
    display: none;
  }
}
.main-header-eight__social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 95px;
}
@media (max-width: 992px) {
  .main-header-eight__social {
    margin-right: 0;
  }
}
.main-header-eight__social a {
  font-size: 14px;
  color: #fff;
  transition: all 0.5s linear;
}
.main-header-eight__social a:hover {
  color: #3d80be;
}
a{
	text-decoration: none !important
}


.navbar-brand{
	z-index: 1;
  min-width: 345px;
  min-height: 111px;
  margin-top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 345 111" xmlns="http://www.w3.org/2000/svg"><path d="M264.455 4.78622e-05C270.243 4.78625e-05 275.634 2.94527 278.76 7.81628L345 111L-1.94078e-05 111L64.1076 8.016C67.211 3.03071 72.6675 4.78522e-05 78.5398 4.78525e-05L264.455 4.78622e-05Z"/></svg>');
    mask-repeat: repeat;
    mask-position-x: 0%;
    mask-position-y: 0%;
    mask-size: auto;
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: cover;
  background-color: rgba(247, 247, 247, 0.11);
  padding: 27px 0 0;
  margin-right: 36px;
}
.navbar-brand::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: calc(100% - 18px);
  width: calc(100% - 38px);
  content: "";
  border-radius: 0;
  z-index: -1;
  background-color: #fff;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 307 95" xmlns="http://www.w3.org/2000/svg"><path d="M239.452 4.31179e-05C243.898 4.31163e-05 248.036 2.27245 250.422 6.02443L307 95L-3.05176e-05 94.9999L60.6185 5.69877C63.0381 2.13431 67.0664 4.31778e-05 71.3745 4.31763e-05L239.452 4.31179e-05Z"/></svg>');
    mask-repeat: repeat;
    mask-position-x: 0%;
    mask-position-y: 0%;
    mask-size: auto;
  mask-repeat: no-repeat;
  mask-position: top center;
  mask-size: cover;
}

.navigation-wrap{
	background-color: #fff !important;
	padding: 0
}
.navigation-wrap::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 84%;
  content: "";
  border-radius: 0;
  z-index: -1;
  background-color:#3d80be;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1595 86" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H1533.49C1540.62 0 1547.2 3.78912 1550.78 9.94759L1595 86H0V0Z"/></svg>');
    mask-repeat: repeat;
    mask-position-x: 0%;
    mask-position-y: 0%;
    mask-size: auto;
  mask-repeat: no-repeat;
  mask-position: top right;
  mask-size: cover;
}

.main-menu-eight__call {
  position: relative;
  min-height: 40px;
  padding: 8px 0 0 51px;
  margin-left: 85px;
}
@media (max-width: 767px) {
  .main-menu-eight__call {
    display: none;
  }
}
.main-menu-eight__call__icon {
  width: 40px;
  height: 40px;
  background-color:#3d80be;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.main-menu-eight__call__icon i {
  display: inline-block;
  transition: all 600ms ease;
}
.main-menu-eight__call:hover .main-menu-eight__call__icon i {
  transform: scaleX(-1);
}
.main-menu-eight__call__title {
  line-height: 1;
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 700;
  color: #767395;
}
.main-menu-eight__call__text {
  color: var(--insur-black);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-menu-eight__call__text:hover {
  color: #3d80be;
  background-size: 100% 1px;
}
.main-menu-eight.main-menu .mobile-nav__toggler {
  color: #3d80be;
}


.start-header.scroll-on{
	padding: 0
}

.start-header.scroll-on .navbar-brand{
min-width: 270px;
  min-height: 86px;
}
.start-header.scroll-on .navbar-brand img {
  height: 35px;
  }
  footer{
  padding: 60px 0 30px;
  background: #000;
  position: relative;
}
.copyright{
  background: black;
  padding-bottom: 8px
  
}
.copyright p{

  color: #fff;
  text-align: center;
  margin: 0
}
footer .box{
  background: #fff;
  padding: 20px 40px;box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.45);
}
footer .box img{
  height: 60px;
  margin-bottom: 20px;
}
footer h4{
  font-size: 16px;
}
footer h3{
 font-size: 18px;color: #10468f;
  margin-bottom: 14px;
}
footer a{
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #5E6770;

}
footer p{
padding:0;  font-size: 15px;

  text-align: left;
  margin-bottom: 5px;
}

footer h1{
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  font-family: Cormorant,serif;
  color: #fff;
  text-align: left;
  margin-top: 50px;
  margin-bottom: 15px;
}
footer ul li{
  list-style: disclosure-closed;
  font-size: 15px;
  color: #fff;
   transition: 0.5s ease;
  margin-bottom: 10px;
}
footer ul li a{
  color: #fff !important;
  transition: 0.5s ease;
}
footer ul li:hover a{
	color: #3d80be !important;
  transition: 0.5s ease;
}
footer ul li:hover{
color: #3d80be !important;
 transition: 0.5s ease;
 margin-left: 10px;
}
footer ul{
  padding-left: 15px;
}

.topfooter{
	width: 80%;
  margin: auto;
  margin-bottom: -50px;
  position: relative;
  z-index: 999;
  padding: 30px 40px;
  background:#3d80be;
}
.topfooter p{
	color: #fff;
  font-size: 14px;
  margin-bottom: 0
}
.topfooter i{
	color: #fff
}
.topfooter a{
	color: #fff;font-size: 16px;margin-bottom: 0px;
}

.topfooter .contact-us {
  padding-left: 15px;
  margin-bottom: 0;
}
.topfooter .contact-icon {
  position: relative;
}

.topfooter .contact-us .contact-icon i {
  color: #fff;
  font-size: 36px;
}
.topfooter .contact-us .contact-info {
	color: #fff;
  margin-left: 20px;
}

.copyright{
	padding: 10px 0;
	background: #3d80be;
}
.animate-border {
  position: relative;
  display: block;
  width: 75px;
  height: 3px;
  background: #3d80be;
  overflow: hidden;
  margin-top: -10px;
  margin-bottom: 20px;
  
}





@media screen and (max-width: 1250px){
	.navbar-brand img {
  height: 40px;
}
.navbar-brand {
  min-width: 320px;
  min-height: 102px;
  }
  .main-menu-eight__call__icon {
  width: 35px;
  height: 35px;
}
.main-menu-eight__call__text{
	font-size: 16px
}
.nav-item{
	margin-left: 15px !important;
}
}

@media screen and (max-width: 1199px){
	.main-header-eight__right{
		margin-left: 30px;
	}
	.topfooter a{
		font-size: 15px;
	}
	.main-header-eight__info li {
  font-size: 13px;
}
  .main-topheader {
    padding-left: 28%;
  }
    .nav-item {
    margin-left: 13px !important;
    font-size: 14px;
  }
    .main-menu-eight__call__text {
    font-size: 14px;
  }
  .main-menu-eight__call__title{
  	font-size: 11px;
  }
    .main-menu-eight__call__icon {
    width: 30px;
    height: 30px;
  }
  .main-menu-eight__call {
  padding: 8px 0 0 40px;
}
.topfooter {
  width: 90%;
  }
}

@media screen and (max-width: 1100px){
	.nav-item {
    margin-left: 10px !important;
    font-size: 14px;
  }
    .main-header-eight__info li, .main-header-eight__social a {
    font-size: 12px;
  }
   .topfooter a {
    font-size: 14px;
  }
  .main-header-eight__social{
  	gap:14px;
  }
    .navbar-brand img {
    height: 30px;
  }
    .navbar-brand {
    min-width: 270px;
    min-height: 88px;
}
}

@media screen and (max-width: 1000px){
	  .topfooter {
    width: 90%;
    padding: 20px 0;
  }
.main-topheader, .main-menu-eight__call{
	display: none;
}
.navbar-brand{
	margin-top: 0;
}
  .navbar-brand {
    min-width: 225px;
    min-height: 74px;
  }
  .navbar-brand img {
    height: 26px;
  }
  .navigation-wrap::after{
  display: none;
  }
   .navigation-wrap{
   	background:#3d80be !important;
   }
  .navbar-nav{
  	margin-right: 40px !important;
  }
  .topfooter{
  	padding: 20px 40px;
  	width: 80%
  }
  .topfooter .col-md-12 .col-md-10{
padding-left: 0;
  }
  body, .navigation-wrap, .topfooter, footer, .copyright{
  	overflow-x: hidden;
  }
  .mt-mk{
  	margin-top: 10px;
  }
}

@media screen and (max-width: 767px){
	.nav-item::after{
		display: none !important;
	}
	  .navbar-nav {
    overflow: hidden;
  }
  .dropdown-item{
  	color: #fff
  }
  .start-header.scroll-on{
  	display: none;
  }
    .topfooter {
    padding: 20px 20px;
    width: 80%;
  }
    .topfooter {
    padding: 16px 14px;
    width: 91%;
  }
   .topfooter .col-md-12 .col-md-10 {
    padding-left: 15px;
  }
  .mt-402{
  	margin-top: 10px;
  }
  footer h1{
  	margin-top: 8px;
  }
  footer {
  padding: 70px 0 30px;
}
}






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

.bounce-animate2 {
    animation-name: float-bob2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob2;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob2;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob2;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate3 {
    animation-name: float-bob3;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob3;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob3;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob3;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate4 {
    animation-name: float-bob4;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob4;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob4;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob4;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate5 {
    animation-name: float-bob5;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob5;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob5;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob5;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate-slow {
    animation-name: float-bob5;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob5;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob5;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob5;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate-3 {
    animation-name: float-bob6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob6;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob6;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob6;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}



.about-area {
    background: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0 80px;
    background-size: cover;
    position: relative;
}

.about-area .abtpg2-about-thumb {
    margin: 0px 0 0 -128px;
    position: relative;
    z-index: 1;
}@keyframes moveLeftBounces-one {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(538px);
        transform: translateX(538px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


.abtpg2-icon-title h4 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    padding: 2px 0 10px;
    font-style: italic;
}
.about-button a {
    padding: 9px 14px 14px 42px;
    font-family: 'Fira Sans';
    font-weight: 500;
    color: #fff;
    background: #3D80BE;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid #3D80BE;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 38px;
}

.about-button a:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 30px;
    transition: .5s;
}

.about-button a i {
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 25px;
    text-align: center;
    background: #fff;
    color: #3D80BE;
    display: inline-block;
    margin-left: 14px;
    position: relative;
    top: 3px;
    transition: .5s;
}

.about-button a:hover {
    color: #3D80BE;
}

.about-button a:hover:before {
    width: 100%;
    left: 0;
}

.about-button a:hover i {
    background: #3D80BE;
    color: #fff;
}
.abtpg-section-title h2 {
  font-size: 36px;
  margin: 0;
  color: #fff;
}
.style-two.lines .line {
  position: relative;
  width: 103%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 5;
}.style-two.lines .line::after {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  width: 35px;
  top: 0;
  left: 0px;
  background-color: #3D80BE;
  -webkit-animation: moveLeftBounces-one 35s linear infinite;
  animation: moveLeftBounces-one 32s linear infinite;
  overflow: hidden;
}
.abtpg-section-title span {
  color: #3D80BE;
}
.abtpg-section-title p {
  opacity: 70%;
  padding: 13px 0 0;
  color: #fff;
}
.abtpg2-icon-title h4 span {
    color: #3D80BE;
}

.abtpg2-icon-list ul li {
    display: inline-block;
    list-style: none;
    padding: 14px 0 0px;
}

.abtpg2-icon-list ul li i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #3D80BE;
    display: inline-block;
    color: #fff;
    font-size: 11px;
    margin-right: 10px;
}

.abtpg2-icon-list ul li span {
    color: #fff;
}

.feature-area.style-two .abtpg2-icon-list ul li i {
    line-height: 22px;
}

.service-area {
    background: url(../images/service-bg-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 65px 0 0px;
    position: relative;
}

/*service box*/
.abtpg2-service-box {
    padding: 0px 25px 30px;
    background-color: #fff;
    border: 1px solid rgba(35, 35, 35, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    min-height: 410px
}

.abtpg2-service-box::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    background: url(../images/box-bg.png);
    transition: .5s;
    opacity: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
}
@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob2 {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}

@keyframes float-bob3 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes float-bob4 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes float-bob5 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes float-bob6 {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}


@keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}



/*--==============================================->
  <!-- abtpg Animation Dance -->
 ==================================================-*/
/**/
.dance3 {
    -webkit-animation: dance3 8s alternate infinite;
    animation: dance3 8s alternate infinite;
}

@keyframes dance3 {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

.dance {
    -webkit-animation: dance 2s alternate infinite;
    animation: dance 2s alternate infinite;
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}

.dance2 {
    -webkit-animation: dance2 4s alternate infinite;
    animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(25px, -25px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -25px, 25px);
    }
}

.em-service-title h2 {
    font-size: 20px;
    font-weight: 600;
    padding: 55px 0 42px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.em-service-title h2:before {
    position: absolute;
    content: "";
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 22px;
    margin: auto;
    width: 40px;
    height: 2px;
    background: #3D80BE;
}

.em-service-icon {
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    line-height: 76px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(35, 35, 35, 0.1);
    transition: .5s;
}

.em-service-icon img {
    transition: .5s;
    height: 45px;
}

.service-number h1 {
    font-size: 55px;
    opacity: 10%;
    position: absolute;
    top: 0;
    left: 10px;
    margin: auto;
}

.em-service-text p {
    transition: .5s;
}

/*abtpg box button*/

.service-button a {
    padding: 8px 18px 8px 24px;
    font-size: 15px;
    font-family: 'Fira Sans';
    border-radius: 22px;
    background-color: #ffffff;
    color: #232323;
    border: 1px solid rgba(35, 35, 35, 0.1);
    display: inline-block;
    margin-top: 11px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.service-button a:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #10102E;
    border-radius: 30px;
    transform: scale(0);
    transition: .5s;
}

.service-button a i {
    font-size: 18px;
    color: #3D80BE;
    display: inline-block;
    position: relative;
    top: 2px;
    transition: .5s;
}

/*abtpg button*/
.abtpg-button a {
    padding: 10px 14px 15px 42px;
    font-family: 'Fira Sans';
    font-weight: 500;
    color: #fff;
    background: #3D80BE;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid #3D80BE;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.abtpg-button a:before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 30px;
    transition: .5s;
}

.abtpg-button a i {
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 25px;
    text-align: center;
    background: #fff;
    color: #3D80BE;
    display: inline-block;
    margin-left: 14px;
    position: relative;
    top: 3px;
    transition: .5s;
}

.abtpg-button a:hover {
    color: #3D80BE;
}

.abtpg-button a:hover:before {
    width: 100%;
    left: 0;
}

.abtpg-button a:hover i {
    background: #3D80BE;
    color: #fff;
}

/*all hover*/
.abtpg2-service-box:hover .em-service-title h2,
.abtpg2-service-box:hover .em-service-text p {
    color: #fff;
}

.abtpg2-service-box:hover .em-service-text p {
    color: #fff;
}

/* .abtpg2-service-box:hover .em-service-icon img {
    filter: brightness(0) invert(1);
} */

.abtpg2-service-box:hover .em-service-icon {
    background: #3D80BE;
}

.abtpg2-service-box:hover .service-button a:before {
    transform: scale(1);
}

.abtpg2-service-box:hover .service-button a {
    color: #fff;
    border: 1px solid #fff;
}

.abtpg2-service-box:hover .service-button a i {
    color: #fff;
}

.abtpg2-service-box:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
}


/*style two upper*/
.upper .row.serivce-bg {
    position: relative;
    z-index: 1;
    top: 0;
    margin-top: -130px;
}

.mainheading h2{
font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  color: #000;
  text-align: center;
  margin-bottom: 70px;
}
.mainheading h2 span{
	color: #3d80be;
}

.firstsec .abtpg2-service-box {
 background: #3d80be;
}

.firstsec .em-service-title h2, .firstsec .em-service-text p{
	color: #fff
}
.service-number{
	display: none;
}

.page-title-div h5{
	color: #fff;
	font-size: 20px;font-family: "Cinzel Decorative", serif;
}
.page-title-div h2{
	font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
}
.about-area p{
	color: #fff;
	font-size: 16px;
	line-height: 28px;
	text-align: justify;
	margin-top: 20px;
}

.firstsec .em-service-title h2::before{
	background: #fff;
}
@media screen and (max-width: 1400px){
	.about-area .abtpg2-about-thumb{
		margin: 0px 0 0 -100px;
	}
}

@media screen and (max-width: 1300px){
	.about-area .abtpg2-about-thumb {
  margin: 0;
}
}

@media screen and (max-width: 1199px){
	.about-area .abtpg2-about-thumb {
  margin-left: -50px;
}
.abtpg2-service-box {
  padding: 0px 10px 30px;
  }
  .about-button a{
  	margin-top: 10px;
  }
}
@media screen and (max-width: 1099px){
	.about-area .abtpg2-about-thumb {
  margin-left: -35px;
}
}

@media screen and (max-width: 992px){
	.abtpg2-service-box{
		min-height: 330px;
		margin-bottom: 70px;
	}
	.service-area{
		padding: 50px 0 10px;
	}
	.mainheading h2{
		margin-bottom: 55px;
	}
	.about-area{
		padding: 70px 0 65px;
	}
	.page-title-div h5{
		margin-top: 27px;
	}
}


@media screen and (max-width: 767px){
	.mainheading h2 {
  font-size: 28px;
  margin-bottom: 40px;
}
.p-0 {
  padding: 15px !important;
}
 .service-area {
    padding: 30px 0 0px;
  }
  .abtpg2-service-box {
    min-height: auto;
    margin-bottom: 30px;
  }
  .em-service-title h2{
  	padding: 45px 0 35px;
  	margin-bottom: 0;
  }
   .about-area {
    padding: 40px 0 32px;
  }
  .page-title-div h2 {
  font-size: 33px;
}
.page-title-div h5{
	font-size: 19px;
}
.about-area .abtpg2-about-thumb {
    margin-left: 0;
  }
    .about-button a {
    margin-top: 0px;
  }
}



@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 20px 0;
  background: #3d80be;
}
.marquee span {
  text-transform: uppercase;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  -webkit-animation: marquee 14s linear infinite;
          animation: marquee 14s linear infinite;
  font-size: 30px;
  font-family: "Gravitas One", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-family: "Cinzel Decorative", serif;
  color: #fff;
  font-family: "Cormorant Infant", serif;
}

.fix {
  overflow: hidden;
}
.work-process-section{
	padding: 60px 0 !important;
	position: relative;
}

.work-process-items {
  margin-top: 30px;
}
.work-process-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  margin: 0 auto;
}
.work-process-items .icon .number {
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background-color: #3d80be;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
}
.work-process-items .content {
  margin-top: 30px;
}
.work-process-items .content h4 {
 margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}
.work-process-items .content.style-2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.work-process-items p{
	font-size: 16px;
	line-height: 28px;
}
.process-work-wrapper {
  position: relative;
}
.work-process-items .icon img{
	height: 45px;
}
.process-work-wrapper .line-shape {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
}
.process-work-wrapper .line-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  .process-work-wrapper .line-shape {
    display: none;
  }
}
.section-title h2{
	font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
.section-title h2 span{
	color: #3d80be;
}

.tech{
	padding: 60px 0 70px;
	background: #000;
	position: relative;
}

.tech .section-title h2{
	color: #fff !important;
}
.offer-items {
  margin-top: 65px;
  position: relative;
  text-align: center;
  z-index: 9;
  padding: 30px 10px 10px;
  padding-top: 1px;
}
.offer-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #3d80be;
  opacity: 0.8;
  border-radius: 8px;
  top: 0;
  z-index: -1;
}
.offer-items .icon {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 50%;
  background:#3D80BE ;
  margin: 0 auto;
  margin-top: -35px;
  transition: all 0.4s ease-in-out;
}
.offer-items .content {
  margin-top: 20px;
}
.offer-items .content h5 {
  color: #fff;
}
.offer-items .shape-top {
  position: absolute;
  top: 50%;
  right: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.offer-items .shape-bottom {
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.offer-items:hover .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}
.offer-items:hover .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}
.offer-items:hover .icon {
  background-image: none;
  background-color: #3d80be;
  transform: rotateY(360deg);
}
.offer-items:hover .icon svg path {
  fill: #fff;
}
.offer-items.active .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}
.offer-items.active .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}
.offer-items.active .icon {
  background-image: none;
  background-color: #3d80be;
  transform: rotateY(360deg);
}
.offer-items.active .icon svg path {
  fill: #fff;
}

.offer-items .icon img{
	height: 55px;
}

.post-slide{
	margin: 10px;
}

.happy-clients{
	padding: 70px 0;
	background: url(../images/service-bg-2.webp);
	background-size: cover;
	position: relative;
}
.happy-clients .post-slide{
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
}

.bubble-dotted {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.bubble-dotted .dotted{
  position: absolute;
  border-radius: 50%;
}

.bubble-dotted .dotted-1{
  width: 11px;
  height: 11px;
  left: 100px;
  top: 50%;
  -webkit-animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 15s linear infinite,sideWays 2s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-2{
  width: 7px;
  height: 7px;
  left: 240px;
  top: 40%;
  -webkit-animation: animateBubble 10s linear infinite,sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 10s linear infinite,sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 10s linear infinite,sideWays 4s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-3{
  width: 11px;
  height: 11px;
  left: 460px;
  top: 30%;
  -webkit-animation: animateBubble 18s linear infinite,sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 18s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 18s linear infinite,sideWays 2s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-4{
  width: 16px;
  height: 16px;
  left: 430px;
  top: 90%;
  -webkit-animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  -moz-animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-5{
  width: 6px;
  height: 6px;
  left: 50%;
  top: 50%;
  -webkit-animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-6{
  width: 9px;
  height: 9px;
  left: 70%;
  top: 230px;
  -webkit-animation: animateBubble 11s linear infinite,sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 11s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 11s linear infinite,sideWays 2s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-7{
  width: 6px;
  height: 6px;
  left: 65%;
  top: 30%;
  -webkit-animation: animateBubble 10s linear infinite,sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 10s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 10s linear infinite,sideWays 2s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-8{
  width: 6px;
  height: 6px;
  left: 85%;
  top: 35%;
  -webkit-animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  -moz-animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 12s linear infinite,sideWays 3s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-9{
  width: 13px;
  height: 13px;
  left: 90%;
  top: 40%;
  -webkit-animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 19s linear infinite,sideWays 4s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-10{
  width: 12px;
  height: 12px;
  left: 80%;
  top: 70%;
  -webkit-animation: animateBubble 16s linear infinite,sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 16s linear infinite,sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 16s linear infinite,sideWays 2s ease-in-out infinite alternate;
}

.bubble-dotted .dotted-1{
  background: -webkit-linear-gradient(0deg, #58f106, #23c10e 50%);
}

.bubble-dotted .dotted-2{
  background: -webkit-linear-gradient(0deg, #862ff1, #163fae 50%);
}

.bubble-dotted .dotted-3{
  background: -webkit-linear-gradient(0deg, #ff5d06, #ffc806 50%);
}

.bubble-dotted .dotted-4{
  background: -webkit-linear-gradient(0deg, #d406b7, #fc1a66 50%);
}

.bubble-dotted .dotted-5{
  background: -webkit-linear-gradient(0deg, #fe5f12, #fec412 50%);
}

.bubble-dotted .dotted-6{
  background: -webkit-linear-gradient(0deg, #d622bf, #fb196a 50%);
}

.bubble-dotted .dotted-7{
  background: -webkit-linear-gradient(0deg, #60f112, #30c719 50%);
}

.bubble-dotted .dotted-8{
  background: -webkit-linear-gradient(0deg, #fe5f12, #fec412 50%);
}

.bubble-dotted .dotted-9{
  background: -webkit-linear-gradient(0deg, #842af1, #0f40aa 50%);
}

.bubble-dotted .dotted-10{
  background: -webkit-linear-gradient(0deg, #58f106, #23c10f 50%);
}

@-webkit-keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@-moz-keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@keyframes animateBubble{0%{margin-top:20%}100%{margin-top:-30%}}@-webkit-keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}@-moz-keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}@keyframes sideWays{0%{margin-left:0}100%{margin-left:25px}}



.testimonialcard p{
	text-align: center;
}
.testimonialcard h3{
	text-align: center;
	font-size: 30px;
	color: #3d80be;font-family: "Cinzel Decorative", serif;
}
.testimonialcard h5{
	text-align: center;font-family: "Cinzel Decorative", serif;
	font-size: 25px;
}
.testimonials{
	padding: 50px 0px 30px;
	position: relative;
}


@media screen and (max-width: 1199px){
	.process-work-wrapper .line-shape{
		width: 672px;
	}
}


@media screen and (max-width: 991px){
	.work-process-section {
  padding: 40px 0 !important;
}.tech {
  padding: 45px 0 60px;

}

.happy-clients {
  padding: 45px 0
  }
  .testimonials {
  padding: 40px 0px 20px;
}
}

.dnms{
	display: none;
}
@media screen and (max-width: 767px){
	 .work-process-section {
    padding: 20px 0 30px !important;
  }
  .section-title h2{
  	margin-bottom: 0;
  	font-size: 32px;
  }.work-process-items .content h4 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
}
.dnms{
	display: block;
}
.dnmsw{
	display: none;
} .tech {
    padding: 30px 0 35px;
  }  .happy-clients {
    padding:25px 0 30px;
  }
  .offer-items{
  	margin-top: 48px;
  }  .testimonials {
    padding: 30px 0px 20px;
  }
.marquee span{
	font-size: 20px;
}.work-process-items .content.style-2 {
  margin-top: 0;
  margin-bottom: 0;
}
.work-process-items p{
	margin-bottom: 0
}
.work-process-items .content {
  margin-top: 15px;
}
}

.mobilefixedbtn{
	position: fixed;
  z-index: 9999999999999;
  bottom: 100px;
  background: #3d80be;
  color: #fff;
  padding: 23px 26px 10px 10px;
  border-radius: 320px;
  right: -20px;
  display: none;
  border: 1px solid #fff;
}
.mobilefixedbtn ul{
	margin-left: 0;
  padding-left: 0;
}
.mobilefixedbtn ul li{
	list-style: none;
	margin-bottom: 10px;
}
.mobilefixedbtn a{
	color: #fff;
	text-decoration: none;
}
.mobilefixedbtn a img{
	height:20px
}
@media screen and (max-width: 767px){
	.mobilefixedbtn{
		display: block;
	}
	.about-area{
		overflow: hidden;
	}
	.testimonialcard h3{
		font-size: 28px
	}
	.testimonialcard h5{
		font-size: 20px;
	}
}

footer{
	background: url('../images/16.webp');
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.copyright{
	border-top: 1px solid #fff;
}
















.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  font-family: "Cinzel Decorative", serif;
}
.nav-item{

}
/*About Us Page*/

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(50, 100, 245, .15), 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15);
        box-shadow: 0 0 0 0 rgba(50, 100, 245, .15), 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15)
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15), 0 0 0 60px rgba(50, 100, 245, 0);
        box-shadow: 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15), 0 0 0 60px rgba(50, 100, 245, 0)
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(50, 100, 245, .15), 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15);
        box-shadow: 0 0 0 0 rgba(50, 100, 245, .15), 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15)
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15), 0 0 0 60px rgba(50, 100, 245, 0);
        box-shadow: 0 0 0 20px rgba(50, 100, 245, .15), 0 0 0 40px rgba(50, 100, 245, .15), 0 0 0 60px rgba(50, 100, 245, 0)
    }
}

@-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

.about-img-wrap{
    position: relative;
    display: block;
    overflow: hidden;
}
.about-img-wrap img{
    display: block;
}
.about-us-img .about-single-img{
    position: relative;
    z-index: 2;
}
.about-us-img .about-us-bg{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85%;
    z-index: 1;
}

.animate-border {
    position: relative;
    display: block;
    width: 115px;
    height: 3px;
    background: #3d80be;
    overflow: hidden;
}
.animate-border:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    left: 15px;
    bottom: 0;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    -webkit-animation: animborder 2s linear infinite;
    animation: animborder 2s linear infinite;
}

@-webkit-keyframes animborder {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(113px);
        transform: translateX(113px);
    }
}

@keyframes animborder {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(113px);
        transform: translateX(113px);
    }
}
.z-index {
    z-index: 9;
}
.check-list-info li {
  position: relative;
  padding: .5rem 0 .5rem 1.875rem;
  font-size: 1rem;
  line-height: 1.5;
}.check-list-info li::before {
  position: absolute;
  top: 10px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #3d80be;
}
.about-with-promo h2 span, .why-choose-us h2 span {
  color: #3d80be;
}
.promo-item h5{
  font-family: 'Cormorant';
  font-size: 24px;
}
.about-with-promo{
  padding: 0px 0 50px;
}
.about-with-promo2{
padding: 60px 0 50px;background: url(../images/service-bg-2.webp);
    background-size: auto;
  background-size: cover;
  position: relative;
}
.about-with-promo p{
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  margin-top: 20px;
  margin: 13px;
}
.about-with-promo h2{
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  text-align: left;
  margin-bottom: 20px;
}
.why-choose-us strong{
  font-size: 22px;
}
.why-choose-us h2{
  font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  text-align: center;
  margin-bottom: 20px;
}
.color-secondary{
  font-size: 16px;
  font-family: "Cinzel Decorative", serif;
}
.gradient-overlay {
  position: relative;
  width: 100%;
  padding: 40px 0px;
  display: block;
}
.gradient-overlay::before {
  position: absolute;
  content: '';
  background:rgb(0,0,0,0.8) !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.custom-breadcrumb ol {
  margin-bottom: 0;
}
.custom-breadcrumb ol li.breadcrumb-item {
  padding-left: 0;
}
.custom-breadcrumb ol li a, .custom-breadcrumb ol li.breadcrumb-item.active {
  color: #ffffff;
  opacity: 0.7;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  color: #6c757d;
  content: "/";
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-family: themify;
  content: "»";
  font-size: 10px;
  color: #ffffff;
  font-size: 20px;
}

.about-with-promo2 h2{
 font-size: 22px; 
}


.promo-bottom-shape{
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
}
.promo-bottom-shape img{
    width: 100%;
}
.check-list-info {
    margin-top: -0.5em;
    margin-bottom: -0.5em;
}
.check-list-info li {
    position: relative;
    padding: .5rem 0 .5rem 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
}
.promo-item:hover .promo-img img{
  filter: brightness(6);
}
.check-list-info li:before {
    position: absolute;
    top: 10px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight:900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #e80566;
}
.promo-col:nth-child(2n+2) {
    margin-top: 30px;
}
@media (min-width: 320px) and (max-width: 575px){
    .promo-col:nth-child(2n+2) {
        margin-top: 0;
    }
}
.promo-item {
    border-radius: 10px;
    -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.07));
    background-color: #ffffff;
    padding: 30px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-item:before {
    content: '';
    position: absolute;
    right: -65px;
    width: 95px;
    height: 95px;
    top: -55px;
    border-radius: 50px;
    background-color: rgb(61, 128, 190);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: -1;
}
.promo-item:hover:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: rgb(61, 128, 190);
}
.promo-item:hover h5, .promo-item:hover p {
    color: #fff;
}
.promo-img{
    margin-bottom: 15px;
}
.emergency-btn{
    background: #3d80be;
    padding: 8px 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    margin-top: 24px;
    display: block;
    text-align: center;
}
.emergency-btn:hover{
    color: #ffffff;
    background: #3d80be;
}
.list-with-icon li {
    margin-bottom: 20px;
}
.about-with-promo, .about-with-promo2, .why-choose-us{
  overflow: hidden;
  position: relative;
}

.why-choose-us{
  padding: 60px 0;
}
.contactpage{
  padding: 60px 0;
}
.mbnew-widget_icon{
  position: absolute;
  width: auto;
  top: -2px;
  right: 5px;
}
.mbnew-timelist-li-title a{
  font-size: 16px;
}
.mbnew-widget_icon .mbnew_icon{
  font-size: 25px;
  padding: 15px;
  border-radius: 50%;
  display: inline-block;
    line-height: 1;
    transition: all .3s;
  text-align: center;
  color: #fff;
  background-color: #3d80be;
}
.inner-box_area .col-md-6.col-lg-4:not(:first-child) .mbnew-widget_icon .mbnew_icon{
  background-color: #3d80be;
}
.mbnew-widget_icon .mbnew_icon i{
  width: 1em;
    height: 1em;
    position: relative;
    display: block;
}
.inner-box_style{
  width: 100%;
  height: 100%;
  padding: 45px 45px 45px 45px;
  clip-path: polygon( 4.596% 0.565%,4.596% 0.565%,3.947% 0.895%,3.336% 1.309%,2.766% 1.801%,2.24% 2.364%,1.762% 2.994%,1.336% 3.686%,0.966% 4.433%,0.655% 5.23%,0.407% 6.072%,0.226% 6.954%,0.226% 6.954%,0.176% 7.633%,0.134% 9.052%,0.099% 11.243%,0.071% 14.238%,0.051% 18.072%,0.037% 22.777%,0.03% 28.386%,0.029% 34.931%,0.034% 42.447%,0.045% 50.966%,0.113% 93.462%,0.747% 95.156%,0.747% 95.156%,0.969% 95.705%,1.219% 96.23%,1.495% 96.729%,1.795% 97.201%,2.119% 97.644%,2.466% 98.057%,2.834% 98.439%,3.221% 98.786%,3.628% 99.099%,4.052% 99.376%,5.094% 100%,94.968% 100%,96.009% 99.376%,96.009% 99.376%,96.433% 99.099%,96.84% 98.786%,97.228% 98.439%,97.595% 98.057%,97.942% 97.644%,98.266% 97.201%,98.566% 96.729%,98.842% 96.23%,99.092% 95.705%,99.314% 95.156%,99.948% 93.462%,100.016% 62.259%,100.016% 62.259%,100.026% 56.181%,100.03% 50.744%,100.027% 45.939%,100.017% 41.754%,100.002% 38.18%,99.98% 35.207%,99.952% 32.824%,99.919% 31.023%,99.88% 29.793%,99.835% 29.123%,99.835% 29.123%,99.782% 28.765%,99.722% 28.409%,99.657% 28.055%,99.585% 27.703%,99.506% 27.353%,99.421% 27.006%,99.33% 26.662%,99.233% 26.32%,99.129% 25.982%,99.02% 25.646%,99.02% 25.646%,98.694% 24.858%,98.32% 24.143%,97.887% 23.492%,97.382% 22.896%,96.796% 22.344%,96.115% 21.827%,95.33% 21.335%,94.428% 20.858%,93.398% 20.387%,92.228% 19.911%,92.228% 19.911%,90.917% 19.385%,89.803% 18.853%,88.861% 18.284%,88.064% 17.642%,87.387% 16.895%,86.802% 16.008%,86.285% 14.949%,85.808% 13.684%,85.345% 12.179%,84.871% 10.401%,84.871% 10.401%,84.719% 9.788%,84.565% 9.183%,84.412% 8.598%,84.262% 8.041%,84.118% 7.522%,83.984% 7.05%,83.863% 6.635%,83.757% 6.286%,83.669% 6.013%,83.603% 5.825%,83.603% 5.825%,83.404% 5.38%,83.153% 4.909%,82.858% 4.424%,82.528% 3.935%,82.171% 3.455%,81.797% 2.994%,81.414% 2.564%,81.031% 2.177%,80.656% 1.843%,80.298% 1.575%,80.298% 1.575%,79.621% 1.141%,78.889% 0.795%,77.849% 0.527%,76.251% 0.327%,73.84% 0.186%,70.367% 0.092%,65.577% 0.037%,59.22% 0.01%,51.043% 0.001%,40.794% -0%,40.794% 0%,31.784% 0.009%,24.453% 0.022%,18.619% 0.04%,14.103% 0.066%,10.725% 0.104%,8.304% 0.156%,6.661% 0.225%,5.615% 0.315%,4.987% 0.427%,4.596% 0.565% );
}
.inner-box_1{
  background-color: #3d80be;
}
.inner-box_style .mbnew-heading_title{
  margin-bottom: 15px;
  padding-bottom:20px;
  border-bottom: 1px solid #FFFFFF33;
}
.inner-box_style .mbnew-heading_title h5{
  font-size: 26px;
    line-height: 32px;
  margin: 0;
  color: #fff;
}
.mbnew-timelist-list{
  padding-left: 0;
  margin-left: 0;
}
.inner-box_1 ul.mbnew-timelist-list li{
  padding: 5px 0;
}
.inner-box_1 ul.mbnew-timelist-list li .mbnew-timelist-li-title{
  font-weight: 400;
    font-size: 15px;
  color: #fff;
}
.inner-box_1 ul.mbnew-timelist-list .mbnew-timelist-li-value{
  float: left;
  color: #fff;
}
.inner-box_1 ul.mbnew-timelist-list .mbnew-timelist-li-value a{
  color: #fff
}
.inner-box_1 ul.mbnew-timelist-list li{
  list-style: none;
}
.mbnew-timelist-li-title a{
  color: #fff
}
.inner-box_style{
  padding-bottom:20px;
}
.contactform{
  padding:60px 0;background: url(../images/service-bg-2.webp);
    background-size: auto;
  background-size: auto;
  background-size: cover;
  position: relative;

}
.contactform{
  overflow: hidden;
}
.contactform .form{
  padding: 40px 30px 24px;
  background: #fff;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
}
.contactform .form h2{

  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  color: #000;
  text-align: left;
  margin-bottom: 20px;

}
.contactform h2 span {
  color: #3d80be;
}





@media screen and (max-width: 991px){
  .page-header-content{
    padding-top: 0rem !important;
  }
  .contactpage .position-relative, .contactform .form{
    margin-bottom: 30px;
  }
  .contactpage{
    padding-bottom: 30px;
  }

}


.about-button button{
  background: transparent;
  border: transparent;
  color: #fff;
}

.about-button:hover button{
 color: #3d80be;
}
.contactform .about-button a{
  margin-top: 20px;
}
@media screen and (max-width: 767px){
  .gradient-overlay{
    padding: 25px 0;
  }
   .gradient-overlay h1{
    font-size: 24px;
  }
  .custom-breadcrumb ol li.breadcrumb-item {
  padding-left: 0;
  font-size: 14px;
} .contactpage {
    padding: 40px 0 10px;
  }
  .contactform {
  padding: 40px 0;
}
.contactform .form h2{
  font-size: 27px;
}
.mainheading h2{
  font-size: 22px;
}
.em-service-title h2 {
  font-size: 17px;
  }
    .page-title-div h5 {
    font-size: 16px;
  }
  .section-title h2{
    font-size: 26px
  }
   .work-process-section {
    padding: 30px 0 30px !important;
  }.testimonialcard h3 {
    font-size: 20px;
  }  .testimonialcard h5 {
    font-size: 18px;
  }
    .page-title-div h2 {
    font-size: 27px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  footer h1 {
  font-size: 26px;
}
.about-with-promo h2 {
  font-size: 24px;
  }
  .color-secondary {
  font-size: 15px;
}
.about-with-promo2 h2 {
  font-size: 19px;
}
.about-with-promo2 p{
  margin-top: 7px;

}
.why-choose-us {
  padding: 35px 0;
}
.why-choose-us strong {
  font-size: 18px;
}
.why-choose-us h2{
  font-size: 26px;
}
.promo-item p{
  margin-bottom: 0;
}
.about-with-promo {
  padding: 30px 0;
}
footer{
  background: black;
}
}
/*ABout Us End*/


.servicespromo .h66{
  margin-top: 20px;
}
.servicespromo p{
  margin-top: 10px;
}

/*=========================================
            23. PRICING CSS
============================================*/
.card.single-pricing-pack{
    transition: all 0.2s ease 0s;
    box-shadow: 0 0 0 1px #ebebeb;
    border: none;
    border-top: 4px solid transparent;
}

.card.single-pricing-pack:hover {
    z-index: 2;
    border-radius: 1rem !important;
}
.single-pricing-pack:hover {
    box-shadow: 0 1rem 3rem rgba(31,45,61,.125)!important;
    transform: translate(0, -5px);
    border-top: 4px solid #3d80be;
}
.single-pricing-pack .card-body {
    color: rgb(132, 146, 166);
    flex: 1 1 auto;
    padding: 1.5rem;
}
.pricing-header{
    position: relative;
    background: transparent;
}
.price-name h4{
    color: #3d80be;
}
.price-name h5{
  font-size: 18px;
}
.pricing-header .price{
    color: #3d80be;
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
.pricing-header .price span{
    font-size: 20px;
}
.font-weight-bolder{
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.pricing-feature-list li {
    font-size: 14px;
    line-height: 30px;
}
.pricing-feature-list li span {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a;
    font-size: 13px;
}
/*price new style*/

.popular-price{
    box-shadow: 0 1rem 3rem rgba(31,45,61,.125)!important;
    transform: translate(0, -5px);
    border-top: 4px solid #3d80be !important;
}
.pricing-value{
    position: relative;
    display: block;
}
.pricing-value.card-footer{
    border-color: #ebebeb;
    background: transparent;
}
.pricing-value.card-footer::after {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 2.875rem;
    display: block;
    content: "\e628";
    font-size: 1.375rem;
    font-family: "themify";
}
.pricing-value.card-footer:hover {
    background: #3d80be;
    color: #ffffff;
}
.pricing-value.card-footer:hover::after {
    right: 1.875rem;
    color: inherit;
}
.pricing-value .card-price {
    font-size: 2.5rem;
    font-weight: 500;
}
a.pricing-value {
    text-decoration: none;
    color: #757575;
}
.pricing-section{
  padding: 70px 0;
  position: relative;
}
.pricing-section .about-button a{
margin-top: 0
}
.pricing-section ul li{
  font-size: 16px;
  line-height: 24px;
  color: #212112;
  text-align: center;
  margin-top: 10px;
}
.single-pricing-pack .card-body{
  padding-top: 10px;min-height: 490px;
}
.pricing-header{
  padding-bottom: 10px !important;
}
.price-name h4{

}.lead {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  margin-top: 20px;
}
.pricing-section h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  font-family: "Cinzel Decorative", serif;
  text-align: left;
  margin-bottom: 20px;
  text-align: center;
}
.pricing-section h2 span {
  color: #3d80be;
}
.seo h2{
  font-size: 30px;
}
.seo .mt-10{
  margin-top: 5px;
}
.servicep ul{
  padding-left: 15px;
}
.servicep ul li{
  list-style: disclosure-closed;
  margin-bottom: 7px;
}
.servicep ul li::marker{
  color: #3d80be;
}
.price2div .card-body{
  min-height: auto;
}
.card.single-pricing-pack{
  padding-left: 10px;
  padding-right: 10px;
}
.price-name h4{
  font-size: 22px;
}
.price3div .card-body {
  min-height: 290px;
}

@media screen and (max-width: 767px){
   .about-with-promo2 h2 {
    font-size: 19px !important;
  }  .color-secondary {
    font-size: 14px;
  }.pricing-section {
  padding: 35px 0 15px;
  position: relative;
}.card.single-pricing-pack {
  margin-bottom: 20px;
}
.single-pricing-pack .card-body{
  min-height: auto;
}
}


.carousel-control-prev{
  width: 45px;
  height: 45px;
  top: 47%;
  padding: 10px;
  background-color: #0089cf;
  left: 10px;
  border-radius: 42px;
}

.carousel-control-next{
  width: 45px;
  height: 45px;
  top: 49%;
  padding: 10px;
  background-color: #0089cf;
  right: 10px;
  border-radius: 42px;
}
.offer-items:hover .shape-top{
  display: none;
}
.offer-items:hover .shape-bottom{
  display: none;
}

@media screen and (max-width:767px){
.carousel-control-next, .carousel-control-prev{
top:37%;
}
}

.my-p{
  margin :40px 0px 0px ;
}









