/* ======================
==    Default CSS start
========================*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	text-decoration: none;
}

html {
	scroll-behavior: smooth;
}

.area {
	width: 100%;
	float: left;
}

a,
button,
input,
textarea {
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
	display: inline-block;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Exo', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.3;
	color: #333333;
	margin: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 400;
	color: #34586F;
}

/* ======================
==    Common CSS start
========================*/
.hide {
	display: none !important;
}
.section_overlay {
	z-index: 1;
	position: relative;
}
.section_overlay::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 95, 159, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: inline-block !important;
}
.section_bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

a.pix_btn,
.pix_btn a,
input.pix_btn,
.pix_btn input,
button.pix_btn,
.pix_btn button {
	font-size: 16px !important;
	line-height: 1.2 !important;
	color: #ffffff !important;
	text-align: center !important;
	text-transform: uppercase !important;
	padding: 20px 50px !important;
	background: #005F9F !important;
	border-radius: 5px !important;
	display: inline-block !important;
	border: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	-webkit-transition: all 0.3s linear !important;
	transition: all 0.3s linear !important;
}

a.pix_btn:hover,
.pix_btn a:hover,
a.pix_btn:focus,
.pix_btn a:focus,
input.pix_btn:hover,
.pix_btn input:hover,
input.pix_btn:focus,
.pix_btn input:focus,
button.pix_btn:hover,
.pix_btn button:hover,
button.pix_btn:focus,
.pix_btn button:focus {
	background: #333333 !important;
}

.pos_rel {
	position: relative;
	z-index: 1;
}
.pos_rel .vc_column_container {
	position: static;
}

.section_padding {
	padding: 115px 0;
}

.section_header h2 {
	color: #0060A0;
	font-size: 48px;
	line-height: 1.2;
	margin: 0 0 20px;
}

.section_header {
	max-width: 960px;
	margin: 0 auto 60px;
}

.owl-nav {
	text-align: center;
	margin: 50px 0 0;
}

.owl-nav button {
	width: 30px;
	height: 30px;
	display: inline-block;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	margin: 0 10px;
	outline: none !important;
}

.owl-nav button:hover {
	width: 50px;
}

.owl-nav .arrow {
	width: 100%;
	height: 2px;
	background: #BED2DE;
	position: relative;
	margin: 0 5px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.owl-nav button:hover .arrow {
	background: #2E7FB3;
}

.owl-nav .arrow::after {
	content: "";
	width: 15px;
	height: 15px;
	border: 2px solid transparent;
	border-left-color: #BED2DE;
	border-bottom-color: #BED2DE;
	position: absolute;
	left: 7px;
	top: 0;
	-webkit-transform: rotate(45deg) translateX(-9px);
	transform: rotate(45deg) translateX(-9px);
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.owl-nav button:hover .arrow::after {
	border-left-color: #2E7FB3;
	border-bottom-color: #2E7FB3;
}

.owl-nav .next.arrow::after {
	right: -5px;
	left: auto;
	-webkit-transform: rotate(225deg) translateX(9px);
	transform: rotate(225deg) translateX(9px);
}


.featured_img-gallery.vc_column_container {
	position: relative;
	height: 600px;
}
.wpb_single_image.featured_img_large {
	position: absolute;
	right: 0;
	top: 0;
	width: 470px;
	height: 600px;
	object-fit: cover;
	box-shadow: 0px 10px 38px 2px rgba(0, 152, 255, 0.15);
	z-index: 3;
	animation: bounceUp 3s linear infinite alternate;
}
.wpb_single_image.featured_img_small {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 270px;
	height: 350px;
	object-fit: cover;
	box-shadow: 0px 10px 38px 2px rgba(0, 152, 255, 0.15);
	z-index: 4;
	animation: bounceUp 4s linear infinite alternate;
}
.wpb_single_image.featured_img_dot {
	position: absolute;
	top: 130px;
	left: 70px;
	width: 270px;
	height: 350px;
	object-fit: cover;
	z-index: 2;
}

.featured_img-gallery.left_gallery .wpb_single_image.featured_img_large {
	right: auto;
	left: 0;
}
.featured_img-gallery.left_gallery .wpb_single_image.featured_img_small {
	left: auto;
	right: 50px;
}
.featured_img-gallery.left_gallery .wpb_single_image.featured_img_dot {
	left: auto;
	right: 70px;
}



@-webkit-keyframes bounceUp {
	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceUp {
	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



/* ======================
==    Header CSS start
========================*/

.main_header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(0, 95, 159, 0.8);
	padding: 15px 0;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.main_header.sticky_header {
	background: rgba(0, 95, 159, 0.7);
	padding: 10px 0;
}

.main_header .navbar-brand {
  max-width: 200px;
  position: relative;
  top: -9px;
}

.main_header .navbar-brand img {
  width: 100%;
}

.navbar.nav_content {
	padding: 0;
}

.navbar.nav_content .pix_btn {
	padding: 13px 50px;
}

.header-menu {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header-menu ul li a {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.2;
	text-transform: uppercase;
	padding: 10px 20px;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.header-menu ul li a:hover,
.header-menu ul li a:focus {
	color: #333333;
}

.header-menu .pix_btn {
	display: none;
}


/* ======================
==    Hero CSS start
========================*/

.hero_section {
	height: 1100px;
	position: relative;
	z-index: 1;
	background: #00609f;
	background: -webkit-gradient(linear, left top, left bottom, from(#00609f), to(#00cff7));
	background: linear-gradient(to bottom, #00609f 0%, #00cff7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00609f', endColorstr='#00cff7', GradientType=0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

.banner_shape {
	position: absolute;
	bottom: 0;
	left: 0;
}

.banner_shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
}

.hero_content p {
	color: #ffffff;
	margin: 0 0 5px;
}

.hero_content .hero_title {
	font-size: 60px;
	line-height: 1.2;
	text-shadow: 0px 10px 28.5px rgba(0, 95, 159, 0.2);
	color: #ffffff;
}

.hero_btn-set {
	margin: 40px 0 0;
}

.hero_btn-set .pix_btn {
	margin-right: 25px;
	min-width: 230px;
	padding: 20px 50px;
}

.hero_circles {
	position: absolute;
	width: 100%;
	height: 100%;
}

.circle {
	width: 650px;
	height: 650px;
	border: 1px solid #E8FAFE;
	border-radius: 50%;
	position: absolute;
	right: -150px;
	top: 200px;
	-webkit-animation: spin 40s linear infinite;
	animation: spin 40s linear infinite;
}

.circle2.circle {
	width: 550px;
	height: 550px;
	right: -100px;
	top: 250px;
	-webkit-animation: spin 25s linear infinite;
	animation: spin 25s linear infinite;
}

.circle3.circle {
	width: 450px;
	height: 450px;
	right: -50px;
	top: 300px;
	-webkit-animation: spin 15s linear infinite;
	animation: spin 15s linear infinite;
}

.circle img {
	position: absolute;
	left: 50px;
	top: 74px;
	max-width: 70px;
}

.circle2 img {
	top: -30px;
	left: 196px;
}

.circle3 img {
	top: 67px;
	left: 1px;
}

.hero_circles>img {
	position: absolute;
	top: 29%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	max-width: 500px;
	z-index: 99;
	-webkit-animation: bounceUp 2s linear infinite alternate;
	animation: bounceUp 2s linear infinite alternate;
}

.hero_search_wrapper {
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 20px 100px 0px rgba(1, 73, 123, 0.2);
	box-shadow: 0px 20px 100px 0px rgba(1, 73, 123, 0.2);
	position: absolute;
}


/* ======================
==   Template criteria CSS start
========================*/

.template_criteria-section {
	padding: 230px 0 100px 0;
}

.search_wrapper {
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 20px 100px 0px rgba(1, 73, 123, 0.2);
	box-shadow: 0px 20px 100px 0px rgba(1, 73, 123, 0.2);
	position: absolute;
	width: 100%;
	max-width: 1170px;
	padding: 80px 100px;
	top: -190px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 20px 20px 20px 100px;
	margin: 0 auto !important;
}

.search_wrapper p {
	text-align: center;
	padding: 0 90px;
	margin-bottom: 40px;
}

.search_wrapper .search_form {
	position: relative;
	overflow: hidden;
}

.search_wrapper .search_form input.orig {
	height: auto;
	padding: 25px 220px 25px 25px;
	border: 1px solid #93c0d9;
	outline: none;
	border-radius: 5px;
	font-size: 16px;
	line-height: 1.2;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #34576F;
}

.search_wrapper .search_form input.orig::-webkit-input-placeholder {
	color: #34576F;
}

.search_wrapper .search_form input.orig:-ms-input-placeholder {
	color: #34576F;
}

.search_wrapper .search_form input.orig::-ms-input-placeholder {
	color: #34576F;
}

.search_wrapper .search_form input.orig::placeholder {
	color: #34576F;
}

.search_wrapper .search_form .pix_btn {
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0 5px 5px 0 !important;
	padding: 25px 50px;
	line-height: 1.3 !important;
	cursor: pointer;
}

.criteria_icon {
	margin: 0 0 35px;
}

.temp_criteria-box h2 {
	color: #005F9F;
	font-size: 24px;
	line-height: 1.2;
	font-family: 'Exo', sans-serif;
	margin: 0 0 20px;
}

.temp_criteria-box {
	padding-right: 20px;
	margin: 15px 0;
}

.grid_bar {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.grid_bar span {
	width: 1px;
	height: 100%;
	background: #bff3fd;
	position: absolute;
	top: 0;
	left: 50%;
	opacity: 0.5;
}

.grid_bar span:nth-child(1) {
	margin-left: 292px;
}

.grid_bar span:nth-child(2) {
	margin-left: 570px;
}

.grid_bar span:nth-child(4) {
	margin-left: -292px;
}

.grid_bar span:nth-child(5) {
	margin-left: -570px;
}

/* ======================
==   Template Carousel CSS start
========================*/

.template_carousel-section {
	background: #e4f9fe;
}
.template_static-wrapper {
	background: #e4f9fe;
}
.template_slides {
	background: #ffffff;
	padding: 5px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.template_static-wrapper .template_slides{
	background: none;
	width: 33.33333%;
	float: left;
	padding: 5px 15px;
}
.template_img {
	height: 590px;
	width: 100%;
	background-size: cover;
	background-position: center 0;
	background-repeat: no-repeat;
	-webkit-transition: all 10s linear;
	transition: all 10s linear;
	position: relative;
	z-index: 1;
}

.template_img:hover {
	background-position: center 100%;
}

.template_img a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.template_carousel-wrapper, .template_static-wrapper {
	padding: 0 80px;
}
.template_static-wrapper{
	margin-bottom: 50px;
}
/* ======================
==   Footer CSS start
========================*/

.footer_section {
	padding: 250px 0 0;
	background: #00cff7;
	background: -webkit-gradient(linear, left top, left bottom, from(#00cff7), to(#0095c9));
	background: linear-gradient(to bottom, #00cff7 0%, #0095c9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00cff7', endColorstr='#0095c9', GradientType=0);
	overflow: hidden;
}

.footer_logo {
	margin: 0 0 25px;
}

.footer_widget p {
	color: #ffffff;
	font-size: 14px;
}

.search_wrapper.footer_subscriber {
	position: static;
	-webkit-transform: unset;
	transform: unset;
	padding: 0 80px 0 0;
	background: none;
	-webkit-box-shadow: unset;
	box-shadow: unset;
	max-width: 100%;
	border-radius: 0;
}

.widget_title {
	font-size: 22px;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 25px;
}

.search_wrapper.footer_subscriber .form-control {
	background: #E4F9FE;
	border: none;
	padding: 20px 180px 20px 25px;
}

.search_wrapper.footer_subscriber .pix_btn {
	padding: 22px 30px !important;
}

.footer_social ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer_social ul li {
	display: inline-block;
}

.footer_social ul li a {
	height: 35px;
	width: 35px;
	display: inline-block;
	color: #7D8DA1;
	background: #E4F9FE;
	text-align: center;
	line-height: 35px;
	margin-right: 5px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.footer_social ul li:last-child a {
	margin: 0;
}

.footer_social ul li a:hover,
.footer_social ul li a:focus {
	background: #1E76BD !important;
	color: #ffffff !important;
}

.copyright_text {
	text-align: center;
	border-top: 1px solid #E4F9FE;
	padding-top: 20px;
	margin-top: 50px;
}

.copyright_text p {
	color: #ffffff;
	opacity: 0.8;
	font-size: 14px;
	margin-bottom: 30px;
}

.footer_shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	right: 0;
	z-index: -3;
}

.footer_shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -2;
}

.buy_cta.section_header {
	background: #ffffff;
	max-width: 1141px;
	text-align: center;
	-webkit-box-shadow: 0px 20px 100px 0px rgba(1, 73, 123, 0.2);
	box-shadow: 0px 20px 100px 0px rgba(1, 73, 123, 0.2);
	border-radius: 20px 20px 20px 100px;
	padding: 80px 15px;
	position: absolute;
	width: 100%;
	height: auto;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
}
.vc_row.overflow_hid {
	overflow: visible !important;
	z-index: 9;
}
.buy_cta.section_header .pix_btn {
	background: transparent !important;
	border: 2px solid #0060A0 !important;
	color: #0060A0 !important;
	padding: 15px 50px !important;
}
.buy_cta.section_header .pix_btn:hover, .buy_cta.section_header .pix_btn:focus {
	background: #0060A0 !important;
	color: #ffffff !important;
}
.site_form .input_group {
  margin: 0 0 15px;
}
.site_form .input_group .form-control {
  height: auto;
  padding: 15px;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  box-shadow: none !important;
  outline: none !important;
}
.site_form .submit_btn {
	margin: 15px 0 0;
	cursor: pointer;
}

main{
	min-height: 500px;
}
/* main section:first-child.title-header {
	margin-top: 135px;
	margin-bottom: 25px;
}
main section:first-child {
	margin-top: 165px;
} */
.title-header .media-heading {
  background: #005F9F;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 30px;
  line-height: 1.2;
  padding: 10px 0;
}
.home main section:first-child {
	margin: 0;
}

.template_details-content ul {
    padding-left: 20px;
}

.template_details-content ul li a {color: #00D0F8;}

.template_details-content ul li a:hover, .template_details-content ul li a:focus {
    color: #005F9F;
}
p.comment-form-cookies-consent {
    display: flex;
}

.comment-form p.comment-form-cookies-consent input {
    position: relative;
    top: 7px;
}

.template_static-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.main_header .pix_btn {
    background: #08C3ED !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
}

.admin-bar .main_header {
    margin-top: 32px;
}

main section.title-header:first-child {
    margin-top: 105px;
}

.search_wrapper .search_form {
    display: none;
}

.search_wrapper p {
    padding: 0;
    margin: 0;
}

.search_wrapper .wpcf7-form {
    position: relative;
    z-index: 1;
}

.search_wrapper .wpcf7-form .pix_btn {
    position: absolute;
    right: 0;
    top: 0px;
    line-height: 1.3 !important;
}
.search_wrapper .wpcf7-validation-errors {
    margin: 0;
    font-size: 12px;
    border-color: #0060A0;
    color: #ffffff;
}

.search_wrapper .wpcf7-not-valid-tip {
    color: #ffffff;
    margin: 15px 0 0;
}

.search_wrapper .wpcf7-form br {
    display: none;
}














