@font-face {
    font-family: 'Circula';
    src: url('../fonts/Circula-Medium.woff2') format('woff2'),
        url('../fonts/Circula-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}






*
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
	text-decoration: none;
	transition: all 0.4s;
	font-family: 'Circula', sans-serif;
}

body
{
	height: 100vh;
}

.header
{
	z-index: 100;
}

.container
{
	position: relative;
	width: 1140px;
	margin: 0 auto;

}

.header .nav
{
	width: 100%;
	padding: 10px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header::before
{
	width: 200px;
	height: 200px;
	background-color: #EDEDFCFF;
}

.nav .nav-title
{
	font-family: sans-serif;
	text-transform: capitalize;
	font-size: 25px;
	font-weight: 900;
	z-index: 100;
}

.nav .nav-list
{
	display: flex;
	align-items: center;
}

.nav .nav-item
{
	position: relative;
	margin-left: 10px;
}

.nav .nav-item .nav-link
{
	color: #000;
	text-transform: capitalize;
	font-weight: 400;
	font-size: 20px;
	padding: 10px 20px;
	border: 1px solid transparent;
	border-bottom: 1px solid #fffd;
	z-index: 999;
}

.demos
{
	display: flex;
	align-items: center;
}

.demos img
{
	margin-left: 10px;
	width: 20px;
	transition: 0.3s;
}

.nav .nav-item .nav-link:hover
{
	border: 1px solid rgba(255,0,0,0.7);
	color: #f00;
	transition: 0.4s;
	border-radius: 7px;
}

.nav .nav-item .nav-btn
{
	background: none;
	outline: none;
	border: none;
	padding: 10px 20px;
	background-color: rgba(255,0,0,0.7);
	border-bottom: 1px solid #fffd;
	border-radius: 5px;
	color: #fff;
	text-transform: capitalize;
	font-size: 17px;
	cursor: pointer;
	z-index: 999;
}

.nav .nav-item .nav-btn:hover
{
	background-color: rgb(255,0,0,1);
	transition: 0.4s;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px #f00;
}

.dropdown:hover > .dropdown-list
{
	display: block;
	transition: 0.4s;
}

.dropdown-list
{
	width: 200px;
	border-top: 3px solid red;
	position: absolute;
	top: 35px;
	left: 0;
	display: none;
	background: #fff;
}

.dropdown-item
{
	position: relative;
	color: #f00;
	width: 100%;
	padding: 20px 20px
}

.dropdown-link
{
	position: absolute;
	width: 100%;
	color: #000;
	background-color: #fff;
	padding: 20px 20px;
	z-index: 999;
}

.active
{
	background-color: #0005;
}

.dropdown-link:hover
{
	background-color: gray;
	transition: 0.4s;
}

.sub-dropdown:hover .sub-dropdown-list
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sub-dropdown-list
{
	position: absolute;
	z-index: 999;
	left: -60%;
	display: none;
}

.sub-dropdown-item
{
	position: relative;
	color: #f00;
	width: 100%;
	padding: 20px 20px;
	z-index: 999;
}

.sub-dropdown-link
{
	color: #000;
	background-color: #fff;
	padding: 20px 20px;
	z-index: 999;
}

.sub-dropdown-link:hover
{
	background-color: gray;
	transition: 0.4s;
}


.nav-link:hover  .arrow
{
	transform: rotate(90deg);
	transition: 0.3s;
}

.header .round
{
	position: absolute;
	top: -50px;
	left: -70px;
	width: 500px;
	height: 500px;
	background: linear-gradient(90deg, rgba(237,237,252,1) 0%, rgba(237,237,252,0.5) 100%);
	border-bottom-right-radius: 100%;
	z-index: 1;
}

.main
{
	display: flex;
	justify-content: center;
	border-bottom: 0.5px solid rgba(0,0,0,0.3);
}

.main
{
	margin-top: 100px;
	display: flex;
	justify-content: space-around;
	padding: 100px 80px;
}

.main .container
{
	width: 1140px;
	margin: 0 auto;
}

.main .main-left
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.main .main-left .main-title
{
	font-size: 75px;
	width: 480px;
	z-index: 100;
	margin-top: -40px;
	margin-bottom: 60px;
}

.main .main-left .main-txt
{
	width: 550px;
	line-height: 35px;
	font-size: 20px;
	z-index: 100;
	font-weight: 700;
	color: rgba(0,0,0,0.5);
}

.main .main-left .main-btn
{
	width: 200px;
	padding: 20px 20px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	border-radius: 5px;
	background: none;
	outline: none;
	border: none;
	background-color: rgba(255,0,0,0.7);
	border-bottom: 1px solid #fffd;
	color: #fff;
	z-index: 999;
	margin-top: 30px;	
	cursor: pointer;
	z-index: 999;
}

.main .main-left .main-btn:hover
{
	background-color: rgb(255,0,0,1);
	transition: 0.4s;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px #f00;
}

.main .main-left .main-link
{
	width: 40%;
	display: flex;
	align-items: center;
	margin-top: 20px;
	padding: 10px 20px;
	border: 1px solid rgba(255,0,0,0.0);
	border-radius: 7px;
	z-index: 999;
}

.main .main-left .main-link:hover
{
	transform: translateY(-5px);
	box-shadow: 0 10px 20px #50b9;
	border: 1px solid rgba(81,75,155,1);
	color: rgba(81,75,155,1);
	background: rgba(0,0,0,0.1);
	transition: 0.4s;
}

.main .main-left .main-link img
{
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

.main-right
{
	position: relative;
}

.main .main-right img
{
	width: 300px;
	border-radius: 50px  50px 70px 70px;
	box-shadow: 0 10px 10px rgba(0,0,0,0.3)
}

.main .main-right-txt
{
	position: absolute;
	top: 405px;
	right: -105px;
	display: flex;
	align-items: center;
	width: 340px;
	z-index: 100;
	font-weight: 600;
	padding: 15px 20px;
	color: rgba(0,0,0,0.6);
	background-color: rgba(254,220,90,1);
	border-radius: 	5px;
}

.main .main-right-txt img
{
	width: 30px;
	box-shadow: none;
	height: 30px;
	margin-right: 15px;
}

.logos
{
	position: relative;
}

.logos .container
{
	width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template:
	"logos-txt logos-txt logos-txt logos-txt logos-txt"
	"one two three four fife";
}

.logos-txt
{
	grid-area: logos-txt;
	color: rgba(0,0,0,0.5);
	font-weight: 600;
	padding: 10px 20px;
	background-color: #fff;
	width: 40%;
}

.icon
{
	padding: 20px 0;
}

.one
{
	grid-area: one;
}

.two
{
	grid-area: two
}
.three
{
	grid-area: three;
}
.four
{
	grid-area: four;
}
.fife
{
	grid-area: fife;
}

.landing-page
{
	position: relative;
	background-color: rgba(84,84,212,1);
	margin-top: 100px;
	padding: 70px 0;
}

.landing-page .lnd-img
{
	position: absolute;
	right: 0;
	top: 0;
}

.landing-page .lnd-img-2
{
	position: absolute;
	width: 100vw;
	bottom: -10px;
	right: 0;
}

.landing-page .container
{
	width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.landing-left
{
	width: 51%;

}

.landing-list
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.landing-item
{
	width: 47%;
	background-color: #fff;
	border-radius: 10px;
	margin-bottom: 35px;
	padding: 10px 0;
	z-index: 999;
}

.landing-item:hover
{
	transform: translateY(-10px);
	box-shadow: 0 25px 20px #4177;
	transition: 0.4s;
}

.landing-img
{
	display: inline-block;
	background-color: rgba(255,0,0,0.1);
	border-radius: 35%;
	padding: 20px 20px;
	width: 70px;
	margin: 30px 40px;
}

.img-two
{
	background-color: rgba(255,255,0,0.3);
}

.img-three
{
	background-color: rgba(84,84,212,0.1);
}

.img-four
{
	background-color: rgba(65,62,101,0.1);
}

.lnd-title
{
	text-transform: capitalize;
	margin: 10px 30px;
	font-size: 23px;
}

.lnd-txt
{
	font-weight: bolder;
	color: rgb(0,0,0,0.5);
	margin: 15px 30px;
	line-height: 30px;
	font-size: 15px;
}

.landing-right
{
	width: 50%;
	padding: 100px 70px;
}

.lnd-right-title
{
	font-size: 70px;
	width: 500px;
	color: #fff;
	padding: 50px 0;
}

.lnd-right-txt
{
	color: #fff9;
	font-weight: 400;
	font-size: 20px;
	width: 500px;
	line-height: 40px;
}

.lnd-btn
{
	background: none;
	outline: none;
	border: none;
	color: #fff;
	border: 1px solid #fff7;
	border-radius: 5px;
	padding: 15px 30px;
	font-size: 20px;
	margin-top: 40px;
	cursor: pointer;
	z-index: 999;
}

.lnd-btn:hover
{
	background-color: rgb(0,0,255,0.3);
	transition: 0.4s;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px #1178;
}

.save
{
	padding: 200px 0;
}

.save .container
{
	width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.save .container .save-left
{
	width: 45%;
	padding: 100px 0;
}

.save .container .save-left .save-title
{
	font-size: 70px;
	width: 650px;
	padding: 30px 0;
}

.save .container .save-left .save-txt
{
	color: rgba(0,0,0,0.5);
	font-weight: 400;
	font-size: 20px;
	width: 500px;
	line-height: 40px;	
}

.save .container .save-left .save-btn
{
	background: none;
	outline: none;
	border: none;
	color: #fff;
	border-bottom: 1px solid #fff;
	background-color: rgba(255,0,0,0.7);
	border-radius: 5px;
	padding: 15px 30px;
	font-size: 20px;
	margin-top: 40px;
	cursor: pointer;
	z-index: 999;
}

.save .container .save-left .save-btn:hover
{
	background-color: rgb(255,0,0,1);
	transition: 0.4s;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px #f00;
}

.save .container .save-right
{
	position: relative;
	width: 45%;
}

.save .container .save-right .save-img-one
{
	width: 450px;
	position: absolute;
	top: 0;
	left: 25%;
}

.save .container .save-right .save-img-two
{
	width: 310px;
	position: absolute;
	top: 80px;
	left: 45%;
}

.cont-txt
{
	position: relative;
	left: 70px;
	bottom: -333px;
	width: 63%;
	height: 120px;
	background-color: rgba(254,220,90,1);
	border-radius: 10px;
	padding: 20px 20px;
	z-index: 999;
	display: grid;
	grid-template:
	"top top"
	"left right";
}

.cont-txt .save-img-three
{
	grid-area: left;
	width: 45px;
	padding: 10px 10px;
	background-color: #5454D4FF;
	border-radius: 50%;
	transform: translateY(-23px);
}

.cont-txt .save-txt
{
	grid-area: top;
	transform: translateX(57px);
	font-weight: bolder;
	color: #0005;
}

.cont-txt .save-title
{
	grid-area: right;
	transform: translate(-40px, 5px);
	font-weight: bolder;
	font-size: 20px;
	z-index: 999;
}

.david
{
	padding: 70px 0;
	position: relative;
	background-color: rgba(247,247,251,1);
}

.david .container
{
	width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	position: relative;
}

.david .david-left
{
	width: 45%;
	margin-top: 170px;
	position: relative;
}

.david .david-img
{
	width: 80%;

}

.david .gradient
{
	position: absolute;
	z-index: 999;
	top: 30px;
	left: 20px;
}

.david .d-div
{
	position: absolute;
	top: 210px;
	left: -50px;
	background-color: #f00b;
	width: 60%;
}

.david .d-txt
{
	position: absolute;
	left: 10px;
	color: #fffa;
	letter-spacing: 1px;
}

.david .d-title
{
	position: absolute;
	left: -70px;
	bottom: 3px;
	color: #fff;
	width: 200%;
	letter-spacing: 1px;
	line-height: 30px;
}

.david .david-image
{
	width: 100%;
	position: absolute;
	top: -2px;
	transform: rotateZ(180deg);
}

.david-right
{
	width: 45%;
	position: relative;
	top: 0;
	right: 0;
	margin-top: 170px;
}

.david-right .david-title
{
	font-size: 60px;
	width: 90%;

}

.david-right .david-txt
{
	width: 500px;
	font-size: 20px;
	line-height: 40px;
	margin-top: 30px;
	font-weight: 700;
	color: #0009;
}

.david-right .david-list
{
}

.david-list-img
{
	width: 45px;
	height: 45px;
	background-color: rgba(200,30,150,0.3);
	padding: 10px 10px;
	border-radius: 50%;
	margin: 0 15px;
}


.txts
{
	margin: 0 15px;
}

.david-item
{
	display: flex;
	align-items: center;
	margin: 20px 10px;
}

.david-list-title
{
	font-size: 20px;
	font-weight: 700;
}

.david-list-txt
{
	font-size: 15px;
	color: #0009;
	font-weight: 700;
}

.customers .container
{
	width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px 0;
}

.customers .container .customers-title
{
	font-size: 70px;
	width: 450px;
	text-align: center;
}

.customers .container .customer-list
{
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin: 70px 0;
}

.customers .container .customer-list .customer-item
{
	width: 30%;
	display: flex;
	flex-direction: column;
}

.customers .container .customer-list .customer-item .customer-profil
{
	display: flex;
	justify-content: space-around;
}

.customers .container .customer-list .customer-item .customer-profil .customer-profil-img
{
	width: 50px;
	height: 50px;
}

.customers .container .customer-list .customer-item .customer-profil .customer-name
{
	display: flex;
	flex-direction: column;
	margin-right: 50px;
}

.customer-txt
{
	font-weight: bolder;
	font-size: 25px;
}

.customer-subtext
{
	font-weight: 600;
	color: #0009
}

.customers .container .customer-list .customer-item .customer-logo
{
	width: 30px;
	height: 30px;
}

.customer-item-txt
{
	font-size: 22px;
	width: 250px;
	letter-spacing: 1px;
	line-height: 30px;
	margin: 25px 0;
}

.customer-link
{
	display: flex;
	align-items: center;
	text-decoration: none;
	color: rgb(45,2,122);
	font-size: 20px;
	padding: 10px 20px;
	transition: 0.4s;
}

.customer-link:hover
{
	box-shadow: 0 5px 10px gray;
	transform: translateY(-5px);
	transition: 0.4s;
}

.chat
{
	width: 17px;
	height: 17px;
	margin: 0 11px;
}

footer
{
	width: 100%;
	position: relative;
	background-color: #000;
}

footer .pngs
{
	display: flex;
}

footer .whiter
{
	width: 100%;
	position: absolute;
	transform: translateY(-10px) rotateX(180deg);
}

.bluer
{

}

.titles
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-title
{
	font-size: 80px;
	color: #fff;
	text-align: center;
}

.footer-subtext
{
	font-size: 	22px;
	width: 40%;
	text-align: center;
	color: #fffb;
}

.footer-form
{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin: 40px auto;
	width: 40%;
	min-height: 200px;
}

.footer-input
{
	padding: 15px 20px;
	border-radius: 10px;
	border-style: none;
	outline: none;
}

.footer-input:hover
{
	transition: 0.4s;
	box-shadow: 0 5px 10px #fff;
}

.footer-button
{
	padding: 15px 0;
	font-size: 22px;
	text-transform: capitalize;
	background-color: rgba(239,64,55,1);
	border-style: none;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
}

.footer-button:hover
{
	background-color: rgba(239,30,30,1);
	transition: 0.4s;
	box-shadow: 0 5px 10px #ff9090;
}

.sub-footer
{
	display: flex;
	flex-direction: column;
}

.sub-footer-list
{
	width: 100%;
	min-height: 150px;
	display: flex;
	justify-content: space-between;
}

.sub-footer-item
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.sub-footer-title
{
	font-size: 25px;
	color: #fff;

}

.sub-footer-txt
{
	color: #fff;
	text-transform: capitalize;
	padding: 4px 7px;
}

.sub-footer-link
{
	text-decoration: none;
	color: #fff9;
	padding: 4px 7px;
}

.sub-footer-link:hover
{
	color: #fff;
	box-shadow: 0 5px 5px #fff3;
	transition: 0.4s;
}

.sub-footer-hr
{
	width: 100%;
	height: 1px;
	background-color: #fff1;
	margin-top: 70px;
}

.sub-footer-subtext
{
	display: flex;
	justify-content: space-between;
	margin: 40px 0;
}

.subfooter-subtxt
{
	color: #fff9;
}

.sub-footer-icon
{
	width: 20px;
	height: 20px;
}