* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "General Sans", sans-serif;
}
:root {
  --columns: 12;
  --transition-timing-function: cubic-bezier(1, 0, 0.12, 1);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -12px;
}
[class^="container"] {
  padding: 0px 15px;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
  padding: 0 15px;
}
.container-fluid {
  max-width: 100%;
  margin: 0px auto;
}
.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[class^="col"] {
  padding: 0px 12px;
}
.col {
  width: auto;
}
.col-1 {
  width: calc(100% / var(--columns) * 1);
}
.col-2 {
  width: calc(100% / var(--columns) * 2);
}
.col-3 {
  width: calc(100% / var(--columns) * 3);
}
.col-4 {
  width: calc(100% / var(--columns) * 4);
}
.col-5 {
  width: calc(100% / var(--columns) * 5);
}
.col-6 {
  width: calc(100% / var(--columns) * 6);
}
.col-7 {
  width: calc(100% / var(--columns) * 7);
}
.col-8 {
  width: calc(100% / var(--columns) * 8);
}
.col-9 {
  width: calc(100% / var(--columns) * 9);
}
.col-10 {
  width: calc(100% / var(--columns) * 10);
}
.col-11 {
  width: calc(100% / var(--columns) * 11);
}
.col-12 {
  width: calc(100% / var(--columns) * 12);
}
.d-flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-right {
  align-items: end;
}
.p-0 {
  padding: 0px !important;
}
.m-0 {
  margin: 0px !important;
}
a {
  text-decoration: none;
  color: #000;
}
.navbar {
  padding: 20px 0px;
  position: absolute;
  width: 100%;
  z-index: 999;
}
.navbar-brand > a {
  font-size: 30px;
  color: #ffffff;
}
.navbar-menu > .navbar-menu-item > li {
  display: inline-block;
  margin: 25px 20px 0;
  position: relative;
}
.navbar-menu > .navbar-menu-item > li.menu-list > .menu-link {
  font-size: 16px;
  color: #ffffff;
}
.navbar-menu > .navbar-menu-item > li.menu-list > .menu-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.navbar-menu > .navbar-menu-item > li.menu-list > .menu-link:hover::after {
  width: 100%;
}
.download{
  padding: 15px;
  background-color: #ffffff;
  color: #000;
  border-radius: 50px;
  border: none;
  margin-left: 10px;
  font-size: 14px;
}
.download:hover{
  background: radial-gradient(circle,rgba(247, 247, 247, 1) 29%, rgba(209, 205, 205, 1) 57%, rgba(184, 184, 184, 1) 83%);
}
/* hero */
.hero {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../../images/girlOnTheHill.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero > .container > .caption {
  /* position: absolute;
    top: 50%;
    left: 25%; */
  text-align: center;
  color: #ffffff;
}
.hero > .container > .caption > h5 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1rem;
}
.hero > .container > .caption > h1 {
  font-weight: 200;
  font-size: 60px;
  position: relative;
}

.ml6 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  transition: width .4s cubic-bezier(.84,.03,.06,.9);
  visibility: hidden;
}

.ml6-inner {
  position: relative;
  display: block;
}

.letters {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: -0.05rem;
}

.letter {
  display: inline-block;
}

.hero .social-media {
  margin: 50px;
}
.hero .social-media > a > span {
  font-size: 32px;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

/* hero-end */

.section-padding {
  padding: 100px;
}
.about-img > img {
  width: 100%;
  height: auto;
  padding-right: 50px;
}
.about-me > h3 {
  font-size: 40px;
  margin-bottom: 10px;
}
.about-me > span {
  color: #726c6c;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 25px;
}
.about-me > span + p {
  margin-top: 30px;
  font-size: 25px;
  color: #726c6c;
}
.about-me > .abt-btn {
  margin-top: 25px;
}
/* progress */
.skills {
      
      margin: 30px 0;
    }

    .skill {
      margin-bottom: 25px;
    }

    .progress-bar {
      background: #bebebe;
      height: 20px;
      border-radius: 20px;
      overflow: hidden;
      margin-top: 8px;
    }

    .progress {
      height: 100%;
      width: 0;
      background: #000;
      border-radius: 20px;
      transition: width 1.8s ease-in-out;
    }
/* progress */
.ui-btn a{
  color: #8cecdfb7;
}
.ui-btn {
  --btn-default-bg: rgb(42, 29, 29);
  --btn-padding: 15px 20px;
  --btn-hover-bg: rgb(51, 51, 51);
  --btn-transition: 0.3s;
  --btn-letter-spacing: 0.1rem;
  --btn-animation-duration: 1.2s;
  --btn-shadow-color: rgba(0, 0, 0, 0.137);
  --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
  --hover-btn-color: #2bfdfd;
  --default-btn-color: #8cecdfb7;
  --font-size: 20px;
  --font-weight: 600;
  /* --font-family: Menlo,Roboto Mono,monospace; */
}

.ui-btn {
  display: inline-block !important;
  margin-right: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: var(--btn-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-btn-color);
  font: var(--font-weight) var(--font-size) var(--font-family);
  background: var(--btn-default-bg);
  border: none;
  cursor: pointer;
  transition: var(--btn-transition);
  overflow: hidden;
  box-shadow: var(--btn-shadow);
}

.ui-btn span {
  letter-spacing: var(--btn-letter-spacing);
  transition: var(--btn-transition);
  box-sizing: border-box;
  position: relative;
  background: inherit;
}

.ui-btn span::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  background: inherit;
}

.ui-btn:hover,
.ui-btn:focus {
  background: var(--btn-hover-bg);
}

.ui-btn:hover span,
.ui-btn:focus span {
  color: var(--hover-btn-color);
}

.ui-btn:hover span::before,
.ui-btn:focus span::before {
  animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {
  0% {
    content: "#";
  }

  5% {
    content: ".";
  }

  10% {
    content: "^{";
  }

  15% {
    content: "-!";
  }

  20% {
    content: "#$_";
  }

  25% {
    content: "№:0";
  }

  30% {
    content: "#{+.";
  }

  35% {
    content: "@}-?";
  }

  40% {
    content: "?{4@%";
  }

  45% {
    content: "=.,^!";
  }

  50% {
    content: "?2@%";
  }

  55% {
    content: "\;1}]";
  }

  60% {
    content: "?{%:%";
    right: 0;
  }

  65% {
    content: "|{f[4";
    right: 0;
  }

  70% {
    content: "{4%0%";
    right: 0;
  }

  75% {
    content: "'1_0<";
    right: 0;
  }

  80% {
    content: "{0%";
    right: 0;
  }

  85% {
    content: "]>'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}

/* About section end  */

/* Service section */
.srvc-section{
  background-color: #f7f7f7;
}
.srvc-section > .container > h3{
  width: 100%;
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}
.row > .card > .item {
    padding: 50px 20px;
    background: #fff;
    box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 5px;
    text-align: center;
}
.card > .item > span{
  display: inline-block;
    font-size: 25px;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f4f4f4;
    border-radius: 50%;
}
.item h6 {
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 18px;
}
.item p{
    line-height: 1.6;
    font-size: 15px;
    color: #748182;
}
.card > .item > span:hover, .srvc-section .card:hover > .item > span{
  background-color: #000;
  color: #f7f7f7;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.5s;

}
.srvc-section .card:hover{
  transform: translatey(-10px);
  transition: all 0.7s;
  box-shadow: 0 0 1px rgba(65, 62, 62, 0);
}

/* contact */
.contact h1{
  text-align: center;
  padding-bottom: 60px;
}
.contact .social-media > a > i{
  margin: 30px 10px 0;
  font-size: 35px;
  color: #000;
}

.right-content > .content > p{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
footer {
  background-color: #0d0d0d;
  text-align: center;
  padding: 30px 0;
}
footer p{
  color: #fff;
  font-size: 30px;
}
/* ... */