/* Start Global Rules */
* {
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  counter-reset: info-counter;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  background-color: transparent;
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background-color: #900c3f;
}

.overlay {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

section .section-name {
  color: #000;
  position: relative;
  margin-bottom: 70px;
  font-size: 45px;
}

section .section-name::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: -20px;
  left: calc(50% - 40px);
  background-color: #900c3f;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
}

.social-media-links a {
  color: #FFF;
}

.social-media-links a i {
  background-color: #000;
  padding: 12px 15px;
  font-size: 22px;
  cursor: pointer;
  transition: 1s;
  border-radius: 3px;
}

.social-media-links a i:hover {
  background-color: #FFF;
  color: #000;
}

.social-media-links a:not(:last-child) {
  margin-right: 10px;
}

/* End Global Rules */
/* Start Header Section */
header {
  background-color: rgba(0, 0, 0, 0.1);
  transition: .5s;
}

header .navbar .navbar-toggler {
  border-color: #BBB;
}

header .navbar .navbar-toggler .fa-bars {
  font-size: 25px;
}

header .navbar .navbar-nav {
  flex-basis: 100%;
}

header .navbar .navbar-nav .nav-item {
  padding: 8px;
}

header .navbar .navbar-nav .nav-item .nav-link {
  transition: .5s;
  font-weight: 500;
}

header .navbar .navbar-nav .nav-item .nav-link:hover {
  background-color: #900c3f;
  border-radius: 5px;
  padding: 10px 15px;
}

header .navbar .navbar-nav .nav-item .nav-link.active {
  border-bottom: 2px solid #900c3f;
}

/* End Header Section */
/* Start Home Section */
.home {
  height: 100vh;
  padding: 0;
}

.home .carousel {
  height: 100%;
}

.home .carousel .carousel-inner {
  height: 100%;
}

.home .carousel .carousel-inner .carousel-item {
  height: 100%;
  background-size: cover;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption {
  bottom: 0;
  padding: 0;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption h1 {
  color: #FFF;
  font-size: 70px;
  font-family: 'Caveat', cursive;
}

@media (max-width: 576px) {
  .home .carousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .home .carousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 50px;
  }
}

.home .carousel .carousel-inner .carousel-item .carousel-caption p {
  color: #FFF;
  font-size: 30px;
  margin-top: 30px;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption p span {
  background-color: #900c3f;
  border-radius: 5px;
  padding: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 576px) {
  .home .carousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .home .carousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .home .carousel .carousel-inner .carousel-item .carousel-caption p.main-caption {
    line-height: 3;
  }
}

@media (max-width: 576px) {
  .home .carousel .carousel-control {
    display: none;
  }
}

.home .carousel i {
  font-size: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  transition: .5s;
}

.home .carousel i:hover {
  background-color: #900c3f;
}

@media (max-width: 767px) {
  .home .carousel i {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

/* End Home Section */
/* Start About Section */
.about .my-image {
  padding: 5px;
}

.about .my-image img {
  width: 100%;
  height: 700px;
  border-radius: 5px;
}

@media (max-width: 577px) {
  .about .my-image img {
    height: 410px;
  }
}

@media (max-width: 767px) {
  .about .my-image img {
    height: 600px !important;
    width: 400px;
  }
}

@media (max-width: 991px) {
  .about .my-image {
    margin-bottom: 30px;
  }
}

.about .about-content {
  background-color: #d5d5d5;
  border: 2px dashed #900c3f;
  border-radius: 5px;
  padding: 20px;
  color: #000;
  min-height: 700px;
  font-size: 20px;
}

.about .about-content .info-list li {
  position: relative;
  padding-left: 60px;
  padding-bottom: 25px;
  text-align: left;
  border-bottom: 3px solid #FFF;
  margin-bottom: 70px;
}

.about .about-content .info-list li::before {
  content: counter(info-counter);
  counter-increment: info-counter;
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #900c3f;
  text-align: center;
  color: #FFF;
}

.about .about-content .info-list li span:first-child {
  display: inline-block;
  width: 20%;
}

@media (max-width: 577px) {
  .about .about-content .info-list li span {
    display: block !important;
    text-align: center;
    width: 100% !important;
  }
  .about .about-content .info-list li span:first-child {
    margin-bottom: 35px;
  }
}

@media (max-width: 991px) {
  .about .about-content .info-list li {
    margin-bottom: 50px;
  }
}

@media (max-width: 577px) {
  .about .about-content .info-list li {
    padding-left: 0;
  }
}

.about .about-content a {
  background-color: #900c3f;
  color: #FFF;
  padding-left: 20px;
  padding-right: 20px;
}

.about .about-content a:hover {
  background-color: #da0d5b;
}

@media (max-width: 991px) {
  .about .about-content {
    min-height: fit-content;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .about .row {
    justify-content: center;
  }
  .about .row > div {
    width: 80%;
  }
}

/* End About Section */
/* Start My Education Section */
.my-education {
  background-color: #d5d5d5;
}

@media (max-width: 991px) {
  .my-education .edu-info-box1 {
    margin-bottom: 50px;
  }
}

/* End My Education Section */
/* Start My Skills Section */
.my-skills .skill-box {
  background-color: #d5d5d5;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  transition: 1s;
}

.my-skills .skill-box i.fa-html5 {
  color: #e34f26;
}

.my-skills .skill-box i.fa-css3-alt {
  color: #254bdd;
}

.my-skills .skill-box i.fa-js {
  color: #b5a421;
}

.my-skills .skill-box i.fa-bootstrap {
  color: #672cab;
}

.my-skills .skill-box i.fa-sass {
  color: #f11e84;
}

.my-skills .skill-box i.fa-vuejs {
  color: #15a564;
}

.my-skills .skill-box i.fa-react {
  color: #00d8ff;
}

.my-skills .skill-box i.fa-mdb {
  color: #589636;
}

.my-skills .skill-box i.fa-code {
  color: #ff3c41;
}

.my-skills .skill-box i.fa-node {
  color: #215732;
}

.my-skills .skill-box i.fa-gulp {
  color: #e44849;
}

.my-skills .skill-box i.fa-git-alt {
  color: #e84d31;
}

.my-skills .skill-box i.fa-lightbulb {
  color: #ddb321;
}

.my-skills .skill-box h4 {
  margin-top: 25px;
  margin-bottom: 0;
  color: #900c3f;
}

.my-skills .skill-box:hover {
  background-color: #900c3f;
  color: #FFF;
  border: 2px solid #EEE;
  box-shadow: 1px 1px 10px #00F;
}

.my-skills .skill-box:hover h4 {
  color: #FFF;
}

.my-skills .skill-box:hover i {
  color: #FFF;
}

/* End My Skills Section */
/* Start My Projects Section */
.my-projects {
  background-color: #d5d5d5;
}

.my-projects .project-box {
  margin-bottom: 30px;
}

.my-projects .project-box .card-body:first-of-type {
  background-color: #900c3f;
  color: #FFF;
  margin: 20px 15px;
  border-top-right-radius: 15px;
}

.my-projects .project-box .card-body:first-of-type h5 {
  border-bottom: 2px dashed #FFF;
  padding-top: 5px;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.my-projects .project-box .card-body .card-link {
  background-color: #900c3f;
  color: #FFF;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 1s;
}

.my-projects .project-box .card-body .card-link:nth-child(2) {
  margin-left: 0;
}

.my-projects .project-box .card-body .card-link:hover {
  background-color: #da0d5b;
}

.my-projects .project-box .technologies-list {
  list-style-type: square;
  list-style-position: inside;
  margin-left: 15px;
  margin-right: 15px;
  border: 2px dashed #900c3f;
}

.my-projects .project-box .technologies-list li {
  padding: 15px;
}

.my-projects .project-box .technologies-list li:not(:last-child) {
  border-bottom: 2px dashed #900c3f;
}

/* End My Projects Section */
/* Start Work Experince Section */
@media (max-width: 991px) {
  .work-experince .work-info-box1 {
    margin-bottom: 50px;
  }
}

/* End Work Experince Section */
/* Start Contact Me Section */
.contact-me {
  background-color: #d5d5d5;
}

.contact-me .contact-me-form input, .contact-me .contact-me-form textarea {
  margin-bottom: 20px;
  padding: 12px;
}

.contact-me .contact-me-form textarea {
  resize: none;
  height: 190px;
}

.contact-me .contact-me-form button {
  width: 100%;
  color: #FFF;
  background-color: #900c3f;
  padding: 12px;
  transition: .5s;
  cursor: not-allowed;
  opacity: .5;
}

.contact-me .social-media-links {
  margin-top: 30px;
}

/* End Contact Me Section */
/* Start Footer */
footer {
  padding: 15px 0;
  background-color: #900c3f;
  color: #FFF;
  font-size: 18px;
}

footer p {
  margin: 0;
}

@media (max-width: 575px) {
  footer p {
    margin-bottom: 30px;
  }
  footer p, footer .social-media-links {
    text-align: center;
  }
}

@media (max-width: 991px) {
  footer p {
    line-height: 2;
  }
}

/* End Footer */
/* Start Transition Arrows Box */
.transition-arrow {
  position: fixed;
  right: 40px;
  z-index: 1040;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  color: #FFF;
  background-color: #900c3f;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .transition-arrow {
    display: none !important;
  }
}

.arrow-to-bottom {
  bottom: 40px;
}

.arrow-to-top {
  bottom: 90px;
  display: none;
}

/* End Transition Arrows Box */
/* Start Sharing Group Styles */
.edu-info-box, .work-info-box {
  background-color: #FFF;
  padding: 20px;
  border: 4px solid #CCC;
  border-radius: 5px;
}

.edu-info-box i, .work-info-box i {
  width: 100%;
  color: #900c3f;
  margin-bottom: 25px;
}

.edu-info-box h5, .work-info-box h5 {
  background-color: #900c3f;
  padding: 17px;
  color: #FFF;
  border-top-right-radius: 10px;
  margin-bottom: 25px;
}

.edu-info-box .edu-details-list, .edu-info-box .work-details-list, .work-info-box .edu-details-list, .work-info-box .work-details-list {
  list-style-type: square;
  list-style-position: inside;
  border: 2px dashed #900c3f;
}

.edu-info-box .edu-details-list li, .edu-info-box .work-details-list li, .work-info-box .edu-details-list li, .work-info-box .work-details-list li {
  padding: 20px;
  font-size: 18px;
}

.edu-info-box .edu-details-list li:not(:last-child), .edu-info-box .work-details-list li:not(:last-child), .work-info-box .edu-details-list li:not(:last-child), .work-info-box .work-details-list li:not(:last-child) {
  border-bottom: 2px dashed #900c3f;
}

/* Start Sharing Group Styles */
