/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
	--header-height: 3.5rem;

	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	/* 
      Change favorite color
      Default: hsl(162, 100%, 40%)
      Orange: hsl(14, 100%, 65%) - Blue: hsl(210, 100%, 70%)
      Pink: hsl(356, 100%, 75%) - Purple: hsl(250, 100%, 75%)

      For more colors visit: https://colors.dopely.top/color-pedia
      -> Choose any color 
      -> click on tab (Color Conversion)
      -> Copy the color mode (HSL)
  */

	--hue: 210;
	--first-color: hsl(var(--hue), 100%, 70%);
	--first-color-alt: hsl(var(--hue), 56%, 35%);
	--title-color: hsl(228, 8%, 95%);
	--text-color: hsl(228, 8%, 65%);
	--body-color: hsl(228, 15%, 20%);
	--container-color: hsl(228, 15%, 15%);

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: "Poppins", sans-serif;
	--biggest-font-size: 2rem;
	--bigger-font-size: 1.25rem;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: .938rem;
	--small-font-size: .813rem;
	--smaller-font-size: .75rem;

	/*========== Font weight ==========*/
	--font-regular: 400;
	--font-medium: 500;
	--font-semi-bold: 600;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
	:root {
		--biggest-font-size: 4rem;
		--bigger-font-size: 2rem;
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: .875rem;
		--smaller-font-size: .813rem;
	}
}

/*=============== BASE ===============*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

input,
textarea,
button,
body {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
}

body {
	background-color: var(--body-color);
	color: var(--text-color);
}

input,
textarea,
button {
	outline: none;
	border: none;
}

h1,
h2,
h3,
h4 {
	color: var(--title-color);
	font-weight: var(--font-medium);
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
	max-width: 1120px;
	margin-inline: 1.5rem;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.section {
	padding-block: 5rem 2rem;
}

.section__title,
.section__subtitle {
	text-align: center;
	color: var(--title-color);
	font-weight: var(--font-semi-bold);
}

.section__title {
	font-size: var(--h1-font-size);
	margin-bottom: 1.5rem;
}

.section__subtitle {
	font-size: var(--small-font-size);
	margin-bottom: .25rem;
}

.section__subtitle span {
	color: var(--first-color);
}

.main {
	overflow: hidden;
	/* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
	position: fixed;
	width: 100%;
	background-color: var(--container-color);
	top: 10px;
	left: 0;
	z-index: var(--z-fixed);
}

.nav {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__logo {
	color: var(--title-color);
	font-weight: var(--font-medium);
}

.nav__logo span {
	color: var(--first-color);
}

.nav__toggle,
.nav__close {
	display: flex;
	font-size: 1.25rem;
	color: var(--title-color);
	cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
	.nav__menu {
		position: fixed;
		top: 0;
		right: -100%;
		background-color: hsla(0, 0%, 10%, .3);
		width: 75%;
		height: 100%;
		padding: 4.5rem 0 0 3rem;
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		transition: right .4s;
	}
}

.nav__list {
	display: flex;
	flex-direction: column;
	row-gap: 3rem;
}

.nav__link {
	color: var(--title-color);
	font-weight: var(--font-medium);
	transition: color .4s;
}

.nav__link:hover {
	color: var(--first-color);
}

.nav__close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
}

/* Show menu */
.show-menu {
	right: 0;
}

/* Add blur to header */
.blur-header {
	background-color: transparent;
}

.blur-header::after {
	content: '';
	position: absolute;
	width: 1000%;
	height: 100%;
	background-color: hsla(0, 0%, 10%, .3);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	top: 0;
	left: 0;
	z-index: -1;
}

/* Active link */
.active-link {
	color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
	background-color: var(--container-color);
}

.home__container {
	padding-top: 2rem;
	row-gap: 2.5rem;
}

.home__content {
	display: grid;
	row-gap: 2rem;
}

.home__data {
	text-align: center;
	margin-top: 70px;
}

.home__subtitle,
.home__education {
	font-size: var(--bigger-font-size);
}

.home__subtitle span,
.home__title {
	color: var(--first-color);
}

.home__title {
	/* font-size: var(--biggest-font-size); */
	font-size: 3.5rem;
}

.home__description,
.skills__description,
.about__description {
	margin-block: 1rem 1.5rem;
	text-transform: capitalize;
}

.home__social {
	display: flex;
	justify-content: center;
	column-gap: 1.25rem;
}

.home__social-link {
	display: flex;
	background-color: var(--first-color);
	padding: .5rem;
	color: var(--title-color);
	font-size: 1.5rem;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	transition: transform .4s;
}

.home__social-link:hover {
	transform: translateY(-.25rem);
}

.home__image {
	justify-self: center;
}

.home__blob {
	width: 320px;
	fill: var(--first-color);
	filter: drop-shadow(0 12px 12px hsla(var(--hue), 100%, 40%, .2));
}

.home__img {
	width: 900px;
	transform: translateX(-120px);
}

/*=============== BUTTON ===============*/
.button {
	display: inline-block;
	background-color: var(--first-color);
	padding: 1rem 1.75rem;
	border-radius: .5rem;
	color: var(--title-color);
	font-weight: var(--font-medium);
	transition: box-shadow .4s;
}


.button {
	border: none;
	outline: none;
	color: #fff;
	cursor: pointer;
	position: relative;
	z-index: 0;
	border-radius: 10px;
	display: inline-block;
	padding: 1rem 1.75rem;
	border-radius: .5rem;
	color: var(--title-color);
	font-weight: var(--font-medium);
	transition: box-shadow .4s;
	background-color: var(--first-color);
}

.button:before {
	content: '';
	background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
	position: absolute;
	top: -2px;
	left: -2px;
	background-size: 400%;
	z-index: -1;
	filter: blur(5px);
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	animation: glowing 20s linear infinite;
	opacity: 0;
	transition: opacity .3s ease-in-out;
	border-radius: 10px;
}

.button:active:after {
	background: transparent;
}

.button:hover:before {
	opacity: 1;
}

.button:after {
	z-index: -1;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	/* background-color: var(--first-color); */
	left: 0;
	top: 0;
	border-radius: 10px;
}

@keyframes glowing {
	0% {
		background-position: 0 0;
	}

	50% {
		background-position: 400% 0;
	}

	100% {
		background-position: 0 0;
	}
}

.textbox {
	padding: 1px;
	position: relative;
	z-index: 1;
	border-radius: 6px;
	overflow: hidden;
	margin: 0.5rem 0;
}

input,
textarea {
	color: slategray;
	box-sizing: border-box;
	outline: none;
	border: none;
	z-index: 2;
	padding: 0.2rem 0.5rem;
	border-radius: 5px;
}

.border {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0%;
	height: 0%;
	z-index: -1;
	transition: height 0.3s, width 0.3s 0.1s;
	background-color: var(--first-color);
}

input:focus~.border,
textarea:focus~.border {
	width: 100%;
	height: 100%;
}

.contact__input {
	width: 100%;
}

.link {
	color: var(--first-color);
}

::selection {
	background-color: var(--first-color);
	color: var(--container-color);
}

.span {
	position: relative;
	display: block;
	cursor: pointer;
}

.span:before,
.span:after {
	content: '';
	position: absolute;
	width: 0%;
	height: 1px;
	top: 50%;
	margin-top: -0.5px;
	background: #fff;
}

.span:before {
	left: -2.5px;
}

.span:after {
	right: 2.5px;
	background: #fff;
	transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.span:hover:before {
	background: #fff;
	width: 100%;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.span:hover:after {
	background: transparent;
	width: 100%;
	transition: 0s;
}



/* .button:hover {
	box-shadow: 0 8px 24px hsla(var(--hue), 100%, 40%, .25);
	background-color: transparent;
} */

/*=============== ABOUT ===============*/
.about__container {
	row-gap: 2.5rem;
}

.about__data {
	text-align: center;
}

.about__description {
	margin-bottom: 2rem;
}

.about__image {
	justify-self: center;
}

.about__blob {
	width: 320px;
}

.about__blob path {
	stroke: var(--first-color);
}

/*=============== SKILLS ===============*/
.skills {
	background-color: var(--container-color);
}

.skills__container {
	padding-bottom: 2rem;
	row-gap: 3.5rem;
}

.skills__data {
	text-align: center;
}

.skills__description {
	margin-bottom: 2rem;
}

.skills__content,
.skills__grpup {
	display: grid;
}

.skills__content {
	grid-template-columns: repeat(2, max-content);
	column-gap: 4rem;
	justify-content: center;
	align-items: baseline;
}

.skills__group {
	row-gap: 1rem;
	list-style: decimal-leading-zero;
}

.skills__item {
	font-weight: var(--font-medium);
	color: var(--title-color);
}

.skills__item::marker {
	color: var(--first-color);
}

/*=============== SERVICES ===============*/
.services__container {
	row-gap: 2rem;
	padding-block: 1rem;
	margin-top: 50px;
}

.services__card {
	text-align: center;
	background-color: var(--container-color);
	padding: 3rem 1.25rem;
	border-radius: 1rem;
	border: 2px solid var(--container-color);
	transition: border .4s;
	outline: 4px solid var(--container-color);
	margin: 2px;
}

.services__icon {
	display: block;
	font-size: 4rem;
	color: var(--first-color);
	margin-bottom: .75rem;
}

.services__title {
	font-size: var(--h2-font-size);
	margin-bottom: 1.5rem;
}

.services__card:hover {
	border: 2px solid var(--first-color);
}

.services__card:hover .services__icon {
	transform: rotateY(360deg);
	transition: .7s;
}

/*=============== PROJECTS ===============*/
.work__container {
	padding-top: 1rem;
	margin: 0 1rem;
	grid-template-columns: repeat(3, 1fr);
}

.work__filters {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: .75rem;
	margin-bottom: 2rem;
	margin-top: 50px;
}

.work__item {
	cursor: pointer;
	color: var(--title-color);
	padding: 0.25em 0.75em;
	font-weight: var(--font-medium);
	border-radius: .5rem;
}

.work__card {
	background: var(--container-color);
	padding: 1rem;
	border-radius: 1rem;
	cursor: pointer;
}

.work__card:hover {
	cursor: context-menu;
}

.work__img {
	width: 295px;
	border-radius: 1rem;
	margin-bottom: .75rem;
}

.work__title {
	font-size: var(--normal-font-size);
	font-weight: var(--font-medium);
	margin-bottom: .25rem;
}

.work__button {
	width: 100px;
	color: var(--first-color);
	font-style: var(--small-font-size);
	display: flex;
	align-items: center;
	column-gap: .25rem;
}

.work__button:hover .work__icon {
	transform: translateX(.7rem);
	text-decoration: underline;
	text-decoration-style: dashed;
}

.work__icon {
	font-size: 1rem;
	transition: .4s;
}

.active-work {
	background: var(--first-color);
	color: var(--body-color);
}

/*=============== CONTACT ===============*/
.contact__container {
	padding-top: 1rem;
}

.contact__form,
.contact__group {
	display: grid;
	row-gap: 1rem;
}

.contact__form {
	position: relative;
}

.contact__input {
	padding: 1rem 1.25rem;
	border-radius: .5rem;
	background-color: var(--container-color);
	color: var(--title-color);
}

.contact__input::placeholder {
	color: var(--text-color);
}

.contact__form textarea {
	height: 11rem;
	resize: none;
	margin-bottom: -.4rem;
}

.contact__button {
	justify-self: center;
	cursor: pointer;
}

.contact__message {
	position: absolute;
	left: 0;
	bottom: 4.5rem;
	font-size: var(--small-font-size);
	color: var(--title-color);
	margin-left: 7px;
}

/*=============== FOOTER ===============*/
.footer {
	background-color: var(--container-color);
	padding-block: 3.5rem 2rem;
}

.footer__container {
	row-gap: 2rem;
	text-align: center;
}

.footer__title {
	font-size: var(--h1-font-size);
	font-weight: var(--font-semi-bold);
	margin-bottom: .25rem;
}

.footer__title span {
	color: var(--first-color);
}

.footer__education {
	font-size: var(--normal-font-size);
}

.footer__social {
	display: flex;
	justify-content: center;
	column-gap: 1.25rem;
}

.footer__social-link {
	display: flex;
	background-color: var(--first-color);
	padding: .5rem;
	color: var(--title-color);
	font-size: 1.5rem;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	transition: transform .4s;
}

.footer__social-link:hover {
	transform: translateY(-.25rem);
}

.footer__copy {
	font-size: var(--smaller-font-size);
	margin-top: 2rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
	width: .6rem;
	border-radius: .5rem;
	background-color: hsla(228, 12%, 25%);
}

::-webkit-scrollbar-thumb {
	background-color: hsla(228, 8%, 35%);
	border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
	background-color: hsla(228, 8%, 45%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
	position: fixed;
	right: 1rem;
	bottom: -50%;
	background-color: var(--body-color);
	padding: 6px;
	display: inline-flex;
	border-radius: .25rem;
	color: var(--first-color);
	font-size: 1.25rem;
	box-shadow: 0 4px 12px hsla(228, 15%, 8%, .4);
	z-index: var(--z-tooltip);
	transition: bottom .4s transform .4s;
}

.scrollup:hover {
	transform: translateY(-.30rem);
}

/* Show Scroll Up */
.show-scroll {
	bottom: 3rem;
}

/* work filters */
.work__filters {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: .75rem;
	margin-bottom: 2rem;
}

.work__item {
	cursor: pointer;
	color: var(--title-color);
	padding: 0.25em 0.75em;
	font-weight: var(--font-medium);
	border-radius: .5rem;
	transition: .4s;
}

.active-work {
	background: var(--first-color);
	color: var(--body-color);
	transition: .4s;
}

.bg-bx {
	margin-bottom: 1.5rem;
}

.black-lives-matter {
	margin: 0;
	background: url(https://c8.alamy.com/comp/TYKW1D/watercolor-baby-blue-lavender-and-dodger-blue-color-graphic-background-illustration-painting-TYKW1D.jpg);
	background-size: 40%;
	background-position: 50% 50%;
	-webkit-background-clip: text;
	color: rgba(0, 0, 0, 0.08);
	animation: zoomout 10s ease 500ms forwards;
}

@keyframes zoomout {
	from {
		background-size: 40%;
	}

	to {
		background-size: 20%;
	}
}

@media screen and (max-width: 372px) {
	.home__title span {
		font-size: 30px !important;
	}
}

@media screen and (max-width: 850px) {
	.home__title {
		font-size: 2.5rem !important;
	}
}

@media screen and (max-width: 979px) {
	.home__title {
		font-size: 3rem;
	}
}

@media screen and (max-width: 320px) {
	.work__item {
		font-size: var(--small-font-size);
	}

	.work__filters {
		column-gap: .25rem;
	}
}

@media screen and (min-width: 576px) {
	.work__img {
		width: 295px;
	}
}

@media screen and (max-width: 725px) {
	.work__container {
		grid-template-columns: max-content !important;
	}
}

@media screen and (max-width: 810px) {
	.work__container {
		grid-template-columns: repeat(2, max-content);
		justify-content: center;
	}
}

@media screen and (min-width: 992px) {
	.work__container {
		gap: 3rem;
	}

	.work__card {
		padding: 1.25rem;
	}

	.work__img {
		margin-bottom: 1rem;
	}

	.work__title {
		margin-bottom: .5rem;
	}
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
	.container {
		margin-inline: 1rem;
	}

	.skills__content {
		grid-template-columns: max-content;
		row-gap: 1rem;
	}

	.services__card {
		padding-block: 1.5rem;
	}
}

/* For medium devices */
@media screen and (min-width: 576px) {

	.home__container,
	.about__container,
	.skills__container,
	.services__container,
	.projects__container,
	.contact__container {
		grid-template-columns: 360px;
		justify-content: center;
	}
}

@media screen and (min-width: 768px) {
	.nav__menu {
		width: 55%;
	}

	.home__container,
	.about__container,
	.skills__container {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}

	.home__data,
	.about__data,
	.skills__data,
	:is(.about__data, .skills__data) :is(.section__subtitle, .section__title) {
		text-align: initial;
	}

	.home__social {
		justify-content: initial;
	}

	.home__blob,
	.about__blob {
		width: 400px;
	}

	.about__data {
		order: 1;
	}

	.services__container,
	.projects__container {
		grid-template-columns: repeat(2, 352px);
	}

	.home__subtitle {
		/* text-align: center !important; */
	}
}

@media screen and (min-width: 786px) {
	.contact__container {
		grid-template-columns: 680px;
		padding-block: 2.5rem 2rem;
	}

	.contact__form {
		row-gap: 1.5rem;
	}

	.contact__group {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 1.5rem;
	}

	.contact__input {
		padding: 1.5rem;
	}

	.contact__form textarea {
		height: 20.1rem;
	}
}

/* For large devices */
@media screen and (min-width: 1023px) {
	.section {
		padding-block: 7rem 2rem;
	}

	.section__subtitle {
		font-size: var(--normal-font-size);
	}

	.nav {
		height: calc(var(--header-height) + 1.5rem);
	}

	.nav__togle,
	.nav__close {
		display: none;
	}

	.nav__list {
		flex-direction: row;
		column-gap: 3rem;
	}

	.nav__menu {
		width: initial;
	}

	.blur-header::after {
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(25px);
	}
}

@media screen and (min-width: 1152px) {
	.container {
		margin-inline: auto;
	}

	.home__container {
		grid-template-columns: 455px 550px;
		column-gap: 7rem;
		padding-block: 2rem 3rem;
	}

	.home__blob {
		width: 550px;
	}

	.home__content {
		row-gap: 4.5rem;
	}

	.home__description {
		margin-block: 1.5rem 2.5rem;
	}

	.home__social {
		column-gap: 1.5rem;
	}

	.about__container {
		grid-template-columns: 550px 460px;
		column-gap: 4.5rem;
		padding-block: 1rem;
	}

	.about_blob {
		width: 550px;
	}

	.about__description {
		margin-bottom: 3rem;
	}

	.skills__container {
		grid-template-columns: 340px 425px;
		column-gap: 10rem;
		margin-bottom: 4rem;
	}

	.skills__description {
		margin-bottom: 3rem;
	}

	.skills__content {
		column-gap: 8rem;
	}

	.skills__group {
		row-gap: 1.5rem;
	}

	.skills__item {
		font-size: var(--h3-font-size);
	}

	.services__container {
		grid-template-columns: repeat(3, 352px);
		padding-block: 2.5rem 4rem;
	}

	.services__card {
		padding: 3.5rem 2rem;
	}

	.projects__container {
		grid-template-columns: repeat(3, 350px);
		row-gap: 3rem;
		padding-block: 2.5rem 4rem;
	}

	.projects__button {
		font-size: var(--normal-font-size);
	}

	.contact__container {
		grid-template-columns: 680px;
		padding-block: 2.5rem 2rem;
	}

	.contact__form {
		row-gap: 1.5rem;
	}

	.contact__group {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 1.5rem;
	}

	.contact__input {
		padding: 1.5rem;
	}

	.contact__form textarea {
		height: 20.1rem;
	}

	.footer {
		padding-block: 4.5rem 4rem;
	}

	.footer__container {
		grid-template-columns: repeat(3, 1fr);
		align-items: center;
		text-align: initial;
	}

	.footer__title {
		font-size: var(--bigger-font-size);
	}

	.footer__social {
		column-gap: 1.5rem;
	}

	.footer__copy {
		margin: 0;
		justify-self: flex-end;
	}

	.scrollup {
		right: 3rem;
	}

	.rek_2,
	.pad__dm,
	.ads {
		margin-left: 20px !important;
		position: fixed;
		bottom: 35px;
	}
}

.block {
	position: relative;
}

.block {
	text-transform: uppercase;
	background: linear-gradient(45deg, var(--container-color), var(--container-color), var(--container-color), var(--first-color), var(--container-color), var(--container-color),
			var(--container-color), var(--container-color), var(--container-color), var(--container-color));
	background-size: auto auto;
	background-clip: border-box;
	background-size: 200% auto;
	color: #fff;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textclip 3s linear infinite;
	display: inline-block;
	/* font-size: 190px; */
	/* transition: 10s; */
}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}

.content h3 {
	color: #421d1d;
	text-align: center;
	/* font-size: 8em; */
	position: absolute;
	/* transform: translate(-50%, -50%); */
}

.content h3:nth-child(1) {
	color: transparent;
	text-align: center;
	-webkit-text-stroke: 2px #647d89;
}

.content h3:nth-child(2) {
	text-align: center;
	color: var(--first-color);
	animation: animate 3s ease-in-out infinite;
}

@keyframes animate {

	0%,
	100% {
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				60% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
	}
}

.svg {
	animation: animatY 4s ease-in-out infinite;
}

@keyframes animatY {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-2.4rem);
	}

	100% {
		transform: translateY(0);
	}
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover {
	-webkit-text-fill-color: gainsboro;
	-webkit-box-shadow: 0 0 0px 1000px var(--container-color) inset;
	transition: background-color 5000s ease-in-out 0s;
}

input {
	caret-color: white;
}

.section-title {
	flex: 0 0 100%;
	max-width: 100%;
}

.section-title {
	font-size: 40px;
	font-weight: 700;
	position: relative;
}

.section-title::before {
	content: '';
	height: 4px;
	width: 100px;
	background-color: var(--first-color);
	position: absolute;
	top: 100%;
}

.row {
	display: flex;
	width: 100%;
	justify-content: space-around;
	margin-top: 60px;
	flex-wrap: wrap;
}

.contact-info-item {
	/* max-width: 25%; */
	text-align: center;
	margin-bottom: 60px;
	margin-right: 30px;
	transition: .8s;
	cursor: pointer;
}

.contact-info-item:hover .icon {
	transition: .8s;
	cursor: pointer;
}

.padd-15 {
	padding: 15px;
}

.contact-info-item .icon {
	display: inline-block;
}

.contact-info-item .icon .fa {
	font-size: 25px;
	color: var(--first-color);
}

.contact-info-item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-black-900);
	text-transform: capitalize;
	margin: 15px 0 5px;
}

.contact-info-item p {
	font-size: 16px;
	line-height: 25px;
	color: var(--text-black-700);
	font-weight: 400;
}

@media screen and(max-width: 1147px) {
	.row {
		flex-wrap: wrap;
		display: flex;
		display: flex;
		width: 100%;
		justify-content: space-around;
		margin-top: 60px;
	}
}

/* Swiper class */

.swiper-pagination-bullet {
	background: var(--text-color-light);
}

.swiper-pagination-bullet-active {
	background: var(--first-color);
}

.slider {
	margin-top: 60px;
}

.wrapper {
	width: 100%;
	overflow: hidden;
}

.boxes {
	width: 300%;
	display: flex;
	gap: 40px;
	transition: all 0.5s;
}

.box {
	width: 500px;
	height: 300px;
	border-radius: 10px;
	background-color: var(--container-color);
	display: flex;
	/* align-items: center; */
	padding: 7px 7px 7px 20px;
}

.dots {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 25px;
}

.dot {
	cursor: pointer;
	width: 15px;
	height: 15px;
	background-color: var(--container-color);
	border-radius: 20px;
}

.active {
	background-color: var(--first-color);
}

.iconka {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	position: relative;
	top: 10px;
	margin-right: 20px;
}

.box-conta h3 {
	margin: 30px 0 5px 0;
}

.box-jc {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	padding: 0 15px 0 0;
}

.box-jc .linksout .bek {
	margin-right: 10px;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lek {
	font-size: 25px;
	cursor: pointer;
}

.more {
	color: var(--first-color);
}

.more:hover {
	text-decoration: underline;
}

@media screen and (max-width: 876px) {
	.testmonial {
		display: none;
	}
}


/*=============== ADS ===============*/

.ads,
.pad__dm,
.rek_2 {
	position: fixed;
	bottom: 5rem;
	right: 5rem;
	z-index: 9999;
	width: 220px;
	height: 60px;
	border: 1px solid #666565;
	box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
	border-radius: 2.25rem;
	backdrop-filter: blur(10px);
	display: none;
	justify-content: space-between;
	padding: 20px;
	align-items: center;
	transition: 0.4s;
	background-color: rgba(255, 255, 255, 0.020);
}

.pad__dm {
	margin-bottom: 140px;
}

.ads {
	margin-bottom: 70px;
}

.ads div,
.pad__dm div,
.rek_2 div {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	align-items: center;
}

.ads__img {
	width: 65px;
	height: 65px;
	border-radius: 1.25rem;
	margin-right: 0.25em;
}

.ads__img-2 {
	width: 50px;
	height: auto;
	border-radius: 1.25rem;
	margin-right: 0.25em;
}

.fa-close {
	cursor: pointer;
	color: var(--first-color);
	font-size: 1.5rem !important;
}

.text_ads {
	position: relative;
	top: -23px;
}

.img_ads {
	position: relative;
	top: 4px;
	left: -7px;
}

.a_i {
	position: relative;
	left: -7px;
}

.ta {
	margin-left: -18px;
}

.gr {
	font-size: 1.9rem;
	color: var(--first-color);
	position: relative;
	top: 4px;
	right: -5px;
}

.th {
	margin-top: 45px;
	margin-left: -18px;
}

.th_img {
	position: relative;
	left: -10px;
}

.scrollBody {
	top: 0;
	position: fixed;
	width: 100%;
	height: 10px;
	background-color: rgba(30, 143, 255, 0.6);
	z-index: 999;
}

.scroller {
	height: 100%;
	color: white;
	background-color: var(--first-color);
	text-align: center;
}

.s-icon {
	margin-top: 10px;
}

.rek_2,
.pad__dm,
.ads {
	margin-right: 20px;
	position: fixed;
	bottom: 35px;
}

@media screen and (max-width: 975px) {
	.contact-info-item {
		margin-bottom: 0 !important;
	}
}
.nav__item a span {
	color: var(--first-color);
}