:root {
  --green: #86c232;
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  /* text-transform: capitalize; */
  transition: all 0.2s linear;
}

*::selection {
  background: var(--green);
  color: #333;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 1.4rem;
}

::-webkit-scrollbar-track {
  background: #222;
}

::-webkit-scrollbar-thumb {
  /* background: var(--green); */
  background: linear-gradient(transparent, #636360);
  border-radius: 0.378rem;
}

body {
  background-color: #222629;
  /* background: linear-gradient(315deg,
      rgba(255, 230, 243, 1) 3%,
      rgba(180, 210, 240, 1) 38%,
      rgba(200, 250, 248, 1) 68%,
      rgba(255, 150, 150, 1) 98%); */
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  overflow-x: hidden;
  padding-left: 35rem;
}

/* training style */

.training_certificate .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.training_certificate .box-container .box{
  height: 30rem;
  width: 43rem;
  border-radius: 1rem;
  margin: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.training_certificate .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
} 

/* animation of background color */

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

/* Floating Social Media Bar Style Starts Here */

.fl-fl {
  background: gray;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 190px;
  position: fixed;
  right: -140px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.fa {
  font-size: 20px;
  color: white;
  padding: 10px 0;
  width: 40px;
  margin-left: 10px;
}

.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: #ba8b57 !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px !important;
  vertical-align: top !important;
}

.float-fb {
  top: 160px;
}

.float-tw {
  top: 215px;
}

.float-gp {
  top: 270px;
}

.float-rs {
  top: 325px;
}

.float-ig {
  top: 380px;
}

.float-pn {
  top: 435px;
}

/* Floating Social Media Bar Style Ends Here */

section {
  min-height: 70rem;
  padding: 1rem;
}

.btn_head {
  padding: 0.7rem 3rem;
  background: #333;
  color: white;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 2rem;
  border-radius: 5rem;
}

.btn i {
  padding: 0 0.5rem;
  font-size: 1.8rem;
}

.btn:hover {
  background: var(--green);
}

.heading {
  text-align: center;
  margin: 0 6rem;
  font-size: 4rem;
  padding: 1rem;
  border-bottom: 0.1rem solid #fff4;
  color: #fff;
}

.heading span {
  color: var(--green);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 35rem;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

header .user img {
  margin-top: 20px;
  height: 17rem;
  width: 17rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 0.7rem solid var(--green);
}

header .user .name {
  font-size: 3.5rem;
  color: #fff;
}

header .user .post {
  font-size: 2rem;
  color: #eee;
}

header .navbar {
  width: 100%;
  overflow: auto;
  direction: rtl;
}

header .navbar ul {
  list-style: none;
  padding: 0rem 1rem;
}

header .navbar ul li a {
  display: block;
  padding: 1rem;
  margin: 1.5rem 0;
  background: #333;
  color: #fff;
  font-size: 2rem;
  border-radius: 5rem;
}

header .navbar ul li a:hover {
  background: var(--green);
}

#menu {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: none;
}

/* home button start */

.home {
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 15rem;
}

.home h3 {
  font-size: 2.5rem;
  color: white;
}

.home h1 {
  font-size: 8rem;
  color: white;
}

.home h1 span {
  color: var(#ffc93e);
}

.home p {
  font-size: 2.2rem;
  font-family: cursive;
  color: white;
  padding: 1rem 0;
}

/* home button end */

/* Multiple Typing Text Animation start */

.text_revel_headline {
  width: 400px;
  overflow: hidden;
}

.text_revel_headline .text {
  position: relative;
  color: green;
  font-size: 30px;
  font-weight: 600;
}

.text_revel_headline .text.pri_text {
  color: gray;
}

.text.sec_text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color:yellow; */
  /* border-left: 2px solid #4070F4; */
  animation: animate 4s step(50) infinite;
}

@keyframes animate {

  40%,
  60% {
    left: calc(100% + 4px);
  }

  100% {
    left: 0%;
  }
}


/* Multiple Typing Text Animation end */

/* about_me button start */

.about_me .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.about_me .row .info {
  flex: 1 1 48rem;
  padding: 2rem 1rem;
  padding-left: 6rem;
}

.about_me .row .info h3 {
  font-size: 2.5rem;
  color: var(--green);
  padding: 1rem 0;
  font-weight: normal;
}

.about_me .row .info h3 span {
  color: #eee;
  padding: 0 0.5rem;
}

.about_me .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.about_me .row .counter .box {
  width: 39rem;
  background: #222;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
}

.about_me .row .counter .box span {
  font-size: 4rem;
  color: var(--green);
}

.about_me .row .counter .box h3 {
  font-size: 2rem;
  color: #fff;
}

.social_links {
  font-size: 25px;
  text-align: center;
  margin-top: 3%;
  margin-bottom: 4%;
}

.social_links a {
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  position: relative;
  margin: 0 30px;
  text-align: center;
  display: inline-block;
  color: white;
  margin-top: 5%;
  margin-bottom: 4%;
}

.social_links a i,
.social_links a span {
  position: relative;
  top: 2px;
  left: 1px;
}

.social_links a:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid white;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 10px;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.social_links a:hover {
  color: #fff;
}

.social_links a:hover:before {
  background: #DDD0C8;
}

.row img {
  max-width: 600px;
  text-align: right;
  padding-top: 100px;
  padding-right: 80px
}

/* about_me button end */

/* academic_details Button Start */

.academic_details .box-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem 0;
  padding-left: 1rem;
  padding-top: 5rem;
  gap: 3rem 1rem;
}

.academic_details .box-container .box {
  width: 50rem;
  height: 20rem;
  margin: 5rem 1rem;
  padding-left: 4rem;
  border: 0.2rem solid #fff;
  position: relative;
  background-color: #474b4f;
  border-radius: 10px;
}

.academic_details .box-container .box span {
  font-size: 2rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}

.academic_details .box-container .box h3 {
  font-size: 3.5rem;
  text-align: center;
  color: #fff;
  padding-top: 2rem;
}

.academic_details .box-container .box p {
  font-size: 2rem;
  text-align: center;
  color: #eee;
  padding: 5rem 0;
}

.academic_details .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 20%;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background: var(--green);
}

/* academic_details Button End */

/* academic_projects Button Start */

.academic_projects .box-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem 0;
  padding-left: 1rem;
  padding-top: 5rem;
  gap: 3rem 1rem;
}

.academic_projects .box-container .box {
  width: 27rem;
  margin: 5rem 1rem;
  padding-left: 4rem;
  border-left: 0.2rem solid red;
  position: relative;
}

.academic_projects .box-container .box span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}

.academic_projects .box-container .box h3 {
  font-size: 2rem;
  color: #fff;
  padding-top: 2rem;
}

.academic_projects .box-container .box p {
  font-size: 1.4rem;
  color: #eee;
  padding: 1rem 0;
}

.academic_projects .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 3rem;
  color: #000;
  background: var(--green);
}

.project_card {
  /* background-color: #d6d0d0; */
  background-image: url("assets/background_image/card_background.png");
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}


.project_card_header {
  padding: 5px 10px;
  text-align: center;
}

.project_card_header img {
  max-height: 210px;
  border-radius: 10px;
  /* border: 1px solid black; */
}

.project_card .project_card_header img:hover {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
  filter: brightness(100%);
  transform: scale(1.5, 1.5);
}

.product-title {
  font-size: 24px;
  color: #353535;
  margin: 20px 0;
}

.project_card_body {
  text-align: center;
}

.project_card_body h4 {
  text-align: center;
  color: white;
}

.project_card_footer {
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 40px;
  border: none;
  font-family: inherit;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background-color: blue;
  color: #fff;
}

.btn-primary:hover {
  background-color: #943EF0;
}

.btn-secondary {
  color: #808080;
}

.btn-secondary:hover {
  background-color: black;
  color: white;
}


.project_card_footer .btn:first-child {
    margin-right: 10px;
    margin-left: 10px;
}


/* academic_projects Button End */

/* my_projects Button Start */
.my_projects .box-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
  padding-left: .5rem;
  padding-top: 5rem;
  gap: 3rem 1rem;
}

.my_projects .box-container .box {
  width: 27rem;
  margin: 5rem 1rem;
  padding-left: 4rem;
  border-left: 0.2rem solid red;
  position: relative;
}

.my_projects .box-container .box span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}

.my_projects .box-container .box h3 {
  font-size: 2rem;
  color: #fff;
  padding-top: 2rem;
}

.my_projects .box-container .box p {
  font-size: 1.4rem;
  color: #eee;
  padding: 1rem 0;
}

.my_projects .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 3rem;
  color: #000;
  background: var(--green);
}

.project_card {
  /* background-color: #d6d0d0; */
  background-image: url("assets/background_image/card_background.png");
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}


.project_card_header {
  padding: 5px 10px;
  text-align: center;
}

.project_card_header img {
  max-height: 210px;
  border-radius: 10px;
  /* border: 1px solid black; */
}

.project_card .project_card_header img:hover {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
  filter: brightness(100%);
  transform: scale(1.5, 1.5);
}

.product-title {
  font-size: 24px;
  color: #353535;
  margin: 20px 0;
}

.project_card_body {
  text-align: center;
}

.project_card_body h4 {
  text-align: center;
  color: white;
}

.project_card_footer {
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 40px;
  border: none;
  font-family: inherit;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background-color: blue;
  color: #fff;
}

.btn-primary:hover {
  background-color: #943EF0;
}

.btn-secondary {
  color: #808080;
}

.btn-secondary:hover {
  background-color: black;
  color: white;
}


.project_card_footer .btn:first-child {
  margin-right: 10px;
  margin-left: 10px;
}
/* my_projects Button end */

/* publication Button start */

.publication .box-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem 0;
  padding-left: 4rem;
  padding-top: 5rem;
  margin-bottom: 40px;
  gap: 3rem 1rem;
}

.publication .box-container .box {
  width: 27rem;
  margin: 5rem 1rem;
  padding-left: 4rem;
  border-left: 0.2rem solid red;
  position: relative;
}

.publication .box-container .box span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}

.publication .box-container .box h3 {
  font-size: 2rem;
  color: #fff;
  padding-top: 2rem;
}

.publication .box-container .box p {
  font-size: 1.4rem;
  color: #eee;
  padding: 1rem 0;
}

.publication .box-container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 3rem;
  color: #000;
  background: var(--green);
}

.project_card {
  /* background-color: #d6d0d0; */
  background-image: url("assets/background_image/card_background.png");
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}


.project_card_header {
  padding: 5px 10px;
  text-align: center;
}

.project_card_header img {
  max-height: 210px;
  border-radius: 10px;
  /* border: 1px solid black; */
}

.project_card .project_card_header img:hover {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
  filter: brightness(100%);
  transform: scale(1.5, 1.5);
}

.product-title {
  font-size: 24px;
  color: #353535;
  margin: 20px 0;
}

.project_card_body {
  text-align: center;
}

.project_card_body h4 {
  text-align: center;
  color: white;
}

.project_card_footer {
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 40px;
  border: none;
  font-family: inherit;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background-color: blue;
  color: #fff;
}

.btn-primary:hover {
  background-color: #943EF0;
}

.btn-secondary {
  color: #808080;
}

.btn-secondary:hover {
  background-color: black;
  color: white;
}


.project_card_footer .btn:first-child {
  margin-right: 10px;
  margin-left: 10px;
}

/* publication end */


/* patent start */


.patent .patent_container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem 0;
  padding-left: 4rem;
  padding-top: 5rem;
  margin-bottom: 40px;
  gap: 3rem 1rem;
}

.patent .patent_container .box {
  width: 27rem;
  margin: 5rem 1rem;
  padding-left: 4rem;
  border-left: 0.2rem solid red;
  position: relative;
}

.patent .patent_container .box span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}

.patent .patent_container .box h3 {
  font-size: 2rem;
  color: #fff;
  padding-top: 2rem;
}

.patent .patent_container .box p {
  font-size: 1.4rem;
  color: #eee;
  padding: 1rem 0;
}

.patent .patent_container .box i {
  position: absolute;
  top: -1.5rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 3rem;
  color: #000;
  background: var(--green);
}

.patent_card {
  /* background-color: #d6d0d0; */
  background-image: url("assets/background_image/card_background.png");
  padding: 10px;
  margin-right: 32px;
  width: 320px;
  height: 420px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}


.patent_card_header {
  padding: 5px 10px;
  text-align: center;
}

.patent_card_header img {
  max-height: 280px;
  border-radius: 10px;
  /* border: 1px solid black; */
}

.patent_card .patent_card_header img:hover {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
  filter: brightness(100%);
  transform: scale(1.5, 1.5);
}

.patent-title {
  font-size: 24px;
  color: #353535;
  margin: 20px 0;
}

.patent_card_body {
  text-align: center;
}

.patent_card_body h4 {
  text-align: center;
  color: white;
}

.patent_card_footer {
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 40px;
  border: none;
  font-family: inherit;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background-color: blue;
  color: #fff;
}

.btn-primary:hover {
  background-color: #943EF0;
}

.btn-secondary {
  color: #808080;
}

.btn-secondary:hover {
  background-color: black;
  color: white;
}


.patent_card_footer .btn:first-child {
  margin-right: 10px;
  margin-left: 10px;
}


/* patent end */




/* intership_certificate Start */
/* 
.intership_certificate .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

/* .intership_certificate .box-container .box {
  height: 30rem;
  width: 43rem;
  border-radius: 1rem;
  margin: 1rem;
  overflow: hidden;
  cursor: pointer; */
.intership_certificate .box-container .box img {
  height: 100%;
  width: 100%;
} */

/* intership_certificate end */

/* technical_skills button start */

.technical_skills .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.technical_skills .row .info {
  flex: 1 1 48rem;
  padding: 2rem 1rem;
  padding-left: 6rem;
}

.technical_skills .row .info h3 {
  font-size: 2rem;
  color: var(--green);
  padding: 1rem 0;
  font-weight: normal;
}

.technical_skills .row .info h3 span {
  color: #eee;
  padding: 0 0.5rem;
}

.technical_skills .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.technical_skills .row .counter .box {
  width: 20rem;
  background: #222;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
}

.technical_skills .row .counter .box span {
  font-size: 4rem;
  color: var(--green);
}

.technical_skills .row .counter .box h3 {
  font-size: 2rem;
  color: #fff;
}


/* technical_skills button end */

/* soft_skills button start */
/* 
.soft_skills .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.soft_skills .row .info {
  flex: 1 1 48rem;
  padding: 2rem 1rem;
  padding-left: 1rem;
}

.soft_skills .row .info h3 {
  font-size: 2rem;
  color: var(--green);
  padding: 1rem 0;
  font-weight: normal;
}

.soft_skills .row .info h3 span {
  color: #eee;
  padding: 0 0.5rem;
}

.soft_skills .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.soft_skills .row .counter .box {
  border-radius: 25px;
  width: 30rem;
  background: #222;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
}

.soft_skills .row .counter .box span {
  font-size: 3rem;
  color: #ffc93e;
}
 */
/* soft_skills button end */

/* certification_courses Start */

.certification_courses .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.certification_courses .box-container .box {
  height: 30rem;
  width: 43rem;
  border-radius: 1rem;
  margin: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.certification_courses .box-container .box img {
  height: 100%;
  width: 100%;
}

/* certification_courses end */

/* extra_curricular Start */

.extra_curricular .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.extra_curricular .box-container .box {
  height: 30rem;
  width: 43rem;
  border-radius: 1rem;
  margin: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.extra_curricular .box-container .box img {
  height: 100%;
  width: 100%;
}

/* extra_curricular end */

/* hobbies_interests button start */
/* 
.hobbies_interests .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.hobbies_interests .row .info {
  flex: 1 1 48rem;
  padding: 2rem 1rem;
  padding-left: 1rem;
}

.hobbies_interests .row .info h3 {
  font-size: 2rem;
  color: var(--green);
  padding: 1rem 0;
  font-weight: normal;
}

.hobbies_interests .row .info h3 span {
  color: #eee;
  padding: 0 0.5rem;
}

.hobbies_interests .row .counter {
  flex: 1 1 48rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.hobbies_interests .row .counter .box {
  border-radius: 25px;
  width: 45rem;
  background: #222;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
}

.hobbies_interests .row .counter .box span {
  font-size: 3rem;
  color: white;
} */

/* hobbies_interests button end */

/* Client Testimonial section start */


/* Client Testimonial section end */

/* contact button start */

.contact .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact .row .content {
  flex: 1 1 30rem;
  padding: 4rem;
  padding-bottom: 0;
}

.contact .row form {
  flex: 1 1 45rem;
  padding: 2rem;
  margin: 2rem;
  margin-bottom: 4rem;
}

.contact .row form .box {
  padding: 1.5rem;
  margin: 1rem 0;
  background: #3333;
  color: #fff;
  text-transform: none;
  font-size: 1.7rem;
  width: 100%;
}

.contact .row form .box::placeholder {
  text-transform: capitalize;
}

.contact .row form .message {
  height: 15rem;
  resize: none;
}

.contact .row .content .title {
  text-transform: uppercase;
  color: #fff;
  font-size: 3rem;
  padding-bottom: 2rem;
}

.contact .row .content .info h3 {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #eee;
  padding: 1rem 0;
  font-weight: normal;
}

.contact .row .content .info h3 i {
  padding-right: 1rem;
  color: var(--green);
}

.top {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  z-index: 100;
  display: none;
}

.footer-social-links {
  font-size: 30px;
  text-align: center;
}

.footer-social-links a {
  position: relative;
  margin: 0 25px;
  text-align: center;
  display: inline-block;
  color: white;
}

.footer-social-links a:before {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid white;
}

.footer-social-links a:hover {
  color: #fff;
}

.footer-social-links a:hover:before {
  background: #DDD0C8;
}

/* contect button end */

/* media queries  */

@media (max-width: 75rem) {
  html {
    font-size: 55%;
  }

  .home {
    padding: 1rem 4rem;
  }
}

@media (max-width: 61.938rem) {
  header {
    left: -120%;
  }

  #menu {
    display: block;
  }

  header.toggle {
    left: 0%;
  }

  body {
    padding: 0;
  }
}

@media (max-width: 48rem) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 25rem) {
  header {
    width: 100vw;
  }

  .heading {
    margin: 0 3rem;
  }

  /* about_me Button */

  .about_me .row .counter .box {
    width: 100%;
  }

  /* academic_details Button */

  .academic_details .box-container .box {
    width: 100%;
  }

  /* intership_certificate Button */
  .intership_certificate .box-container .box {
    width: 100%;
  }

  /* academic_projects Button */

  .academic_projects .box-container .box {
    width: 100%;
  }

  /* technical_skills Button */

  .technical_skills .row .counter .box {
    width: 100%;
  }

  /* soft_skills Button */

  .soft_skills .row .counter .box {
    width: 100%;
  }

  /* certification_courses Button */
  .certification_courses .box-container .box {
    width: 100%;
  }

  .container .popup-image img {
    width: 95%;
  }

  /* hobbies_interests Button */

  .hobbies_interests .row .counter .box {
    width: 100%;
  }

  .contact .row form {
    margin: 3rem 0;
  }
}