/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;700&display=swap");

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  scroll-behavior: smooth;
}

/* Variables */
:root {
  --color-primary: #2f80ed;
  --color-white: #fff;
  --color-black: #000;
  --color-secondary: #2678e4;
  --color-paragraph: #718096;
  --color-heading: #2d3748;
  --color-lightGrey: #f9f9f9;
  --color-turquoise: #3fc4c8;
  --color-turquoise-2: #229cd5;
  --color-green: #65d721;
  --color-light: #eee;
  --page-1-color: #00a0f8;
  --page-1-1-color: #052675;
  --page-2-color: #3b2dcf;
  --page-2-2-color: #7ba1f0;
  --page-3-color: teal;
  --page-4-color: slateblue;
  --color-bg: #2a2525;
  --color-gradient: linear-gradient(
    300.81deg,
    var(--color-turquoise) -17.99%,
    var(--color-primary) 111.32%,
    var(--color-turquoise-2) 111.32%
  );
  --color-gradient-2: linear-gradient(
    171.21deg,
    var(--color-turquoise) -10.74%,
    var(--color-primary) 112.82%,
    var(--color-turquoise-2) 112.82%
  );
  --color-gradient-3: linear-gradient(
    300.81deg,
    var(--color-bg) -17.99%,
    var(--page-1-1-color) 111.32%,
    var(--color-turquoise-2) 111.32%
  );
  --color-scrollbar: #0d81ec;
}

body {
  color: #fff;
  font-size: 1.2rem;
}

/* Custom scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--color-gradient-3);
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-gradient);
}

body::-webkit-scrollbar-thumb:hover {
  border-radius: 10px;
  background: var(--color-gradient-2);
}

/* Section general padding */
section {
  padding: 5rem 6rem;
}

.my-2 {
  margin: 2rem 0;
}

.mt-3 {
  margin-top: 5rem;
}

/* text utilities */
.text-white {
  color: var(--color-white);
}

.btn-home {
  background: var(--color-gradient);
  color: var(--color-white);
  border: 2px solid #fff;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  padding: 0.7rem 2rem;
  position: absolute;
  bottom: 12%;
  text-align: center;
  transition: all 0.5s ease;
}

.btn-home:hover {
  transform: translateY(-5px);
  background: var(--color-gradient-2);
}

/* Sidebar header */
.header {
  width: 20rem;
  height: 100vh;
  position: fixed;
  background-color: #111111;
  transition: all 0.4s ease-in-out;
  transform: translateX(-100%);
  z-index: 4;
}

/* Menu show */
.header.show {
  display: block;
  position: fixed;
  transform: translateX(0%);
  z-index: 5;
}

.main-content {
  margin-left: 23rem;
  min-height: 100vh;
}

/* Main navi */
.main-navi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 7rem;
}

.logoHome {
  width: 150px;
}

.logoHome img {
  width: 100%;
}

.logoHome img:hover {
  filter: drop-shadow(0 0 0.4rem white);
}

.navi-items {
  display: flex;
  justify-content: space-between;
}

.navi-items .navi-item {
  margin-right: 2rem;
}

.navi-items .navi-item a {
  color: #fff;
  padding: 1rem;
  transition: none;
}

.navi-items .navi-item a:hover {
  border-bottom: 2px solid #fff;
}

.navigation {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.3rem;
}

.logo {
  width: 200px;
}

.log img {
  width: 100%;
}

.logo img:hover {
  filter: drop-shadow(0 0 0.4rem white);
}

.nav-items li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #c4c4c418;
}

.nav-link {
  color: var(--color-white);
  position: relative;
  padding: 3px 0px;
  letter-spacing: 1px;
}

.nav-link::before,
.nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.nav-link::after {
  bottom: 0;
  transform-origin: right;
}

.nav-link::before {
  top: 0;
  transform-origin: left;
}

.nav-link:hover::before,
.nav-link:hover::after {
  transform: scaleX(1);
  filter: drop-shadow(0 0 0.75rem white);
}

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

.icons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icons img {
  cursor: pointer;
}

/* Hero Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url(../img/filler.png),
    linear-gradient(350deg, var(--page-1-color) 10%, var(--page-1-1-color) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section p {
  color: var(--color-white);
}

/* Avatar */
.avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.avatar img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  border: 5px solid var(--color-white);
  object-fit: cover;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text h1 {
  font-size: 3rem;
  padding: 1rem 0;
  color: #fff;
}

.txt {
  color: #fff !important;
  font-size: 4rem;
  font-weight: 500;
}

.header-secondary {
  font-size: 1.5rem;
}

.mouse {
  width: 1.7rem;
  height: 2.5rem;
  border: 2px solid var(--color-white);
  border-radius: 30px;
  position: absolute;
  bottom: 4%;
}

.dot {
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  background-color: var(--color-white);
  left: 50%;
  top: 70%;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: upDown 2s infinite;
}

/* Dot animation for mouse */
@keyframes upDown {
  0% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-15px) translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateY(0) translateX(-50%) scale(1);
  }
}

/* About Section */
span {
  color: var(--color-primary);
}

p {
  color: var(--color-paragraph);
}

h3 {
  color: var(--color-heading);
  font-size: 2rem;
}

.about-section {
  min-height: 100vh;
  background-color: var(--color-white);
}

.about-container {
  display: flex;
  justify-content: space-between;
  padding: 2.2rem 0;
}

.about-container .abt-img {
  max-width: 45%;
  border-radius: 25px;
  object-fit: cover;
}

.main-title p {
  color: var(--color-primary);
  font-size: 1.4rem;
}

.main-title h3 {
  color: var(--color-heading);
  font-size: 2.5rem;
}

.title p {
  color: var(--color-white);
}

.title h3 {
  color: var(--color-white);
}

.right-about-sect {
  padding-left: 4rem;
}

.right-about-sect h5 {
  color: var(--color-black);
  font-size: 2rem;
}

.right-about-sect p {
  padding: 1rem 0;
}

.icons-text p {
  padding: 0;
  margin-left: 4rem;
}

.icons-data p {
  margin-left: 1rem;
}

/* Icon */
.icon {
  width: 24px;
  height: 24px;
  background-size: cover;
  transition: all 0.4s ease-in-out;
}

/* Social icons */
.socialIcons {
  transition: all 0.4s ease-in-out;
}

.socialIcons:hover {
  transform: scale(1.37);
}

.icons-text {
  display: flex;
}

.icons-text ul li {
  padding: 0.4rem 0;
}

.icons-data li {
  display: flex;
  align-items: center;
}

.btn {
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-white);
  border-radius: 7px;
  margin-right: 1rem;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.btn-secondary {
  margin-left: 1rem;
}

.btn a {
  color: #fff;
}

.btn:hover {
  background-color: var(--color-secondary);
  transform: translateY(-5px);
  cursor: pointer;
}

.button-container {
  margin-top: 3rem;
}

/*Services section*/
.services {
  background-image: linear-gradient(
      190deg,
      rgba(64, 255, 0, 0.2),
      rgba(64, 0, 255, 0.5)
    ),
    repeating-radial-gradient(
      circle farthest-corner at 100% 120%,
      rgba(0, 0, 255, 0.2),
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 255, 0.2) 30%,
      rgba(0, 255, 0, 0.1) 60%
    ),
    linear-gradient(90deg, #ad64e1, #5279ef, #4bda8b);
  min-height: 100vh;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  padding: 2.2rem 0;
}

.s-item {
  min-height: 25vh;
  background-color: white;
  padding: 1.7rem;
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.s-item:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.125);
  transform: translateY(-5px);
}

.s-item::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 100%;
  top: 0;
  background-color: #2684ff6d;
  top: 0;
  right: 0;
}

.s-item h6 {
  color: #2d3748;
  font-size: 1.3rem;
  padding: 1rem 0;
}
.s-item a {
  color: #2f80ed;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 0;
}

.s-item p {
  line-height: 1.9rem;
}

.num {
  padding-bottom: 2rem;
  color: #2f80ed;
}

.num::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.6rem;
  background-color: #2684ff6d;
  bottom: 0;
  right: 0;
  top: 20%;
}

.progress {
  position: relative;
  width: 100%;
  height: 0.6rem;
  background-color: #2d3748e3;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.actual-progress {
  position: absolute;
  left: 0;
  top: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 90%;
  height: 100%;
  background-color: #2f80ed;
}

.skill-text {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}

.s-p-70 {
  width: 70%;
}

.s-p-67 {
  width: 67%;
}
.s-p-85 {
  width: 85%;
}

.skill-title {
  color: #2d3748;
}

.servive-skills {
  width: 100%;
  display: flex;
}
.progress-bars {
  width: 100%;
  padding-left: 2.4rem;
}

.my-skills {
  width: 80%;
}

.my-skills h6 {
  color: #2d3748;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.my-skills p {
  line-height: 1.9rem;
}

.skill:not(:last-child) {
  padding-bottom: 2rem;
}

/* Portfolio Section */
.portfolio-section {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    var(--page-2-color) 20%,
    var(--page-2-2-color) 100%
  );
}

.portfolio-items {
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio {
  border-radius: 25px;
  height: 42vh;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio img {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio:hover .hover-items {
  transform: translate(0);
}

.hover-items {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background-color: rgba(0, 119, 255, 0.799);
  border-radius: 25px;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hover-items a {
  padding: 1rem 0;
  color: var(--color-white);
}

/* Blogs Section*/
.blogs-section {
  min-height: 100vh;
  background: linear-gradient(30deg, #89e6e6 0%, #4373c5 35%, #01b1f0 100%);
}

.blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 2.2rem 0;
  grid-gap: 2rem;
}

.blog {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
}

.blog:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-7px);
}

.blog-text {
  padding: 1rem;
}

.blog-text h6 {
  color: var(--color-heading);
  font-size: 1.4rem;
  padding: 0.8rem 0;
}

.blog-text a {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.blog-date span {
  cursor: pointer;
}

.image-blog {
  height: 40%;
}

.image-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.read-more {
  padding: 0.5rem 0;
  color: var(--color-primary);
}

/* Blogs category */
.category {
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 3rem;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.web-dev {
  background-color: var(--color-heading);
}

.programming {
  background-color: var(--color-paragraph);
}

.freelance {
  background-color: var(--color-turquoise);
}
.web-design {
  background-color: coral;
}

.productivity {
  background-color: teal;
}

/* Contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 2rem;
  grid-gap: 2rem;
}

.input-control {
  padding: 0.4rem 0;
}

.input-control input {
  width: 100%;
  border-radius: 7px;
  font-size: inherit;
  font-family: inherit;
  padding: 0.7rem 0.4rem;
  outline: none;
  border: 1px solid var(--color-light);
}

.input-control textarea {
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  padding: 0.7rem 0.4rem;
  outline: none;
  border: 1px solid var(--color-light);
  border-radius: 7px;
}

.submit-btn {
  cursor: pointer;
  outline: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

/* Footer */
.footer {
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.4s ease-in-out;
  padding: 7rem 2rem 1rem 3rem;
  position: relative;
}

.logo-footer {
  align-self: flex-start;
  margin-top: -1rem;
}

.logo-f {
  width: 150px;
  align-self: flex-start;
}

.logo-f img {
  width: 100%;
}

.logo-f img:hover {
  filter: drop-shadow(0 0 0.4rem white);
}

.subtitle {
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--color-primary);
  cursor: pointer;
}

.subtitle:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  padding: 2rem 3rem;
}
.footer-container .logoHome:hover {
  filter: drop-shadow(0 0 0.27rem white);
}

.social-ic {
  margin-left: 0.5rem;
  margin-top: 2rem;
}

.social-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.social-item:nth-child(2) {
  margin-left: -2px;
}

.social-item a:visited {
  color: #fff;
}

.link-color {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-item img {
  color: #fff !important;
  cursor: pointer;
}

.footer-container .footer-item {
  padding: 0.8rem;
}

.footer-item li a {
  color: var(--color-light);
}

.footer-container .footer-item ul li {
  padding: 0.8rem 0;
}

.copyright {
  text-align: center;
  background-color: var(--color-black);
  padding: 3rem;
}

.f-text {
  padding-bottom: 1rem;
}

.span-footer:hover {
  color: #fff;
  cursor: pointer;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--color-primary);
  display: inline-flex;
  padding: 0.5rem;
  color: var(--color-white);
  font-size: 1.28rem;
  z-index: 10;
  transition: 0.3s;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/* Hamburger menu top */
.top-nav {
  z-index: 10;
  display: none;
}

.burger-menu {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  position: fixed;
  top: 20px;
  left: 20px;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.line-1,
.line-2,
.line-3 {
  width: 30px;
  height: 2px;
  background-color: var(--color-white);
  margin: 2px;
  transform-origin: right;
  transition: all 0.3s ease-in-out;
}

.line-1.lines {
  transform: rotate(-40deg) translateY(-5px);
}

.line-2.lines {
  opacity: 0;
}

.line-3.lines {
  transform: rotate(40deg) translateY(5px);
}

/* Display Block for Default Scroll Bar */
html::-webkit-scrollbar {
  display: none;
}

/* Custom Scroll Bar */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 300;
}
.progress-bar {
  height: 4px;
  background: var(--color-scrollbar);
  width: 0%;
}
/* Custom Scroll Bar End */

/* Media Queries */
@media (max-width: 6200px) {
  .main-content {
    margin-left: 0;
  }

  .top-nav {
    position: fixed;
    display: none;
  }
}
@media screen and (max-width: 1900px) {
  .main-content {
    margin-left: 0;
  }

  .btn {
    margin-right: 0;
  }

  .main-content {
    margin-left: 0;
  }

  .logo img {
    width: 80%;
    height: 80%;
    margin-top: 3rem;
  }

  .header {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 1428px) {
  .main-content {
    margin-left: 0;
  }

  .btn {
    font-size: 1.1rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 1309px) {
  .header {
    transform: translateX(-100%);
  }

  .main-content {
    margin-left: 0;
  }

  .category {
    display: inline-block;
  }
}

@media screen and (max-width: 1138px) {
  .blogs {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    width: 15rem;
  }
}

@media screen and (max-width: 1160px) {
  .about-container {
    flex-direction: column;
  }
  .right-about-sect {
    padding-left: 0;
    padding-top: 4rem;
  }

  .about-container .abt-img {
    min-width: 100%;
  }

  section {
    overflow: hidden;
  }
}

@media screen and (max-width: 1035px) {
  .service-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-icons {
    margin-top: 1.5rem;
  }

  .logo img {
    width: 50%;
    height: 70%;
  }

  .main-navi {
    padding: 1.7rem 2rem;
  }
}

@media screen and (max-width: 1006px) {
  .contact-info {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-navi {
    display: none;
  }

  .top-nav {
    position: fixed;
    display: block;
  }
}

@media screen and (max-width: 930px) {
  .portfolio-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    width: 15rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 905px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 781px) {
  .blogs {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 765px) {
  section {
    padding: 5rem 3rem;
  }

  .btn-home {
    font-size: 1.1rem;
    padding: 0.6rem 1.8rem;
  }

  .logo img {
    width: 60%;
    height: 80%;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 655px) {
  .servive-skills {
    flex-direction: column;
  }

  .progress-bars {
    padding-left: 0;
    padding-top: 2.4rem;
  }
}

@media screen and (max-width: 630px) {
  .service-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolio-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer {
    padding: 2rem;
  }
}

@media screen and (max-width: 540px) {
  body {
    font-size: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
    padding: 1rem 0;
  }

  .txt {
    font-size: 2.7rem;
  }

  .hero-text p {
    font-size: 0.8rem;
  }

  .main-title h3 {
    font-size: 1.5rem;
  }
  .main-title p {
    font-size: 1.1rem;
  }

  .right-about-sect h5 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  h5 {
    font-size: 1.5rem !important;
  }

  .btn {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .information li:last-child {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 502px) {
  .button-container {
    display: flex;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 500px) {
  .portfolio-items {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-section {
    background: url(../img/filler.png),
      linear-gradient(
        338deg,
        var(--page-1-color) 10%,
        var(--page-1-1-color) 100%
      );
  }

  .header {
    width: 11rem;
  }

  .nav-icons {
    margin-bottom: 1rem;
  }

  .footer {
    padding: 2rem 2rem 0 2rem;
  }

  .footer-container {
    grid-template-columns: 2fr 2fr;
    grid-gap: 1rem;
    padding: 1rem 0;
  }

  .logo-footer {
    margin-top: 0;
  }

  /* Remove text from about and contact sections */
  .icons-text .icons-data li p {
    display: none;
  }

  .icons-text .icons-data li img {
    margin-right: 0.8rem;
  }
}

@media screen and (max-width: 450px) {
  .icons-text p {
    margin-left: 0.1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .logo-f {
    align-self: flex-start;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 470px) {
  .input-control input {
    width: 88%;
  }

  .input-control textarea {
    width: 88%;
  }
}

@media screen and (max-width: 416px) {
  .btn {
    font-size: 0.8rem;
    margin-right: 0.5rem;
  }

  .btn-home {
    font-size: 1rem;
    padding: 0.8rem 1.4rem;
  }

  .avatar img {
    width: 170px;
    height: 170px;
  }

  .mouse {
    width: 1.3rem;
    height: 2rem;
    bottom: 2%;
  }
  .blog {
    height: 630px !important;
  }
}

@media screen and (max-height: 400px) {
  .avatar img {
    width: 130px;
    height: 130px;
  }
}

@media screen and (max-width: 375px) {
  .burger-menu {
    width: 45px;
    height: 45px;
  }

  .socialIcons {
    padding: 0px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 360px) {
  section {
    padding: 1.5rem 1.5rem;
  }

  .about-container .abt-img {
    width: 100%;
  }

  .btn {
    font-size: 0.9rem;
  }

  .btn-home {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
  }

  .icons-text p {
    padding: 0;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  .navigation {
    padding: 1.5rem;
  }

  .nav-icons .icons {
    margin-bottom: 1.5rem;
  }

  .header {
    width: 10rem;
  }

  .avatar img {
    width: 160px;
    height: 160px;
  }

  .txt {
    font-size: 2rem;
  }

  .mouse {
    width: 1.2rem;
    height: 1.9rem;
    bottom: 2%;
  }
}
@media screen and (max-width: 330px) {
  .btn {
    font-size: 0.8rem;
    margin-right: 0;
  }

  .my-skills p {
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 307px) {
  .avatar img {
    width: 200px;
    height: 200px;
  }

  section {
    padding: 2.5rem 1.2rem;
  }

  .btn-home {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .icons-text {
    overflow-x: hidden;
  }

  .mouse {
    width: 1.1rem;
    height: 1.8rem;
    bottom: 2%;
  }
}

@media screen and (max-width: 304px) {
  .btn {
    font-size: 0.8rem;
    margin-right: 0;
  }

  .contact-info {
    overflow: hidden;
  }

  .avatar img {
    width: 150px;
    height: 150px;
  }

  .hero-text p {
    font-size: 0.6rem;
  }

  .nav-icons .icons img {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 282px) {
  .btn {
    font-size: 0.6rem;
  }

  .avatar img {
    width: 140px;
    height: 140px;
  }

  .hero-text h1 {
    font-size: 1.3rem;
  }

  .txt {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.45rem;
  }

  .mouse {
    width: 1rem;
    height: 1.7rem;
    bottom: 2%;
  }
}
