/*Designed By Arun*/

@font-face{
	src: url('../fonts/Satoshi-Regular.otf');
	font-family: Satoshi-Regular;
}
@font-face{
	src: url('../fonts/Satoshi-Medium.otf');
	font-family: Satoshi-Medium;
}
@font-face{
	src: url('../fonts/Satoshi-Bold.otf');
	font-family: Satoshi-Bold;
}
@font-face{
	src: url('../fonts/Satoshi-Black.otf');
	font-family: Satoshi-Black;
}
@font-face{
	src: url('../fonts/SpaceGrotesk-SemiBold.ttf');
	font-family: SpaceGrotesk-SemiBold;
}
@font-face{
	src: url('../fonts/SpaceGrotesk-Bold.ttf');
	font-family: SpaceGrotesk-Bold;
}
html {
	width: 100%;
}
body {
	font-family: Satoshi-Regular;
	font-size: 1rem;
	color: #070707;
	margin: 0;
	padding: 0;
}
h1, h2 {
	font-family: Satoshi-Black;
	font-size: 2rem;
}
h3, h4, a {
	font-family: Satoshi-Bold;
}
h5, h6{
	font-family: Satoshi-Medium;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
h5 {
	font-size: 1.1rem;
}
h6 {
	font-size: 1rem;
}
p {
	font-family: Satoshi-Regular;
	font-size: 1rem;
}
a {
    color: #1fa5d4;
    font-size: 1rem;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 15px;
}
.d-none {
	display: none;
}
/*container css */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (min-width: 1400px) {
	.container {
    max-width: 1300px;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
	.container {
    max-width: 1140px;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.container {
    max-width: 960px;
	}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.container {
    max-width: 720px;
	}
}
@media screen and (min-width: 576px) and (max-width: 767px){
	.container {
    max-width: 540px;
	}
}
/*end*/
/*header sec start*/
.header_sec {
    width: 100%;
    float: left;
}
#header.fixedHeader{
  position: fixed;
  top: -72px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  transform: translateY(70px);
  transition: 0.4s all;
  z-index: 999;
}
#header.fixedHeader .logo img {
    max-width: 140px;
    margin-top: 20px;
}
#header.fixedHeader .navbar .wrapper {
    height: 50px;
    padding: 20px;
}
ul.nav_link_main {
    margin: 0 !important;
}
.navbar {
    width: 100%;
    float: left;
    position: unset;
}
.navbar.navbar_fixed{
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #fff;
}
.navbar .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 30px 30px 10px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #070707;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.logo img {
    max-width: 180px;
}
.wrapper .nav_link_main{
  display: inline-flex;
}
.nav_link_main .nav_link{
  list-style: none;
}
.nav_link_main .nav_link a{
  color: #070707;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.fa-chevron-down::before {
    font-size: 1rem;
    position: relative;
    top: 1px;
    left: 1px;
}
a:hover i.fas.fa-chevron-down {
    transform: rotate(180deg);
    transition-duration: .5s;
}
.nav_link_main .mobile-item{
  display: none;
}
.nav_link_main .drop-menu{
  position: absolute;
  background: #fff;
  width: 350px;
  line-height: 45px;
  top: 100px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 7px 25px 5px rgba(0,0,0,0.15);
  padding: 0;
  transform: translateX(-33%);
}
.drop-menu li:hover .fa-angle-double-right:before {
    background: -webkit-linear-gradient(360deg, #1FA5D5, #36BF4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav_link_main .nav_link:hover .drop-menu,
.nav_link_main .nav_link:hover .mega-box{
  transition: all 0.3s ease;
  top: 85px;
  opacity: 1;
  visibility: visible;
}
.drop-menu .nav_link a:before {
    position: absolute;
    content: '';
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #1FA5D5, #36BF4D);
    left: 0;
    opacity: 0;
}
.drop-menu .nav_link:hover a:before {
    opacity: 1;
    transition: .3s each-out;
    transition-delay: .6s;
}
.nav_link_main .drop-menu:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1FA5D5, #36BF4D);
}
.drop-menu .nav_link a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
  position: relative;
  font-size: 1rem;
}
.drop-menu .nav_link a i.fas.fa-chevron-down::before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
}
.drop-menu .fa-angle-double-right:before {
    margin-right: 10px;
}
.mega-box{
  position: absolute;
  left: 30%;
  width: 480px;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .mega_content{
  background-image: linear-gradient(90deg, #2285B4, #2A8E84);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .mega_content .row{
  width: calc(50% - 30px);
  line-height: 45px;
}
.mega_content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega_content .row .nav_head{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.mega_content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.5);
}
.row .mega-links .nav_link{
  padding: 0 20px;
}
.row .mega-links .nav_link a{
  padding: 0px;
  padding: 0 20px;
  color: #fff;
  font-size: 17px;
  display: block;
}
.row .mega-links .nav_link a:hover{
  color: #34BD55;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
.talk_btn {
    background-image: linear-gradient(90deg, #1FA5D5, #36BF4D);
    padding: 10px 40px;
    color: #fff;
    text-decoration: none;
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 1.1rem;
    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-position: 200% auto;
    z-index: 1; 
    position: relative;
    display: inline-block;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.talk_btn:hover {
 animation: animate 2s linear infinite;
}
@keyframes animate {
 0% {
  background-position: 0%;
 }
 100% {
  background-position: -200%;
 }
}
.talk_btn:before {
 content: '';
 position: absolute;
 top: 0;
 bottom: 0;
 right: 0;
 left: 0;
 z-index: -1;
 background: linear-gradient(90deg, #20A7CF, #35BE51, #1F95C7, #70D181);
 background-size: 200%;
 border-radius: 5px;
 /*filter: blur(20px);*/
 opacity: 0;
 transition: 0.3s;
}
.talk_btn:hover:before {
 /*filter: blur(10px);*/
 opacity: 1;
 animation: animate 2s linear infinite;
}
.navbar input{
  display: none;
}
i.fas.fa-bars:before {
    color: #000;
}
/*header sec end*/
/*banner sec start*/
.banner {
	width: 100%;
	display: flex;
	align-items: center;
	background-image: url(../../assets/images/banner.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	height: 550px;
}
.banner_cont {
    width: 44%;
    display: flex;
    flex-wrap: wrap;
}
.banner_cont a.talk_btn {
    display: block;
}
.banner_cont h1 {
    max-width: 480px;
    margin-bottom: 30px;
}
.banner_cont p {
    margin-bottom: 30px;
}
/*banner sec end*/
/*footer sec start*/
.footer_sec {
    width: 100%;
    float: left;
    background-color: #1C2B3D;
    padding-top: 40px;
}
.footer_wrap {
    display: flex;
    justify-content: space-between;
}
.footer_inner_sec {
    border-right: 1px solid #404A56;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.footer_inner_sec:last-child {
    border-right: none;
}
.footer_inner_sec1 {
    flex-direction: column;
}
.footer_inner_sec1 img {
    max-width: 180px;
    margin: 0 auto;
    max-height: 80px;
    width: auto;
}
.footer_cont {
    width: 100%;
    float: left;
}
.footer_cont2-2 h4 a {
    color: #fff;
    text-decoration: none;
}
.foot_title {
    font-family: 'Satoshi-Bold';
    color: #f7fafb;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.footer_inner_sec ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_inner_sec ul li {
    padding-bottom: 10px;
    width: 100%;
}
ul.social_media li {
    width: auto;
}
.footer_inner_sec ul li a {
    color: #f7fafb;
    text-decoration: none;
    font-family: 'Satoshi-Regular';
    opacity: 0.85;
}
.social_media li {
    padding-right: 10px;
}
.social_media i::before {
    background: #0089B2;
    border-radius: 100%;
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 0.9rem;
}
.foot_add li {
    color: #fff;
    opacity: 0.85;
    width: 100%;
}
.copy_right_sec {
    width: 100%;
    float: left;
    color: #f7fafb;
    opacity: 0.85;
    margin-top: 20px;
    border-top: 1px solid #404A56;
    padding-top: 15px;
}
/*footer sec end*/
/*faq sec start*/
.static__content {
    width: 100%;
   float:left;
}
div[itemprop="mainEntity"] {
    border-bottom: 1px solid #000;
    margin: 0;
}
.fquestion {
    background-color: #fff;
    position: relative;
    padding: 15px 20px 15px 0;
    cursor: pointer;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 18px;
    margin: 0;
    color: #313030;
    font-family: Satoshi-Medium;
    font-weight: 600;
}
div[itemprop="acceptedAnswer"] {
    display: none;
    padding:0 20px 20px 0;
}
div[itemprop="acceptedAnswer"] p{
	margin-bottom: 0;
}
div[itemprop="acceptedAnswer"] h4{
	margin-bottom: 0;
}
div[itemprop=text] p {
    margin: 0;
    line-height: 25px;
    text-align: left;
    margin-bottom: 10px;
}
div[itemprop=text] h4 {
    margin: 0;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    margin-bottom: 10px;
    padding: 20px;
	 color: #6d6e71!important;
}
div[itemprop=text] ul{
	padding-left: 20px;
}
.active div[itemprop="acceptedAnswer"] {
    display: block;
}
.fquestion.collapsed:after {
    position: absolute;
    right: 15px;
    /*content: '\f078';*/
    content: '';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../../assets//images/plus_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
}
.active .fquestion.collapsed:after {
    /*content: '\f077';*/
    background-image: url(../../assets//images/minus_icon.png);
}
h4.fquestion.collapsed:after {
    position: absolute;
    right: 10px;
    content: '\0002B';
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.active h4.fquestion.collapsed:after {
    content: '\2212';
}
/*faq sec end*/
/*owl slider css*/
.owl-nav.disabled {
    display: none;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #22C0FF !important;
}
.owl-theme .owl-dots .owl-dot span {
	background: #fff !important;
}
/*end*/
/*readmore css start*/
.hide {
  display: none;
}
.read-more-show, .read-more-hide {
    color: inherit;
    font-family: 'Satoshi-Regular';
    text-decoration: none;
}
.read-more-show span, .read-more-hide span {
    display: block;
    width: fit-content;
    background-image: linear-gradient(90deg, #1FA5D5, #36BF4D);
    padding: 10px 40px;
    color: #fff;
    text-decoration: none;
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 1.1rem;
    border-radius: 5px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
a.read-more-hide {
    width: 100%;
    margin-top: 20px;
}
/*end*/
/*modal popup css start*/
#fixedbtn {
    position: fixed;
    right: -65px;
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: center;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,.1);
    padding: 10px 20px;
    font-family: 'Satoshi-Bold';
    color: #fff;
    display: block;
    text-decoration: none;
    transition: all .3s;
    text-transform: uppercase;
    border: 0;
    top: 50%;
    transform: rotate(-90deg);
    border-radius: 0;
    height: 40px;
}
.trigger{
      text-align: center;
    background: linear-gradient(90deg, #1FA5D5, #36BF4D);
    color: #fff;
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    font-family: cursive;
    cursor: pointer;
}

/*.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}*/
.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: #A9A9A9;
}
.close-button:hover {
    background-color: #000;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    z-index: 99;
}
.banner_form {
    width: 100%;
    float: right;
    margin: 0px;
    background-color: #39629e;
    padding: 20px 30px;
    box-shadow: 0 0 20px 10px rgba(0,0,0,.2);
    text-align: center;
    margin-bottom: 50px;
}
.banner_form p {
    text-align: center;
    font-family: 'Satoshi-Bold';
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner_form .banner_frm {
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-family: 'Satoshi-Regular';
    color: #fff;
    padding-left: 0;
    border-bottom: 1px solid transparent;
    border-image: url(https://www.ralecon.com/ralecon-seo/images/border-img.png) 30 stretch;
    height: 40px;
    resize: none;
    font-size: 1rem;
    width: 100%;
    line-height: 40px;
}
.banner_form ::placeholder {
    color: #fff;
}
.sservice3 option {
    color: #000;
}
.banner_form button {
    color: #1e1c1c;
    font-family: Satoshi-Bold;
    text-transform: uppercase;
    padding: 5px 30px;
    background-color: #fff;
    border: none;
    margin-top: 10px;
}
/*end*/
/*common sec css start*/
.section {
	width: 100%;
	float: left;
	padding: 50px 0;
}
.section_main {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.sec_left, .sec_right {
	width: 45%;
}
.sec_cont {
    position: relative;
    overflow: hidden;
}
.sec_cont img {
	transition: .3s all;
}
img {
	width: 100%;
}
.sec_heading {
	font-family: Satoshi-Bold;
	margin-bottom: 30px;
}
.black {
	color: #1b1414;
}
.white {
	color: #fff;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.sec_desc {
	width: 85%;
	margin: 0 auto 30px ;
}
.three_box {
    width: 28%;
    padding: 20px;
    transition: .3s;
    position: relative;
}
.f-wrap {
	flex-wrap: wrap;
}
.gap-4 {
	gap: 40px;
}
.gap-3 {
	gap: 30px;
}
.gap-2 {
	gap: 20px;
}
.gap-0 {
	gap: 0;
}
.mt-0 {
    margin-top: 0;
}
.mt-2 {
    margin-top: 20px;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-2 {
    margin-bottom: 20px;
}
.pt-0 {
	padding-top: 0;
}
.pt-2 {
    padding-top: 20px;
}
.pt-3 {
    padding-top: 30px;
}
.pb-0 {
	padding-bottom: 0;
}
.pb-3 {
	padding-bottom: 30px;
}
.pb-2 {
	padding-bottom: 20px;
}
.text-right {
	text-align: right;
}
.w-100 {
	width: 100%;
}
.owl-carousel.off {
    display: block;
}
.m-block {
display: none;
}
/*modal css*/
.modal-toggle {
   cursor: pointer;
   color: #fff;
}
.modal-wrapper {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;

   background: rgba(0, 0, 0, 0.8);
   z-index: -1;
   opacity: 0;

   -webkit-transition: opacity 0.2s ease-in;
   -moz-transition: opacity 0.2s ease-in;
   transition: opacity 0.2s ease-in;

   pointer-events: auto;
}
.modal-wrapper > .modal_new {
   width: 460px;
   height: 40%;
   position: absolute;

   top: 0;
   bottom: 0;
   left: 0;
   right: 0;

   margin: auto;

   vertical-align: middle;
   padding: 20px;
   border-radius: 6px;
/*   background: #fff;*/
   z-index: 1;
       transform: translate(0, -50%);
}

.close {
   background: #606061;
    color: #ffffff;
    line-height: 25px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    transform: translate(-21px, 24px);
}

.close:hover {
   background: #333;
}
/*end*/
/*form css start*/

#contact input[value="http://"] {
    color: #888
}

#contact {
    background: #f9f9f9;
    padding: 25px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2),0 5px 5px 0 rgba(0,0,0,.24)
}

#contact h3 {
    display: block;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Satoshi-Bold';
    text-align: center;
}

#contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Satoshi-Regular';
    text-align: center;
}

fieldset {
    border: none!important;
    margin: 0;
    min-width: 100%;
    padding: 0;
    width: 100%
}

#contact input[type=email],#contact input[type=tel],#contact input[type=text],#contact input[type=url],#contact textarea {
    width: 94%;
    border: 1px solid #ccc;
    color: #333;
    background: #fff;
    margin: 0 0 10px;
    padding: 10px;
    font-family: 'Satoshi-Medium';
    font-family: 0.85rem;
}
.select_list_field {
    width: 100%;
    font-family: 'Satoshi-Medium';
    color: #888;
    font-size: 0.85rem;
    border: 1px solid #ccc;
    padding: 10px!important;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #fff;
}
#contact input[type=email]:hover,#contact input[type=tel]:hover,#contact input[type=text]:hover,#contact input[type=url]:hover,#contact textarea:hover {
    -webkit-transition: border-color .3s ease-in-out;
    -moz-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
    border: 1px solid #aaa
}

#contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
    color: #777!important
}

#contact button[type=submit] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4caf50;
    color: #fff;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px
}

#contact button[type=submit]:hover {
    background: #43a047;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background-color .3s ease-in-out
}

#contact button[type=submit]:active {
    box-shadow: inset 0 1px 3px rgba(0,0,0,.5)
}

#contact input:focus,#contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa
}

#crmWebToEntityForm ::-webkit-input-placeholder {
    color: #888
}

#crmWebToEntityForm :-moz-placeholder,::-moz-placeholder {
    color: #888
}

#crmWebToEntityForm :-ms-input-placeholder {
    color: #888
}
fieldset {
    border: none!important;
    margin: 0;
    min-width: 100%;
    padding: 0;
    width: 100%;
}
#contact input[type=reset], #contact input[type=submit] {
    cursor: pointer;
    width: 40%;
    border: none;
    background: #4caf50;
    color: #fff;
    margin: 0 94px;
    padding: 10px;
    font: 400 12px/16px open_sans_regular,Helvetica,Arial,sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
/*end*/