@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");
/* font-family: 'Poiret One', cursive; */
/* font-family: 'Poppins', sans-serif; */

/* Global Start*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --button-shadow: 0 0px 0.5px rgb(15, 129, 129), 0 0px 1px rgb(15, 129, 129),
    0 0px 2px rgb(15, 129, 129), 0 0px 3px rgb(15, 129, 129),
    0 0px 10px rgb(15, 129, 129);
  --mercury-shadow-color: 0 0px 0.5px rgb(15, 129, 129),
    0 0px 1px rgb(15, 129, 129), 0 0px 2px rgb(15, 129, 129),
    0 0px 3px rgb(15, 129, 129), 0 0px 4px rgb(15, 129, 129);
  --white-color: #fff;
  --grey-white-color: #ddd;
  --grey-color: #888;
  --primary-color: rgba(13, 110, 139, 0.75);
  --mercury-color: rgb(23, 182, 182);
  --overlay-color: rgba(24, 39, 51, 0.85);
  --menu-speed: 0.75s;
  --poppins: "Poppins", sans-serif;
  --cursive: "Poiret One", cursive;
}

p {
  font-family: var(--poppins);
}

/* Global End*/

body {
  background-color: rgba(0, 0, 0, 0.9);
  height: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
  display: none;
}
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #111;
  box-shadow: 30px 0 50px rgba(0, 0, 0, 0.9), -30px 0 50px rgba(0, 0, 0, 0.9);
}

/* ---Navigation--- */

#nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 10px; */
  padding: 10px 40px 10px 50px;
}
#nav #brand {
  color: #fff;
  font-size: 2rem;
  font-family: "Poiret One", cursive;
}
#nav #brand span {
  color: rgb(23, 182, 182);
  /* font-weight: bold; */
  text-shadow: 0 0px 2px rgb(75, 207, 207), 0 0px 4px rgb(75, 207, 207),
    0 0px 6px rgb(75, 207, 207), 0 0px 8px rgb(75, 207, 207),
    0 0px 10px rgb(75, 207, 207);
}

.menu-wrap {
  z-index: 1;
}
.menu-wrap .toggler {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.menu-wrap .hamburger {
  width: 60px;
  height: 60px;
  padding: 1rem;
  /* background: var(--primary-color); */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger line */
.menu-wrap .hamburger > div {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
/* Top and bottom lines */
.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves line down */
.menu-wrap .hamburger > div:after {
  top: 10px;
}

.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
  z-index: 1;
}

/* Turn lines into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate on hover when checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  /* background: var(--overlay-color); */
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  width: 250vw;
  height: 250vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 100vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: color 0.4s ease;
  transition: all 0.3s ease-in-out;
}
.menu-wrap .menu > div > div > ul > li > a:hover {
  color: var(--mercury-color);
}

/* ---Showcase--- */

#showcase .showcase-left {
  display: flex;
  flex-direction: column;
  flex: 0 1 40vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-right: 1rem;
  padding-left: 1rem;
}
#showcase .showcase-right {
  position: relative;
  background-image: linear-gradient(
      95deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.2)
    ),
    url("images/id3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex: 0 1 60vw;
  box-shadow: inset 5px 0 6px 6px #111;
}
#showcase .showcase-right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    132deg,
    rgba(17, 16, 16, 0.9),
    rgba(15, 15, 15, 0.4)
  );
}
.showcase-left h1 {
  color: #ddd;
  font-size: 2rem;
  white-space: nowrap;
  padding: 0 1rem;
  margin-bottom: 1rem;
  font-family: "Poiret One", cursive;
}
.showcase-left hr,
footer hr {
  width: 150px;
  display: inline-block;
  border-color: rgb(23, 182, 182);
  box-shadow: 0 0px 5px rgb(75, 207, 207), 0 0px 10px rgb(75, 207, 207),
    0 0px 15px rgb(75, 207, 207), 0 0px 20px rgb(75, 207, 207),
    0 0px 30px rgb(75, 207, 207);
  /* margin-top: -5px; */
}
.showcase-left .name {
  font-family: "Poppins", sans-serif;
  /* color: rgb(61, 206, 206); */
  color: #888;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: -15px;
  text-shadow: 0 0px 0.5px rgb(15, 129, 129), 0 0px 1px rgb(15, 129, 129),
    0 0px 2px rgb(15, 129, 129), 0 0px 3px rgb(15, 129, 129),
    0 0px 4px rgb(15, 129, 129);
}
.social-link i {
  color: rgb(23, 182, 182);
  font-size: 1.5rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}
.social-link i:hover {
  text-shadow: 0 0px 0.5px rgb(15, 129, 129), 0 0px 1px rgb(15, 129, 129),
    0 0px 2px rgb(15, 129, 129), 0 0px 3px rgb(15, 129, 129),
    0 0px 4px rgb(15, 129, 129);
}

.showcase-left .btn {
  color: #ddd;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  margin-left: 1rem;
  border: 1px solid #333;
  border-radius: 50px;
  padding: 0.5rem 0.8rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.showcase-left .btn:hover {
  box-shadow: var(--button-shadow);
}
.showcase-left .cv i {
  color: teal;
}

/* ---Testimonial--- */
#heading {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#heading h1 {
  color: #ddd;
  font-size: 2rem;
  font-family: "Poiret One", cursive;
}

.sticky {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("images/6.jpg") !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  height: 600px !important;
}
blockquote {
  font-family: "Poiret One", cursive;
  font-size: 2em;
  /* font-weight: bold; */
  color: #fff;
  width: 30%;
  margin-top: 17%;
  margin-left: 1rem;
  position: absolute;
  white-space: nowrap;
  text-shadow: 0 0px 0.5px rgb(15, 129, 129), 0 0px 1px rgb(15, 129, 129),
    0 0px 2px rgb(15, 129, 129), 0 0px 3px rgb(15, 129, 129),
    0 0px 4px rgb(15, 129, 129);
}
.sticky span {
  width: 100%;
  background: teal;
  display: block;
  height: 5px;
  margin-top: 20px;
  box-shadow: 0 0px 5px rgb(75, 207, 207), 0 0px 10px rgb(75, 207, 207),
    0 0px 15px rgb(75, 207, 207), 0 0px 20px rgb(75, 207, 207),
    0 0px 30px rgb(75, 207, 207);
}
.sticky img {
  position: absolute;
}
.sticky img:nth-of-type(1) {
  width: 40%;
  right: 0;
  top: 20%;
}
.sticky img:nth-of-type(2) {
  width: 25%;
  right: 40%;
  top: 29%;
  margin-top: 15%;
}

section:nth-child(odd) {
  background: #3334;
}
#box {
  width: 120px;
  height: 150px;
  position: absolute;
  border: 11px solid teal;
  opacity: 0.9 !important;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* ---About me--- */
#about .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem;
  width: 100%;
  height: 100%;
}
.about-img {
  background-image: linear-gradient(
      95deg,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.4)
    ),
    url("images/sk.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 410px;
  box-shadow: -3px 3px 8px #000;
  /* box-shadow: var(--button-shadow); */
  margin: 1rem;
  transition: 0.7s ease-in-out;
}

.about-content {
  padding: 0 1rem;
}
.about-content h2 {
  font-family: var(--poppins);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white-color);
}
.hobby-link {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
}
.about-content h4 {
  color: var(--white-color);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--poppins);
  margin-bottom: 0.5rem;
}
.about-content p {
  color: var(--grey-color);
  letter-spacing: 1px;
  font-size: 1rem;
  font-family: var(--poppins);
}
.about-content .fas {
  color: var(--mercury-color);
}
.about-content .btn {
  font-family: "Poppins", sans-serif;
  color: #ddd;
  text-decoration: none;
  display: inline-block;
  padding: 0.3rem 1rem;
  margin-top: 2rem;
  border: 1px solid #333;
  border-radius: 50px;
  transition: 0.3s ease;
}
.about-content .btn:hover {
  box-shadow: var(--button-shadow);
}

/* ======Services====== */
/* Global sub-heading(about, services, technology, testimonial) */
.sub-heading {
  font-family: var(--poppins);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
  padding-top: 1rem;
}
h4.service-content {
  color: var(--grey-color);
  text-align: center;
  font-size: 1rem;
  font-family: var(--poppins);
  font-weight: 400;
}
#service .container > div {
  margin-bottom: 1.5rem;
}
#service .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 1.3rem;
  grid-gap: 1rem;
}
#service .container img {
  width: 100%;
  height: 50%;
}
#service h3 {
  color: var(--white-color);
  font-family: var(--poppins);
  font-weight: 400;
  white-space: nowrap;
  font-size: 1rem;
  margin: 0.5rem 0;
}
#service p {
  color: var(--grey-color);
  width: 95%;
  font-size: 14px;
  line-height: 1.5rem;
}

/* Second Services */
.services-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1.3rem;
  justify-content: center;
  margin: 1rem 0;
}
.services-box {
  text-align: center;
}
.services-box h3 {
  font-family: var(--poppins);
  color: var(--mercury-color);
}
.services-box p {
  color: var(--grey-color);
  font-size: 15px;
  margin: 1rem 0 0;
  width: 95%;
}
.services-btn {
  font-family: "Poppins", sans-serif;
  color: #ddd;
  text-decoration: none;
  display: inline-block;
  padding: 0.3rem 1rem;
  margin-top: 2rem;
  border: 1px solid #333;
  border-radius: 50px;
  transition: 0.3s ease;
  margin-bottom: 1.5rem;
}
.services-btn:hover {
  box-shadow: var(--button-shadow);
}

/* Latest Project */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  gap: 1rem;
  padding: 1.3rem;
}
.project-box img {
  width: 100%;
  height: 210px;
  transition: 0.3s ease-in-out;
}
.project-box:hover img {
  transform: scale(1.1);
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
.project-box {
  position: relative;
  border-radius: 4px;
  box-shadow: 0 0 1rem rgb(22, 33, 37);
  overflow: hidden;
  display: flex;
}
.project-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(26, 138, 230, 0.7)); */
  /* background: linear-gradient(
    185deg,
    rgba(1, 88, 122, 0.6),
    rgba(0, 116, 124, 0.425)
  ); */
  background-color: rgba(0, 0, 0, 0.9);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 0 2rem;
  transform: translateY(100%);
  transition: 0.5s ease-in-out;
}
.project-box:hover .project-layer {
  transform: translateY(0%);
}
.project-layer h4 {
  color: var(--mercury-color);
  font-size: 1.3rem;
  font-family: var(--poppins);
}
.project-layer p {
  font-family: var(--poppins);
  color: #fff;
  font-size: 0.8rem;
  margin: 0.3rem 0 1rem;
}
.project-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
}
.project-layer a i {
  font-size: 0.7rem;
  color: var(--mercury-color);
}

/* Slider logo */
#tool {
  height: 280px;
}
.logo-slider {
  width: 90%;
  margin: 3rem auto;
}
.logo-slider img {
  width: 80px;
  margin: 0 auto;
}
img.mysql {
  width: 130px;
}
img.php {
  width: 120px;
  margin-top: -1rem;
}

/* Review section */
.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  padding: 2rem;
}
.box {
  text-align: center;
  box-shadow: var(--mercury-shadow-color);
  padding: 1.3rem;
  border-radius: 1px;
  border: none;
  transition: all 0.3s ease-in-out;
}
.box:hover {
  box-shadow: var(--button-shadow);
}
.box > img {
  width: 120px;
  border-radius: 50%;
}
.box > h3 {
  color: var(--grey-color);
  font-family: var(--poppins);
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem 0;
}
.box > p {
  color: var(--grey-white-color);
}
.box .stars .fas {
  color: var(--mercury-color);
  margin-top: 1rem;
}

/* =====Portfolio====== */
/* Website project */
.fa-snowflake {
  color: rgb(23, 182, 182);
}
#portfolio .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.3rem;
  padding: 2rem;
}
/* Project card old delete after work */
.project-card {
  /* height: 100%;
  padding: 1rem;
  margin-bottom: 3rem; */
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 3rem;
}
.pro-content {
  display: grid;
  align-items: space-between;
  gap: 1rem;
}
.website-heading,
.template-heading {
  color: var(--white-color);
  font-size: 1.5rem;
  font-family: var(--cursive);
  letter-spacing: 2px;
  margin-left: 2rem;
}
.project-card > img {
  width: 100%;
  height: 50%;
}
.project-card h3 {
  color: var(--mercury-color);
  font-size: 1rem;
  font-family: var(--poppins);
  font-weight: 400;
  margin: 1rem 0;
  border-bottom: 1px solid #333;
}
.project-card p {
  color: var(--grey-white-color);
  font-size: 13px;
}
/* Project card old delete after work */
/* Project card new update */
.portfolio-website ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.3rem;
  list-style: none;
}
.portfolio-website ul li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--grey-color);
  font-family: var(--poppins);
  font-size: 18px;
}
.portfolio-website ul li a:hover {
  color: var(--mercury-color);
}
.fa-share-from-square {
  font-size: 13px;
  color: var(--mercury-color);
  margin-right: 5px;
}
/* .portfolio-website ul li::before {
  content: "•";
  color: var(--mercury-color);
} */

/* Project card new update */
.btn-link {
  color: #ddd;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 0.5rem 1.3rem;
  margin: 1rem 0;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-link:hover {
  box-shadow: var(--button-shadow);
}

/* Template project */

/*.portfolio-template .container {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*  grid-gap: 1.3rem;*/
/*  padding: 2rem;*/
/*}*/
/*.portfolio-template > .container > img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/


/* Portfolio = Gallery Container */
/*.gallery-container {*/
/*  max-width: 80rem;*/
/*  width: 100%;*/
/*  padding: 4rem 2rem;*/
/*  margin: 0 auto;*/
/*}*/

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.3rem;
  padding: 2rem;
  justify-content: center;
  align-items: center;
}
.gallery-container .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  height: 100%;
}
.gallery-container .card-image {
  display: block;
  width: 100%;
  background: #ffffff;
  height: 100%;
}
.gallery-container .card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 600px) {
  .gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

/* ====Contact page form==== */

.contact-heading,
.blog-heading {
  background-image: linear-gradient(
      95deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.8)
    ),
    url("images/codingbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-heading h2 {
  color: var(--white-color);
  font-family: var(--poppins);
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 2rem;
}
#contact h3 {
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--poppins);
  color: var(--white-color);
  font-weight: 500;
  letter-spacing: 2px;
}
#contact p {
  text-align: center;
  font-size: 1rem;
  font-family: var(--poppins);
  color: var(--grey-color);
}
#contact .container {
  width: 800px;
  padding: 25px 40px 10px 40px;
  box-shadow: var(--button-shadow);
  margin: 3rem auto;
  /* background-color: #fff; */
}
.container form {
  padding: 30px 0 0 0 0;
}
.container form .form-row {
  display: flex;
  margin: 32px 0;
}
form .form-row .input-data {
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}
form .form-row .textarea {
  height: 70px;
}
.input-data input,
.textarea textarea {
  display: block;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  background-color: #111;
  color: var(--grey-white-color);
  font-family: var(--poppins);
}
.textarea textarea {
  resize: none;
  padding-top: 10px;
}
.input-data input:focus ~ label,
.textarea textarea:focus ~ label,
.input-data input:valid ~ label,
.textarea textarea:valid ~ label {
  transform: translateY(-20px);
  color: var(--mercury-color);
  font-size: 14px;
}

.input-data label {
  position: absolute;
  bottom: 10px;
  font-size: 16px;
  font-family: var(--poppins);
  pointer-events: none;
  transition: all 0.3s ease;
  color: var(--grey-white-color);
}
.textarea label {
  width: 100%;
  bottom: 30px;
  background-color: #111;
}
.input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--grey-color);
}
.input-data .underline:before,
.input-data .underline:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--mercury-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.input-data input:focus ~ .underline:before,
.underline:after,
.textarea textarea:focus ~ .underline:before,
.underline:after,
.input-data input:valid ~ .underline:before,
.underline:after,
.textarea textarea:valid ~ .underline:before,
.underline:after {
  transform: scaleX(1);
}
.submit-btn .input-data {
  height: 45px !important;
  width: 25% !important;
  overflow: hidden;
}
.submit-btn .input-data .inner {
  height: 100%;
  width: 100%;
  position: absolute;
  border: 1px solid #333;
  display: block;
  border-radius: 3px;
  transition: 0.3s ease;
}
.submit-btn .input-data:hover .inner {
  border: 1px solid var(--mercury-color);
}
.submit-btn .input-data input {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ======Blogs====== */

.webTutorial h2 {
  color: var(--grey-white-color);
  font-weight: 400;
  font-family: var(--poppins);
  text-align: center;
  font-size: 1.8rem;
}
.webTutorial h3 {
  color: var(--grey-color);
  font-weight: 400;
  font-family: var(--poppins);
  font-size: 1.3rem;
}
.webTutorial p {
  color: var(--grey-white-color);
  margin: 1rem 0;
  line-height: 1.8rem;
}
.blog-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  padding: 1.5rem;
}

.blog-card:nth-child(even) .video {
  order: 2;
}
.blog-btn {
  border: 1px solid #333;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-family: var(--poppins);
  color: var(--grey-white-color);
  display: inline-block;
}
.blog-btn:hover {
  box-shadow: var(--button-shadow);
}
.blog-btn .fas {
  color: red;
  margin-right: 5px;
  /* font-size: 1.6rem; */
}
.blog-btn:hover .fas {
  color: var(--mercury-color);
}

/* Footer Section */

footer {
  text-align: center;
  padding: 4rem 1rem;
  margin: auto;
  color: #f4f4f4;
}
footer h3 {
  color: var(--mercury-color) !important;
  text-shadow: 0 0px 0.5px rgb(15, 129, 129), 0 0px 1px rgb(15, 129, 129),
    0 0px 2px rgb(15, 129, 129), 0 0px 3px rgb(15, 129, 129),
    0 0px 4px rgb(15, 129, 129);
  font-size: 4rem !important;
  font-weight: 400;
  margin-bottom: 0;
  font-family: var(--poppins);
}
footer h4 {
  font-size: 1.5rem;
  font-family: var(--poppins);
  font-weight: 400;
}
footer p {
  margin: 1.5rem 0;
}
footer .fab {
  margin: 0 1.5rem;
  color: rgb(23, 182, 182);
}

/* ======Media Quiries Screen sizes=== */

@media (min-width: 760px) {
  #showcase .container {
    position: relative;
    display: flex;
    height: 100%;
  }
}

@media (max-width: 760px) {
  /* Showcase */
  #showcase .showcase-right {
    box-shadow: inset 0px 0px 3px 3px #111;
    height: 70vh;
  }
  #showcase .showcase-left {
    height: 70vh;
  }
  #showcase .showcase-left h1 {
    font-size: 1.5rem;
  }
  #heading h1 {
    font-size: 1.5rem;
  }
  .service-heading {
    font-size: 1.5rem;
  }

  /* Testomonial */
  blockquote {
    margin-top: 20%;
  }

  /* About */
  #about .container {
    grid-template-columns: 1fr;
    
    padding: 0px;
    padding-bottom: 2rem; 
  }
  .about-img {
    width: 100%;
    height: 400px;
    margin: 0 auto;
  }
  .about-content {
    word-wrap: break-word;
    margin: 0 auto;
  }
  .hideMobile {
    display: none;
  }
  .hobby-link {
    flex-direction: column;
  }
  /* Tools and Technology */
  img.mysql {
    width: 100px;
  }
  img.php {
    width: 90px;
  }
  /* Blog */
  .blog-card {
    display: block;
  }

  /* Contact form */
  #contact .container {
    width: 100%;
    margin: 0 auto;
    border: none;
    box-shadow: none;
  }

  .container .text {
    font-size: 30px;
  }
  .container form {
    padding: 10px 0 0 0 0;
  }
  .container form .form-row {
    display: block;
  }
  form .form-row .input-data {
    margin: 35px 0 !important;
  }
  .submit-btn .input-data {
    width: 40% !important;
  }

  /* Footer */
  footer h3 {
    font-size: 2rem !important;
    white-space: nowrap;
  }
  footer h4 {
    font-size: 1rem;
    width: 95%;
    margin: 0 auto;
  }
  footer .fab {
    margin: 0 0.5rem;
  }
  .portfolio-website ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
