@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

::-webkit-scrollbar
{
  width: 7px;  /* for vertical scrollbars */
  height: 7px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track
{
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb
{
  background: rgba(248,100,3,0.8);
}

:root {
	--initial: 8px;
	--font-size: 16px;
	--radius-8: 8px;
	--p-8: 8px;
}

body
{
	font-family:'Ubuntu',sans-serif;
	font-size:var(--font-size);
	z-index:0;
    margin:0;
    padding:0;
	text-decoration:none;
	color:#0a0a0a;
	height:100vh;
	background-color: #fff;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
	outline: 0;
	margin: 0;
	padding: 0;
}

img
{
	max-width: 100%;
	height: auto;
	user-select: none;
}

a.white
{
	color:white;
}

a.white:hover
{
	color:#ccc;
}

a
{
	font-family:'yekan',tahoma;
	color:inherit;
	text-decoration:none;
	cursor:pointer;
	
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

a:hover
{
	color:#F86403;
	font-family:'yekan',tahoma;
	text-decoration:none;
}

a.white
{
	color:white;
}

a:hover.white
{
	color:#F86403;
}

.flex {
	display: flex;
}
.items-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-flex-start {
	justify-content: flex-start;
}

.flex-col {
	flex-direction: column;
}

.shrink-0 {
	flex-shrink: 0;
}

.flex-wrap {
	flex-wrap: wrap;
}

.gap-1 {
	gap: var(--initial);
}

.gap-2 {
	gap: calc(var(--initial) * 2);
}

.gap-3 {
	gap: calc(var(--initial) * 3);
}

.gap-4 {
	gap: calc(var(--initial) * 4);
}

.gap-6 {
	gap: calc(var(--initial) * 6);
}

.slider {
	position: relative;
	width: 100%;
	height: 700px;
	background-image: var(--bgurl);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 20px;
	gap: 70px;
}

header {
	max-width: 1536px;
	width: calc(100% - 40px);
	height: calc(var(--initial) * 11);
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	border-radius: var(--radius-8);
	border: 2px solid rgba(255, 255, 255, 0.5);
	padding: var(--p-8);
	user-select: none;
	justify-content: flex-start;
}

.logo {
	width: 80px;
}

.slider-text {
	max-width: 910px;
	width: calc(100% - 20px);
}

.slider-text p {
	font-size:19px;
	color: #fff;
	text-align: justify;
	line-height: 1.5;
}

.slider::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 299px;
	bottom: 0;
	background-image: url('/img2/gradient.png');
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
}

.website-items {
	position: relative;
	margin-top: -200px;
	width: 100%;
}

.website-items .item {
	width: calc(25% - 25px);
	height: 360px;
	background-color: #fff;
	border: 1px solid #e9e9e9;
	border-radius: var(--radius-8);
	padding: calc(var(--initial) * 2);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
	transition: all 0.3s;
}

.website-items .item:hover {
	margin-top: -10px;
}

.website-items .item .item-logo {
	width: 100px;
	height: 100px;
	border-radius: var(--radius-8);
}

.website-items .item .item-logo img {
	height: 100%;
}

.website-items .item span {
	font-size: 16px;
	font-weight: bold;
	color: #212121;
}

.website-items .item p {
	font-size: calc(var(--initial) * 2);
	color: #232323;
	text-align: center;
	line-height: 1.3;
	text-align: center;
}

.website-items .item button {
	width: 100px;
	height: 40px;
	border: 0;
	border-radius: var(--radius-8);
	background-color: #1B62B7;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
}

.website-items .item button:hover {
	background-color: #1b61b7ca;
}

.icons-items {
	position: relative;
	margin-top: 80px;
	width: 100%;
	flex-wrap: wrap;
}

.icons-items  .icon-item,
.website-items  .website-item  {
	max-width: 1000px;
	width: calc(100% - 40px);
}

.icons-items  .icon-item {
	gap: 32px;
}

.icons-items .icon {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-8);
	border: 1px solid #e9e9e9;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.3s;
}

.icons-items .icon:hover {
	width: 75px;
	height: 75px;
	
}

.empty {
	width: 100%;
	height: 80px;
}


@media only screen and (max-width: 1070px) {
	.website-items .item {
		width: calc(33% - 25px);
	}
}

@media only screen and (max-width: 900px) {
	.website-items .item {
		width: calc(50% - 18px);
	}
	.icons-items  .icon-item {
		gap: 16px;
	}
}

@media only screen and (max-width: 750px) {
	header {
		height: 65px;
		justify-content: center;
	}
	.slider-text p {
		font-size: 16px;
	}
	.logo {
		width: 70px;
	}
}

@media only screen and (max-width: 478px) {
	.website-items .item {
		width: calc(100% - 0px);
	}
	.icons-items  .icon-item {
		gap: 5px;
	}
}
