/*   Theme default css */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ======font family=========
font-family: "Roboto", sans-serif;
font-family: "Inter", sans-serif;
*/

:root {
	--gdColor: linear-gradient(81.94deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%);

	--f18: 18px;
	--f20: 20px;
	--f22: 22px;
	--f24: 24px;
	--f28: 28px;
	--f30: 30px;
	--f32: 32px;
	--f36: 36px;
	--f40: 40px;
	--f48: 48px;
}

body {
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
	background-color: #191a1a;
	color: #e8e8e6;
}

img {
	max-width: 100%;
}

button {
	cursor: pointer;
	border: none;
	padding: 0;
	background: none;
}

a:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

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

a,
button {
	color: inherit;
	outline: medium none;
	text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
	outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h1 {
	font-size: 57px;
	font-weight: 400;
}

h2 {
	font-size: var(--f36);
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: var(--f24);
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none;
}

.pb_150 {
	padding-bottom: 150px;
}
.pb_100 {
	padding-bottom: 100px;
}
.pb_50 {
	padding-bottom: 50px;
}
.pt_150 {
	padding-top: 150px;
}
.pt_100 {
	padding-top: 100px;
}
.pt_50 {
	padding-top: 50px;
}

.mb_150 {
	margin-bottom: 150px;
}
.mb_100 {
	margin-bottom: 100px;
}
.mb_50 {
	margin-bottom: 50px;
}
.mt_150 {
	margin-top: 150px;
}
.mt_100 {
	margin-top: 100px;
}
.mt_50 {
	margin-top: 50px;
}

/* default-css END 
================================== */

.header-area {
	padding: 30px 0;
	width: 100%;
	z-index: 99;
}

.header-area.white-bg {
	background: #f9f9f8;
}

.header-area.white-bg a {
	color: #000;
}

.header__content {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 80px;
}

.header__link {
	display: flex;
	align-items: center;
	gap: 12px;
}

.demo_btn {
	padding: 12px 20px;
	display: inline-block;
	background: var(--gdColor);
	border-radius: 40px;
	box-shadow: 0px -2px 4px 0px #ffffff73 inset;
	font-weight: 500;
	color: #000000;
	line-height: 1.2;
	transition: all 0.3s;
}

.demo_btn:hover {
	background: linear-gradient(265deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%);
}
.menu-area nav ul li {
	list-style: none;
	display: inline-block;
}

.menu-area nav ul li a {
	display: inline-block;
	position: relative;
	color: #e8e8e6;
	opacity: 0.5;
	transition: all 0.3s;
}

.menu-area nav ul li a:hover,
.menu-area nav ul li a.active,
.mobile-menu nav ul li a.active {
	background: linear-gradient(45deg, #50abff, #ffddb7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 1;
}

.menu-area ul {
	display: flex;
	gap: 32px;
}

/* humbergar */
.humbergar {
	cursor: pointer;
	display: block;
	max-width: 35px;
	margin-left: auto;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.humbergar span,
.humbergar span:before,
.humbergar span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 2px;
	width: 28px;
	background: white;
	position: relative;
	display: block;
	content: "";
	transition: all 250ms ease-in-out;
}
.white-bg .humbergar span,
.white-bg .humbergar span:before,
.white-bg .humbergar span:after {
	background: #000;
}

.humbergar span:before {
	top: -9px;
}
.humbergar span:after {
	bottom: -7px;
}

.humbergar.active span {
	background-color: transparent;
}
.humbergar.active span:before {
	top: -1px;
	transform: rotate(45deg);
}

.humbergar.active span:after {
	bottom: 3px;
	transform: rotate(-45deg);
}

/* humbarger END */

/* mobile-menu START */
.mobile-menu {
	position: fixed;
	width: 260px;
	height: 100vh;
	background: #000;
	z-index: 99;
	box-shadow: 0px 0px 9px -1px #737373;
	top: 0;
	left: 0;
	transition: 0.3s;
	margin-left: -400px;
	padding-left: 20px;
	padding-top: 30px;
}
.siteBar {
	margin-left: 0;
}
.mobile-menu ul#pills-tab {
	margin-top: 90px;
	margin-bottom: 35px !important;
	display: block;
}
.mobile-menu nav ul li {
	list-style: none;
	display: block;
}

.mobile-menu nav ul li a {
	font-size: 16px;
	line-height: 40px;
	transition: 0.3s;
}

.mobile-menu a.bars {
	position: absolute;
	right: 20px;
	top: 15px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	font-size: 32px;
	color: rgb(255, 0, 43);
}

/* Header section END */

/*============hero Area Start =============*/
.hero-area {
	padding: 100px 0 0px;
}
.container {
	max-width: 1380px;
}

.container.md {
	max-width: 1180px;
}

.hero__content {
	text-align: center;
}

img.hero-bg {
	filter: brightness(0.7);
	position: relative;
	z-index: -1;
	margin-bottom: 0;
	margin-top: -120px;
	left: 50%;
	transform: translateX(-50%);
}

.hero__content p {
	color: #e8e8e6;
	max-width: 600px;
	margin-inline: auto;
	opacity: 0.7;
}

.hero__content h1 {
	font-weight: 400;
}

.hero__content h1 img {
	position: relative;
	margin-left: -14px;
	margin-right: -30px;
	filter: drop-shadow(-2.6px -4px 4px rgba(255, 255, 255, 0.1)) 
	        drop-shadow(2.6px -4px 4px rgba(255, 255, 255, 0.1))
	        drop-shadow(-5.2px -7px 8px rgba(255, 255, 255, 0.07)) 
	        drop-shadow(5.2px -7px 8px rgba(255, 255, 255, 0.07))
	        drop-shadow(-7.8px -10px 12px rgba(255, 255, 255, 0.05))
	        drop-shadow(7.8px -10px 12px rgba(255, 255, 255, 0.05));
}
.hero__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.border-btn {
	display: inline-block;
	padding: 12px 25px;
	font-size: var(--f20);
	position: relative;
	border-radius: 50px;
	transition: all 0.3s;
}

.border-btn:hover img {
	filter: brightness(0);
}

.border-btn:hover {
	background: #fff !important;
	color: #000;
}

.border-btn.bg:after {
	background: linear-gradient(180deg, #c8d1ff, #23234100) border-box;
}

.border-btn.bg {
	background: linear-gradient(0deg, #212227, #212227), radial-gradient(27.43% 27.43% at 49.97% 0%, rgba(117, 139, 253, 0.18) 0%, rgba(33, 34, 39, 0.18) 100%);
	box-shadow: 0px 2.55px 5.11px 0px #191a1a26 inset;
	box-shadow: 0px -2.55px 5.11px 0px #ffffff73 inset;
	transition: all 0.3s;
}

.white-section .border-btn.bg:hover {
	background: var(--gdColor) !important;
	box-shadow: 0 0 16px #0005;
	color: #000 !important;
}

.border-btn:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 50px;
	border: 1px solid transparent;
	background: linear-gradient(184deg, #c8d1ff, #232341 123%) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.video__wrapper {
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.video__wrapper video {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: contain;
	max-height: 75vh;
	min-height: 300px;
	max-width: 100%;
	display: inline-block;
	vertical-align: top;
}

.video__play-button {
	margin: 0;
	padding: 0;
	cursor: pointer;
	position: absolute;
	/* top: 0; */
	left: 50%;
	border: 0;
	border-radius: 0;
	-webkit-appearance: none;
	z-index: 2;
	transition: all 200ms ease-in-out;
	bottom: -74px;
	width: 53px;
	height: 53px;
	transform: translateX(-50%);
}

.video__play-button-icon {
	transition: all 200ms ease-in-out;
}

.video__play-button-icon path {
	fill: #d9d9d9;
}

.video__play-button-icon--play polygon {
	transform-origin: 50% 50%;
	transition: all 200ms ease-in-out;
}

.video__play-button-icon--play:hover polygon {
	transform: scale(1.5);
}

.video__play-button[data-button-state="pause"] .video__play-button-icon--pause {
	display: none;
}

.video__play-button[data-button-state="play"] .video__play-button-icon--play {
	display: none;
}

.video__play-button[data-button-state="play"]:hover .video__play-button-icon {
	opacity: 1;
}

.video__fullscreen-button {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 10px;
	right: 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
	border-radius: 0;
	-webkit-appearance: none;
	z-index: 3;
	transition: all 200ms ease-in-out;
}

.video__fullscreen-icon {
	padding: 10px;
	display: block;
	vertical-align: top;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: all 200ms ease-in-out;
}

.video__wrapper[data-state="pause"] .video__fullscreen-icon,
.video__wrapper[data-state="play"]:hover .video__fullscreen-icon {
	opacity: 1;
	visibility: visible;
}

.video__fullscreen-icon polygon {
	fill: currentColor;
}
.video__content {
	padding: 24px;
	box-shadow: 0 0 40px #fff2;
	border-radius: 8px;
}

.video__content > button {
	margin-bottom: 30px;
	width: max-content;
	margin-left: auto;
	display: block;
}
.video__options {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.video__options ul {
	display: flex;
	gap: 20px;
}

.video__options a {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d9d9d9;
	border-radius: 50%;
}
/*============hero Area End =============*/

/*============Global Area Start =============*/

.Global-area {
	background: #f9f9f8;
	color: #191a1a;
	padding-top: 100px;
}

.Global-area.v2 .row {
	align-items: end;
}

.Global-area .row {
	align-items: center;
}

.Global__content i,
i.glob-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffbff3;
	border-radius: 8px;
	margin-bottom: 8px;
}

.Global__content h1 {
	margin-bottom: 20px;
}

.Global__content p {
	color: #191a1a;
	opacity: 0.5;
	max-width: 440px;
}
.Global__img {
	margin-bottom: -110px;
}

.v2 .Global__content {
	margin-bottom: 100px;
}

.v2 .Global__img {
	margin-bottom: -60px;
}
/*============Global Area End =============*/

/*============brand Area Start =============*/

.brand-area {
	padding: 150px 0;
}

.brand__slider-area .brand__card {
	position: absolute;
	top: -120px;
}

.brand__card.owl-carousel .owl-stage-outer {
	padding-top: 10px;
}

.brand__card__block {
	background: linear-gradient(0deg, #212121, #212121), radial-gradient(68.75% 68.75% at 47.83% 0%, rgba(255, 255, 255, 0.2) 0%, rgba(32, 32, 32, 0) 100%);
	padding: 20px;
	border-radius: 16px;
	position: relative;
}

.brand__card__block.btm {
	margin-top: 70px;
}

.brand__card__block:before {
	content: "";
	position: absolute;
	width: 116px;
	height: 7px;
	background: #fff;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 40px;
	top: -3px;
	z-index: -1;
}

.brand__card__block:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 16px;
	border: 1px solid transparent;
	background: linear-gradient(180deg, #c8d1ff, #232341) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.brand__card__block p {
	font-size: 14px;
	margin: 0;
	min-height: 40px;
}

.brand__card__block i {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.brand__card__block i img {
	width: unset !important;
}

.brand__card__block h6 {
	margin-top: 16px;
	margin-bottom: 5px;
}

.brand__logo p {
	margin: 0;
	max-width: 220px;
	min-width: 220px;
}

p {
	color: #e8e8e6;
	opacity: 0.7;
}

.brand__logo ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand__logo ul a {
	display: block;
	transition: all 0.3s;
}

/* Important part for smooth continuous effect */
.brand__card .owl-stage {
	display: flex;
	width: max-content !important;
	animation: scroll 50s linear infinite;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
/*============brand Area End =============*/

/*============media Area Start =============*/

.media__img--v2 {
	position: relative;
}

img.Agents-img-bg {
	position: absolute;
	left: -68px;
	z-index: -1;
	top: 4px;
	scale: 1 1.3;
}

img.Agents-img-bg.bg-2 {
	scale: 1;
	left: 3px;
	top: 50%;
	width: 43%;
	transform: translateY(-50%);
}

.media-area .section__title {
	padding-left: 85px;
}

.title--agent p {
	max-width: 545px;
	margin: 35px 0;
}

.media-area .row {
	align-items: center;
}

.title--agent h2 {
	font-size: 42px;
	max-width: 480px;
	margin-bottom: 30px;
}

.section__title h1 {
	margin-bottom: 20px;
}

.section__title label {
	margin-bottom: 16px;
	background: #597eff1a;
	color: #597eff;
	padding: 4px 8px;
	font-size: 12px;
	border-radius: 8px;
}
/*============media Area End =============*/

/*============Features Area Start =============*/

.Features-area {
	padding: 100px 0;
}

.white-section {
	background: #f9f9f8;
	color: #191a1a;
}

.white-section p {
	color: #191a1a;
	opacity: 0.5;
}

.Features-area .row {
	gap: 80px 0;
}

.section__title label.v2 {
	color: #c336a9;
	background: #c336a91a;
}

.Feature__block h4 {
	margin-bottom: 24px;
}

.Feature__block i {
	display: block;
	margin-bottom: var(--f24);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.Feature__block small {
	display: block;
	color: #a5a5a5;
	font-size: 12px;
	margin-bottom: 4px;
}
/*============Features Area End =============*/

/*============Creation Area Start =============*/

.Creation-area {
	text-align: center;
	padding-top: 100px;
	overflow: hidden;
}

.Creation-area .section__title {
	margin-bottom: 80px;
}

.Creation-bg {
	position: absolute;
	z-index: -1;
	left: 50%;
	bottom: -140px;
	transform: translateX(-50%);
}

.Creation__img {
	margin-bottom: -120px;
}
/*============Creation Area End =============*/

/*============footer Area Start =============*/
.footer-area {
	padding: 130px 0 30px;
	background: #161616;
}
.footer__nav {
	display: flex;
	justify-content: space-between;
	padding-right: 50px;
}
.footer__nav .footer-social-links {
	display: none !important;
}

.footer__nav a {
	display: block;
	margin-bottom: 16px;
	color: #e8e8e6;
	opacity: 0.5;
	transition: all 0.3s;
}

.footer__nav a:hover {
	opacity: 1;
}
.footer__content {
	max-width: 450px;
	margin: auto;
}
.mail__box {
	display: flex;
	align-items: center;
	border: 1px solid #3f4242;
	border-radius: 50px;
	padding-left: 24px;
	padding-right: 10px;
	background: #202120;
}

.mail__box a {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	background: linear-gradient(81.94deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%);
}

.mail__box input {
	height: 48px;
	background: no-repeat;
	border: none;
	color: #fff;
	width: 100%;
}

.footer-logo {
	margin-top: 70px;
	display: block;
}
.footer__bottom {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #fff2;
	padding-top: 18px;
	margin-top: 25px;
}

.footer__bottom a {
	transition: all 0.3s;
}

.footer__bottom a:hover {
	opacity: 1 !important;
	color: #fff !important;
}

.footer__bottom p {
	margin: 0;
	font-size: 12px;
}

.footer__bottom ul {
	display: flex;
	gap: 10px;
	color: #e8e8e67a;
	font-size: 12px;
}
/*============footer Area End =============*/

/*============agents Area Start =============*/

.agents__tab__nav {
	border: 0.89px solid #c4c4c4;
	width: max-content;
	margin: 10px auto 80px;
	border-radius: 99px;
	padding: 10px;
}

.agents__tab__nav::-webkit-scrollbar {
	display: none;
}

.agents__tab__nav ul button {
	border-radius: 50px !important;
	padding: 10px 20px;
	color: rgb(25 26 26 / 65%);
}

.agents__tab__nav ul button.active {
	background: linear-gradient(81.94deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%);
	color: #000000 !important;
	font-weight: 500;
}

.agents__tab__content {
	display: flex;
	gap: var(--f40);
	flex-wrap: wrap;
	justify-content: center;
}
.agents__tab__content .Feature__block {
	flex-basis: calc(20% - 32px);
}
/*============agents Area End =============*/

/*============Featur Area Start =============*/
.Featur-area {
	padding: 70px 0;
}

.Featur-area .row {
	align-items: center;
}

.left-space {
	padding-left: 100px;
}

.Featur__content h1 {
	margin-bottom: 30px;
}

.Featur__content p {
	margin: 0;
}
.Featur__image {
	background: linear-gradient(81.94deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%);
	border-radius: 20px;
	height: 400px;
	position: relative;
}

.Featur__image .right__btm {
	right: 0;
	bottom: 0;
}

.Featur__image img {
	position: absolute;
}

.Featur__image .right__center {
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.Featur__image .btm__center {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

img.hero-bg-2 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
/*============Featur Area End =============*/

/*============team Area Start =============*/
.team-area {
	padding: 80px 0;
}

.team__blk {
	backdrop-filter: blur(20px);
	position: relative;
	display: block;
	max-width: 366px;
	padding: 30px;
	margin-top: 32px;
}

.team__blk:after,
.news__block:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 10px;
	border: 2px solid transparent;
	background: linear-gradient(219deg, #066fff 40%, #ffddb7 96%, #b1c6fe) 223%;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
}

.team__blk:hover:after,
.news__block:hover:after {
	opacity: 1;
}

.team__blk h1 {
	margin: 0;
	font-size: 42px;
	margin-top: 6px;
	line-height: 1;
}

.team__blk i {
	display: block;
	margin-bottom: 18px;
	border-radius: 10px;
	overflow: hidden;
}
/*============team Area End =============*/

/*============contact Area Start =============*/

.contact__content ul li {
	margin-top: 30px;
}

.contact__content span {
	display: block;
	font-weight: 300;
	margin-bottom: 4px;
}

.contact__content h6 {
	font-weight: 600;
}

.input__block {
	margin-bottom: 30px;
}

.input__block textarea {
	width: 100%;
	height: 130px;
	border: 1px solid #0000001a;
	background: #0000000d;
	border-radius: 10px;
	padding: 12px 17px;
	resize: none;
}

.input__block input {
	width: 100%;
	border: 1px solid #0000001a;
	background: #0000000d;
	height: 54px;
	border-radius: 10px;
	padding: 16px;
}

.input__block label {
	display: block;
	margin-bottom: 8px;
}

/*============contact Area End =============*/

/*============price Area Start =============*/
.price-area {
	padding-top: 40px;
}
.price__block {
	padding: 24px;
	border-radius: 16px;
	margin-top: 40px;
}

.price__block.active {
	background: #222222;
	color: #fff;
}

.price__block.active li,
.price__block.active p,
.price__block.active h1 span {
	color: #fff;
	opacity: 0.5;
}

.price__block ul li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgb(25 26 26 / 51%);
	font-size: 14px;
	margin-bottom: 16px;
}

.price__block ul li i {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.price__block hr {
	margin: 24px 0;
	opacity: 0.1;
}

.price__block h1 {
	margin-bottom: 20px;
}

.price__block h1 span {
	display: inline-block;
	color: #191a1a;
	opacity: 0.5;
	font-size: 16px;
	margin-left: -12px;
}

.price__block label {
	background: #597eff1a;
	border-radius: 8px;
	font-size: var(--f20);
	padding: 10px 15px;
	line-height: 1.2;
	color: #597eff;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 20px;
}

/*============price Area End =============*/

/*============news Area Start =============*/

.news__nav {
	margin: 50px 0;
}

.news__nav ul {
	display: flex;
	gap: 16px;
	overflow: auto;
}

.news__nav ul li {
	flex-shrink: 0;
}

.news__nav ul a {
	background: #ffffff1a;
	display: flex;
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 24px;
	border-radius: 46px;
	border: 1px solid #ffffff4d;
	gap: 10px;
	transition: all 0.3s;
}

.news__nav ul a:hover {
	border-color: #fff;
}

.news__nav ul a.active {
	background: #fff;
	color: #0c031e;
}

.news__nav ul a.active span {
	opacity: 0.5;
}

.news__block {
	border: 1px solid #ffffff33;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 16px;
	position: relative;
}

.news__block picture {
	height: 250px;
	display: flex;
	align-items: center;
	margin-bottom: var(--f30);
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
}

.news__block picture a {
	height: 100%;
	width: 100%;
}

.news__block picture img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	transition: all 0.3s;
}

.news__block:hover picture img {
	scale: 1.1;
}
.news__text span {
	opacity: 0.5;
}

.news__text h5 {
	font-size: var(--f20);
	margin-bottom: 16px;
}

.news__text a {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	background: -webkit-linear-gradient(9deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: max-content;
}

.news__bottom {
	display: flex;
	justify-content: center;
	gap: var(--f32);
	margin-top: 40px;
}

.news__bottom > a {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--White, #ffffff);
	border-radius: 50%;
}

.news__bottom > a:hover {
	background: #80808047;
}

.news__bottom ul {
	display: flex;
	gap: var(--f24);
	align-items: center;
}

.news__bottom ul i {
	width: 11px;
	height: 11px;
	display: block;
	background: #fff;
	border-radius: 50%;
}

.news__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}
/*============news Area End =============*/

/*============ Area Start =============*/

.Article__content h2 {
	margin: 60px 0;
	opacity: 0.7;
	font-size: 34px;
}

.Article__content p {
	opacity: 1;
}

.Article__content picture {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	margin-bottom: 50px;
}

.Article__content h1 {
	margin-bottom: 30px;
}

.Article__list hr {
	margin: 32px 0;
}

.Article__list h4 {
	margin: 0;
}
.Article__block {
	display: flex;
	gap: 16px;
}

.Article__block p {
	margin: 0;
	opacity: 1;
}

.Article__block span {
	font-size: 12px;
	padding: 7px 12px;
	display: inline-block;
	background: #e0e0df;
	border-radius: 40px;
	line-height: 1;
	margin-bottom: 16px;
	position: relative;
	z-index: 22;
	width: max-content;
}

.Article__block span:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 40px;
	border: 1px solid transparent;
	background: linear-gradient(81.94deg, #066fff -24.12%, #b1c6fe 45.5%, #ffddb7 121.35%, #50abff 192.01%) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.Article__block picture {
	width: 166px;
}
.share__link {
	display: flex;
	justify-content: space-between;
	margin-top: -16px;
}

.share__link p {
	margin: 0;
	opacity: 1;
}

.share__link ul {
	display: flex;
	gap: 12px;
}

.share__link ul li a {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.share__link ul li a:hover {
	scale: 1.2;
}

.Article__image {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap: var(--f32);
	margin-bottom: 60px;
}

.Article__image img {
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.Article__image-3 {
	grid-column: span 2 / span 2;
	grid-row: span 2 / span 2;
}

.Article__image-4 {
	grid-row-start: 4;
}

.Article__image-5 {
	grid-row-start: 4;
}
.Article__list {
	margin-top: 50px;
}
/*============ Area End =============*/

/*============Privacy Area Start =============*/
.Privacy__content {
	max-width: 650px;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.Privacy__content ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: #666666;
}

.Privacy__content li b {
	display: block;
}

.Privacy__content h4 {
	font-family: "Inter";
	font-weight: 600;
}

.Privacy__content p {
	color: #666666;
	opacity: 1;
}

.Privacy__content h1 {
	font-weight: 600;
	font-family: "Inter";
	font-size: var(--f40);
}

.Privacy__content * {
	margin: 0;
}
.list-group-numbered li {
	list-style: auto;
	margin-left: 20px;
}
.list-group-doted li {
	list-style: disc;
	margin-left: 20px;
}

/*============Privacy Area End =============*/

/*============SignIn Area Start =============*/
.SignIn-area {
	height: 100vh;
	display: flex;
	overflow: hidden;
}
.SignIn__content {
	width: 50%;
	padding: 0 80px;
	overflow: auto;
}

.SignIn__content::-webkit-scrollbar {
	display: none;
}

.SignIn__content--inner {
	flex-direction: column;
	display: flex;
	gap: 35px;
	padding: 30px;
}
.back__link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #202120;
	border: 1px solid #3f4242;
	border-radius: 50%;
}

.social__links a {
	border: 1px solid #3f4242;
	display: flex;
	justify-content: center;
	background: #202120;
	border-radius: 10px;
	padding: 11px;
	margin-bottom: 16px;
	gap: 10px;
}

.SignIn__form .border-btn.bg img {
	filter: brightness(38.5);
}

.SignIn__form .input__block {
	margin-bottom: 24px;
}

.SignIn__form .input__block label {
	opacity: 0.7;
}

.SignIn__form .input__block input {
	background: #202120;
	border: 1px solid #3f4242;
	border-radius: 60px;
	color: #fff;
	height: 44px;
	padding: 10px 24px;
	width: 100%;
}

input#phone {
	width: 100% !important;
	padding-left: 70px;
	color: #fff;
}

.SignIn__image {
	width: 50%;
}

.SignIn__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.dropdown button {
	background-color: #253849;
	width: 100%;
	height: 44px;
	border-radius: 5px;
	color: white;
	padding: 10px 24px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	border: 1px solid #3f4242;
	background: #202120;
	border-radius: 42px;
	gap: 14px;
}
.dropdown button img {
	margin: 0 5px 0 0;
}
.dropdown button img,
.dropdown-content li img {
	width: 24px;
}
.dropdown button,
.dropdown-content li {
	display: flex;
	align-items: center;
	font-weight: 400;
}
.dropdown button .arrow-down {
	width: 0;
	height: 0;
	display: inline-block;
	vertical-align: middle;
	border-style: solid;
	border-width: 6px 7px 0 7px;
	border-color: #fff transparent transparent transparent;
	margin: 0 0 0 5px;
	margin-left: auto;
}

.dropdown button:hover {
	cursor: pointer;
}
/* Style for the dropdown content */
.dropdown-content {
	display: none;
	position: absolute;
	margin: 1px 0 0 0;
	padding: 0;
	background-color: #f5f5f5;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	border-radius: 5px;
	overflow-y: scroll;
	max-height: 270px;
	width: 100%;
	background: #202120;
}
/* Style for the dropdown content items */
.dropdown-content li {
	padding: 12px 16px;
	text-decoration: none;
	display: flex;
	flex-direction: row-reverse;
	justify-content: start;
}
.dropdown-content li img {
	margin: 0 20px 0px 20px;
	margin-left: 10px;
}
/* Style for the dropdown content items on hover */
.dropdown-content li:hover {
	background-color: #f1f1f1;
	cursor: pointer;
	color: blue;
	border-radius: 5px;
}
/* Show the dropdown content when the dropdown button is clicked */
.dropdown:focus-within .dropdown-content {
	display: block;
}
/* Animate the dropdown content */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.dropdown-content {
	animation: slideIn 0.3s ease-out;
}
/* Scrollbar styles */
.dropdown-content::-webkit-scrollbar {
	width: 8px;
	height: 10px;
}
.dropdown-content::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #c2c9d2;
}

.iti {
	width: 100%;
}
.iti__flag-container {
	margin-left: 20px;
}

/* Flag size fix */
.iti__flag {
	transform: scale(1.3); /* increase size proportionally */
	transform-origin: center;
}

/* Adjust container to fit bigger flag */

input#phone {
	padding-left: 69px !important; /* to make space for bigger flag */
	height: 44px;
	font-size: 16px;
}
/*============SignIn Area End =============*/

/*============ Area Start =============*/
.teams-area {
	padding: 100px 0;
}
.teams__img {
	position: absolute;
	left: 0;
	width: 40%;
	top: 50%;
	transform: translateY(-50%);
}

img.teams__img-right {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	width: 47%;
}

img.teams__img-bg-right {
	position: absolute;
	right: -5%;
	top: 50%;
	transform: translateY(-50%);
	width: 58%;
}
.Specializes-area {
	padding: 100px 0;
}
/*============ Area End =============*/

/*============ Area Start =============*/

/*============ Area End =============*/

/*============ Area Start =============*/

/*============ Area End =============*/

/*============ Area Start =============*/

/*============ Area End =============*/