@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&family=Ubuntu:wght@300;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

.filled-button {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background: crimson;
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid crimson;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filled-button:hover {
  color: crimson;
  background: #fff;
}

@media (min-width: 768px) {
  .filled-button {
    font-size: 23px;
  }
}

@media (min-width: 992px) {
  .filled-button {
    font-size: 25px;
    padding: 12px 36px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  font-family: "Ubuntu", sans-serif;
  padding: 30px 0;
  background: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 576px) {
  .header {
    background-color: #000000;
  }
}

.header .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu-wrapper .logo a {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  text-decoration: none;
}

.header .menu-wrapper .logo span {
  color: crimson;
}

.header .menu-wrapper .menu {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: -100%;
  top: 0;
  background: #111;
  text-align: center;
  padding: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .header .menu-wrapper .menu {
    position: unset;
    margin: 0;
    height: auto;
    background: #000000;
    padding: 0;
    display: block;
    text-align: right;
  }
}

.header .menu-wrapper .menu .close-menu {
  margin: 1rem;
  text-align: right;
}

@media (min-width: 992px) {
  .header .menu-wrapper .menu .close-menu {
    display: none;
  }
}

.header .menu-wrapper .menu li {
  list-style-type: none;
  display: block;
  margin: 1rem 0;
}

@media (min-width: 992px) {
  .header .menu-wrapper .menu li {
    display: inline-block;
  }
}

.header .menu-wrapper .menu li a {
  color: #fff;
  font-size: 25px;
  margin: 20px 0;
  font-size: 25px;
  text-decoration: none;
}

@media (min-width: 992px) {
  .header .menu-wrapper .menu li a {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 0 25px;
  }
  .header .menu-wrapper .menu li a:hover {
    color: crimson;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}

@media (min-width: 992px) {
  .header .menu-wrapper .menu-btn {
    display: none;
  }
}

.header .menu.active {
  left: 0;
}

.header.sticky {
  background: crimson;
  padding: 15px 0;
}

.header.sticky .menu-wrapper .logo span {
  color: #fff;
}

.header.sticky .menu-wrapper .menu {
  background: crimson;
}

.header.sticky .menu-wrapper .menu li a:hover {
  color: #fff;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  min-height: 500px;
  background: #000000;
  font-family: "Ubuntu", sans-serif;
}

.hero p {
  font-size: 27px;
  color: #fff;
  margin: 0;
}

.hero p span {
  color: crimson;
  font-weight: 500;
}

.hero h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 70px;
  }
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 75px;
  }
}

.hero .mydetails {
  margin: 5px 0;
}

@media (min-width: 768px) {
  .hero .mydetails {
    font-size: 35px;
  }
}

@media (min-width: 992px) {
  .hero .mydetails {
    font-size: 40px;
  }
}

.hero .filled-button:hover {
  background: transparent;
}

.about {
  padding: 6.3rem 0;
}

.about .title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  font-family: "Ubuntu", sans-serif;
}

.about .title::after {
  content: "who i am";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  padding: 0 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
  color: crimson;
  background: #fff;
}

.about .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #000000;
  height: 0.2rem;
  width: 11rem;
}

.about .about-content .about-content-left {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about .about-content .about-content-left {
    text-align: center;
  }
}

.about .about-content .about-content-left img {
  width: 100%;
}

@media (min-width: 768px) {
  .about .about-content .about-content-left img {
    height: 22rem;
    width: 22rem;
  }
}

.about .about-content .about-content-right {
  font-family: "Poppins", sans-serif;
}

.about .about-content .about-content-right .text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

@media (min-width: 768px) {
  .about .about-content .about-content-right .text {
    font-size: 1.6rem;
  }
}

.about .about-content .about-content-right .text span {
  color: crimson;
  font-weight: 500;
}

.about .about-content .about-content-right p {
  font-size: 1rem;
  text-align: justify;
  margin: 0;
}

.services {
  padding: 6.3rem 0;
  background: #000000;
}

.services .title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  font-family: "Ubuntu", sans-serif;
}

.services .title::after {
  content: "what i provide";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  padding: 0 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
  color: crimson;
  background: #000000;
}

.services .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  height: 0.2rem;
  width: 11rem;
}

.services .services-card {
  background: #222;
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 0.4rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.services .services-card .services-card-body:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .services-card .services-card-body img {
  width: 3rem;
  margin: 0 auto;
}

.services .services-card .services-card-body .non-hover {
  display: block;
}

.services .services-card .services-card-body .on-hover {
  display: none;
}

.services .services-card .services-card-body h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0.7rem 0 0.7rem 0;
}

.services .services-card .services-card-body p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

.services .services-card:hover {
  background: crimson;
}

.services .services-card:hover .on-hover {
  display: block;
}

.services .services-card:hover .non-hover {
  display: none;
}

.skills {
  padding: 6.3rem 0;
  font-family: "Poppins", sans-serif;
}

.skills .title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  font-family: "Ubuntu", sans-serif;
}

.skills .title::after {
  content: "what i know";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  padding: 0 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
  color: crimson;
  background: #fff;
}

.skills .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #000000;
  height: 0.2rem;
  width: 11rem;
}

.skills .skills-content .skills-content-left {
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .skills .skills-content .skills-content-left {
    margin-bottom: 0rem;
  }
}

.skills .skills-content .skills-content-left h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.skills .skills-content .skills-content-left p {
  font-size: 1rem;
  text-align: justify;
  margin: 0;
}

.skills .skills-content .skills-content-right .bars {
  margin-bottom: 1rem;
}

.skills .skills-content .skills-content-right .bars .skills-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.3rem;
}

.skills .skills-content .skills-content-right .bars .skills-info span {
  font-size: 1.15rem;
  font-weight: 500;
}

.skills .skills-content .skills-content-right .bars .skills-line {
  position: relative;
  width: 100%;
  height: 0.3rem;
  background-color: #ccc;
}

.skills .skills-content .skills-content-right .bars .skills-line::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: crimson;
}

.skills .skills-content .skills-content-right .bars .html::before {
  width: 90%;
}

.skills .skills-content .skills-content-right .bars .css::before {
  width: 90%;
}

.skills .skills-content .skills-content-right .bars .js::before {
  width: 70%;
}

.skills .skills-content .skills-content-right .bars .bootstrap::before {
  width: 80%;
}

.teams {
  padding: 6.3rem 0;
  font-family: "Poppins", sans-serif;
  background: #000000;
}

.teams .title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  font-family: "Ubuntu", sans-serif;
}

.teams .title::after {
  content: "who with me";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  padding: 0 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
  color: crimson;
  background: #000000;
}

.teams .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  height: 0.2rem;
  width: 11rem;
}

.teams .teams-slider {
  margin-top: 7rem;
}

.teams .teams-slider .teams-card {
  background: #222;
  padding: 2rem;
  margin: 0 1rem;
  border-radius: 0.5rem;
}

.teams .teams-slider .teams-card .teams-card-body .team-img {
  text-align: center;
}

.teams .teams-slider .teams-card .teams-card-body .team-img img {
  height: 9rem;
  width: 9rem;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 0.2rem solid crimson;
}

.teams .teams-slider .teams-card .teams-card-body h2 {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  margin: 1rem 0;
}

@media (min-width: 992px) {
  .teams .teams-slider .teams-card .teams-card-body h2 {
    font-size: 1.6rem;
  }
}

@media (min-width: 1200px) {
  .teams .teams-slider .teams-card .teams-card-body h2 {
    font-size: 2rem;
  }
}

.teams .teams-slider .teams-card .teams-card-body p {
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
}

.teams .teams-slider .teams-card .teams-card-body:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.teams .teams-slider .teams-card:hover {
  background-color: crimson;
}

.teams .teams-slider .teams-card:hover .team-img img {
  border: 0.2rem solid #fff;
}

.teams .slick-dots {
  bottom: -3rem;
}

.teams .slick-dots li button {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  cursor: pointer;
  background-color: #fff;
  border: 0.1rem solid crimson;
  border-radius: 2rem;
}

.teams .slick-dots li button::before {
  display: none;
}

.teams .slick-dots .slick-active button {
  background-color: crimson;
}

.contact {
  padding: 6.3rem 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.contact .title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  font-family: "Ubuntu", sans-serif;
}

.contact .title::after {
  content: "get in touch";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  padding: 0 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.3rem;
  color: crimson;
  background: #fff;
}

.contact .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #000000;
  height: 0.2rem;
  width: 11rem;
}

.contact .contact-inner-details .contact-details {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact .contact-inner-details .contact-details {
    margin-bottom: 0;
  }
}

.contact .contact-inner-details .contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.contact .contact-inner-details .contact-details p {
  font-size: 1rem;
}

@media (min-width: 576px) {
  .contact .contact-inner-details .contact-details p {
    word-spacing: 0rem;
  }
}

@media (min-width: 992px) {
  .contact .contact-inner-details .contact-details p {
    word-spacing: 0.5rem;
  }
}

.contact .contact-inner-details .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

.contact .contact-inner-details .contact-wrapper .contact-icon img {
  width: 2rem;
}

.contact .contact-inner-details .contact-wrapper .contact-info {
  margin-left: 1.5rem;
}

.contact .contact-inner-details .contact-wrapper .contact-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.2rem;
}

.contact .contact-inner-details .contact-wrapper .contact-info p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.contact .contact-inner-details .message-me h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.contact .contact-inner-details .message-me form .form-control {
  border: 0.1rem solid lightgrey;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact .contact-inner-details .message-me form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact .contact-inner-details .message-me form button {
  font-size: 1.1rem;
  padding: 0.5rem 1.1rem;
  margin: 0;
}

.contact .contact-inner-details .message-me form button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer {
  background-color: #000000;
  font-family: "Poppins", sans-serif;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  footer {
    padding: 1rem;
  }
}

footer span {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  display: block;
  text-align: center;
}

footer span a {
  font-size: 1rem;
  color: crimson;
  text-decoration: none;
}

footer span a:hover {
  color: crimson;
  text-decoration: underline;
}

footer span img {
  width: 1rem;
}
/*# sourceMappingURL=styles.css.map */