/*  import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.Overlay {
  font-family: Tahoma, Arial, sans-serif;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.Overlay .box {
  position: relative;
  background-color: white;
  height: 200px;
  width: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  font-size: 1.25rem;
}
.Overlay .box i {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.Overlay a {
  font-size: 1rem;
  outline: none;
  border: none;
  background-color: var(--color);
  color: white;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 10px;
}
.overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  z-index: 999;
  visibility: hidden;
}
.visible {
  opacity: 1;
  visibility: visible;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 1s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06d85f;
}
.popup .content {
  font-family: Tahoma, Arial, sans-serif;
  margin-top: 10px;
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  .popup {
    width: 70%;
  }
}
.cursor {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  animation: cursorAnim 0.9s infinite alternate;
  pointer-events: none;
}

.cursor::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: rgb(156, 156, 156);
  border: 8px solid rgb(109, 109, 109);
  border-radius: 50%;
  opacity: 0.5;
  top: -8px;
  left: -8px;
  animation: cursorAnim2 0.9s infinite alternate;
}

@keyframes cursorAnim3 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.expand {
  animation: cursorAnim3 0.9s forwards;
}
@media (max-width: 500px) {
  .cursor {
    display: none;
  }
}
.theme-1 {
  --color: #34a7ff;
}
.theme-2 {
  --color: crimson;
}
.theme-3 {
  --color: #039770;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

section {
  padding: 100px 0;
}
.max-width {
  margin: auto;
  padding: 0 80px;
  max-width: 1300px;
}
.about,
.services,
.skills,
.work,
.contact,
#experience,
footer {
  font-family: "Poppins", sans-serif;
}
.about .about-content,
.skills .skills-content,
.services .serv-content,
.contact .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.services .serv-content {
  justify-content: space-around;
}
section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #111;
  transform: translateX(-50%);
}
section .title::after {
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -8px;
  color: var(--color);
  padding: 0 5px;
  font-size: 20px;
  transform: translateX(-50%);
}
/* navbar styling */
.navbar {
  font-family: "Ubuntu", sans-serif;
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  transition: all 0.3s ease;
}
.navbar.sticky {
  background: var(--color);
  padding: 15px 0;
}
.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}
.navbar .logo a span {
  color: var(--color);
  transition: all 0.3s ease;
}
.navbar.sticky .logo a span {
  color: #fff;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  display: block;
  margin-left: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: var(--color);
}
.navbar.sticky .menu li a:hover {
  color: #fff;
}
.navbar .menu li a.version {
  padding: 5px 10px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  border-radius: 100px;
  font-size: 14px;
  animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* menu btn styling */
.menu-btn {
  display: none;
  color: #fff;
  font-size: 23px;
  cursor: pointer;
}
.scroll-up-btn {
  position: fixed;
  height: 35px;
  width: 32px;
  background: var(--color);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.377);
  left: 15px;
  bottom: 20px !important;
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  z-index: 9999;
  pointer-events: none;
  transition: all 0.3s ease;
  padding-bottom: -20px;
}
.scroll-up-btn.show {
  bottom: 30px;
  pointer-events: auto;
  opacity: 0.7;
}
.scroll-up-btn:hover {
  opacity: 1;
  filter: brightness(90%);
}
/* home section styling */
.star {
  position: absolute;
  top: 0;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  animation: animate linear infinite;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(130px);
  }
}
.home {
  display: flex;
  /* background: url("images/banner.jpg") no-repeat center; */
  background: #111111;
  height: 100vh;
  color: #fff;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu", sans-serif;
}
.home .theme {
  position: fixed;
  bottom: 10px !important;
  right: 10px !important;
  z-index: 20;
}
@media (max-width: 768px) {
  .home .theme {
    right: 3px !important;
  }
  .home .theme span {
    opacity: 0.7;
  }
  .home .theme span:hover {
    opacity: 1;
  }
}
.home .theme span {
  position: relative;
  display: block;
  padding: 10px;
  margin: 5px;
  border-radius: 50%;
  background: white;
  color: black;
  cursor: pointer;
}
.home .theme span:nth-child(1) {
  background: #34a7ff;
}
.home .theme span:nth-child(2) {
  background: crimson;
}
.home .theme span:nth-child(3) {
  background: #039770;
}
.home .theme span i {
  opacity: 0.5;
  transition: 0.4s;
}
.home .theme span:hover {
  transition: all 0.3s ease;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
.home .theme span:hover i {
  opacity: 1;
}
.home .max-width {
  margin: auto auto;
  display: flex;
  /* justify-content: start; */
}
.home .home-content {
  padding-top: 50px;
  padding-right: 100px;
}
.home .home-content .text-1 {
  font-size: 27px;
}

.home .home-content .text-2 {
  font-size: 50px;
  font-weight: 600;
  margin-left: -3px;
}
.home .home-content .text-3 {
  font-size: 37px;
  margin: 5px 0;
}
.home .home-content .text-3 span {
  color: var(--color);
  font-weight: 500;
}
.home .max-width img {
  height: 300px;
  margin: 0 20px;
}
.home .home-content a {
  display: inline-block;
  background: var(--color);
  color: #fff;
  font-size: 25px;
  padding: 12px 36px;
  margin-top: 20px;
  font-weight: 400;
  border-radius: 6px;
  border: 2px solid var(--color);
  transition: all 0.3s ease;
}
.home .home-content a:hover {
  color: var(--color);
  background: none;
}

/* about section styling */
.about .title::after {
  content: "who i am";
}
.about .about-content .left {
  width: 45%;
}
.about .about-content .left img {
  height: 400px;
  width: 350px;
  object-fit: cover;
  border-radius: 6px;
}
.about .about-content .right {
  width: 55%;
}
.about .about-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .about-content .right .text span {
  color: var(--color);
}
.about .about-content .right p {
  font-size: 17px;
  text-align: justify;
}
.about .about-content .right a {
  display: inline-block;
  background: var(--color);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid var(--color);
  transition: all 0.3s ease;
}
.about .about-content .right a:hover {
  color: var(--color);
  background: none;
}

/* services section styling */
.services,
.work {
  color: #fff;
  background: #111;
}
.services .title::before,
.contact .title::before,
.work .title::before {
  background: #fff;
}
.services .title::after,
.work .title::after {
  background: #111;
  content: "what i do";
}

.services .serv-content .card {
  width: calc(33% - 20px);
  background: #222;
  text-align: center !important;
  border-radius: 6px;
  padding: 50px 25px;
  max-height: 230px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.services .serv-content .card:hover {
  background: var(--color);
}
.services .serv-content .card .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}
.services .serv-content .card:hover .box {
  transform: scale(1.05);
}
.services .serv-content .card i {
  font-size: 50px;
  color: var(--color);
  transition: color 0.3s ease;
}
.services .serv-content .card:hover i {
  color: #fff;
}
.services .serv-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}

/* skills section styling */

.skills .title::after {
  content: "what i know";
}
.skills .skills-content .column {
  width: calc(50% - 30px);
}
.skills .skills-content .left .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.skills .skills-content .left p {
  text-align: justify;
  font-size: 17px;
}
.skills .skills-content .left a {
  display: inline-block;
  background: var(--color);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid var(--color);
  transition: all 0.3s ease;
}
.skills .skills-content .left a:hover {
  color: var(--color);
  background: none;
}
.skills .skills-content .right .bars {
  margin-bottom: 15px;
}
.skills .skills-content .right .info {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  justify-content: space-between;
}
.skills .skills-content .right span {
  font-weight: 500;
  font-size: 18px;
}
.skills .skills-content .right .line {
  height: 5px;
  width: 100%;
  background: lightgrey;
  position: relative;
}
.skills .skills-content .right .line::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color);
}
.skills-content .right .html::before {
  width: 90%;
}
.skills-content .right .react::before {
  width: 70%;
}
.skills-content .right .js::before {
  width: 80%;
}
.skills-content .right .mongo::before {
  width: 50%;
}
.skills-content .right .mysql::before {
  width: 60%;
}
.skills-content .right .node::before {
  width: 65%;
}

.skills-content .right .cpp::before {
  width: 60%;
}

/* teams section styling */
.work .title::after {
  content: "what i've made";
}
.work .carousel .card {
  background: #222;
  border-radius: 10px;
  padding: 25px 35px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 400px;
}
.work .carousel .card:hover {
  background: var(--color);
}
.work .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.work .carousel .card:hover .box {
  transform: scale(1.05);
}
.work .carousel .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}
.work .carousel .card img {
  height: 200px;
  width: 200px;
  /* max-width: 300px; */
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--color);
  transition: all 0.1s;
}
.work .carousel .card:hover img {
  /* height: auto;
  width: 100%;
  max-width: 300px; */
  border-radius: 10px;
  width: 100%;
  /* object-fit: contain; */
}
.work .carousel .card:hover img {
  border-color: #fff;
}
.work .carousel .card p {
  font-size: 15px;
}
.work .carousel .card p a {
  text-decoration: none;
  color: white;
}
.work .carousel .card p i {
  font-size: 17px;
  margin: 15px 10px 0;
}
.work .carousel .card p i {
  background: #5d5d5d;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.work .carousel .card p i:hover {
  /* color: var(--color); */
  background: #333;
  transition: all 0.3s ease;
  /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4); */
  transform: translateY(-5px);
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot {
  height: 13px;
  width: 13px;
  margin: 0 5px;
  outline: none !important;
  border-radius: 50%;
  border: 2px solid var(--color) !important;
  transition: all 0.3s ease;
}
.owl-dot.active {
  width: 35px;
  border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
  background: var(--color) !important;
}
.btn {
  display: flex;
  justify-content: center;
}
.viewAll {
  position: absolute;
  background: var(--color);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  margin-top: 25px;
  border-radius: 6px;
  border: 2px solid var(--color);
  transition: all 0.3s ease;
}
.viewAll:hover {
  color: var(--color);
  background: none;
}
/* experience section styling  */

#experience .title::after {
  /* background: #111; */
  position: absolute;
  bottom: -13px;
  left: 50%;
  font-size: 20px;
  color: var(--color);
  padding: 0 5px;
  background: #fff;
  transform: translateX(-50%);
  content: "work exposure";
  font-family: "Poppins", sans-serif;
}
#experience .CV-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2em;
  color: #222;
  font-size: 1em;
  font-family: "Poppins", sans-serif;
}
@media all and (max-width: 500px) {
  #experience .CV-page {
    padding: 0 1em;
  }
}
#experience .CV-page {
  width: auto;
}
#experience .CV-secondaryHeading {
  position: relative;
  margin: 2em 0 0;
  text-transform: uppercase;
}
#experience .CV-grid {
  display: table;
}
#experience .CV-grid-column {
  display: table-cell;
}
#experience .CV-timeline {
  position: relative;
  margin: 0 0 0 0.5em;
  padding: 0px 0 0px 1.5em;
  border-left: solid 1px #222;
}
#experience .CV-timeline:first-of-type {
  margin-top: 1em;
}
#experience .CV-timeline:last-of-type {
  border-left-color: transparent;
}
#experience .CV-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.55em;
  display: block;
  width: 1em;
  height: 1em;
  border: solid 1px #222;
  background-color: #fff;
  border-radius: 50%;
}
#experience .CV-timeline-heading {
  margin: 0;
  padding-bottom: 0.5em;
  line-height: 1em;
  font-weight: normal;
  -webkit-transform: translateY(-0.1em);
  -ms-transform: translateY(-0.1em);
  transform: translateY(-0.1em);
}
#experience .CV-timeline-heading-title {
  line-height: 1;
  color: var(--color);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
}
#experience .CV-timeline-heading-location {
  font-size: 0.9em;
}
#experience .CV-timeline-heading-duration {
  display: block;
  font-size: 0.8em;
  color: #6f6f6f;
}
#experience .CV-timeline-details {
  display: block;
  margin: 0;
  padding-bottom: 2em;
  padding: 0 0 2em 1em;
  list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAGElEQVQIW2NkYGD4D8TIgJERTQDMpVAQAGaUAQbko3DsAAAAAElFTkSuQmCC");
}
#experience .CV-timeline-details-item {
  margin-bottom: 0.5em;
}

/* contact section styling */
.contact {
  background: #141414;
  color: #fff;
}
.contact .title::after {
  content: "get in touch";
  background-color: #111;
}
.contact .contact-content .column {
  width: calc(50% - 30px);
}
.contact .contact-content .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact .contact-content .left p {
  text-align: justify;
}
.contact .contact-content .left .icons {
  margin: 10px 0;
}
.contact .contact-content .row {
  display: flex;
  height: 65px;
  align-items: center;
}
.contact .contact-content .row .info {
  margin-left: 30px;
}
.contact .contact-content .row i {
  font-size: 25px;
  color: var(--color);
}
.contact .contact-content .info .head {
  font-weight: 500;
}
.contact .contact-content .info .sub-title {
  color: #fff;
}
.contact .right form .fields {
  display: flex;
}
.contact .right form .field,
.contact .right form .fields .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}
.contact .right form .textarea {
  height: 80px;
  width: 100%;
}
.contact .right form .name {
  margin-right: 10px;
}
.contact .right form .email {
  margin-left: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 6px;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #b3b3b3;
}
.contact .right form .textarea textarea {
  padding-top: 10px;
  resize: none;
}
.contact .right form .button {
  height: 47px;
  width: 170px;
}
.contact .right form .button button {
  width: 100%;
  height: 100%;
  border: 2px solid var(--color);
  background: var(--color);
  color: #fff;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact .right form .button button:hover {
  color: var(--color);
  background: none;
}

/* footer section styling */
footer {
  background: rgb(0, 0, 0);
  padding: 15px 23px;
  color: #fff;
  text-align: center;
}
footer span a {
  color: var(--color);
  text-decoration: none;
}
footer span a:hover {
  text-decoration: underline;
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
  list-style: none;
}
.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}
.social-icons a {
  background-color: #111;
  color: #d0d7dd;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}
.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}
.social-icons a.facebook:hover {
  background-color: #3b5998;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}

.social-icons a.instagram:hover {
  background-color: #da0255;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.social-icons a.github:hover {
  background-color: #000000;
  color: white;
}
.social-icons a.codepen:hover {
  background-color: #fff;
  color: black;
}
.social-icons a.linkedin:hover {
  background-color: #0e76a8;
  color: white;
}
@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}
/* responsive media query start */
@media (max-width: 1300px) {
  .home .max-width {
    margin-left: 0px;
  }
}

@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
}
@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #111;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .navbar .menu li a.version {
    font-size: 20px;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column {
    width: 100%;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right {
    flex: 100%;
  }
  .services .serv-content .card {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .skills .skills-content .column,
  .contact .contact-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
}
@media (max-width: 800px) {
  .home img {
    display: none;
  }
}
@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .services .serv-content .card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-2 {
    font-size: 50px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
  }
  .about .about-content .right .text,
  .skills .skills-content .left .text {
    font-size: 19px;
  }
  .contact .right form .fields {
    flex-direction: column;
  }
  .contact .right form .name,
  .contact .right form .email {
    margin: 0;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
}
