:root {
  /* ====Main theme colors==== */
  --first-color: #0e2431;
  --second-color: #6a59d1;
  --third-color: #777;

  /* ====Hovercolors==== */
  --hover-color: #614fd0;

  /* ====Background colors==== */
  --body-bg-color: #fefefe;
  --card-bg-color: #fff;
  --modal-bg-color: #fff;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --line-color: #d7d7d7;

  /* ====colors filters==== */
  --color-filter: invert(1);

  /* ====Box Shadow==== */
  --box-shadow: 0px 0px 20px rgb(0 0 0 /10%);

  /* ====Font Size==== */
  --small-font-size: 0.9rem;
  --normal-font-size: 1rem;

  /* ====Scrol bar color==== */
  --scroll-bar-color: #c5cadf;
  --scroll-thumb-color: #70768a;
  --scroll-thumb-hover-color: #454f6b;
}

/* Dark/Light Theme */
.dark-theme {
  --first-color: #fff;
  --second-color: #6a59d1;
  --third-color: #a9afc3;

  /* ====Background colors==== */
  --body-bg-color: #0e1b31;
  --card-bg-color: #132347;
  --modal-bg-color: #102048;
  --bg-transparent-color: rgba(225, 225, 225, 0.1);
  --transparent-color-01: rgba(225, 225, 225, 0.1);
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --line-color: #454f6b;

  /* ====colors filters==== */
  --color-filter: invert(0);

  /* ====Scrol bar color==== */
  --scroll-bar-color: #c1ceff;
  --scroll-thumb-color: #282f4e;
  --scroll-thumb-hover-color: #454f6b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--first-color);
  background: var(--body-bg-color);
  margin: 2rem 0 0 0;
  transition: 0.5s ease;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* ====Scrool to top button==== */
.scrollToTop-btn {
  z-index: 99999;
  position: fixed;
  width: 45px;
  height: 45px;
  right: 0;
  bottom: 20px;
  color: #fff;
  background: var(--second-color);
  font-size: var(--small-font-size);
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transition: 0.5s ease;
}
.scrollToTop-btn.active {
  right: 20px;
  pointer-events: all;
  opacity: 1;
}

/* ====Light/dark theme button==== */
.theme-btn {
  z-index: 999999;
  position: fixed;
  top: 100px;
  right: 0;
  width: 50px;
  height: 50px;
  font-size: 1.2em;
  backdrop-filter: blur(20px);
  background: var(--transparent-color-01);
  box-shadow: var(--box-shadow);
  border-radius: 5px 0 0 5px;
  cursor: pointer;
}

.theme-btn .fa-sun,
.theme-btn.sun .fa-moon {
  display: none;
}
.theme-btn.sun .fa-sun {
  display: block;
}

/*--======Scroll Bar======*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* track */
::-webkit-scrollbar-track {
  background-color: var(--scroll-bar-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 2em;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-hover-color);
}

/*--======Header======*/

header {
  z-index: 99999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  transition: 0.6s ease;
}

header.sticky {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
}

.nav-bar {
  position: relative;
  height: calc(4rem + 1rem);
  max-width: 1250px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  transition: 0.6s ease;
}

header.sticky .nav-bar {
  height: calc(2.5rem + 1rem);
}
.nav-link1,
.nav-link2,
.nav-link3,
.nav-link4,
.nav-link5,
.nav-link6 {
  color: var(--first-color);
  font-style: var(--normal-font-size);
  font-weight: 500;
  text-transform: uppercase;

  &::after {
    content: "";
    position: absolute;
    bottom: -0.3rem;
    left: 2%;
    width: 0%;
    border-bottom: 0.2rem solid var(--hover-color);
    transition: all 0.3s linear;
  }
}
.nav-items a.active {
  color: var(--second-color);
}
.nav-items a:not(:last-child) {
  margin-right: 50px;
}

.nav-link1:hover {
  color: var(--second-color);
}

.nav-items .nav-link1:hover::after {
  width: 47%;
}

.nav-link2:hover {
  color: var(--second-color);
}

.nav-items .nav-link2:hover::after {
  width: 56%;
}

.nav-link3:hover {
  color: var(--second-color);
}

.nav-items .nav-link3:hover::after {
  width: 64%;
}

.nav-link4:hover {
  color: var(--second-color);
}

.nav-items .nav-link4:hover::after {
  width: 75%;
}

.nav-link5:hover {
  color: var(--second-color);
}

.nav-items .nav-link5:hover::after {
  width: 86%;
}

.nav-link6:hover {
  color: var(--second-color);
}

.nav-items .nav-link6:hover::after {
  width: 96%;
}

.nav-menu-btn {
  display: none;
}

/*--======Home Section======*/
.home {
  position: relative;
  max-width: 1250px;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 2rem;
  flex-direction: column;
}

.home .home-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.home-container .media-icons {
  display: flex;
  flex-direction: column;
  margin-right: 60px;
}

.home-container .media-icons a {
  color: var(--second-color);
  font-size: 1.5em;
  margin: 10px 0;
}

.home-container .media-icons a:hover {
  color: var(--hover-color);
}

.home-container .info h2 {
  font-size: 4em;
  font-weight: 600;
  line-height: 70px;
}

.home-container .info h3 {
  color: var(--third-color);
  font-feature-settings: 1.3em;
  font-weight: 600;
  line-height: 50px;
}

.home-container .info p {
  color: var(--third-color);
  font-size: var(--normal-font-size);
  max-width: 350px;
}

.btn {
  background: var(--second-color);
  color: #fff;
  font-size: var(--normal-font-size);
  font-weight: 500;
  display: inline-block;
  margin-top: 25px;
  padding: 20px 30px;
  letter-spacing: 1px;
  border-radius: 10px;
}

.btn:hover,
  /* background: var(--hover-color); */
  .btn.active {
  background-color: #4d63dd;
  color: #fff;
}

.home-container .home-img {
  position: relative;
  transform: scaleX(-1);
}

.home-container .home-img img {
  width: 100%;
  transform: translate(0, 0);
  height: auto;
}

.home .scroll-down {
  color: var(--first-color);
  font-size: var(--normal-font-size);
  font-weight: 500;
  margin-top: 20px;
}

.home .scroll-down i {
  color: var(--second-color);
  font-size: 1.2em;
  animation: arrow-down ease 2s infinite;
}

@keyframes arrow-down {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(10px);
  }
}

/* Shape Devider */
/* 
.section{
  position: relative;
   background-image: linear-gradient(to top right,
         #3d86fa,
         #4484fb,
         #679eff,
         #b3d2ff,
         #ebf3fe);
}
.custom-shape-divider-bottom-1712117860 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1712117860 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 15rem;
}

.custom-shape-divider-bottom-1712117860 .shape-fill {
  fill: #FFFFFF;
} */

/*--======Common styles for all section======*/

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--======About Section======*/
.container {
  position: relative;
  flex-direction: column;
}

.section {
  position: relative;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 2rem 2rem;
}

.sub-section {
  position: relative;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 0;
}

.section-title-01 {
  font-size: 4.5em;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(to top, transparent 0%, var(--first-color) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
}

.section-title-02 {
  font-size: 2.5em;
  font-weight: 700;
  transform: translateY(-80px);
}

.section-title-02:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 5px;
  right: 0;
  bottom: 0;
  background: var(--second-color);
}

.about .container .content {
  column-gap: 50px;
  width: 100%;
}

.about-info .description {
  max-width: 800px;
}

.about-info .description h3 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-info .description h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-info .description h4 span {
  color: var(--second-color);
}

.about-info .description p {
  color: var(--third-color);
  font-size: var(--normal-font-size);
  margin-bottom: 15px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--line-color);
}

.about-info .professional-list {
  display: flex;
  column-gap: 30px;
}
.about-info .professional-list .list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
}

.about-info .professional-list .list-item h3 {
  font-size: 2.5em;
  font-weight: 700;
}

.about-info .professional-list .list-item span {
  color: var(--third-color);
  font-size: var(--small-font-size);
}

/* About image New */

.about-img {
  width: 50%;
  position: relative;
  z-index: 2;
  transition-duration: 0.4s;
  cursor: pointer;
}

.about-img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(11deg, #6ec1e4 0%, #54595f 100%);
  z-index: -1;
  transition: all 0.5s ease-in-out;
  border-radius: 100% 73% 100% 72% / 99% 86% 75% 63%;
  box-shadow: 2px 10px 0px 0px rgba(216, 19, 19, 0.16);
}

.about-img:hover {
  transform: translateY(-10.5px);
}

.about-img img {
  border-radius: 100% 73% 100% 72% / 99% 86% 75% 63%;
  max-width: 100%;
  min-width: 400px;
  object-fit: cover;
  vertical-align: middle;
  column-gap: 30px;
}

.about-img:hover::before {
  filter: drop-shadow(0 0 30px rgba(130, 237, 255, 0.97));
}

/*--======Skills section=====*/
#resume {
  padding: 60px;
  background-color: var(--bg-color2);
}
/* .skills .container .content {
  width: 100%;
} */

.skills-description {
  min-width: 700px;
  margin-bottom: 50px;
}

.skills-description h3 {
  font-size: 2em;
  margin-bottom: 5px;
}

.resume-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.resume-heading {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  /* justify-content: center;
  align-items: center; */
}
.btn {
  position: relative;
  cursor: pointer;
  transition: 0.4s;
  margin-right: auto;
}
.btn:not(:last-child) {
  margin-right: 15px;
}

/*====Style for resume tab ====*/

.resume-tab {
  display: none;
  width: 90%;
}

.resume-tab.active {
  display: block;
  animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.institution,
.organization {
  color: #78add9;
  font-weight: 400;
}

.years {
  color: var(--color1);
}

.qualification-content {
  position: relative;
  padding: 1rem 2.1rem;
}

.qualification-content::after {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  left: 8px;
  top: 25px;
  transform: rotate(45deg);
  background: #e15747;
}

.qualification-content::before {
  position: absolute;
  content: "";
  height: 70%;
  width: 3px;
  left: 10px;
  background: #e8e8e8;
}
/*========== Style For Skills Bar Progress ==========*/

.bar-content {
  margin-bottom: 15px;
}
.bar-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0 0 0;
  margin-right: 20px;
}
.bar-title,
.bar-percentage {
  margin-right: 20px;
  font-size: 1.2em;
  color: var(--third-color);
}

.bar-progress {
  display: flex;
  background-color: #e9eeef;
  height: 8px;
  border-radius: 5px;
}
.progress-bar {
  width: 0;
  display: flex;
  position: relative;
  transition-delay: 0s;
  transition-delay: 1.5s;
  background-color: #75a9d6;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.resume-tab.active .progress-bar {
  animation: progress 1500ms ease-in 1;
}

@keyframes progress {
  from {
    width: 0;
  }
}

.resume-body .skill-img {
  position: relative;
  transform: scaleX(-1);
  /* height: auto; */
}

.resume-body .skill-img img {
  width: 100%;
  height: auto;
  transform: translate(0, 0);
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
}

/*--======Service Section====*/

.services .container .content {
  width: 100%;
}

.services-description h3 {
  font-size: 2em;
  margin-bottom: 50px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(225px, 1fr));
  max-width: 100%;
  margin: 0 auto;
  gap: 30px;
}

.service-card {
  background: var(--card-bg-color);
  border-bottom: 3px solid var(--second-color);
  padding: 50px;
  border-radius: 6px;
  box-shadow: var(--box-shadow);
}

.service-card > i {
  color: var(--second-color);
  font-size: 3em;
  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}

.service-card .learn-more-btn {
  color: var(--third-color);
  cursor: pointer;
  transition: 0.3s ease;
}

.service-card .learn-more-btn i {
  transition: 0.3s ease;
}

.service-card:hover .learn-more-btn i {
  transform: translateX(10px);
}

.service-modal {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--bg-transparent-color);
  backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.service-modal.active {
  visibility: visible;
  opacity: 1;
}

.service-modal-body {
  position: relative;
  background: var(--modal-bg-color);
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transform: translateY(-50px);
  transition: 0.5s ease;
}

.service-modal.active .service-modal-body {
  transform: translateY(0);
}

.service-modal-body .modal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
}

.service-modal-body h3 {
  font-size: 2em;
}

.service-modal-body h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 0 10px;
}

.service-modal-body ul li {
  margin-top: 15px;
}

.service-modal-body ul li i {
  color: var(--second-color);
}

/*--======Portfolio Section==*/
.portfolio .container .content {
  width: 100%;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 100%;
  gap: 35px;
  margin: 0 auto;
}

.portfolio-list .img-card {
  position: relative;
  max-width: 100%;
  height: 360px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-list .img-card .overlay {
  transition: 1s ease;
}

.portfolio-list .img-card:hover .overlay {
  z-index: 777;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.portfolio-list .img-card .info {
  z-index: 777;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s ease;
}

.portfolio-list .img-card:hover .info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-list .img-card .info h3 {
  font-size: 1.5em;
}

.portfolio-list .img-card .info span {
  font-size: 1.2em;
}

.portfolio-list .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-model {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--transparent-color-01);
  backdrop-filter: blur(20px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.portfolio-model.active {
  visibility: visible;
  opacity: 1;
}

.portfolio-model-body {
  position: relative;
  background: var(--modal-bg-color);
  max-width: 600px;
  margin: 20px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transform: translateY(-50px);
  transition: 0.5s ease;
}

.portfolio-model.active .portfolio-model-body {
  transform: translateY(0);
}

.portfolio-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
}

.portfolio-model-body h3 {
  font-size: 1.5em;
}

.portfolio-model-body img {
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
}

/*--======Get in touch scetion*/

.get-in-touch {
  margin-top: 70px;
}

.get-in-touch .container .content {
  width: 100%;
}

.get-in-touch .contact-card {
  position: relative;
  width: 90%;
  background: var(--card-bg-color);
  box-shadow: var(--box-shadow);
  padding: 50px;
  border-radius: 10px;
  column-gap: 50px;
}

.contact-card .title {
  text-transform: uppercase;
  line-height: 60px;
}

.contact-card .title h4 {
  font-size: 1.2em;
  font-weight: 300;
  line-height: 20px;
}

.contact-card .title h3 {
  font-size: 2.3em;
  font-weight: 400;
}

.contact-card .title h2 {
  font-size: 4.2em;
  font-weight: 700;
  background: linear-gradient(to top, transparent 0%, var(--first-color) 30%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

/*======Our Clients Section*/

.our-client .container {
  flex-direction: column;
}

.our-client .container .content {
  width: 100%;
}

.client-swiper .swiper-wrapper {
  margin-bottom: 30px;
}

.client-swiper .swiper-slid {
  gap: 50px;
  margin: 20px 0;
}

.client-img {
  width: auto;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-right: 20px;
}

.client-details {
  max-width: 500px;
}

.client-details p {
  font-size: 1.2em;
  color: var(--third-color);
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--line-color);
}

.client-details h3 {
  color: var(--first-color);
  font-size: 1.5em;
}

.client-details span {
  color: var(--third-color);
  font-size: 1.1em;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--second-color);
  font-size: 3em;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: var(--second-color);
}

/*====Contact Section====*/

.contact .container .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contact-left {
  padding: 15px;
}

.contact-left h2 {
  font-size: 1.8em;
  margin-bottom: 40px;
  font-weight: 800;
}

.contact-list li {
  margin-bottom: 40px;
}

.contact-list li h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-list li h3 i {
  color: var(--second-color);
  font-size: 1.3em;
  margin-right: 10px;
}

.contact-list li span {
  color: var(--third-color);
  margin-left: 40px;
}

.contact-list li span a {
  color: var(--third-color);
}

.contact-right {
  padding: 15px;
}

.contact-right p {
  color: var(--third-color);
  margin-bottom: 30px;
  font-size: 1.4em;
}

.contact-right p span {
  color: var(--first-color);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  color: var(--first-color);
  background: var(--transparent-color-02);
  border: none;
  border-radius: 5px;
  font-size: var(--normal-font-size);
  padding: 15px 40px 40px 20px;
  margin-bottom: 20px;
}

.contact-form textarea {
  width: 100%;
  resize: none;
}

::placeholder {
  color: var(--first-color);
}

.contact-form .first-row input {
  width: 100%;
}

.contact-form .second-row {
  display: flex;
  justify-content: space-between;
}

.contact-form .second-row input {
  width: 48%;
}

.contact-form .btn {
  margin-top: 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/*======Footer Start====== */
footer {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--second-color);
  color: #fff;
}

footer a {
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1150px;
}

.footer-container .about h2 {
  font-size: 2em;
  font-weight: 600;
  opacity: 0.8;
  background: linear-gradient(to top, transparent 0%, #fff 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-container .about p {
  font-size: var(--normal-font-size);
  font-weight: 300;
  margin-bottom: 30px;
}

.footer-container .info,
.footer-container .follow {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.footer-container .info h3,
.footer-container .follow h3 {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 30px;
}
.footer-container .info ul,
.footer-container .follow ul {
  display: flex;
}
.footer-container .info a {
  margin: 20px;
}
.footer-container .follow a {
  font-size: 1.5em;
  margin: 20px;
}
.footer-copyright p {
  font-size: var(--normal-font-size);
  font-weight: 300;
  margin-top: 50px;
}

/*======Media Query max-width 1080px======  */

@media screen and (max-width: 1070px) {
  /*======Header Navagation Menu======*/
  .navigation {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--transparent-color-01);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
  }
  .navigation.active {
    visibility: visible;
    opacity: 1;
  }
  .nav-items {
    position: relative;
    width: 600px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background: var(--modal-bg-color);
    transform: translateY(-50px);
    transition: 0.3s ease;
  }

  .navigation.active .nav-items {
    transform: translateY(0);
  }
  .nav-items a {
    margin: 15px 50px;
  }
  .nav-close-btn {
    position: absolute;
    filter: var(--line-color);
    background: url(../icon-close.png) no-repeat;
    background-size: 12px;
    background-position: center;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
  }
  .nav-menu-btn {
    background: url(../icons-menu.png) no-repeat;
    filter: var(--line-color);
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: block;
  }

  /*====Home Section====*/
  .home .home-container .info {
    font-size: 0.8rem;
  }
  .home .home-container .home-img {
    width: 100%;
    height: auto;
  }
  /*====About Section====*/
  .about .container .content {
    display: grid;
    width: 100%;
    row-gap: 20px;
  }
  .about-img img {
    min-width: 0;
    width: 100%;
  }
  .about-info {
    min-width: 0;
    width: 100%;
  }
  .about-info .professional-list {
    flex-direction: column;
  }

  .about-info .professional-list .list-item {
    justify-content: start;
  }

  /*====Get In-touch====*/
  .get-in-touch {
    display: grid;
    width: 100%;
  }
  .contact-card .title {
    font-size: 0.8rem;
    line-height: 50px;
  }

  /*====Our Clients====*/
  .client-swiper .swiper-slide {
    flex-direction: column;
  }
  .client-details {
    text-align: center;
  }

  /* ====COntact Section====*/
  .contact .content {
    font-size: 0.9rem;
    flex-direction: column;
  }
  .contact .contact-left {
    margin-bottom: 40px;
  }
  .contact-form .second-row {
    flex-direction: column;
  }
  .contact-form .second-row input {
    width: 100%;
  }
  /*====Footer====*/
  .footer .footer-container {
    flex-direction: column;
  }
  .footer-container .about,
  .footer-container .info {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-direction: column;
  }
  .footer-container .info ul {
    flex-direction: column;
    align-items: center;
  }
  .footer-container .info ul li {
    margin: 5px 0;
  }
  .footer-container .hr {
    width: 100%;
    height: 2px;
    margin: 10px 0 22px;
    background: rgba(255, 255, 255, 0.1);
  }
}
/* ======Media Query max-width 730px====== */
@media screen and (max-width: 730px) {
  /* ====Common section for all Section */
  body {
    margin: 5rem 0 0 0;
  }
  .section-title-01 {
    font-size: 3em;
  }
  .section-title-02 {
    font-size: 2em;
    transform: translateY(-65px);
  }
  /* ====Home Section==== */
  .home .home-container {
    display: grid;
  }
  .home-container .home-img {
    position: absolute;
  }
  .home-container .home-img img {
    width: 45%;
    transform: translate(80px, -250px);
    padding-bottom: 80px;
    margin-top: 80px;
  }
  .home .home-container .info {
    font-size: 0.8rem;
  }
  .media-icons {
    margin-bottom: 80px;
  }

  /*====Skills Section====*/

  .resume-body .skill-img img {
    display: none;
  }

  /*====Service Section====*/

  .service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(225px, 1fr));
    max-width: 100%;
    margin: 0 auto;
    gap: 30px;
  }
  /* ====Get-in-touch section==== */
  .get-in-touch .contact-card {
    display: grid;
  }
  .contact-card .title {
    font-size: 0.6rem;
    line-height: 40px;
  }
  .contact-card .contact-btn .btn {
    font-size: 0.8rem;
  }
}
