@charset "utf-8";
/* CSS Document */
:root{
	--color1:#00EC5A;
	--color2:#2CE1BE;
	--textcolor:linear-gradient(245.46deg, #00EC5A -18.41%, #2CE1BE 78.16%);
	--webkittextcolor:-webkit-linear-gradient(245.46deg, #00EC5A -18.41%, #2CE1BE 78.16%);
	--moztextcolor:-moz-linear-gradient(245.46deg, #00EC5A -18.41%, #2CE1BE 78.16%);


	--btnbg:linear-gradient(245.46deg, #00EC5A -18.41%, #2CE1BE 78.16%);
	--webkitbtnbg:-webkit-linear-gradient(245.46deg, #00EC5A -18.41%, #2CE1BE 78.16%);
	--mozbtnbg:-moz-linear-gradient(245.46deg, #00EC5A -18.41%, #2CE1BE 78.16%);

	--btnbg2:linear-gradient(245.46deg, #2CE1BE -18.41%, #00EC5A 78.16%);
	--webkitbtnbg2:-webkit-linear-gradient(245.46deg, #2CE1BE -18.41%, #00EC5A 78.16%);
	--mozbtnbg2:-moz-linear-gradient(245.46deg, #2CE1BE -18.41%, #00EC5A 78.16%);

	
	--footerbg:linear-gradient(245.46deg, #00ec5a5f -18.41%, #2ce1bd75 78.16%);

	--fbbtn:linear-gradient(245.46deg, #064FA5 -18.41%, #2A80E6  78.16%);
}



/** BASIC CSS **/

* { 
	margin: 0; 
	padding: 0; 
	border:none; 
	outline:none;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box;
	box-sizing: border-box;	}
	

html, body{
	height:auto;
	min-height: 100vh;
	max-width:100%;
	min-width:100%;
	background:#ffffff;
	font-family: 'Satoshi', sans-serif;
	font-size:14px;
	line-height:18px; 
	color:#000;
	font-weight:normal;
	font-style:normal;
	overflow-x:hidden;}
	
p {
	font-size: 16px;
	color: #141414;
	line-height: 28px;
	font-weight: 400;}
	
h1,h2,h3,h4,h5,h6{
     margin:0;
	 color:#555;
	 font-family: 'Clash Display', sans-serif;}

a {
	text-decoration:none;
	outline: none;
	color: #4b5460;}
	
:focus { 
	outline: none; }
	
a:focus {
	outline: none;}
	
a:hover, a:focus {
	color: var(--color2);
	text-decoration: none;}
		
hr{
	background:#e3e3e3;
	border-top:1px solid #333;}
	
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}
	
::selection {
	text-shadow: none;
	background: var(--color2);
	color: #fff;}
	
::-moz-selection {
 text-shadow: none;
 background: var(--color2);
 color:#fff;}
 
a, input, select, textarea, img ,button,.btn{
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;}
		
.clearfix {
	clear: both;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;}
			
.hidden{ 
	display: none !important;}
	
.show{ 
	display: block !important;}
	
.floatl{ 
	float: left;}
	
.floatr{
	float: right;}
	
.nopad{
	padding:0 !important;}

.nopadl{
	padding-left:0;}
	
.nopadr{
	padding-right:0;}
	
.btn:focus,button:focus,.form-control:focus{
	outline:0;
	box-shadow:0 0 0 0 transparent;
}
	

/** BASIC CSS END HERE **/ 
.navmenu {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
	backdrop-filter: blur(0px);
	z-index: 999;
	padding: 12px 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.navmenu.scrolling{
    background: #ffffff7b;
	backdrop-filter: blur(4px);
}
.navmenu.fixed{
	padding: 0px 0;
    background: #ffffff;
	backdrop-filter: blur(0px);
}
.brndlogo {
    display: block;
	max-width: 225px;
    width: 100%;
    height: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.navmenu.fixed .brndlogo {
    max-width: 165px;
}
.brndlogo img{
    width: 100%;
    height: 100%;
	object-fit: contain;
	object-position: left center;
}
.menumobile {
	display: none;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    font-size: 30px;
    width: 35px;
    height: 35px;
    margin: auto;
    background: transparent;
    color: #000;
	border: 0;
	border-radius: 5px;
}
.menumobile:hover,.menumobile:focus{
	background: var(--color1);
	background: var(--btnbg);
	color: #fff;
}
.menu {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}
.nav li{
	margin: 0 10px;
	position: relative;
}
.nav li a {
    font-size: 15px;
    font-weight: 500;
    color: #010201;
    padding: 19px 8px;
    display: block;
    position: relative;
}
.nav li a::after{
	content: "";
    display: block;
    width: 0%;
    height: 5px;
    border-radius: 20px;
    background: var(--btnbg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.nav li.active a{
	font-weight: 700;
}
.nav li a:hover::after,.nav li.active a::after{
    width: 100%;
}
.menu.open .nav li{
   animation: animation 0.5s ease forwards var(--i);
}
.herosection{
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 1;
}
.bg1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 771px;
	z-index: -1;
}
.right_hero_ig{
	width: 100%;
	height: 100%;
	position: relative;
	background: url('../images/object/heero2.png') no-repeat;
	background-position: center center;
	background-size: contain;
	padding: 2rem;
}
.right_hero_ig img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}
.over_hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.left_hero_text {
    padding: 20vh 0;
    max-width: 422px;
}
.left_hero_text  h1{
    font-size: 48px;
    font-weight: bold;
    color: #010201;
}
.left_hero_text  h1 span{
	color: var(--color1);
	background: var(--color1);
	background: var(--webkittextcolor);
	background: var(--moztextcolor);
	background: var(--textcolor);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.left_hero_text  p{
    color: #010201;
	font-size: 20px;
	margin: 20px 0;
}
.btn_common1{
	background: var(--color1);
	background: var(--btnbg2);
	color: #fff;
	font-size: 15px;
	padding:15px 40px;
	border-color: var(--color1);
	box-shadow: 0px 6px 11px #0faf9073;
}
.btn_common1:hover,.btn_common1:focus{
	background: var(--color1);
	background: var(--btnbg);
	color: #fff;
	border-color: var(--color1);
	box-shadow: 0px 6px 14px #0faf9073;
}
.trast_point{
    display: flex;
    align-items: center;
    margin-top: 21px;
}
.trst img{
	width: auto;
}
.trstrate {
    margin-left: 15px;
}
.rate{
    color: #FF833E;
    font-size: 21px;
    margin-bottom: 5px;
}
.trstrate label{
    color: #0102018a;
    font-size: 15px;
}
.section{
	padding: 100px 0;
	position: relative;
	z-index: 1;
  overflow: hidden;
}
.bg2 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 771px;
	z-index: -1;
}
.position-top{
	transform: translate(0px, -42%);
}
.section_title{
	margin-bottom: 10px;
}
.section_title h2{
    font-size: 32px;
    font-weight: bold;
    color: #010201;
}
.section_title h2 span{
	color: var(--color1);
	background: var(--color1);
	background: var(--webkittextcolor);
	background: var(--moztextcolor);
	background: var(--textcolor);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.section_title p{
	color: #010201;
	font-size: 18px;
	margin: 10px 0;
}
.video-box button + button {
	margin-left: 0.75em;
  }
  
  .video-box .upload {
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 0;
  }
  
  .video-box {
	margin: 2em 0;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .video-box .player {
    width: 100%;
    max-width: 100%;
    position: relative;
    font-size: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: -6px 20px 30px #0000001c;
}
.video-box .player_video {
	width: 100%;
	height: 100%;
	cursor: pointer;
  }
  .video-box iframe{
    width: 100%;
    height: 100%;
    min-height: 550px;
  }
  .video-box .fa {
	color: white;
	font-size: 1rem;
  }
  
  .video-box .fa-play:hover,
  .video-box .fa-pause:hover,
  .video-box .fa-stop:hover,
  .video-box .fa-volume-up:hover,
  .video-box .fa-fast-backward:hover,
  .video-box .fa-fast-forward:hover {
	color: var(--color1);
	cursor: pointer;
  }
  
  .video-box .player_button {
	background: none;
	border: 0;
	line-height: 1;
	color: white;
	text-align: center;
	outline: 0;
	padding: 0;
	cursor: pointer;
	max-width: 50px;
	min-width: 22px;
	font-size: 1rem;
  }
  .video-box .player_button:focus,
  .video-box .player_button:hover {
	border-color: #ffc600;
	border-color: blue;
  }
  .video-box .player_slider {
	width: 0.75rem;
	height: 3rem;
  }
  .video-box .player_controls {
	display: flex;
	position: absolute;
	bottom: 0;
	width: 100%;
	/* transform: translateY(100%) translateX(-5px);  */
	transition: all 0.3s;
	flex-wrap: wrap; 
	background: var(--btnbg);
	background: var(--mozbtnbg);
	background: var(--webkitbtnbg);
	padding: 0 1.5rem;
  }
  .video-box .player:hover .player_controls {
	transform: translateY(0);
  }
  
  .video-box .player:hover .progress-range {
	height: 0.75rem;
  }
  
  .video-box .right-controls {
	display: flex;
	justify-content: flex-end;
  }
  .video-box .left-controls {
	display: flex;
	justify-content: flex-start;
  }
  
  .video-box .player_controls > * {
	flex: 1;
  }
  .video-box .progress-range {
	flex: 10;
	position: relative;
	display: flex;
	flex-basis: 100%;
	height: 1.5em;
	transition: height 0.3s;
	background: rgba(0, 0, 0, 0.25);
	cursor: pointer;
  }
  .video-box .progress-bar {
	background: var(--color1);
	width: 50%;
	height: 100%;
	border-radius: 1.5em;
	transition: all 250ms ease;
  }
  
  .video-box .player:fullscreen {
	max-width: none;
	width: 100%;
  }
  .video-box .player:-webkit-full-screen {
	/*CHROME*/
	max-width: none;
	width: 100%;
  }
  .video-box .player:-moz-full-screen {
	/*FIREFOX*/
	max-width: none;
	width: 100%;
  }
  
  .video-box .time {
	text-align: right;
	position: relative;
	top: 1.5em;
	padding-left: 0.5em;
	margin-right: 1em;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	/* user-select: none; */
  }
  
  .video-box .time-elapsed,
  .video-box .fa-fast-forward {
	padding-left: 0.75em;
  }
  
  /**/
  /*css to style input type="range"*/
  .video-box input[type="range"] {
	max-width: 100px;
	-webkit-appearance: none;
	margin: 10px 0;
	width: 100%;
	background: transparent;
}

.video-box input[type="range"]:focus {
	outline: none;
}

.video-box input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: #01a841;
	border-radius: 10px;
}

.video-box input[type="range"]::-webkit-slider-thumb {
	box-shadow: 2px 0px 5px #b3b3b3, -1px -1px 3px grey;
	border: 5px solid #ffffff;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: var(--color1);
	cursor: pointer;
	margin-top: -6px;
	-webkit-appearance: none;
}

.video-box input[type="range"]:focus::-webkit-slider-runnable-track {
	background: #ebebeb;
}

.video-box input[type="range"]::-moz-range-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: var(--color1);
	border-color: transparent;
	border-width: 16px 0;
	color: transparent;
	border-radius: 10px;
}

.video-box input[type="range"]::-moz-range-thumb {
	box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
	border: 5px solid #ffffff;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: var(--color1);
	cursor: pointer;
	margin-top: -6px;
}

.video-box input[type="range"]::-ms-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: var(--color1);
	border-color: transparent;
	border-width: 16px 0;
	color: transparent;
	border-radius: 10px;
}

.video-box input[type="range"]::-ms-fill-lower {
	background: var(--color1);
	border-radius: 5px;
}

.video-box input[type="range"]::-ms-fill-upper {
	background: var(--color1);
	border-radius: 5px;
}

.video-box input[type="range"]::-ms-thumb {
	box-shadow: 2px 2px 5px #b3b3b300, -1px -1px 3px rgba(128, 128, 128, 0);
	border: 5px solid #ffffff00;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: var(--color1);
	cursor: pointer;
	margin-top: -6px;
}

.video-box input[type="range"]:focus::-ms-fill-lower {
	background: var(--color1);
}

.video-box input[type="range"]:focus::-ms-fill-upper {
	background: var(--color1);
}

  
  @media (max-width: 827px) {
	.video-box .fa {
	  color: white;
	  font-size: 0.9rem;
	}
	.video-box button + button {
	  margin-left: 0;
	}
	.video-box .time {
	  padding-left: 0;
	  margin-right: 0.5em;
	}
  
	.video-box .time-elapsed,
	.video-box .fa-fast-forward {
	  padding-left: 0.75em;
	}
	.video-box .player {
	  width: 80%;
	}
  }
  @media (max-width: 600px) {
	.video-box .player {
	  width: 95%;
	}
	
    .screenSize{
        display: block !important;
    }
    .right-controls .player_button {
        display: none;
    }
  }
  .link{
	color: var(--color1);
	text-decoration: underline;
  }
  .service_poperty{
	width: 100%;
	text-align: center;
	margin: 20px 0;
  }
  .pro_img{
	background: url('../images/object/smcircle.png') no-repeat;
	background-position: top center;
	background-size: contain;
	padding: 30px 20px 0px;
	width: 100%;
	max-width: 260px;
    height: 200px;
    margin: auto;
	margin-bottom: 15px;
  }
  .pro_img img{
		width: 100%;
		height: 100%;
		object-fit: contain;
  }
  .service_poperty p{
		font-size: 18px;
		color: #000;
		font-weight: bold;
		margin: 0;
  }
  .forest_bg{
	background: url('../images/forest.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
  }

  .packagebox {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 6px 18px #0003;
	overflow: hidden;
}
.packagehead {
    text-align: center;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    border-bottom: 1px solid #ededed;
}
.packagehead h4{
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
	color: var(--color1);
	background: var(--color1);
	background: var(--webkittextcolor);
	background: var(--moztextcolor);
	background: var(--textcolor);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.packagebody {
    padding: 2rem;
    min-height: 570px;
}
.packagebody h1{
	font-size: 29px;
	font-weight: bold;
    color: #000;
    margin-bottom: 11px;
}
.packagebody h2{
	font-weight: bold;
    font-size: 38px;
    color: var(--color1);
    background: var(--color1);
    background: var(--webkittextcolor);
    background: var(--moztextcolor);
    background: var(--textcolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricepack{
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricepack sub{
	color: #000000;
	font-size: 18px;
    font-weight: 500;
}
.pricepack label{
	font-size: 13px;
    display: block;
    padding: 8px;
    background: #daffec;
    color: var(--color1);
    border-radius: 8px;
    margin-left: 11px;
}
.packagebody .btn{
	width: 100%;
}
.packagebody ul{
    margin: 0;
    padding: 0 20px;
    list-style: none;
    margin-top: 37px;
}
.packagebody ul li{
	margin: 22px 0;
    font-size: 16px;
    color: #000;
	display: flex;
    align-items: flex-start;
    width: 100%;
}
.packagebody ul li .bx-check{
	color: var(--color1);
	font-size: 22px;
    margin-right: 13px;
}
.premium .packagehead{
	background: var(--btnbg);
}
.premium .packagehead h4{
	color: #fff !important;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.imgbox img{
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 4px 16px #0000004f;
    margin-bottom: 20px;
}
.imgbox {
    font-size: 18px;
    line-height: 1.4;
}
.buildingbg{
	background: url('../images/object/buildingbg.png') no-repeat;
	background-position: center bottom;
	background-size: 100%;
}
.post_img{
    width: 100%;
    height: auto;
    border-radius: 35px;
	overflow: hidden;
    box-shadow: 0px 9px 14px #00000036;
    margin: 25px 0;
}
.post_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post_cont{
    margin: 25px 0;
	padding: 0 20px;
}
.post_cont h2{
	color: #000;
    font-weight: 600;
    margin-bottom: 17px;
}
.ellipseleft {
    position: absolute;
    top: 0;
    left: 0;
	z-index: -1;
    transform: translate(0px, 0%);
    max-width: 400px;
}
.ellipsebottomleft{
    position: absolute;
    bottom: 0;
    left: 0;
	z-index: -1;
    transform: translate(0px, 0%);
    max-width: 1080px;
}
.middleright{
    position: absolute;
	top: 0;
    bottom: 0;
    right: 0;
	z-index: -1;
    transform: translate(0px, 0%);
    max-width: 1080px;
	margin: auto;
}
.ring {
    position: absolute;
    bottom: 330px;
    left: 50px;
	z-index: -1;
    transform: translate(0px, -100%);
}
.review_box {
    background: #fff;
    box-shadow: 0px 4px 17px #00000024;
    border-radius: 10px;
    padding: 1rem;
	margin: 20px 0;
}
.ratestr{
    display: flex;
    align-items: center;
    width: 149px;
    margin-bottom: 10px;
}
.ratestr .bx{
	background: #00B67A;
    color: #fff;
    display: block;
    width: 25px;
    margin-right: 5px;
    height: 25px;
    text-align: center;
    line-height: 1.5;
    font-size: 17px;
}
.review_box span{
    display: block;
    margin: 3px 0;
    font-size: 14px;
    color: #7d7d7d;
}
.review_box p{
    color: #000;
    font-size: 19px;
    font-weight: 600;
}
.review_box .readmore{
	display: block;
    text-align: center;
    color: var(--color2);
}
.review_bg_box {
    background: #fff;
    border-radius: 12px;
    padding: 1.3rem;
    box-shadow: 0px 4px 17px #00000024;
}
.exilant_rev h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.review_bg_box .review_box{
    box-shadow: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
}
.testimonial_bg{
	background: url('../images/object/centerbg.png') no-repeat;
	background-size: contain;
	background-position: center center;
}
.floadtrast {
    display: block;
    width: 74px;
    height: 74px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 5px 4px 8px #0000001f;
    position: absolute;
    top: 15%;
    right: 29%;
}
.floadtrast img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.faqbg{
	background: url('../images/object/Ellipse-41.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
}
.faqtab {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    justify-content: center;
    margin-top: 32px;
}
.faqtab li{
	font-size: 18px;
    font-weight: bold;
    margin: 0 25px;
    padding: 11px 0;
    position: relative;
    color: #000000;
	cursor: pointer;
}
.faqtab li::after{
    content: "";
    display: block;
    width: 0%;
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    bottom: -3px;
    background: var(--textcolor);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.tab-box{
	display: none;
}
.tab-box.active{
	display: block;
}
.faqtab li.active{
	color: var(--color1);
    background: var(--color1);
    background: var(--webkittextcolor);
    background: var(--moztextcolor);
    background: var(--textcolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faqtab li.active::after{
	width: 100%;
}


ul.accordion-list {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style: none;
  }
  ul.accordion-list li {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background-color: #FFF;
	padding: 20px;
	margin: 0 auto 15px auto;
	border: 1px solid #E7E7E7;
	border-radius: 5px;
	cursor: pointer;
  }
  ul.accordion-list li.active h3:after {
	transform: rotate(180deg);
  }
  ul.accordion-list li h3 {
	font-weight: 600;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 26px 0 0;
    margin: 0;
    font-size: 17px;
    letter-spacing: 0.01em;
    cursor: pointer;
    color: #000;
  }
  ul.accordion-list li h3:after {
	content: "";
	position: absolute;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAANZJREFUSEvt081pAlEUhuFHsIcEVBJMmggi9mEDggXYRlZu3KWUECRN+I+C6SGIHBhBYmbmuhBczF0O33zvOe/Mrbnxqd24XwUoNVwpun9FI3zgJ2fUB/TxnrdK0UceYow5etj9KWngEy8YYPIfpAjwiC+8Yo3OGSTKp3jCDF3srwVEPiDfeD6DxPNT+QpveeURTLkHzUxFG0vU0cIiU7ct+pVSAPF+QEJXbBInJg8theWpG5wGDEjo+k0tvxYQ+djggE3pDcsCqYpS+y5yFaBUXaWoVNERTkIfGckggW4AAAAASUVORK5CYII=');
	right: 0;
	top: 0;
	width: 23px;
    height: 20px;
	transition: all 0.3s ease-in-out;
	font-size: 18px;
  }

  ul.accordion-list li div.answer {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
  }
  ul.accordion-list li div.answer p {
	position: relative;
	display: block;
	padding: 10px 0 0 0;
  }
  .p1{
	position: absolute;
    bottom: 30%;
    right: 17%;
    z-index: -1;
  }
  .p2{
	position: absolute;
	bottom: 19%;
    left: 19%;
    z-index: -1;
  }
  .p3{
	position: absolute;
	top: 28%;
    right: 45%;
    z-index: -1;
  }
  .p4{
	position: absolute;
	bottom: 47%;
    right: 23%;
    z-index: -1;
  }
  .p5{
	position: absolute;
    top: 40%;
    left: 24%;
    z-index: -1;
  }
  .p6{
	position: absolute;
	bottom: 38%;
    left: 24%;
    z-index: -1;
  }
  .p7{
	position: absolute;
    bottom: 30%;
    right: 17%;
    z-index: -1;
  }
  .bg-theme-light{
	background: #E8FCF5;
  }
  .app_section{
	background: var(--btnbg);
	padding: 50px 0 25px;
    margin-top: 140px;
    position: relative;
  }
  .app_img{
	width: 100%;
	position: relative;
  }
  .app_img img {
    width: 100%;
    margin-top: -280px;
}
  .app_content h1{
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;
  }
  .app_content h1 span{
	color: #000000;
  }
  .app_content p{
	color: #fff;
  }
  .app_download a{
    display: block;
    width: 200px;
	transform: translate(-14px, 0px);
  }
  .app_download a img{
	width: 100%;
  }
  .app_rate{
    font-size: 19px;
    color: #FDE400;
    margin-bottom: 8px;
  }
  .app_download span{
    display: block;
    font-size: 15px;
    color: #fff;
  }
  .footer_top{
	background: var(--footerbg);
	padding: 60px 0;
  }
  .footer_bottom{
	background: #fff;
	padding: 15px 0;
  }
  .footer_bottom p{
		margin: 0;
		color: #000000;
  }
  .footer_logo{

  }
  .footer_logo a{
	max-width: 220px;
		display: block;
		margin-bottom: 20px;
  }
  .footer_logo a img{
	 width: 100%;
  }
  .footer_logo h3{
    color: #000;
  }
  .footer_nav{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #000;
    max-width: 611px;
    margin-left: auto;
  }
  .footer_nav li{
	margin: 0 20px;
  }
  .footer_nav li:first-child{
	margin-left: 0;
  }
  .footer_nav li:last-child{
	margin-right: 0;
  }
  .footer_nav li a{
	color: #000;
	font-weight: 500;
  }
  .text-theme{
	color: var(--color1) !important;
  }
  /*---------inner page---------*/
  .inner_page{
	position: relative;
	margin-top: 68px;
  }
  .top_inner{
	position: relative;
	padding-top: 100px;
	padding-bottom: 33px;
	z-index: 1;
  }
  .top_inner .p7{
    bottom: 18%;
    right: 12%;
  }
  .top_inner .p2{
    bottom: 43%;
    left: 27%;
  }
  .top_inner .p3{
	top: 38%;
    right: 36%;
  }
  .top_inner .p4{
	bottom: 47%;
    right: 23%;
  }
  .top_inner .p5{
	top: 37%;
    left: 34%;
  }
  .top_inner .p6{
	bottom: 14%;
    left: 20%;
  }
  .about_content {
    max-width: 1170px;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 3px 7px 31px 0px #0000001c;
    border-radius: 10px;
}
.about_both{
	height: auto;
    width: 100%;
	margin: 50px 0;
}
.both_img{
	width: 100%;
    height: 100%;
    max-height: 520px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 20px #00000047;
}
.both_img img{
	width: 100%;
	height:100%;
	object-fit: cover;
}
.both_content {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100%;
}
.both_content h1{
    font-weight: bold;
    color: #000;
    margin-bottom: 14px;
}
.both_content p{
    font-weight: 500;
    color: #000;
}
.both_content .position_text{
	color: var(--color1);
}
.cbox {
    background: #fff;
    box-shadow: 0px 3px 18px #0000002e;
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 234px;
}
.cbox .titlecbo{
	display: flex;
    align-items: center;
    color: #000;
    font-size: 21px;
    margin-bottom: 16px;
}
.cbox .titlecbo img{
	min-width: 50px;
    max-width: 50px;
    margin-right: 19px;
}
.cbox p{
	font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}
.aboutengment_bg{
	background: url('../images/aboutengment.png') no-repeat;
	background-size: cover;
	background-position: center center;
}
.aboutengment_bg .section_title h2{
	color: #fff !important;
}
.aboutengment_bg .section_title p{
	color: var(--color1) !important;
}
.aboutengment_bg p{
	color: #fff;
}
.offerbg{
	background: url(../images/object/offerbg.png) no-repeat;
    background-size: 70%;
    background-position: center center;
}
.sometext h1{
	font-weight: bold;
	color: #000000;
	margin-bottom: 20px;
}
.pb-200{
	padding-bottom: 200px;
}


.animate_bottom .p7{
    bottom: 30px;
    right: 17%;
  }
  .animate_bottom .p2{
	bottom: 92px;
    left: 29%;
  }
  .animate_bottom .p3{
	top: inherit !important;
	bottom: 108px;
    right: 45%;
  }
  .animate_bottom .p4{
	bottom: 67px;
    right: 40%;
  }
  .animate_bottom .p5{
	top: inherit !important;
	bottom: 127px;
    left: 34%;
  }
  .animate_bottom .p6{
	bottom: 24px;
    left: 20%;
  }

  .contact_form {
    max-width: 1140px;
    background: #fff;
    padding: 3rem;
    box-shadow: 0px 1px 30px #bfdfd3a6;
    border-radius: 20px;
    margin: auto;
}
.contact_form .form-control{
	padding: 12px 20px;
}

.connection_box {
  width: 100%;
  background: #fff;
  box-shadow: 0px 5px 15px #58897533;
  border-radius: 15px;
  padding: 2rem;
}
.connection_sec .right_hero_ig{
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.title_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}
.title_bar h1{
  color: #000;
  font-weight: bold;
}
.title_bar button{
  background: transparent;
  width: 33px;
}
.title_bar button img{
  width: 100%;
}
.dropdownlang {
  position: relative;
}
.dropdownlang button{
  background: transparent;
}
.dropdown-lan {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  margin: 0;
  list-style: none;
  border-radius: 8px;
  padding: 15px 12px;
  border-radius: 15px;
  box-shadow: 0px 5px 20px #c4dbd0b0;
}
.dropdown-lan li a{
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  color: #000;
}
.dropdown-lan li a img{
  min-width: 35px;
  height: auto;
  max-width: 35px;
  margin-right: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.dropdown-lan li.active a{
  font-weight: 600;
  background: #29e2b55e;
}
.connection_box label{
  color: #010201;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.connection_box .form-control{
  padding: 13px;
    font-size: 16px;
}
.passfield a{
  color: #02020287;
  margin-left: auto;
  display: inline-block;
  float: right;
  font-weight: 500;
}
.fbbtn{
	background: #064FA5;
	background: var(--fbbtn);
	color: #fff;
	font-size: 15px;
	padding:9px 40px;
	border-color: #064FA5;
	box-shadow: 0px 6px 11px #b2e0e9;
  align-items: center;
    display: flex;
    justify-content: center;
}
.fbbtn:hover,.fbbtn:focus{
	background: #064FA5;
	background: var(--fbbtn);
	color: #fff;
	border-color: #064FA5;
	box-shadow: 0px 6px 14px #b2e0e9;
}
.fbbtn i.bx{
  font-size: 38px;
  margin-right: 4px;
}
.connection_box p{
  color: #010201;
  font-weight: 600;
  font-size: 16px;
}
.owl-carousel .owl-stage-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-dots{
  text-align: center;
}
.owl-dots .owl-dot{
  width: 9px;
  height: 9px;
  background: #d1d1d1 !important;
  margin: 1px;
  border-radius: 50%;
}
.owl-dots .owl-dot.active{
  background: var(--color1) !important;
}

.custom_captcha {
    display: flex;
    align-items: center;
    width: 180px;
    height: 43px;
    border-radius: 5px;
    border: 1px solid var(--color1);
    background: #dbdbdb;
    overflow:hidden;
    position:relative;
}
.custom_captcha button {
    background: var(--btnbg);
    color: #fff;
    padding: 12px;
    font-size: 20px;
}
.capshow {
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 1.4;
    font-size: 21px;
}
.custom_captcha #key {
    position: absolute;
    right: 4px;
    bottom: 0;
    margin: 0;
    line-height: 1;
    font-size: 14px;
    width: 70%;
    text-align: center;
}
.video-wrapper {
  position: relative;
  width: 100%; /* Le conteneur prend toute la largeur de son parent */
  max-width: 640px; /* Largeur maximale du conteneur */
  margin: auto; /* Centrer le lecteur vidéo horizontalement */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Effet d'ombre pour la profondeur */
  border-radius: 15px; /* Bords arrondis pour le conteneur */
  overflow: hidden; /* Assure que les bords arrondis s'appliquent à la vidéo */
}

.video-wrapper::before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 56.25%; /* Ratio 16:9 (9 / 16 = 0.5625) */
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  /* border-radius: 15px; Inutile ici, car l'overflow:hidden; du conteneur s'applique */
}
.logo {
  width: 22px; /* ou toute autre largeur */
  height: auto; /* pour maintenir le ratio d'aspect */
}