@font-face {
  font-family: bold-font;
  src: url(../fonts/Sintony-Bold.ttf) format("TrueType");
}
@font-face {
  font-family: light-font;
  src: url(../fonts/OpenSans-Regular.ttf) format("TrueType");
}
* {
  font-family: light-font;
}
.content-animate {
  transform: scale(1) !important;
  right: 0 !important;
  transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}
.wrapper-animate {
  overflow-y: hidden !important;
  right: 80% !important;
  transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}
.wrapper-animate::-webkit-scrollbar {
  display: none;
}
.content-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;

  transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}
.main-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.main-content {
  position: fixed;
  z-index: 3;
  right: -80%;
  top: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  transform: scale(0);

  transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
}
.res-close {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #782347;
  cursor: pointer;
  z-index: 10;
}
.res-close i {
  color: #fff;
  font-size: 30px;
  line-height: 35px;
}

/*Header Starts*/
.header {
  height: 100vh;
  background: url(../images/header-bg.jpg) no-repeat bottom right;
  background-size: cover;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.header img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
}
.logo {
  margin-left: 50px;
}
.logo a {
  text-decoration: none;
  display: block;
  font-family: bold-font;
  font-size: 50px;
  color: #1f2041;
}
.scroll-down {
  display: inline-block;
  position: absolute;
  width: 50px;
  left: 0;
  right: 0;

  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 30px;
  color: #fff;
  -webkit-animation: scrollDown 0.5s linear 1s infinite alternate;
  animation: scrollDown 0.5s linear 1s infinite alternate;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@-webkit-keyframes scrollDown {
  from {
    bottom: 5px;
  }
  to {
    bottom: 0px;
  }
}
@keyframes scrollDown {
  from {
    bottom: 5px;
  }
  to {
    bottom: 0px;
  }
}
.short-intro {
  position: absolute;
  bottom: 200px;
  left: 50px;
}
.short-intro h1 {
  font-family: bold-font;
  font-size: 80px;
  margin: 0 0 5px 0;
  color: #1f2041;
}
.short-intro h1 span {
  font-size: 30px;
}
.short-intro h2 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 28px;
  font-family: bold-font;
  color: #666;
  display: inline-block;
  position: relative;
  text-shadow: 1px 1px #000;
}
.short-intro h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ccc;
}
.short-intro h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: #782347;
}
.social {
  margin: 25px 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}
.social li {
  display: inline-block;
  margin-right: 10px;
}
.social li a {
  display: block;
  text-decoration: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  background: #1f2041;
  transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.social li a i {
  font-size: 20px;
  color: #fff;
}
.social li a:hover {
  transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.menu-wrap {
  position: relative;
  text-decoration: none;
  display: block;
  padding: 80px 0;
  background: #1f2041;
}
.menu-wrap:active,
.menu-wrap:link,
.menu-wrap:visited {
  text-decoration: none;
}
.menu-wrap i {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  line-height: 150px;
  text-align: center;
  font-size: 60px;
  background: #fff;
  display: inline-block;
  opacity: 0.1;
  transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
}
.menu-wrap:hover i {
  transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  transform: scale(1.1);
}
.menu-wrap:hover {
  text-decoration: none;
}
.menu-wrap h3,
.menu-wrap p {
  color: #fff;
}
.menu-wrap h3 {
  text-transform: uppercase;
  font-family: bold-font;
  font-size: 30px;
}
.menu-wrap p {
  font-size: 15px;
  opacity: 0.7;
}
.rotate-wrap {
  position: absolute;
  left: 15px;
  top: 15px;
  opacity: 0.1;
  text-transform: uppercase;
}
.rotate-wrap span {
  color: #fff;
  font-size: 40px;
  font-family: bold-font;
  display: inline-block;
  white-space: nowrap;
  -webkit-transform: translate(1.1em, 0) rotate(90deg);
  -moz-transform: translate(1.1em, 0) rotate(90deg);
  -o-transform: translate(1.1em, 0) rotate(90deg);
  transform: translate(1.1em, 0) rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -ms-transform: none;
  -ms-transform-origin: none;
  -ms-writing-mode: tb-rl;
}
.bg-pink {
  background: #422040;
}
.bg-blue {
  background: #2e4057;
}
.bg-rose {
  background: #782347;
}
.footer {
  position: relative;
  background: #0d1218;
  padding: 10px 0;
}

#resume .bar-title {
  background: #422040;
}
#portfolio .bar-title {
  background: #2e4057;
}
#contact .bar-title {
  background: #782347;
}

.footer h3 {
  color: #fff;
  font-weight: normal;
  font-family: bold-font;
  font-size: 35px;
}
.btn-mail {
  display: inline-block;
  padding: 20px 35px;
  margin: 25px 0;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  background: #782347;
}
.btn-mail:hover {
  text-decoration: none;
  color: #fff;
}
.footer h5 {
  color: #fff;
  opacity: 0.7;
  margin: 50px 0;
}
.footer h5 a {
  text-decoration: none;
  color: inherit;
}
.gotop {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 45px;
  background: #1f2041;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.gotop i {
  font-size: 25px;
}
.main-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  padding: 50px 50px 50px 150px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.bar-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background: #1f2041;
  z-index: 1;
}
.bar-title .rotate-wrap {
  margin-left: 15px;
  opacity: 0.7;
}
.bar-title .rotate-wrap span {
  font-size: 50px;
}
.bar-title .rotate-wrap i {
  font-size: 50px;
  margin-right: 15px;
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
}
.bar-title .rotate-wrap i:hover {
  opacity: 1;
}
.topscroll {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 10px;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 65px;
  border: 6px solid #fff;
  text-align: center;
  opacity: 0.1;
  cursor: pointer;
  display: none;
}
.topscroll:hover {
  opacity: 1;
}
.topscroll i {
  font-size: 30px;
  color: #fff;
}
.sub-head-wrap {
  display: inline-block;
  float: none;
  width: auto;
  margin-bottom: 50px;
}
.left-head,
.right-head {
  display: inline-block;
  margin: 0 10px;
  font-family: bold-font;
}
.left-head h2 {
  margin: 0;
  font-size: 60px;
  color: #eee;
}
.right-head h3 {
  margin: 0;
  font-size: 18px;
  color: #ddd;
}
.right-head h2 {
  margin: 0;
  margin-top: 10px;
  font-size: 30px;
}
.short-contact {
  margin-top: 30px;
  border-collapse: collapse;
}
.short-contact .col-md-6 {
  border: 1px solid #eaeaea;
  padding: 15px 20px 15px 30px;
}
.short-contact .col-md-6:nth-child(1),
.short-contact .col-md-6:nth-child(2) {
  border-bottom: none;
}
.short-contact .col-md-6:nth-child(even) {
  border-left: none;
}
.short-contact h3 {
  font-family: bold-font;
  font-size: 23px;
  margin-bottom: 10px;
  color: #7c8483;
}
.short-contact h3 i {
  font-size: 25px;
}
.short-contact a {
  text-decoration: none;
  color: #999;
  font-size: 18px;
}
.hello {
  font-size: 30px;
  font-family: bold-font;
}
.text {
  text-align: justify;
  line-height: 25px;
  font-size: 20px;
  margin: 20px 0;
  color: #999;
}
.text span {
  font-size: 25px;
  font-family: bold-font;
  color: #000;
}
.hobbies {
  margin: 50px -15px;
}
.hobby-wrap {
  width: 20%;
  text-transform: uppercase;
}
.hobby-wrap div {
  padding: 15px 25px;
  background: #1f2041;
  color: #fff;
}
.hobby-wrap i {
  font-size: 30px;
}
.btn-mani {
  padding: 18px 30px;
  border-radius: 4px;
  background: #1f2041;
  color: #eee !important;
  margin: 25px 15px 0 0;
}
.btn-mani:hover {
  background: #1f2041;
  color: #eee !important;
}
.btn-hire {
  background: #eaeaea;
  color: #000 !important;
  opacity: 1;
}

.what-do-we-do {
  padding: 40px 0;
  margin: 30px -15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.others-title {
  font-family: bold-font;
  font-size: 30px;
  margin-bottom: 50px;
}
.margin-top {
  margin-bottom: 35px;
}
.sub-wrap {
  padding-top: 30px;
}
.sub-wrap i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  color: #fff;
  font-size: 50px;
  border-radius: 50px;
  background: #1f2041;
  display: block;
}
.sub-content {
  padding-left: 140px;
}
.sub-content h3 {
  margin: 0;
  font-size: 25px;
  font-family: bold-font;
}
.sub-content p {
  font-size: 18px;
  color: #777;
  margin-top: 15px;
}
.test-wrap {
  width: 100%;
  border-radius: 5px;
  float: left;
  background: #eee;
}
.test-wrap h4 {
  font-size: 24px;
  font-family: bold-font;
}
.test-wrap h5 {
  font-size: 18px;
}
.test-wrap p {
  margin-top: 15px;
  font-size: 15px;
}
.test-img {
  width: 20%;
  margin-top: 25px;
}
.test-info {
  position: relative;
  width: 80%;
  padding: 15px;
  padding-left: 25px;
  border-left: 1px solid #dedede;
}
.test-info i {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 35px;
  transform: rotate(180deg);
}
.testimonials {
  position: relative;
}
.testimonials .owl-nav {
  position: absolute;
  top: -100px;
  right: 15px;
}
.testimonials .owl-nav div {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 10px;
  background: #1f2041;
  color: #fff;
  font-size: 20px;
}
.block-separator {
  margin: 50px -45px;
  border-bottom: 1px solid #eee;
}
.experience {
  padding: 10px 15px 55px 50px;
  border-left: 1px solid #ccc;
  position: relative;
}
.experience::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #ccc;
  color: #fff;
  text-align: center;
}
.resume-year h4 {
  margin: 0;
  font-weight: normal;
  color: #aaa;
  text-transform: uppercase;
}
.resume-info h3 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  font-family: bold-font;
  font-weight: normal;
  font-size: 20px;
  text-transform: uppercase;
  color: #1f2041;
}
.resume-info h4 {
  color: #aaa;
}
.resume-info a {
  text-decoration: none;
  color: #aaa;
}
.skill-wrap {
  margin-bottom: 15px;
  padding: 5px;
  border: 1px solid #dfdfdf;
  position: relative;
}
.skill-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #422040;
  transition: all linear 2s;
  -o-transition: all linear 2s;
  -ms-transition: all linear 2s;
  -moz-transition: all linear 2s;
  -webkit-transition: all linear 2s;
}
.animate-skills.skill-wrap::before {
  width: 100%;
  transition: all linear 2s;
  -o-transition: all linear 2s;
  -ms-transition: all linear 2s;
  -moz-transition: all linear 2s;
  -webkit-transition: all linear 2s;
}

.skill-data {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
}
.skill-percentage {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 1;
  font-family: bold-font;
  font-size: 15px;
}

.portfolio-tab {
  padding: 0;
  list-style: none;
  float: left;
}
.portfolio-tab li {
  float: left;
  padding: 10px 20px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-right: none;
  cursor: pointer;
}
.portfolio-tab li:last-child {
  border-right: 1px solid #ddd;
}
.portfolio-tab li:hover,
.portfolio-tab .tab-active {
  color: #fff;
  background: #23527c;
  border-color: #23527c;
}
#portfolio .margin-top {
  padding: 0;
}
.portfolio-list .project {
  height: 250px;
}
#contact .short-contact h4 {
  line-height: 26px;
  color: #999;
}
.short-contact-wrap {
  border: 1px solid #eaeaea;
}
.hire-form {
  padding: 50px 0;
  margin-top: 60px;
  border-top: 1px solid #eaeaea;
}
.hire-form .form-group {
  margin-bottom: 25px;
}
.hire-form label {
  font-size: 18px;
  font-family: bold-font;
  font-weight: normal;
}
.hire-form .form-control {
  font-size: 16px;
  height: 55px;
  border-radius: 0;
  background: #f5f5f5;
  box-shadow: none;
  border: 1px solid #eee;
}
.hire-form .form-control:focus {
  box-shadow: none;
}
.hire-form textarea.form-control {
  resize: none;
  height: 150px;
}
.hire-form .btn {
  font-size: 20px;
  border-radius: 0;
  padding: 20px 50px;
}
.download-resume {
  margin: 0 -30px;
}
.download-resume h3 {
  font-family: bold-font;
  margin: 25px 0 0px 0;
}
.download-resume a {
  padding: 20px 25px;
  background: #422040;
  color: #fff !important;
}
.download-resume a:hover {
  background: #422040;
  color: #fff;
}

@media (min-width: 1601px) {
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .short-intro h1 {
    font-size: 65px;
  }
  .short-intro h2 {
    font-size: 25px;
  }
  .social li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 45px;
  }
  .rotate-wrap {
    position: absolute;
    left: 25px;
    top: 25px;
  }
  .btn-mail {
    padding: 15px 30px;
    font-size: 15px;
  }
  .bar-title {
    width: 80px;
  }
  .bar-title .rotate-wrap {
    margin-left: 15px;
    opacity: 0.7;
    left: 15px;
    top: 10px;
  }
  .bar-title .rotate-wrap span {
    font-size: 45px;
  }
  .main-wrapper {
    padding: 50px 50px 50px 125px;
  }
  .btn-mani {
    font-size: 15px;
    padding: 16px 28px;
  }
  .text {
    font-size: 16px;
  }
  .text span {
    font-size: 20px;
  }
  .short-contact h3 {
    font-size: 18px;
    margin-top: 0;
  }
  .short-contact a {
    font-size: 15px;
  }
  .short-contact h4 {
    font-size: 15px;
    color: #999;
  }
  .hobby-wrap div {
    padding: 10px;
  }
  .hobby-wrap i {
    font-size: 25px;
  }
  .hobby-wrap h4 {
    font-size: 15px;
  }
  .what-do-we-do {
    margin: 30px 0px;
  }
  .sub-wrap {
    padding-top: 5px;
  }
  .sub-content h3 {
    font-size: 20px;
  }
  .sub-content p {
    margin-top: 10px;
    font-size: 15px;
  }
  .testimonials .owl-nav div {
    padding: 2px 10px;
  }
  .test-wrap h4 {
    font-size: 20px;
  }
  .test-wrap h5 {
    font-size: 16px;
  }
  .testimonials .owl-nav {
    top: -80px;
  }
  .topscroll {
    left: 15px;
    right: 0;
    bottom: 10px;
    width: 55px;
    height: 55px;
    line-height: 46px;
    border-radius: 55px;
  }
  .resume-year h4 {
    font-size: 16px;
  }
  .resume-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .resume-info h4 {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header {
    height: 500px;
  }
  .short-intro h1 {
    font-size: 50px;
  }
  .short-intro h2 {
    font-size: 20px;
  }
  .social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
  .menu-wrap {
    padding: 50px 0;
  }
  .menu-wrap h3 {
    font-size: 25px;
  }
  .rotate-wrap span {
    font-size: 30px;
  }
  .menu-wrap i {
    width: 125px;
    height: 125px;
    line-height: 125px;
  }
  .btn-mail {
    padding: 15px 25px;
  }
  .bar-title {
    width: 80px;
  }
  .bar-title .rotate-wrap {
    margin-left: 20px;
  }
  .main-content {
    width: 70%;
    right: -70%;
  }
  /*    #resume,#about,#portfolio{
            display: none;
        }*/
  .main-wrapper {
    padding: 30px 20px 30px 100px;
  }
  .bar-title .rotate-wrap span {
    font-size: 40px;
  }
  .left-head h2 {
    font-size: 45px;
  }
  .hello {
    font-size: 25px;
  }
  .text {
    font-size: 15px;
  }
  .short-contact h3 {
    margin: 0;
    font-size: 15px;
  }
  .short-contact h4 {
    font-size: 15px;
  }
  .short-contact a {
    font-size: 15px;
  }
  .hobby-wrap h4 {
    display: none;
  }
  .others-title {
    font-size: 25px;
  }
  .btn-mani {
    padding: 12px 20px;
    font-size: 15px;
  }
  .what-do-we-do {
    padding: 20px 0;
  }
  .what-do-we-do .margin-top {
    margin-left: 15px;
    margin-bottom: 10px;
  }
  .sub-wrap {
    padding: 0;
  }
  .sub-content {
    padding-left: 120px;
  }
  .sub-content h3 {
    font-size: 18px;
    margin: 0;
  }
  .sub-content p {
    font-size: 15px;
  }
  .sub-wrap i {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .testimonials .owl-nav {
    top: -80px;
  }
  .testimonials .owl-nav div {
    padding: 0 8px;
  }
  .topscroll {
    width: 60px;
    height: 60px;
    line-height: 50px;
    left: 10px;
    border-radius: 60px;
  }
  .test-wrap h4 {
    font-size: 20px;
  }
  .test-wrap h5 {
    font-size: 16px;
  }
  .resume-year h4 {
    font-size: 15px;
  }
  .resume-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .resume-info h4 a {
    font-size: 15px;
  }
  .experience::before {
    left: -13px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
  }
  .skill-data {
    font-size: 15px;
  }
  .download-resume a {
    padding: 15px 25px;
  }
  .hire-form {
    padding: 25px 0;
  }
  .hire-form label {
    font-size: 16px;
  }
  .hire-form .form-control {
    height: 50px;
  }
  .hire-form textarea.form-control {
    height: 100px;
  }
  .hire-form .btn {
    padding: 15px 30px;
    margin: 0;
  }
  .footer h3 {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header {
    background: none;
    height: 500px;
    position: relative;
  }
  .short-intro {
    position: absolute;
    left: 0px;
    bottom: 100px;
  }
  .short-intro h1 {
    font-size: 30px;
  }
  .short-intro h2 {
    font-size: 20px;
  }
  .social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .rotate-wrap span {
    font-size: 25px;
  }
  .menu-wrap i {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .menu-wrap h3 {
    font-size: 25px;
  }
  .footer h3 {
    font-size: 25px;
  }
  .btn-mail {
    padding: 10px 15px;
  }
  .main-content {
    width: 85%;
    right: -85%;
  }
  .main-wrapper {
    padding: 20px 20px 20px 100px;
  }
  .bar-title {
    width: 65px;
  }
  .bar-title .rotate-wrap {
    margin-left: 10px;
  }
  .bar-title .rotate-wrap span {
    font-size: 30px;
  }
  .bar-title .rotate-wrap i {
    font-size: 35px;
  }
  .topscroll {
    width: 40px;
    height: 40px;
    line-height: 30px;
    left: 10px;
  }
  .topscroll i {
    font-size: 25px;
  }
  .sub-head-wrap {
    margin-bottom: 25px;
  }
  .left-head h2 {
    font-size: 30px;
  }
  .right-head h2 {
    font-size: 25px;
  }
  .right-head h3 {
    font-size: 16px;
  }
  .hello {
    font-size: 20px;
  }
  .text span {
    font-size: 18px;
  }
  .text {
    font-size: 16px;
  }
  .short-contact h3 {
    font-size: 16px;
  }
  .short-contact .col-md-6:nth-child(1),
  .short-contact .col-md-6:nth-child(2),
  .short-contact .col-md-6:nth-child(even) {
    border-left: 1px solid #eaeaea;
    padding: 0px 20px 15px 20px;
  }
  .short-contact a,
  .sub-content p,
  .short-contact h4 {
    font-size: 15px;
  }
  .btn-mani {
    padding: 12px 15px;
    font-size: 15px !important;
  }
  .hobby-wrap h4 {
    display: none;
  }
  .hobbies {
    margin-bottom: 0;
  }
  .what-do-we-do {
    padding: 20px;
  }
  .others-title {
    font-size: 20px;
  }
  .sub-content h3 {
    font-size: 18px;
  }
  .sub-wrap {
    padding-top: 0;
  }
  .sub-wrap i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 30px;
  }
  .sub-content {
    padding-left: 100px;
  }
  .others-title {
    margin-bottom: 15px;
  }
  .testimonials .owl-nav div {
    padding: 0 8px;
  }
  .test-wrap {
    text-align: center;
    position: relative;
  }
  .test-img,
  .test-info {
    text-align: center;
  }
  .test-img {
    width: 25%;
    display: inline-block;
    float: none;
  }
  .test-info {
    width: 100%;
  }
  .test-info i {
    display: none;
  }
  .testimonials .owl-nav {
    top: -45px;
  }
  .resume-year h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .resume-info h3 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .resume-info h4 {
    margin-top: 5px;
    font-size: 15px;
  }
  .experience {
    padding-bottom: 25px;
  }
  .download-resume h3 {
    font-size: 20px;
  }
  .download-resume a {
    padding: 12px 15px;
  }
  .portfolio-tab {
    margin-bottom: 15px;
  }
  .portfolio-tab li {
    padding: 5px 8px;
  }
  .hire-form {
    padding: 20px 0;
  }
  .hire-form label {
    font-size: 16px;
  }
  .hire-form .form-control {
    height: 40px;
  }
  .hire-form textarea.form-control {
    height: 75px;
  }
  .hire-form .btn {
    margin-top: 0;
    padding: 12px 20px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 400px;
    position: relative;
  }
  .header img {
    width: 300px;
  }
  .short-intro {
    margin: 0;
    position: absolute;
    left: 0px;
    bottom: 15px;
  }
  .short-intro h1 {
    font-size: 30px;
  }
  .short-intro h2 {
    font-size: 20px;
  }
  .social li {
    margin-right: 5px;
  }
  .social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .rotate-wrap span {
    font-size: 25px;
  }
  .menu-wrap {
    padding: 40px 0;
  }
  .menu-wrap i {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .menu-wrap h3 {
    font-size: 20px;
  }
  .footer h3 {
    font-size: 25px;
  }
  .btn-mail {
    padding: 10px 15px;
  }
  .main-content {
    width: 100%;
    right: -100%;
  }
  .main-wrapper {
    padding: 15px;
  }
  .bar-title {
    display: none;
  }
  .sub-head-wrap {
    margin-bottom: 25px;
  }
  .left-head h2 {
    font-size: 30px;
  }
  .right-head h2 {
    font-size: 25px;
  }
  .right-head h3 {
    font-size: 16px;
  }
  .hello {
    font-size: 20px;
  }
  .text span {
    font-size: 18px;
  }
  .text {
    font-size: 16px;
  }
  .short-contact h3 {
    font-size: 16px;
  }
  .short-contact .col-md-6:nth-child(1),
  .short-contact .col-md-6:nth-child(2),
  .short-contact .col-md-6:nth-child(even) {
    border-left: 1px solid #eaeaea;
    padding: 0px 20px 15px 20px;
  }
  .short-contact a,
  .sub-content p,
  .short-contact h4 {
    font-size: 15px;
  }
  .btn-mani {
    padding: 12px 15px;
    font-size: 15px !important;
  }
  .hobby-wrap h4 {
    display: none;
  }
  .hobbies {
    margin-bottom: 0;
  }
  .what-do-we-do {
    padding: 20px;
  }
  .others-title {
    font-size: 20px;
  }
  .sub-content h3 {
    font-size: 18px;
  }
  .sub-wrap {
    padding-top: 0;
    text-align: center;
  }
  .sub-wrap i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 30px;
    display: inline-block;
    position: relative;
  }
  .sub-content {
    padding-left: 0;
  }
  .sub-content h3 {
    margin: 10px 0;
  }
  .sub-content p {
    display: none;
  }
  .others-title {
    margin-bottom: 15px;
  }
  .testimonials .owl-nav div {
    padding: 0 8px;
  }
  .test-wrap {
    text-align: center;
    position: relative;
  }
  .test-img,
  .test-info {
    text-align: center;
  }
  .test-img {
    width: 50%;
    display: inline-block;
    float: none;
  }
  .test-wrap h4 {
    font-size: 18px;
  }
  .test-info {
    width: 100%;
    padding: 0;
  }
  .test-info i {
    display: none;
  }
  .test-wrap p {
    font-size: 15px;
  }
  .testimonials .owl-nav {
    top: -45px;
  }
  .skill-wrap {
    padding: 2px 15px;
  }
  .resume-year h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .resume-info h3 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .resume-info h4 {
    margin-top: 5px;
    font-size: 15px;
  }
  .experience {
    padding-bottom: 25px;
  }
  .download-resume h3 {
    font-size: 18px;
  }
  .download-resume a {
    padding: 12px;
    margin: 0;
    margin-top: 10px;
  }
  .portfolio-tab {
    margin-bottom: 15px;
  }
  .portfolio-tab li {
    padding: 5px 8px;
    width: 100%;
    border-bottom: none;
    border-right: 1px solid #ddd;
  }
  .portfolio-tab li:last-child {
    border-bottom: 1px solid #ddd;
  }
  .hire-form {
    padding: 20px 0;
  }
  .hire-form label {
    font-size: 16px;
  }
  .hire-form .form-control {
    height: 40px;
  }
  .hire-form textarea.form-control {
    height: 75px;
  }
  .hire-form .btn {
    margin-top: 0;
    padding: 12px 20px;
  }
  .hobby-wrap {
    padding: 0;
  }

  .hobby-wrap div {
    margin-right: 5px;
    padding: initial;
  }
  .res-close {
    display: block;
  }
}
@media (max-width: 600px) {
  .header img {
    display: none;
  }
}
