/*====================== Google fonts ========================*/

/* Sora */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');

/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;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');



/*====================== Basic css ========================*/

html {
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
	--sora: 'Sora', sans-serif;
	--poppins: 'Poppins', sans-serif;
	--white: #ffffff;
	--black: #000000;
	--orange: #F08218;
	--greenish-blue: #06C6C6;
	--darkest-greenish-blue: #1E7184;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a,
a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--black);
	font-family: var(--poppins);
	overscroll-behavior: none;
	margin: 0;
	padding: 0;
	/*overflow-x: hidden;*/
}

.container {
	padding-left: 15px;
	padding-right: 15px;
}


/* Title direction */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--sora);
}

h1 {
	font-size: 80px;
	line-height: 1;
	color: var(--black);
	font-weight: 700;
	font-family: var(--sora);
}

h2 {
	font-size: 5rem;
	line-height: 1.26;
	color: var(--black);
	font-weight: 700;
	font-family: var(--sora);
}

h3 {
	font-size: 25px;
	line-height: 1.33;
	color: var(--black);
	font-weight: 400;
	font-family: var(--poppins);
}
#sub-title{
	font-size: 30px;
	line-height: 1.33;
	color: var(--black);
	font-weight: 400;
	font-family: var(--poppins);
}
td{
	font-size: 16px;
	padding-left: 20px!important;

}
th{
	font-size: 20px;
	padding-left: 20px!important;

}
u{
	font-weight: 600;
}

h4 {
	font-size: 25px;
	line-height: 1.4;
	color: var(--black);
	font-weight: 400;
	font-family: var(--poppins);
}
.w-600{
	font-weight: 600;

}

h5 {
	font-size: 2.5rem;
	line-height: 1;
	color: var(--black);
	font-weight: 700;
	font-family: var(--sora);
}
p{
	font-size: 20px;
}


/* font weight direction */

.f-400 {
	font-weight: 400 !important;
}

.f-600 {
	font-weight: 600 !important;
}

.f-700 {
	font-weight: 700 !important;
}


/* Button direction */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 4.5rem;
	font-size: 1.8rem;
	color: var(--white);
	font-weight: 700;
	font-family: var(--sora);
	border-radius: 2.5rem;
	position: relative;
	transition: 200ms;
	background: var(--orange);
	z-index: 1;
	border: none;
	overflow: hidden;
}

.button::before {
	position: absolute;
	top: 100%;
	left: 100%;
	content: "";
	background: #D4304B;
	width: 35rem;
	height: 35rem;
	transition: 400ms;
	z-index: -1;
	border-radius: 50%;
	z-index: -1;
}

.button:hover {
	color: white;
}

.button:hover::before {
	top: -5rem;
	left: -5rem;
}


/* button_bg1 */
.button_bg1 {
	background: var(--greenish-blue);
}

.button_bg1::before {
	background: var(--darkest-greenish-blue);
}


/* button_sm */

.button_sm {
	padding: 1rem 2.5rem;
}




/* Color direction */

.text_orange {
	color: var(--orange) !important;
}

.text_greenish_blue {
	color: var(--greenish-blue) !important;
}


/*====================== Header area ========================*/

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	padding: 4rem 0;
	background: transparent;
	transition: 300ms;

}

/*sticky*/
header.sticky {
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	background: var(--white);
	box-shadow: .5rem .5rem 1rem rgb(42, 68, 97, 0.05);
	padding: 2rem 0;
}


.site_logo {
	display: inline-block;
	width: 23.5rem;
}

.site_logo img {
	width: 100%;
}


/* menu */
.menu {
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu li:not(:last-child) {
	margin-right: 7.5rem;
}

.menu a {
	font-size: 2rem;
	color: var(--black);
	font-family: var(--sora);
	font-weight: 700;
	transition: 200ms;
}

.menu a:hover {
	color: var(--greenish-blue);
}


.lang_select {
	position: relative;
}

.lang_select .nice_select {
	border: none;
	background: transparent;
	font-family: var(--sora);
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--black);
	background: transparent;
	width: 7rem;
	padding: 0;
	padding-left: 3.4rem;
	height: 3rem;
	line-height: 3rem;
}

.lang_select .nice_select::after {
	display: none;
}

.lang_select .nice_select .list {
	margin-top: 1rem;
}

.nice-select .list {
	width: 100%;
}
.nice-select .list .option a {
	color: var(--black);
	padding-right: 29px;
}
.nice-select .list .option a:hover {
	color: var(--black);
}
.nice-select .list .option a:visited {
	color: var(--black);
}

.lang_select .fa-globe {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	pointer-events: none;
	font-size: 2.4rem;
}


/*====================== Hero area ========================*/

.hero_area {
	text-align: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 22rem 0 10rem;
}


.privacy_area {
	text-align: left;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 22rem 0 10rem;
	min-height: 747px;

}

.scroll_dwon p {
	font-weight: 600;
	text-transform: uppercase;
}

.scroll_dwon a {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	border: 1px solid var(--black);
	color: var(--black);
}

.succ-btn {
	text-align: center;
}

.succ-btn a {
	text-transform: uppercase;
	color: var(--black);
	transition: 0.2s all ease;
	display: inline-block;
	margin-bottom: 1rem;
}

.succ-btn a:hover {
	text-decoration: underline;
}

/*====================== boost area ========================*/

.boost_area {
	padding: 7.5rem 0 10rem;
	border-bottom: 2px solid #F8F9FA;
}

.boost_area p {
	margin-top: 5rem;
	margin-left: 3rem;
	padding-left: 3rem;
	border-left: .4rem solid var(--greenish-blue);
}



/*====================== About us area ========================*/

.about_us_area {
	padding: 10rem 0;
}

.about_content_title {
	padding-bottom: 2rem;
	margin-bottom: 5.5rem;
}

.about_content_wrap .row2 {
	margin-top: -18rem;
}

/*.about_img {
	width: 56rem;
}
*/

.about-circle {
	width: 50rem;
	height: 50rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: relative;
}

.about_img {
	width: 40rem;
	display: block;
	margin: 0 auto;
}

.video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 43rem;
	height: 43rem;
	border: 1px dashed #06C6C6;
	border-radius: 50%;
	animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 47rem;
	height: 47rem;
	border: 1px dashed #06C6C6;
	border-radius: 50%;
	transition: all 200ms;
	animation: pulse-border2 1500ms ease-out infinite;
}

/*====================== Content area ========================*/
.box-sizing {
	box-sizing: border-box;
	padding: 20px;
}
#table-mobile{
	display:none;
}
#border-left{
    margin-left: 30px;
	border-left: 3.17px solid #06C6C6;

}
#border-left-content{
	margin-left: 26px;

}
#font-30{
	font-size: 30px;
}



@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.15);
		opacity: 0;
	}
}

@keyframes pulse-border2 {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
		opacity: 0;
	}
}


/*====================== bluefrog approach area ========================*/

.bluefrog_approach_area {
	text-align: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 13rem 0;
	color: var(--white);
}



/*====================== location area ========================*/

.location_area {
	position: relative;
	padding: 27rem 0 24rem;
	z-index: 1;
}

.location_img {
	position: absolute;
	left: -45rem;
	bottom: -33rem;
	width: 134%;
	z-index: -1;
}

.link {
	display: inline-block;
	font-family: var(--sora);
	color: var(--greenish-blue);
	transition: 300ms;
	text-decoration: underline;
}

.link:hover {
	color: var(--darkest-greenish-blue);
	text-decoration: underline;
}




/*====================== location area ========================*/

.who_we_are_area {
	position: relative;
	padding: 7rem 0 10rem;
	background: #F8F9FA;
	overflow: hidden;
}

.circle_sh {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 103rem;
}

.who_we_are_area .title_lg {
	position: absolute;
	top: -1rem;
	right: -22.5rem;
	font-size: 16rem;
	line-height: 0.75;
	color: #E2E6EA;
	text-align: center;
}


/* member_card */
.member_card {
	width: 38.5rem;
}

.member_card.mt_190 {
	margin-top: 19rem;
}

.member_img_blk {
	position: relative;
	border-radius: 6.5rem;
	box-shadow: .5rem .5rem 1rem rgb(42, 68, 97, 0.2);
}

.member_img {
	width: 100%;
	border-radius: 6.5rem;
}

.member_card .button {
	padding: .75rem;
	width: 25.5rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 2.5rem;
	font-weight: 600;
	font-family: var(--poppins);
}

.member_card .button i {
	margin-left: 1rem;
}

.member_info {
	padding: 3rem;
}

.member_card_about {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 6.5rem;
	padding: 3.4rem 3rem;
	color: var(--white);
	z-index: 2;
	opacity: 0;
	transition: 200ms;
	z-index: 1;
}

.member_img_blk:hover .member_card_about {
	opacity: 1;
}

.member_card_about>* {
	opacity: 0;
	transition: 400ms;
}

.member_img_blk:hover .member_card_about>* {
	opacity: 1;
}

.member_card_about::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	right: 8rem;
	bottom: 4rem;
	background: #06C6C6;
	border-radius: 6.5rem;
	transition: 300ms;
	z-index: -1;
}

.member_card_about1::before {
	background: #F08218;
}

.member_img_blk:hover .member_card_about::before {
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
}

.member_card_about .title {
	line-height: 1.25;
}

.member_card_about .text {
	font-size: 1.6rem;
	margin: 3rem 0 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 9;
	-webkit-box-orient: vertical;
}

.member_social {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.member_social .icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	border: 1px solid var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 2rem;
	margin-right: 1rem;
}

.member_social a {
	color: var(--white);
	font-weight: 600;
	font-size: 1.8rem;
	text-decoration: underline;
	transition: 200ms;
}

.member_social a:hover {
	opacity: 0.8;
}



/*====================== marquee area ========================*/

.marquee {
	background: var(--black);
	color: var(--white);
	overflow: hidden;
	padding: 1.5rem 0;
}

.js-marquee {
	display: flex;
	align-items: center;
}

.marquee h2 {
	font-size: 5rem;
	color: var(--white);
}

.marquee .icon {
	width: 3.3rem;
	margin: 0 4rem;
}



/*====================== services area ========================*/

.services_area {
	background: #FEF5ED;
	padding: 8rem 0 12rem;
	overflow: hidden;
}

.services_area_title {
	padding-bottom: 1.2rem;
}


.services_area .gx-5 {
	--bs-gutter-x: 16rem;
}

.service_icon {
	width: 10rem;
	margin-bottom: 1rem;
}

.service_box h2 {
	font-weight: 400;
}

.service_box p {
	margin-top: 2.1rem;
}

.service_box ul {
	padding-left: 4.5rem;
}

.service_box ul li {
	list-style: disc;
	margin-top: 2.4rem;
	line-height: 1;
}

.service_box .more_content a {
	display: none;
	align-items: center;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--black);
	font-family: var(--sora);
	text-decoration: underline;
	margin-top: 3rem;
}

.service_box .more_content a img {
	width: 1.5rem;
	margin-left: 2rem;
}

.service_box .more_content a span:nth-child(2) {
	display: none;
}

.service_box .more_content.show a span:nth-child(1) {
	display: none;
}

.service_box .more_content.show a span:nth-child(2) {
	display: inline;
}

.service_box .more_content.show a img {
	transform: rotate(180deg);
}




/*====================== contact banner area ========================*/

.contact_banner_area {
	padding: 6rem 0;
	background: #14263A;
	text-align: center;
	color: var(--white);
}



/*====================== supply chain area ========================*/

.supply_chain_area {
	padding: 9.5rem 0 10rem;
}

.tab_nav_wrap {
	display: flex;
}

.supply_chain_tab_nav {
	border: none;
	margin-left: auto;
	display: flex;
}



.supply_chain_tab_nav li:not(:last-child) {
	margin-right: 5rem;
}

.supply_chain_tab_nav .nav-link {
	position: relative;
	padding: 0;
	padding-bottom: 2.2rem;
	border: none;
	background: transparent;
	font-size: 1.8rem;
	font-family: var(--sora);
	color: var(--black) !important;
	transition: 200ms;
}

.supply_chain_tab_nav .nav-link::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: .5rem;
	border-radius: .6rem;
	background: var(--black);
	transition: 200ms;
}

.supply_chain_tab_nav .nav-link:hover,
.supply_chain_tab_nav .nav-link.active {
	font-weight: 700;
	background: transparent;
}

.supply_chain_tab_nav .nav-link.active::before {
	width: 100%;
	left: 0;
	right: unset;
}

.supply_chain_tab_content ul {
	padding-left: 5rem;
	padding-top: 3rem;
}

.supply_chain_tab_content ul li {
	list-style: disc;
	margin-bottom: .8rem;
}



/*====================== contact area ========================*/

.contact_area {
	position: relative;
	padding: 10rem 0;
	border-top: 2px solid #F8F9FA;
	overflow-x: hidden;
}

.form_group {
	margin-bottom: 2.4rem;
}
.form-message.error{
	color: darkred;
}
.form-message.success{
	color: green;
}
.input_label {
	font-size: 2rem;
	color: var(--black);
	font-weight: 600;
	line-height: 1.25;
}

.input_box {
	width: 100%;
	height: 4.5rem;
	border: 1px solid rgb(42, 68, 97, 0.5);
	border-radius: .7rem;
	background: transparent;
	padding: 0 2rem;
	font-family: var(--poppins);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--black);
}

.textarea {
	width: 100%;
	border: 1px solid rgb(42, 68, 97, 0.5);
	border-radius: .7rem;
	background: transparent;
	padding: 1.5rem 2rem;
	font-family: var(--poppins);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--black);
	resize: none;
}

.input_box:focus,
.textarea:focus {
	border-color: var(--black);
}

.input_box::placeholder,
.textarea::placeholder {
	font-size: 1.6rem;
	font-weight: 400;
	color: rgb(0, 0, 0, 0.5);
	font-family: var(--poppins);
	opacity: 1;
}


/* checkbox */
.checkbox {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.checkbox+label {
	position: relative;
	cursor: pointer;
	user-select: none;
	line-height: 1;
	padding-left: 3.2rem;
}

.checkbox+label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid rgb(42, 68, 97, 0.5);
	width: 2rem;
	height: 2rem;
	border-radius: .2rem;
	display: inline-block;
	cursor: pointer;
}

.checkbox:checked+label:after {
	font-family: "Font Awesome 5 Pro";
	content: '\f00c';
	font-weight: 400;
	position: absolute;
	top: .2rem;
	left: .1rem;
	width: 2rem;
	height: 2rem;
	border-radius: .2rem;
	text-align: center;
	font-size: 1.5rem;
}

.checkbox_field p {
	font-size: 1.6rem;
	margin-top: 1rem;
}



/* contact_info */
.contact_info {
	padding-top: 5rem;
	margin-top: 5rem;
	border-top: 1px solid #F8F9FA;
}

.contact_info_inner {
	padding-left: 3rem;
	border-left: .4rem solid var(--greenish-blue);
}

.contact_info a {
	display: inline-block;
	color: var(--black);
	transition: 200ms;
}

.contact_info a:hover {
	text-decoration: underline;
}

.contact_info a.mail {
	font-weight: 700;
	text-decoration: underline;
}

/* social_links */
.social_links {
	display: flex;
	align-items: center;
	justify-content: end;
}

.social_links li:not(:last-child) {
	margin-right: 1.4rem;
}

.social_links a {
	font-size: 2.2rem;
	color: #9C9C9C;
	transition: 200ms;
}

.social_links a:hover {
	color: var(--black);
}


.location_map {
	position: absolute;
	top: 0;
	right: 0;
	width: 41%;
	height: 100%;
}



/*====================== Footer area ========================*/

.footer_top {
	background: var(--black);
	padding: 2.5rem 0;
}

.footer_logo {
	display: inline-block;
	width: 25.5rem;
}

.footer_logo img {
	width: 100%;
}

.footer_links {
	display: flex;
	align-items: center;
	justify-content: end;
	font-size: 1.6rem;
	color: #CCCCCC;
}

.footer_links a {
	font-size: 1.6rem;
	color: #CCCCCC;
	margin: 0 1rem;
}

.footer_links a:last-child {
	margin-right: 0;
}

.footer_links a:hover {
	text-decoration: underline;
}

.copyright {
	padding: 1.2rem 0;
	text-align: center;
	font-size: 1.6rem;
}

.copyright a {
	color: var(--black) !important;
	text-decoration: underline;
}






/* ---- line bar animation ----- */

.line_bar {
	position: relative;
}

.line_bar::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--black);
	transition: 1.5s;
}

.line_bar.in-view::before {
	width: 100%;
}








/*========== Page loader CSS ==========*/

#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader3 {
	width: 8rem;
	height: 8rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 8rem;
	height: 8rem;
	border-radius: 100%;
	background: var(--orange);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}


/*========== return-to-top ==========*/

.back-to-top {
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	border-radius: 50%;
	padding: 0 !important;
	z-index: 1000;
}