* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* <style>
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  font-family: "Poppins", sans-serif;
  </style>     */

body {
  font-family: "Poppins";
  overflow-x:hidden;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0px;
  list-style: none;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.eot");
  src: url("../fonts/Poppins-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Light.woff2") format("woff2"),
    url("../fonts/Poppins-Light.woff") format("woff"),
    url("../fonts/Poppins-Light.ttf") format("truetype"),
    url("../fonts/Poppins-Light.svg#Poppins-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff"),
    url("../fonts/Poppins-Regular.ttf") format("truetype"),
    url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff"),
    url("../fonts/Poppins-Medium.ttf") format("truetype"),
    url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.eot");
  src: url("../fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.woff") format("woff"),
    url("../fonts/Poppins-SemiBold.ttf") format("truetype"),
    url("../fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.eot");
  src: url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff"),
    url("../fonts/Poppins-Bold.ttf") format("truetype"),
    url("../fonts/Poppins-Bold.svg#Poppins-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.wrapper{
  margin-top:90px;
}

/* btns */

.read-more-btn{
  background: linear-gradient(89deg, #054d65 0%, #1f8bad 51%, #058bb7 100%);
  color:#fff;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  padding:14px 33px;
  border-radius:50px;
  display:inline-block;
  transition:0.3s ease-in-out all 0s;
}

.read-more-btn:hover{
  background: linear-gradient(89deg, #058bb7 0%, #1f8bad 51%, #054d65 100%);
  transition:0.3s ease-in-out all 0s;
}

.contact-btn{
  background: linear-gradient(89deg, #1b99cd 0%, #57d7f7 51%, #6dcbf1 100%);
}

.contact-btn:hover{
  background: linear-gradient(89deg, #6dcbf1 0%, #57d7f7 51%, #1b99cd 100%);
}

/* header */

.menu ul{
  margin-bottom:0px;
}

.menu ul li{
 float: left;
 margin:0px 25px;
 font-size: 16px;
font-weight: 400;
position: relative;
}

.menu ul li a{
   color:#fff;
   padding:38px 0px;
   display:block;
   transition:0.5s ease-in-out all 0s;
}

.error404 .menu ul li a{
	color:#000;
}

.menu ul li .active {
  color: #fff;
}

.menu ul li a:hover {
  color: #41b6e6;
}

.menu ul li a:after {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #41b6e6;
  border-radius:5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

.menu ul li a.active:after {
  transform: scaleX(1);
}

.menu-bar ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu ul li a.active:after, .menu .current-menu-item a:after, .menu .current-menu-parent a:after {
  transform: scaleX(1);
}

.sub-menu .current_page_item a:after, .sub-menu .menu-item a:hover:after{
	transform: scaleX(0) !important;
}

.menu-bar{
  position:fixed;
  z-index:2;
  width:100%;
  padding:5px 0px;
}

.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	transition:all 500ms ease-in-out;
	-moz-transition:all 500ms ease-in-out;
	-webkit-transition:all 500ms ease-in-out;
	z-index: 999;
}
.fixed-header {    
	top: 0px;
	animation: smoothScroll 1s;
	z-index: 999;
  transition:all 500ms ease-in-out;
}

.fixed-header .menu-bar{
  background:#fff;
  box-shadow:0 0 4px #aeaeae;
}

.fixed-header .menu ul li a{
  color:#000;
  transition:0.5s ease-in-out all 0s;
}

.fixed-header .menu .current-menu-item a{
  color: #41b6e6;
}

.fixed-header .sub-menu .current_page_item a{
	color:#fff;
}

.fixed-header .sub-menu li a{
	color: #fff !important;
}

.fixed-header .menu ul li a:hover{
  color: #41b6e6;
}

.logo img{
  width:142px;
  transition:all 500ms ease-in-out;
  height:inherit;
}

.fixed-header .logo img{
 width:100px;
 height:inherit;
 transition:all 500ms ease-in-out;
}

.menu-bar .read-more-btn{
  background:#41b6e6;
}

.menu-bar .read-more-btn:hover{
 background:#054d65;
}

/* banner-sec */

.banner-sec{
  position: relative;
  z-index:1;
}

.banner-sec:before{
  position:absolute;
  content:"";
  top:0px;
  left:0px;
  z-index:0;
  background: rgb(3,32,41);
  background: linear-gradient(90deg, rgba(3,32,41,0.8883928571428571) 0%, rgba(3,32,41,0.24413515406162467) 50%, rgba(255,255,255,0) 100%);
  width:100%;
  height:100%;
}

.banner-sec:after{
 position:absolute;
 content:"";
 background:url(../images/banner-bottom-shape.png) no-repeat 0 0;
 width:100%;
 height:100%;
 background-position:center bottom;
 bottom:0px;
 background-size:contain;
 z-index:0;
}

.banner-part{
  position:absolute;
  max-width:500px;
  top:50%;
  transform:translateY(-50%);
  z-index:1;
}

.banner-heading{
font-size: 50px;
color: #ffffff;
font-weight: 700;
line-height:55px;
}

.banner-para{
font-size: 16px;
line-height: 24px;
color: #ffffff;
font-weight: 400;
padding:20px 0px;
}

/* about-us-sec */

.about-us-sec{
  position: relative;
  z-index:1;
}

.about-us-sec:before{
  position:absolute;
  content:"";
  background:url(../images/about-star.png) no-repeat 0 0;
  width:100%;
  height:100%;
  background-position:top center;
  z-index:-1;
  top:-143px;
  left:0px;
}

.about-img{
  border: 2px solid #41b6e6;
  border-radius:50%;
  border-style:dashed;
  padding:35px;
}

.main-heading{
font-size: 36px;
color: #11111f;
font-weight: 700;
padding-bottom:10px;
}

.about-para{
font-size: 15px;
line-height: 30px;
color: #11111f;
font-weight: 400;
padding-bottom:30px;
}

.home-point-sec {
    padding-left: 23px;
    margin-bottom: 5px;
    display: inline-block;
}

.home-point-sec li {
    font-size: 15px;
    line-height: 27px;
    color: #11111f;
    font-weight: 400;
    margin-bottom: 8px;
    position: relative;
}

.home-point-sec li:before {
    content: "";
    position: absolute;
    background: url(../images/check.png) no-repeat 0 0;
    width: 16px;
    z-index: 1;
    height: 16px;
    top: 7px;
    left: -26px;
    background-size: contain;
}

/* plan-mgmt-sec */

.plan-mgmt-sec{
  background:url(../images/plan-mgmt-bg.png) no-repeat 0 0;
  padding:120px 0px 90px 0px;
  position: relative;
  z-index:1;
  width:100%;
  background-size:cover;
  margin-top:120px;
}

.image-icon-sec{
	position:relative;
}

.plan-mgmt-imt-part{
  position: relative;
}

.plan-img{
  position:absolute;
  top:-85px;
}


.big-circle {
  height: 463px;
  width: 463px;
  position: relative;
  border: 2px solid #41b6e6;
  border-style:dashed;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
  top: -160px;
  left: 11%;
}
.icon-block {
  width: 76px;
  height: 76px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-color: #41b6e6;
  border: 2px solid #29a6d9;
  box-shadow: 0 0px 8px 1px #29a6d9;
}
.icon-block img {
  margin: 0px auto;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.icon-block:first-child {
  top: 34%;
  left: 3%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 34%;
  right: 3%;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  background-color: #08536c;
  border: 2px solid #29a6d9;
  box-shadow: 0 0px 8px 1px #2684ab;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}



/* keyframe animation */

 @keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}


/* choise-sec */

.icon-text-box{
  border: 1px solid #41b6e6;
  padding:30px 22px;
  border-radius:20px;
  border-style: dashed;
}

.owl-carousel .owl-item img{
  width:auto !important;
}

.icon-box{
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: #41b6e6;
  border: 2px solid #29a6d9;
  box-shadow: 0 0px 8px 1px #29a6d9;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-box-heading{
font-size: 20px;
color: #0e0e0e;
font-weight: 600;
padding-bottom:5px;
}

.icon-box-para{
font-size: 14px;
line-height: 24px;
color: #1d1d1d;
font-weight: 400;
padding-bottom:10px;
}

.read-more-text{
font-size: 14px;
text-decoration: underline;
color: #11111f;
font-weight: 700;
text-underline-offset:3px;
transition:0.3s ease-in-out all 0s;	
}

.read-more-text:hover{
transition:0.3s ease-in-out all 0s;	
color:#054d65;	
}

.owl-dots{display:none;}

.owl-next span, .owl-prev span{display:none;}


.owl-prev{
	background:url(../images/left-arrow.png) no-repeat 0 0 !important;
	width:23px;
	height:21px;
	position:absolute;
	left:-40px;
	top:50%;
}

.owl-next{
	background:url(../images/right-arrow.png) no-repeat 0 0 !important;
	width:23px;
	height:21px;
	position:absolute;
	right:-40px;
	top:50%;
}


/* testim-sec */

.testim-sec{
  background:url(../images/testim-bg.png) no-repeat 0 0;
  width:100%;
  height:100%;
  padding:110px 0px 70px 0px;
  background-size:cover;
  background-position:center top;
}

.sp-testimonial-free{
 position: relative !important;
}

.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid){
margin-left:0px !important;
margin-right:0px !important;
}

.sp-testimonial-free-section .sp-testimonial-client-image img{
border-radius:0px !important;
background:inherit !important;
}

.sp-testimonial-client-image{
  text-align:left !important;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p{
font-size: 14px !important;
line-height: 28px !important;
color: #11111f !important;
font-weight: 400 !important;
text-align:left !important;
padding:0px !important;
}

.sp-testimonial-content{
  position:absolute;
  top:75px;
  left:42%;
}

.sp-testimonial-client-name{
  font-size: 14px !important;
  line-height: 28px !important;
  color: #11111f !important;
  font-weight: 700 !important;
  position:absolute;
  bottom:0px;
  left:42%;
}

.sp-testimonial-client-rating{
  position:absolute;
  top:50px;
  left:42%;
}

/* newsl-sec */

.newsl-sec .main-heading{
  font-size:48px;
  padding-bottom:0px;
}

.newsl-sec{
 position: relative;
 z-index:1;
}

.newsl-sec::before{
  position:absolute;
  content:"";
  background:url(../images/newsl-star.png) no-repeat 0 0;
  width:1342px;
  height:406px;
  z-index:-1;
  top:-80px;
  left:0px;
  background-size:cover;
  background-position:top center;
}

.newsl-para{
font-size: 24px;
color: #11111f;
font-weight: 400;
}

.page-id-8 .wpcf7-email{
  width:100%;
  background:#fff;
  border-radius:50px;
  border:2px solid #fff;
  font-size: 15px;
  color: #11111f;
  box-shadow:0px 0px 21px 1px #e1e1e190;
  padding:19px 25px;
}

.page-id-8 .wpcf7-email:focus, .page-id-8 .wpcf7-email:active{
  border:2px solid #41b6e6;
}

.page-id-8 .wpcf7-email::placeholder{
  font-size: 15px;
color: #11111f;
font-weight: 400;
}

.page-id-8 .wpcf7-submit{
  background: linear-gradient(89deg, #054d65 0%, #1f8bad 51%, #058bb7 100%);
  font-size: 16px;
color: #ffffff;
font-weight: 700;
width:100%;
padding:20px;
border-radius:50px;
transition:0.3s ease-in-out all 0s;
}

.page-id-8 .wpcf7-submit:hover{
  transition:0.3s ease-in-out all 0s;
  background: linear-gradient(89deg, #058bb7 0%, #1f8bad 51%, #054d65 100%);
}

/* footer-sec */

.footer-sec{
  background:#075169;
  position: relative;
  z-index:1;
  margin-top:200px;
}

.footer-sec:before{
  position:absolute;
  content:"";
  background:url(../images/footer-top.png) no-repeat 0 0;
  width:100%;
  height:100%;
  background-position:top center;
  background-size:100%;
  top:-140px;
  left:0px;
  z-index:-1;
}

.social-icons li span{
  float: left;
  margin-right:10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s ease-in-out all 0s;
  cursor: pointer;
}

.social-icons li span:hover{
  background:#41b6e6;
  border-color:#41b6e6;
  transition: 0.3s ease-in-out all 0s;
}

.social-icons li span:hover img{
filter:brightness(0) invert(0);
transition: 0.3s ease-in-out all 0s;
}

.footer-menu{
font-size: 20px;
line-height: 37px;
color: #ffffff;
font-weight: 700;
padding-bottom:10px;
}


.footer-menu{
  margin-bottom:0px;
}

.footer-menu li{
font-size: 14px;
line-height: 36px;
font-weight: 400;
position: relative;
padding-left:20px;
}

.footer-menu li:before {
  position: absolute;
  content: "";
  background: url(../images/footer-star.png) no-repeat 0 0;
  width: 13px;
  height: 13px;
  top: 11px;
  left:0px;
}

.footer-menu li a{
  color: #ffffff;
  transition:0.3s ease-in-out all 0s;
}

.footer-menu li a:hover{
  padding-left:2px;
  color:#57d7f7;
  transition:0.3s ease-in-out all 0s;
}

.footer-contact-info li {
  line-height: 26px;
  padding-left: 42px;
}


.footer-contact-info li span{
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #fff;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s ease-in-out all 0s;
  cursor: pointer;
}

.footer-contact-info li span:hover{
  background:#41b6e6;
  border-color:#41b6e6;
  transition: 0.3s ease-in-out all 0s;
}

.footer-contact-info li span:hover img{
filter:brightness(0) invert(0);
transition: 0.3s ease-in-out all 0s;
}

.footer-contact-info li span img, .social-icons li span img{
  width:16px;
}

.footer-contact-info li:before{
  display:none;
}

.copy-right{
  color:#fff;
  font-size:14px;
  margin-top:50px;
  padding:15px 30px;
  border-top:1px solid #fff;
}

.copy-right a{
  color:#fff;
  transition:0.3s ease-in-out all 0s;
}

.copy-right a:hover{
  color:#57d7f7;
  transition:0.3s ease-in-out all 0s;
}

/* scroll to top */

#top {
  background-color: #41b6e6;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  border-radius: 50px 50px 50px 50px;
  bottom: 0;
  color: #ffffff;
  height: 48px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  width: 84px;
  height:82px;
  opacity: 0;
  z-index: 10000;
  font-size: 0;
  border: 0;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  outline: none;

  .fa-chevron-up {
    line-height: 35px;
    -webkit-font-smoothing: antialiased;
    font-family: "FontAwesome";
    font-size: 22px;
  }
}
#top.show {
  opacity: 1;
}

.upper-arrow img{
  width:18px;
}


.site-content, .site-main .widecolumn {
  margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
  background: url("../images/inner-banner.jpg") no-repeat center !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 270px 0 110px !important;
  margin: 0 0 0px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page .entry-header:before, .blog_page_header:before {
background: rgba(0, 0, 0, 0.7);
position: absolute;
content: "";
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.page .entry-content {
max-width: 100% !important;
padding: 0px !important;
}
.content-area, .content-sidebar {
  padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
  color: #fff;
position: relative;
  font-size: 32px;
font-weight: 600;
  text-transform: none;
  z-index: 99;
margin-bottom: 3px;
}
.breadcrumb-container {
  width: 100%;
color: #fff;
position: relative;
font-size: 15px;
}
.breadcrumb-container a {
color: #57d7f7;
}
.page {
margin-top: 0 !important;
}

/* ----- */

.inner-sec{
	margin-top:60px;
}

.inner-heading {
    font-size: 27px;
    color: #1f8bad;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.inner-heading:before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 35px;
    border-bottom: 2px solid #1f8bad;
}

.inner-para, .about-mid-box-para {
    font-size: 16px;
    color: #11111f;
    line-height: 26px;
    margin-bottom: 12px;
}

.inner-page-mid-sec {
    background: #054d6517;
    padding: 60px 0;
    margin: 60px 0;
}

.about-mid-box-inner {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    min-height: 100%;
    border-radius: 8px;
    padding: 30px 25px;
}

.about-mid-box-inner img{
	width:60px;
}

.about-mid-box-heading{
	color: #1f8bad;
    font-weight: 600;
    font-size: 22px;
	margin:10px 0px;
}

.call-sec-bg{
	background: #1b99cd;
    margin-top: 60px;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.call-sec-heading{
	font-weight: 600;
    font-size: 25px;
    color: #fff;
    line-height: 31px;
    position: relative;
    padding-bottom: 12px;
}

.call-sec-heading:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 30px;
    transform: translate(-50%, 0);
    border-bottom: 2px solid #fff;
}

.call-sec-para{
	color: #fff;
    line-height: 26px;
	margin-top:20px;
}

.point-sec {
    padding-left: 23px;
    margin-bottom: 5px;
    display: inline-block;
}

.point-sec li {
    font-size: 16px;
    line-height: 27px;
    color: #11111f;
    font-weight: 400;
    margin-bottom: 8px;
    position: relative;
}

.point-sec li:before {
    content: "";
    position: absolute;
    background: url(../images/check.png) no-repeat 0 0;
    width: 16px;
    z-index: 1;
    height: 16px;
    top: 7px;
    left: -26px;
    background-size: contain;
}

/* wcu-inner */

.inner-wcu-box{
background:#054d65;
padding:20px 25px;
height:100%;
border-radius:10px;	
}

.inner-wcu-image{
	background:#41b6e6;
	width:64px;
	height:64px;
	border-radius:50px;
	margin-bottom:10px;
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
}

.inner-wcu-heading{
font-size:20px;
font-weight:600;
color:#fff;	
padding-bottom:5px;	
line-height:1.3;
}

.inner-wcu-para{
	color:#fff;
	font-size:15px;
}

/* contact-sec */

.ref_form_box_input p{margin-bottom:0px;}

.ref_form_box_input input {
	width: 100%;
	min-height: 48px;
	margin-top: 2px;
	background:#fff !important;
	border:1px solid #41b6e6 !important;
	color:#2c2c2c;
	font-size: 15px;
	background:#fff;
	border-radius:50px;
	padding:10px 20px;
	box-shadow:0px 0px 10px 1px #e1e1e190;
}

.ref_form_box_input textarea {
	resize: none;
	height: 144px;
	margin-top: 2px;
	background:#fff !important;
	border:1px solid #41b6e6 !important;
	color:#2c2c2c;
	font-size: 15px;
	border-radius:20px;
	padding:10px 20px;
	box-shadow:0px 0px 10px 1px #e1e1e190;
}

::placeholder{color:#292929 !important;}

.page-id-16 .wpcf7-submit {
  background: linear-gradient(89deg, #058bb7 0%, #1f8bad 51%, #054d65 100%) !important;
  padding: 14px 40px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  color: #fff !important;
  font-size:16px !important;
  transition:0.3s ease-in-out all 0s;	
  
}

.page-id-16 .wpcf7-submit:hover{
	transition:0.3s ease-in-out all 0s;	
	background: linear-gradient(89deg, #054d65 0%, #1f8bad 51%, #058bb7 100%) !important;
}

.contact_page_info {
	position: relative;
	padding-left: 47px;
	color:#11111f;
	margin-top: 25px;
}

.contact_page_info img {
	position: absolute;
	top: 7px;
	left: 0;
	width: 35px !important;
	border-radius:0px;
}

.contact_page_info strong{
	color:#11111f;
}

.contact_page_info a {
	color:#054d65;
	text-decoration:none !important;
}

/* error message */

.error_container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  text-align: center;
}

/* footer-fixed */

.footer-fixed-buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer-btn1 {
	background:#41b6e6;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.footer-btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding: 9px 12px 0;
}
.footer-btn3 {
	background:#1d4354;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}

/* responsive */


@media only screen and (min-width : 300px) and (max-width : 767px) {
	.banner-sec img{height:500px !important;object-fit:cover;}
	.banner-heading {font-size: 26px !important;}
	.read-more-btn{font-size:15px;padding:14px 26px;}
	.image-icon-sec{position:inherit !important;}
	.plan-mgmt-sec{padding-bottom:0px !important;}
	.plan-img{position:static;}
	.big-circle{display:none;}
	.sp-testimonial-client-rating{top:366px !important;left:50% !important;transform:translate(-50%, -50%);}
	.sp-testimonial-client-image{text-align:center !important;}
	.sp-testimonial-content, .sp-testimonial-client-name{position:static !important;text-align:center !important}
	.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p{text-align:center !important;padding-top:15px !important;}
	.footer-sec:before{top:-36px !important;}
	.footer-sec{margin-top:50px !important;}
}

@media only screen and (min-device-width : 300px) and (max-device-width : 767px) and (orientation : landscape) {
    .footer-sec {margin-top: 100px !important;}
	.footer-sec:before {top: -69px !important;}
}

@media only screen and (min-width : 300px) and (max-width : 1023px) {
	.primary-navigation, .menu-bar .read-more-btn{display:none;}
	.menu-bar{position:static;background:#fff;padding:5px 0px;}
	.fixed-header .logo img, .logo img{width:75px;}
	.footer-logo{width:120px;}
	.banner-sec{margin-top:84px;}
	.banner-sec img{height:450px;object-fit:cover;}
	.banner-part{top:46%;}
	.page .entry-header, .blog_page_header{margin-top:84px !important;padding:80px 0px !important;}
	.plan-img{bottom:-509px;top:inherit;}
	.big-circle{width:300px;height:300px;bottom:-272px;top:inherit;left:10%;}
	.sp-testimonial-content, .sp-testimonial-client-rating, .sp-testimonial-client-name{left: 35%;}
	.sp-testimonial-client-name{bottom:50px;}
	.upper-arrow{bottom:70px !important;}
	.copy-right{padding-bottom:60px;}
}

@media only screen and (min-width : 300px) and (max-width : 1024px) {
	.wrapper{margin-top:50px;}
	.inner-sec{margin-top:50px;}
	.inner-page-mid-sec{padding:50px 0px;margin-top:50px;}
	.banner-heading{font-size:30px;line-height:1.2;}
	.main-heading, .newsl-sec .main-heading{font-size:28px;line-height:1.3;}
	.inner-heading{font-size:25px;line-height:1.3;}
	.page .entry-title, .blog_page_title{font-size:26px;}
	.about-img{padding:12px;}
	.call-sec-bg{padding:30px;}
	.newsl-para{font-size:20px;}
	.plan-mgmt-sec{padding:90px 0px 50px 0px;}
	.owl-prev{left: -10px;}
	.owl-next{right: -10px;}
	.testim-sec{padding:70px 0px 50px 0px;}
	.page-id-8 .wpcf7-email{padding:16px 25px;}
	.page-id-8 .wpcf7-submit{padding:17px;}
	.footer-sec:before{top:-80px;}
	.footer-sec{margin-top:100px;}
}


@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {

}

@media only screen and (min-width : 1024px) and (max-width : 1024px) and (orientation : portrait) {
.plan-img{top:26px !important;}
.big-circle{width:400px;height:400px;top:-50px !important;}
.footer-sec {margin-top:150px;}
.footer-sec:before{top:-106px !important;}
}

@media only screen and (min-width : 1024px) and (max-width : 1024px) and (orientation : landscape) {
.plan-img{top:26px !important;}
.big-circle{width:400px;height:400px;top:-50px !important;}
	.footer-sec {margin-top:150px;}
	.footer-sec:before{top:-106px !important;}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1199px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
.logo img{width:120px;}
.fixed-header .logo img{width:100px;}
.menu ul li{margin:0px 14px;}
.menu-bar .read-more-btn{padding:14px 29px;}
.plan-img{top:100px;}
.big-circle{width:400px;height:400px;top:45px;}
.sp-testimonial-client-rating, .sp-testimonial-content, .sp-testimonial-client-name{left:26%;}
.sp-testimonial-client-name{bottom:70px;}
.footer-sec:before{top:-105px;}
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1199px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
	.logo img{width:120px;}
	.fixed-header .logo img{width:100px;}
	.menu ul li{margin:0px 14px;}
	.menu-bar .read-more-btn{padding:14px 29px;}
	.plan-img{top:100px;}
	.big-circle{width:400px;height:400px;top:45px;}
	.sp-testimonial-client-rating, .sp-testimonial-content, .sp-testimonial-client-name{left:26%;}
	.sp-testimonial-client-name{bottom:70px;}
	.footer-sec:before{top:-105px;}
}


@media screen and (min-width: 1424px) {

}

@media screen and (min-width: 1624px) {

}

@media screen and (min-width: 1920px) {

}

@media screen and (min-width: 2048px) {

}

@media screen and (min-width: 2550px) {

}





