@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
	--body-color: #ffffff;
	--title-color: #000000;
	--first-color: #000000;
	--text-color: #353535;
	--blue-color: #03a696;
	--white-color: #ffffff;
	--dark-color: #000000;
	--container-color: #fdfdfd;

	--montserrat-font: "Montserrat", sans-serif;
	--raleway-font: "Raleway", sans-serif;
}

[data-theme="dark"] {
	--body-color: #090909;
	--title-color: #ffffff;
	--first-color: #03a696;
	--text-color: #e4e4e4;
	--dark-color: #ffffff;
	--white-color: #000000;
	--container-color: #060606;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 4rem 0 0 0;
	background: var(--body-color);
	font-family: var(--raleway-font);
	color: var(--text-color);
	font-size: 0.938rem;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4 {
	color: var(--title-color);
	font-weight: 700;
	font-family: var(--raleway-font);
}

button {
	border: none;
	font-family: var(--raleway-font);
	font-size: 1rem;
	cursor: pointer;
	outline: none;
}

input,
textarea {
	outline: none;
	border: none;
	font-size: 1rem;
	font-family: var(--raleway-font);
}

.main {
	overflow-x: hidden;
}

/* REUSABLE CSS CLASSES ======================================= */
.section {
	padding: 5.5rem 0 3.5rem;
}

.section-title {
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 105%;
	margin-bottom: 2rem;
}

.container {
	max-width: 1200px;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.flex {
	display: flex;
}

/* HEADER SECTION ======================================== */
.header {
	width: 100%;
	position: fixed;
	top: 1rem;
	left: 0;
	z-index: 999;
	background: transparent;
}

/* NAV ========================================== */
.nav {
	height: 3.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.toggle-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* THEME SWITCH ====================================== */
.theme-container {
	margin-right: 1rem;
	transition: all 0.4s ease-in-out;
}

.theme-switch-wrapper {
	display: flex;
	align-items: center;
}

.theme-switch-wrapper span {
	margin-right: 10px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--dark-color);
	display: none;
}

.theme-switch {
	width: 40px;
	height: 22px;
	position: relative;
	overflow: hidden;
}

.theme-switch input {
	display: none;
}

.slider {
	background: var(--dark-color);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	cursor: pointer;
	border-radius: 30px;
}

.slider::before {
	content: "";
	position: absolute;
	background: #fff;
	bottom: 3px;
	left: 4px;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

input:checked + .slider {
	background: var(--dark-color);
}

input:checked + .slider::before {
	background: var(--blue-color);
	transform: translateX(16px);
}

.overlay {
	background: var(--body-color);
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 999;
	transition: all 0.4s ease-in-out;
	pointer-events: none;
	cursor: pointer;
}

.logo {
	width: 150px;
	transition: all 0.4s ease-in-out;
}

.logo-shape {
	fill: var(--first-color);
}

.logo-name {
	fill: var(--dark-color);
}

.nav-open {
	width: 45px;
	height: 45px;
	background: var(--first-color);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;
}

.nav-open:hover {
	transform: scale(0.9);
}

.nav-menu {
	position: relative;
}

.nav-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 7rem 0 0 3rem;
	background: #0f0f0f;
	color: var(--white-color);
	opacity: 0;
	z-index: 9999;
	transform: translateX(-100%);
}

.nav-close {
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	width: 45px;
	height: 45px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;
}

.nav-close:hover {
	background: var(--blue-color);
	transform: scale(0.9);
}

.nav-link {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 70px;
	text-transform: uppercase;
	position: relative;
	display: block;
	overflow: hidden;
}

.nav-link1 {
	display: block;
	transform: translateY(0);
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 1;
}

.nav-link2 {
	position: absolute;
	bottom: -100%;
	left: 0;
	right: 0;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 0;
}

.nav-item:hover .nav-link1 {
	transform: translateY(-100%);
	opacity: 0;
}

.nav-item:hover .nav-link2 {
	bottom: 0;
	opacity: 1;
}

.nav-item {
	position: relative;
	display: block;
}

.social-links {
	margin-top: 4rem;
}

.social-link {
	margin: 0 20px 0 0;
	display: inline-block;
	position: relative;
}

.social-link a {
	font-size: 1rem;
	height: 24px;
	font-weight: 600;
	color: #dbdbdb;
	position: relative;
	display: block;
	overflow: hidden;
}

.social-link a span {
	display: block;
	transform: translateY(0);
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 1;
}

.social-link a i {
	position: absolute;
	bottom: -100%;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 1rem;
	color: var(--blue-color);
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 0;
}

.social-link a:hover span {
	transform: translateY(-100%);
	opacity: 0;
}

.social-link a:hover i {
	bottom: 7px;
	opacity: 1;
}

.social-link::after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--blue-color);
	position: absolute;
	top: 10px;
	right: -14px;
}

.social-link:nth-of-type(4)::after {
	display: none;
}

.email {
	margin-top: 2rem;
	position: relative;
	display: inline-flex;
}

.email a {
	font-size: 1.15rem;
	color: #fff;
	font-weight: 700;
	font-family: var(--montserrat-font);
	display: inline-flex;
}

.email::before {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	background: #414141;
	width: 100%;
	height: 1px;
}

.email::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	background: var(--blue-color);
	width: 0;
	height: 1.5px;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.email:hover::after {
	width: 100%;
}

.hide-logo {
	opacity: 0;
	pointer-events: none;
}

/* HOME SECTION ==================================== */
.home-title {
	font-size: 2.3rem;
}

.home-description {
	line-height: 25px;
	margin-top: 0.7rem;
}

.home-buttons {
	margin-top: 2.2rem;
}

.btn {
	padding: 13px 40px;
	color: #fff;
	background: var(--first-color);
	font-weight: 600;
}

.btn-b {
	margin-left: 1rem;
	color: var(--dark-color);
	background: transparent;
	font-weight: 600;
}

.home-img {
	display: none;
}

/* ABOUT SECTION */

.about_description {
	line-height: 25px;
	text-align: justify;
	margin-bottom: 2rem;
}

.about-container{
	grid-template-columns: 3fr 9fr;
	column-gap: 1.875rem;
	margin-top: 4.5rem;
}

.about_skills {
	row-gap: 2rem;
}

.about_data {
	padding: 1.875rem;
	box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 20%);
	border-radius: 20px;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 1.875rem;
	align-items: flex-start;
	position: relative;
}


.skills_titles {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.skills_number {
	line-height: 1.2;
}

.skills_bar,
.skills_percentage {
	height: 7px;
	border-radius: 0.25rem;
}

.skills_bar {
	background-color: #f1f1f1;
}

.skills_percentage {
	display: block;
}

.python {
	width: 92%;
	background-color: var(--first-color);
}

.overall{
	width: 90%;
	background-color: var(--first-color);
}

.flaskui{
	width: 86%;
	background-color: var(--first-color);
}

/* RESUME & DEGREE SECTION */
.experience {
	margin-bottom: 5rem;
}

.resume_container {
	grid-template-columns: repeat(2, 1fr);
	column-gap: 1.875rem;
}

.timeline_item {
	position: relative;
	padding-left: 3.125rem;
	padding-bottom: 3.125rem;
}

.timeline_item:last-child {
	padding-bottom: 0;
}

.timeline_item::before {
	content: '';
	width: 1px;
	height: 100%;
	background-color: var(--first-color);
	position: absolute;
	left: .25rem;
	top: 0;
}

.timeline .icon-briefcase,
.timeline .icon-graduation {
	position: absolute;
	left: -0.4375rem;
	top: 0;
	font-size: 1.5rem;
	color: var(--first-color);
	background-color: var(--body-color);
	padding: 0.4375rem 0;
}

.timeline_data {
	font-size: 1rem;
}

.timeline_title {
	font-size: 1.5rem;
	margin: 0.5rem 0;
}


/* PROJECT SECTION ================================== */
.project-wrap {
	margin-top: 4.5rem;
}

.project-list {
	margin-bottom: 70px;
}

.project-content-wrap {
	display: block;
	width: 100%;
}

.project-img {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.project-thumbnail {
	display: block;
	height: 100%;
	position: relative;
}

.project-content {
	margin-top: 2rem;
	padding-right: 3.2rem;
}

.project-content h3 {
	font-size: 1.7rem;
	font-weight: 600;
	font-family: var(--montserrat-font);
	margin-bottom: 1rem;
}

.project-content p {
	line-height: 21px;
	font-size: 0.85rem;
	margin-bottom: 1.6rem;
}

.project-link {
	color: var(--dark-color);
	font-size: 0.9rem;
	font-weight: 700;
	position: relative;
	display: block;
	overflow: hidden;
}

.project-link1 {
	display: block;
	transform: translateY(0);
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 1;
}

.project-link1::after,
.project-link2::after {
	content: "";
	width: 18px;
	height: 1.5px;
	background: var(--blue-color);
	display: inline-block;
	transform: translateY(-4px);
	margin-left: 8px;
	/* transition: width cubic-bezier(0.4, 0, 0.2, 1) 0.3s; */
}

.project-link2 {
	position: absolute;
	bottom: -100%;
	left: 0;
	right: 0;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 0;
}

.project-link:hover .project-link1 {
	transform: translateY(-100%);
	opacity: 0;
}

.project-link:hover .project-link2 {
	bottom: 0;
	opacity: 1;
}

/* TESTIMONIAL SECTION ================================== */
.testimonial {
	background: var(--container-color);
}

.testimonial-container {
	/* background-color: var(--container-color); */
	padding: 3rem 1.5rem;
	margin: auto;
}

.testimonial-bg {
	width: 100%;
	margin: auto;
}

.testimonial-data,
.pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.testimonial-data {
	position: relative;
}

.pagination {
	margin-top: 2rem;
	top: 0;
	right: 0;
	z-index: 99;
}

.prev,
.next {
	color: var(--white-color) !important;
	background-color: var(--dark-color);
	border-radius: 50%;
	width: 40px !important;
	height: 40px !important;
	line-height: 30px !important;
	font-size: 1.3rem !important;
	position: absolute !important;
	top: 35% !important;
	transition: all 0.4s ease;

	left: unset !important;
	right: 0 !important;
}

.prev {
	margin-right: 3.5rem;
}

.prev::after,
.next::after {
	font-size: 1rem !important;
	font-weight: bold;
}

.prev:hover,
.next:hover {
	background: var(--blue-color) !important;
	color: #ffffff !important;
}

figure {
	cursor: grab;
}

.prev {
	left: unset;
	right: 0;
}

.quote {
	color: var(--text-color);
	font-weight: 400;
	line-height: 1.8rem;
}

.person {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 1rem;
}

.profile-pic {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
}

.name,
.post {
	display: block;
}

.name {
	font-weight: 600;
	color: var(--dark-color);
}

.post {
	font-size: var(--small-font-size);
}


/* FOOTER SECTION ============================================================ */
.footer {
	background: var(--container-color);
	
	padding: 7rem 0;
}

.footer-container {
	gap: 0;
	position: relative;
}

.footer-logo {
	width: 150px;
	position: absolute;
	top: 7px;
	left: 0;
}

.footer-right,
.footer-contact-title,
form {
	margin-top: 3rem;
}

input,
textarea {
	width: 100%;
	max-width: 100%;
	background: transparent;
	border-bottom: 1px solid var(--text-color);
	padding: 10px 0 2px 0;
	margin-bottom: 1.5rem;
	color: var(--dark-color);
	font-size: 1rem;
	font-weight: 500;
}

.submit-btn {
	margin-top: 1rem;
}

.footer-social-links {
	margin-top: 4rem;
	margin-bottom: 3rem;
}

.footer-social-link {
	margin: 0 20px 0 0;
	display: inline-block;
	position: relative;
}

.footer-social-link a {
	font-size: 1rem;
	height: 24px;
	font-weight: 600;
	color: var(--title-color);
	position: relative;
	display: block;
	overflow: hidden;
}

.footer-social-link a span {
	display: block;
	transform: translateY(0);
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 1;
}

.footer-social-link a i {
	position: absolute;
	bottom: -100%;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 1rem;
	color: var(--blue-color);
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
	opacity: 0;
}

.footer-social-link a:hover span {
	transform: translateY(-100%);
	opacity: 0;
}

.footer-social-link a:hover i {
	bottom: 7px;
	opacity: 1;
}

.footer-social-link::after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--blue-color);
	position: absolute;
	top: 10px;
	right: -14px;
}

.footer-social-link:nth-of-type(4)::after {
	display: none;
}

.footer-description {
	color: var(--text-color);
	margin-bottom: 2rem;
	line-height: 1.5rem;
	font-weight: 600;
	max-width: 500px;
}

.footer-email {
	margin-top: 2rem;
	position: relative;
	display: inline-flex;
}

.footer-email a {
	font-size: 1.15rem;
	color: var(--dark-color);
	font-weight: 700;
	font-family: var(--montserrat-font);
	display: inline-flex;
}

.footer-email::before {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	background: #414141;
	width: 100%;
	height: 1px;
}

.footer-email::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	background: var(--blue-color);
	width: 0;
	height: 1.5px;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.footer-email:hover::after {
	width: 100%;
}

.copyright {
	display: block;
	color: var(--dark-color);
	margin-top: 3rem;
}

.copyright a {
	color: var(--blue-color);
	position: relative;
}

.copyright a::before {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	background: #414141;
	width: 100%;
	height: 1px;
}

.copyright a::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 0;
	background: var(--white-color);
	width: 0;
	height: 1.5px;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.copyright a:hover::after {
	width: 100%;
}

/* SCROLL BACK UP ======================================== */
.scrollup {
	position: fixed;
	right: 1.5rem;
	bottom: -20%;
	display: flex;
	background: var(--blue-color);
	border-radius: 50%;
	padding: 0.8rem;
	opacity: 0.9;
	z-index: 999999;
	transition: 0.4s;
}

.scrollup:hover {
	background: var(--first-color);
	opacity: 1;
}

.scrollup-icon {
	color: #fff;
	font-size: 1.25rem;
}

.show-scroll {
	bottom: 5rem;
}

/* MEDIA QUERIES ============================================== */
@media screen and (max-width: 359px) {
	.section-title,
	.ig-subtitle {
		font-size: 1.4rem;
	}

	.nav-menu {
		padding-left: 1.5rem;
	}

	.social-link a {
		font-size: 0.8rem;
	}
	.email a {
		font-size: 1rem;
	}
	
	.profile-pic {
		width: 40px;
		height: 40px;
	}

}

@media screen and (min-width: 576px) {
	.section {
		padding: 6.5rem 0 4.5rem;
	}

	.section-title,
	.ig-subtitle {
		font-size: 2.8rem;
	}

	.ig-subtitle {
		margin-bottom: -1.3rem;
	}

	.container {
		margin-left: 3.5rem;
		margin-right: 3.5rem;
	}

	.theme-container {
		margin-right: 2rem;
	}

	.theme-switch-wrapper span {
		display: block;
		font-size: 1rem;
	}

	.nav-menu {
		padding-left: 6rem;
	}

	.nav-link {
		font-size: 3rem;
	}

	.home-title {
		font-size: 3.2rem;
		line-height: 108%;
	}

	.home-description {
		font-size: 1.1rem;
		line-height: 2rem;
	}

	.play-btn {
		width: 80px;
		height: 80px;
	}

	.play-btn i {
		font-size: 3rem;
	}

	.project-img {
		height: 400px;
	}

	.project-thumbnail {
		height: 400px;
	}

	.prev,
	.next {
		width: 50px !important;
		height: 50px !important;
	}

	.prev {
		margin-right: 4rem;
	}

	.quote {
		font-size: 1.2rem;
		line-height: 2rem;
		margin-bottom: 1.2rem;
	}

	.profile-pic {
		width: 50px;
		height: 50px;
	}

	.name {
		font-weight: 600;
		font-size: 1.1rem;
		margin-bottom: 0.5rem;
	}

	.post {
		font-size: 0.8rem;
	}

	.ig-details {
		padding: 1rem;
	}

	.instagram-data {
		grid-template-columns: repeat(2, 1fr);
		width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.ig-box {
		width: 100%;
	}

	form .split {
		display: flex;
		column-gap: 2rem;
		align-items: center;
		justify-content: center;
	}

	form {
		width: 90%;
	}
}

@media screen and (min-width: 768px) {
	body {
		margin: 0;
	}

	.section {
		padding-top: 7rem;
	}

	.section-title,
	.ig-subtitle {
		font-size: 3rem;
	}

	.container {
		margin-left: 2rem;
		margin-right: 2rem;
	}

	.header {
		top: 1.5rem;
	}

	.nav-menu {
		padding-left: 8rem;
		padding-top: 5rem;
	}

	.logo {
		width: 180px;
	}

	.nav-open,
	.nav-close {
		width: 60px;
		height: 60px;
	}

	.nav-link {
		font-size: 3.5rem;
		line-height: 80px;
	}

	.social-link a,
	.social-link a i {
		font-size: 1.1rem;
	}

	.social-link a:hover i {
		bottom: 5px;
	}

	.email a {
		font-size: 1.3rem;
	}

	.home {
		padding-top: 9rem;
	}

	.home-container {
		display: flex;
		column-gap: 3rem;
	}

	.home-data {
		flex-basis: 58%;
		max-width: 58%;
	}

	.home-image {
		flex-basis: 42%;
		max-width: 42%;
		position: relative;
		width: 359px;
		overflow: hidden;
		height: 400px;
	}

	.home-img {
		display: block;
		height: 100%;
		position: relative;
	}

	.home-title {
		font-size: 2.5rem;
		line-height: 3rem;
	}

	.play-btn {
		width: 110px;
		height: 110px;
	}

	.play-btn i {
		font-size: 5rem;
	}

	.project-content-wrap {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
	}

	.project-media {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		height: auto;
	}

	.project-content {
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0 40px;
		margin-top: 0;
	}

	.project-img {
		max-height: 550px;
	}

	.project-thumbnail {
		height: 100%;
	}

	.project-list:nth-child(2n) .project-content-wrap {
		flex-direction: row-reverse;
	}

	.project-content h3 {
		font-size: 2.1rem;
	}

	.testimonial-bg {
		width: 80%;
	}

	.quote {
		font-size: 1.5rem;
		line-height: 2.5rem;
		margin-top: 2rem;
		margin-bottom: 1.5rem;
	}

	.instagram-data {
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.ig {
		font-size: 2.5rem;
	}

	.likes {
		width: 90px;
		padding-top: 0.2rem;
		font-size: 1.1rem;
	}

	.numbers {
		margin-top: -4px;
	}

	.likes i {
		font-size: 1.1rem;
	}

	.footer-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	form {
		width: 100%;
	}

	.footer-right {
		order: 1;
		margin-top: -3rem;
	}

	.footer-left {
		margin-top: 3rem;
	}

	.footer-description {
		font-size: 1.1rem;
		line-height: 2rem;
	}

	.copyright {
		position: absolute;
		bottom: 10px;
		left: 0;
	}

	.profile-pic {
		width: 80px;
		height: 80px;
	}

	/* SCROLL BACK UP =============================== */
	.scrollup {
		padding: 1rem;
	}

	.scrollup-icon {
		color: #ffffff;
		font-size: 1.7rem;
	}

}

@media screen and (min-width: 968px) {
	.container {
		margin-left: auto;
		margin-right: auto;
		padding-left: 25px;
		padding-right: 25px;
	}

	.section-title,
	.ig-subtitle {
		font-size: 3rem;
	}

	.header {
		top: 2rem;
	}

	.nav-menu {
		width: 55%;
	}

	.logo {
		width: 200px;
	}

	.home {
		padding-top: 11rem;
	}

	.home-title {
		font-size: 3.3rem;
		line-height: 4rem;
	}

	.home-data p {
		margin-top: 1.3rem;
		margin-bottom: 3.5rem;
	}

	.play-btn {
		width: 150px;
		height: 150px;
	}

	.play-btn i {
		font-size: 7rem;
	}

	.project-content {
		padding: 0 80px;
	}

	.project-content h3 {
		font-size: 2.5rem;
	}

	.project-content p {
		font-size: 0.9rem;
		margin-bottom: 60px;
	}

	.prev,
	.next {
		width: 60px !important;
		height: 60px !important;
	}

	.prev {
		margin-right: 4.5rem;
	}

	.prev::after,
	.next::after {
		font-size: 1.5rem !important;
	}

	.quote {
		font-size: 1.5rem;
		line-height: 3.5rem;
	}

	.person {
		margin-top: 1.7rem;
	}

	.profile-pic {
		width: 80px;
		height: 80px;
	}

	.name {
		font-weight: 600;
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
	}

	.post {
		font-size: 0.9rem;
	}

	.ig-details {
		top: 3%;
		padding: 2rem;
	}

	.ig-box {
		width: 100%;
		height: 300px;
	}

	.footer-logo {
		width: 190px;
		left: 25px;
	}

	.copyright {
		left: 25px;
	}
}

@media screen and (min-width: 1180px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-title,
	.ig-subtitle {
		font-size: 4rem;
	}

	.ig-subtitle {
		margin-bottom: -1.7rem;
	}

	.nav-menu {
		padding-left: 13rem;
		padding-top: 9rem;
	}

	.home-title {
		font-size: 4.5rem;
		line-height: 5.2rem;
	}

	.home-description {
		font-size: 1.3rem;
	}

	.home-data {
		flex-basis: 60%;
		max-width: 60%;
	}

	.home-image {
		flex-basis: 40%;
		max-width: 40%;
		height: 550px;
	}

	.home-img {
		height: 550px;
	}

	.home-buttons {
		margin-top: 2.5rem;
	}

	.btn,
	.btn-b {
		font-size: 1.5rem;
	}

	.footer-logo,
	.copyright {
		left: 15px;
	}

	.profile-pic {
		width: 80px;
		height: 80px;
	}
}

@media screen and (max-width: 1024px) {
	.about-container {
		grid-template-columns: 720px;
		justify-content: center;
		row-gap: 1.875rem;

	}

	.about_img {
		justify-self: center;
	}
}

@media screen and (max-width: 768px) {
	.about-container {
		grid-template-columns: 350px;
		justify-content: center;
		row-gap: 1.875rem;

	}

	.about_img {
		justify-self: center;
	}

	.about_data {
		grid-template-columns: 1fr;
		row-gap: 1.875rem;
	}

}

@media screen and (max-width: 1024px) {
	.resume_container {
		grid-template-columns: 450px;
		justify-content: center;
		row-gap: 1.875rem;
	}

	.timeline_item::before {
		left: 2px;
	}

}

@media screen and (max-width: 576px) {
	.resume_container {
		grid-template-columns: 1fr;
	}
}