/*!
 * Theme Name:   OceanWP Child
 * Theme URI:    https://oceanwp.org/
 * Description:  OceanWP Child Theme
 * Author:       Your Name
 * Author URI:   https://yourwebsite.com/
 * Template:     oceanwp
 * Version:      1.0.28
 * License:      GNU General Public License v2.0 or later
 * License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:  oceanwp-child
 */

/*
 * Add your custom CSS below this line.
 * Do NOT add CSS above the comment block — it will be ignored.
 */

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999
}
.header .top-header {
	padding: 24px 0;
	background: #fff;
}
@media screen and (max-width:767.98px) {
	.header .top-header {
		padding: 16px 0
	}
}
.header .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	width: auto;
}
.header .logo img {
	height: 70px
}
@media screen and (max-width:767.98px) {
	.header .logo img {
		height: 60px
	}
}
.header .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.header .flex-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px
}
@media screen and (max-width:767.98px) {
	.header .flex-right {
		display: none
	}
}
.header .contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.header .contacts .phone {
	font-family: Rajdhani,Sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
	color: #1d1d37;
	-webkit-column-gap: 12px;
	-moz-column-gap: 12px;
	column-gap: 12px;
	font-weight: 600
}
.header .contacts .phone svg {
	height: 30px
}
.header .contacts .phone svg path {
	fill: #b82020
}
.header .contacts .email {
	font-family: Rajdhani,Sans-serif;
	font-size: 16px;
	color: #1d1d37;
	font-weight: 600
}
.header .btn-block a {
	font-family: Rajdhani,Sans-serif;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 4px solid #b82020;
	height: 60px;
	min-width: 190px;
	font-size: 16px;
	text-transform: uppercase;
	color: #b82020;
	font-weight: 600;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out
}
.header .btn-block a:hover {
	background: #b82020;
	color: #fff
}
.header .menu-box {
	background: #242431
}
@media screen and (max-width:767.98px) {
	.header .menu-box {
		display: none;
		position: fixed;
		top: 92px;
		height: calc(100dvh - 92px);
		width: 100%;
		padding: 30px 20px
	}
}
.header .nav-menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0
}

.search-toggle-li{
	display: none;
}

@media screen and (max-width:767.98px) {
	.header .nav-menu ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}
.header .nav-menu ul > li {
	position: relative
}
@media screen and (max-width:767.98px) {
	.header .nav-menu ul > li {
		width: 100%
	}
}
.header .nav-menu ul > li.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible
}
.header .nav-menu ul > li > a {
	font-family: Rajdhani,Sans-serif;
	font-size: 16px;
	color: #fff;
	height: 75px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 20px;
	position: relative;
	z-index: 9
}
@media screen and (max-width:991.98px) {
	.header .nav-menu ul > li > a {
		padding: 0 12px;
		height: 70px
	}
}
@media screen and (max-width:767.98px) {
	.header .nav-menu ul > li > a {
		padding: 10px 0;
		height: auto;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
}
.header .nav-menu ul > li > a::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #4f5058;
	z-index: -1;
	-webkit-transform: skew(20deg);
	-ms-transform: skew(20deg);
	transform: skew(20deg);
	opacity: 0;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out
}
.header .nav-menu ul > li > a:hover::before {
	opacity: 1
}
.header .nav-menu ul .sub-menu {
	min-width: 212px;
	position: absolute;
	top: 100%;
	left: 15px;
	background-color: #fff;
	border-top: 3px solid #00074c;
	min-width: 180px;
	line-height: 1;
	text-align: left;
	z-index: 999;
	-webkit-box-shadow: 0 2px 6px rgba(0,0,0,.1);
	box-shadow: 0 2px 6px rgba(0,0,0,.1);
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s ease-out;
	transition: .3s ease-out
}
@media screen and (max-width:767.98px) {
	.header .nav-menu ul .sub-menu {
		position: initial;
		opacity: 1;
		visibility: visible;
		background: 0 0;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none
	}
}
.header .nav-menu ul .sub-menu li {
	border-bottom: 1px solid #1e73be;
	width: 100%
}
@media screen and (max-width:767.98px) {
	.header .nav-menu ul .sub-menu li {
		border-bottom: 0
	}
}
.header .nav-menu ul .sub-menu li:last-child {
	border-bottom: 0
}
.header .nav-menu ul .sub-menu li a {
	color: #040559;
	height: auto;
	display: block;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: .6px;
	padding: 12px 15px;
	text-transform: capitalize
}
@media screen and (max-width:767.98px) {
	.header .nav-menu ul .sub-menu li a {
		color: #fff;
		padding: 10px 20px;
		font-size: 16px
	}
}
.header .nav-menu ul .sub-menu li a::before {
	display: none
}
.header .btn-menu {
	width: 35px;
	height: 35px;
	display: none
}
@media screen and (max-width:767.98px) {
	.header .btn-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}
.header .btn-menu .burger {
	width: 100%;
	height: 3px;
	background: #040559;
	position: relative;
	-webkit-transition: .3s linear;
	transition: .3s linear
}
.header .btn-menu .burger.on {
	background: 0 0
}
.header .btn-menu .burger.on::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}
.header .btn-menu .burger.on::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}
.header .btn-menu .burger::before,
.header .btn-menu .burger:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #040559;
	-webkit-transition: .3s linear;
	transition: .3s linear
}
.header .btn-menu .burger::before {
	top: -9px
}
.header .btn-menu .burger::after {
	top: 9px
}

#wrap{
	padding-top: 190px;
}

@media screen and (max-width:991.98px) {
	#wrap{
		padding-top: 187px;
	}
}

@media screen and (max-width:767.98px) {
	#wrap{
		padding-top: 92px;
	}
}


.tooltip-container {
  position: relative;
  cursor: pointer;
}

.tooltip-container .tooltip-text {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  background: #1a2a5e;
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.6;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.tooltip-container .e-con-inner {
    display: flex;
    align-items: center !important;
    column-gap: 10px;
    flex-direction: row !important;
    justify-content: space-between !important;
	    flex-wrap: nowrap;
}

.tooltip-container .tooltip-icon{
	flex-shrink: 0;
}

.tooltip-container .tooltip-icon svg{
	height: 3rem;
    width: auto;
}

.tooltip-container .tooltip-text::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #1a2a5e;
}

.tooltip-container .tooltip-text.tooltip-visible {
  opacity: 1;
  visibility: visible;
}

.tooltip-container.tooltip-active .tooltip-icon svg path {
  fill: #1a2a5e;
}

@media (max-width: 767px) {
  .tooltip-container .tooltip-text {
    position: absolute;
    top: calc(100% + 10px);
    right: auto;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .tooltip-container .tooltip-text::after {
    display: none;
  }
}

.elementor-shortcode .ff-message-success {
    color: #fff;
}

.elementor-shortcode .ff-default .ff-el-form-control {
    color: #fff;
    max-width: 100%;
    padding: 14px 25px;
    border-radius: 40px;
}


.elementor-shortcode .ff-default .ff-el-form-control::placeholder{
	 color: #fff;
}

.elementor-shortcode .ff-el-form-check-label{
	display: flex;
		column-gap: 1rem;
	color: #fff;
}

.elementor-shortcode .fluentform .ff-el-form-check-label .ff-el-form-check-input {
    top: 4px;
}

.elementor-shortcode .ff-custom_html a{
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    font-style: normal;
    text-decoration: underline;
	text-underline-offset: 3px;
    line-height: 1.5em;
    letter-spacing: 0px;
    word-spacing: 0em;
}

.elementor-shortcode .ff-custom_html a:hover{
	text-decoration: none;
}

.elementor-shortcode form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style){
background-color: #17387E !important;
    color: #FFFFFF;
    border-color: #17387E;	
}

.elementor-shortcode form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style):hover{
background-color: transparent !important;
}

.elementor-shortcode .ff-default .ff_btn_style{
	
	    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0px;
    word-spacing: 0em;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-radius: 50px 50px 50px 50px;
       padding: 15px 20px;
    min-width: 220px;
}