/*--------------------
  Main Styles
----------------------*/

html,
body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #222;
}

p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 28px;
  color: #4a4848;
  font-weight: 400;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
a {
    color:#ffbc00;
  }
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem #ffcc156e;
}

.spad {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
}

.section-title p {
  text-transform: uppercase;
  letter-spacing: 5px;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

.site-btn {
  font-size: 16px;
  background: #ffbc00;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 50px;
  min-width: 160px;
  cursor: pointer;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(55, 56, 56, 0.2);
  box-shadow: 0px 20px 50px 0px rgba(55, 56, 56, 0.2);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.site-btn:hover {
  color: #fff;
  background: #333;
}

/* pager*/
.pager {
  margin: 20px 0;
  border-top: solid 1px #eeeeee;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
    background-color: #ffffff;
    border: 1px solid #ffbc00;
    border-radius: 0;
    padding: 10px 10px;
}
.pager li > a:hover,
.pager li > a:focus {
      text-decoration: none;
    color: #fff;
    background-color: #ffbc00;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  background-color: #ffffff;
  border-color: #ddd;
}
/* pagination */
.pagination {
  margin: 20px 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  border-radius: 0;
}
.pagination > li > a,
.pagination > li > span {
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #38a7bb;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #38a7bb;
  background-color: #a7dbe5;
  border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #38a7bb;
  border-color: #38a7bb;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  background-color: #ffffff;
  border-color: #dddddd;
}
/* Flaired edges */

hr.style-three {
    height: 30px;
    border-style: solid;
    border-color: #ffcc15;
    border-width: 1px 0 0 0;
    border-radius: 20px;
    margin: 0px;
}
hr.style-three:before {
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: #ffcc15;
border-width: 0 0 1px 0;
border-radius: 20px;
}
/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  border: 2px solid #333;
  border-left-color: transparent;
  border-top-color: transparent;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.5s linear infinite;
}

.loader:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 50%;
  top: 50%;
  border-radius: 60px;
  border: 3px solid #333;
  margin-top: -15px;
  margin-left: -15px;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ====================
  Header Section
=======================*/

.header-section {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.header-warp {
 /* max-width: 920px;*/
  height: 70px;
  padding: 0 40px;
  background:#000000;
  margin: 0 auto;
  border-radius: 2px 2px 80px 80px;
  -webkit-box-shadow: 0 7px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 7px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
  display: inline-block;
}

.site-logo {
  float: left;
  height: 100%;
  padding: 5px 0;
}

.site-logo img {
  max-height: 100%;
}

.responsive-switch,
.sm-close {
  display: none;
}

.site-menu ul {
  list-style: none;
  /*float: right;
  padding-top: 20px;*/
}

.site-menu li {
  display: inline-block;
   margin: 0px 10px;
}

.site-menu li.current a:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.site-menu a {
  color: #fff;
  padding: 5px 10px;
  font-size: 15px;
  position: relative;
  margin-left: 5px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

/*.site-menu a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 50%;
  bottom: -5px;
  margin-left: -3px;
  border-radius: 20px;
  background: #ffbc00;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}*/

.site-menu a:hover{
  border-bottom:#ffcc15 solid 2px;
}

/* ====================
  Hero Section
=======================*/

.hero-section {
  min-height: 100%;
  height: 1100px;
  background-position: top center;
}

.hero-section {
  position: relative;
}

.hero-section.hero-style-two {
  overflow: hidden;
}

.hero-section.hero-style-two #particles {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.hero-section.hero-style-three {
  background-color: #0a0e1f;
  display: table;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-section.hero-style-three .shap-image {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  z-index: 6;
}

.hero-section.hero-style-three .shap-image img {
  position: relative;
  top: 2px;
  min-width: 100%;
}

.hero-section .typed-area {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.hero-section .typed-area h2 {
  /*font-size: 65px;
  font-weight: 700;*/
  /*color: #fff;
  line-height: 1.3;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.2);*/
}

.hero-section #bubble {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 5;
}
.hero-section{
 background-attachment: scroll;
    background-image: url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.hero-content {
  position: fixed;
  bottom: 90px;
  padding-left: 120px;
  z-index: 5;
}

.hero-content.sticky {
  position: absolute;
}

/*.hero-content h2 {
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
*/
/*.hero-content i {
  font-size: 70px;
  color: #ffbc00;
  padding-left: 10px;
  -webkit-animation: finger 1.5s infinite;
  animation: finger 1.5s infinite;
}*/

@-webkit-keyframes finger {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    opacity: .2;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    opacity: .2;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hero-CenteredText .avatar img {
    width: 10rem;
    height: auto;
    border-radius: 50%;
    border: 5px solid #ffbc00;
}
.hero-CenteredText h1 {
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color:#fff;
}
.hero-CenteredText p {
    margin-top: 0.7rem;
    margin-bottom: .5rem;
    font-size: 1.1rem;
    color: #e0e0e0;
    /* font-weight: 400; */
    letter-spacing: 0.8px;
    font-weight: 400;
    font-style: italic;
}
.hero-social ul{
  margin: 20px 0px 0px 0px;
  padding: 0px;
}
/*.hero-social li{
  display: inline-block;
  margin:0px 10px;
}
.hero-social li a i{
  background: #fff;
  font-size: 25px;
  width: 50px;
  height:50px;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  margin: 5px 2px;
}*/
.hero-social li a i:hover{
  color: white;
  opacity: 0.8;
}
/*.twitter-bg{
  color: #55ACEE!important;
}
.github-bg{
  color: #dd4b39!important;
}
.linkedin-bg{
    color: #007bb5!important;
}
.mail-bg{
  color: #ffbc00!important;
}*/
.transition-animation {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* Ul styles */
.hero-social ul {
  list-style: none;
}
.hero-social ul > li {
  display: inline;
  margin-right: 20px;
}
/*
* Icon styles
*
* There are styles for icon and everything which are connected with it.
*/
.hero-social .icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #f1f1f1;
  line-height: 52px;
  text-align: center;
  background-color: #ffbc00;

}
.hero-social .icon:after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  box-sizing: content-box;
}
/* Hover effect */
.hero-social .icon-effect .icon {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hero-social .icon-effect .icon:after {
  top: -7px;
  left: -7px;
  padding: 7px;
  box-shadow: 0 0 0 4px #f1f1f1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.hero-social .icon-effect-1a .icon:hover {
  background-color: #f1f1f1;
  color: #ffbc00;
}
.hero-social .icon-effect-1a .icon:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

.scroll-down {
  position: absolute;
  /*bottom: 30px;*/
  left: 50%;
  margin-left: -16px;
    margin-top: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #FFF;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
.hero-scrollDown{
  position: relative;
  margin-top: 5%
}
.hero-scrollDown p{
  color: #ffbc00;
    font-size: 16px;
    font-style: italic;
}
.scroll-down:before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid white;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.int-banner{
  min-height:350px;
  background-attachment: scroll;
  background-image: url(../img/header-bg.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  padding-top: 50px;
}

.heading-breadcrumbs{
  color: #fff;
  z-index: 9;
  width: 100%;
  position: relative;

}
.heading-breadcrumbs .postedby{
  color: #fff;
    margin: 5px 0px 0px 5px;
    font-size: 16px;
}
.heading-breadcrumbs .authortext
{
   font-size: 16px;
   margin-right: 5px;
   letter-spacing: 0.9px;
   margin: 5px 0px 0px 5px;
}
.heading-breadcrumbs h1{
  color: #f6c208;
    text-transform: uppercase;
    margin: 5px 0px;
    font-size: 56px;
}
.heading-breadcrumbs .metaText{
  color: #c8c4c4;
  font-style: italic;
  font-size: 16px;
}
.top-intbanner{
    width: 100%;
    background: #292929;
    height: 350px;
    padding-top: 70px;
    text-align: center;
}
.top-intbanner figure{
      margin: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.top-intbanner figure:before{
  width: 100%;
  height: 100%;
      background: #0505057a;
  content: '';
  top: 0;
  position: absolute;
  left: 0;
}
.top-intbanner figure img{
  max-height: 350px;
}


/* ====================
  About Section
=======================*/
.about-section{
  padding:100px 0px 100px 0px;
}

.about-text {
  padding-top: 20px;
}

.about-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-text h5 {
  font-size: 14px;
  color: #c3c3c3;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 28px;
  color: #4a4848;
  font-weight: 400;
}

.about-text p span {
  color: #ffbc00;
  font-weight: 600;
}

.about-title {
  margin-bottom: 30px;
}

.single-progress-item {
  margin-bottom: 45px;
  position: relative;
}

.single-progress-item:last-child {
  margin-bottom: 0;
}

.single-progress-item p {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 7px;
  margin-bottom: 0px;
  color: #333;
}

.progress-bar-style {
  display: block;
  height: 3px;
  position: relative;
  width: 100%;
  border-radius: 25px;
}

.bar-inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 25px;
  background: #333;
}

.bar-inner span {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 12px;
  font-weight: 600;
  color: #ffbc00;
}

/* ====================
  Service Section
=======================*/

.service i {
  font-size: 35px;
  display: block;
  margin-bottom: 20px;
  float: left;
  width: 70px;
}

.service .service-text {
  padding-left: 70px;
}

.service h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

/* ====================
  Resume Section
=======================*/

.resume-section {
  background: #f7f7f7;
}

.resume-item {
  margin-bottom: 70px;
}

.resume-item:last-child {
  margin-bottom: 0;
}

.resume-item .resume-year {
  float: left;
  width: 170px;
  position: relative;
}

.resume-item .resume-year:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 25px;
  top: 8px;
  border-radius: 20px;
  background: #ffbc00;
}

.resume-item .resume-year h2 {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.resume-item .resume-text {
  margin-left: 200px;
  padding-top: 2px;
}

.resume-item .resume-text h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
}

.resume-item .resume-text p {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ====================
  Portfolio Section
=======================*/

.portfolio-warp {
  position: relative;
}

.sp-container {
  width: 70%;
  margin-left: 15%;
  padding-left: 15px;
  padding-right: 15px;
}

.portfolio-filter {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-top: 140px;
  margin-left: -200px;
  position: absolute;
}

.portfolio-filter li {
  display: inline-block;
  margin-right: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
}

.portfolio-filter li.active {
  color: #333;
}

.work-item {
  display: block;
  margin-bottom: 30px;
  position: relative;
}

.work-item img {
  min-width: 100%;
}

.work-item:hover:after {
  opacity: .5;
  height: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.work-item:hover i {
  opacity: 1;
  -webkit-transition: all 0.3s ease .2s;
  -o-transition: all 0.3s ease .2s;
  transition: all 0.3s ease .2s;
}

.work-item:hover .work-info h3 span {
  top: 0;
  -webkit-transition: all 0.4s ease .2s;
  -o-transition: all 0.4s ease .2s;
  transition: all 0.4s ease .2s;
}

.work-item:hover .work-info p span {
  top: 0;
  -webkit-transition: all 0.4s ease .4s;
  -o-transition: all 0.4s ease .4s;
  transition: all 0.4s ease .4s;
}

.work-item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.work-item i {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: #fff;
  z-index: 4;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.work-item .work-info {
  position: absolute;
  left: 40px;
  bottom: 15px;
  z-index: 2;
}

.work-item .work-info h3 {
  color: #fff;
  overflow: hidden;
}

.work-item .work-info h3 span {
  position: relative;
  top: 50px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.work-item .work-info p {
  color: #ffbc00;
  font-size: 12px;
  text-transform: uppercase;
  overflow: hidden;
}

.work-item .work-info p span {
  position: relative;
  top: 30px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

/* ====================
  Review Section
=======================*/

.review-warp {
  max-width: 1500px;
  margin: 0 auto;
  background: #333;
}

.review-warp:hover .review-slider .owl-nav .owl-prev,
.review-warp:hover .review-slider .owl-nav .owl-next {
  margin: 0 20px;
  opacity: 1;
}

.review-slider .owl-nav {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -45px;
  text-align: center;
}

.review-slider .owl-nav .owl-prev,
.review-slider .owl-nav .owl-next {
  margin: 0 5px;
  color: #fff;
  opacity: 0;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.review-item {
  position: relative;
  z-index: 1;
}

.review-item p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 40px;
}

.review-item h4 {
  color: #fff;
  margin-bottom: 5px;
}

.review-item span {
  color: #ffbc00;
  font-size: 12px;
}

/* ====================
  Contact Section
=======================*/

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea{
  width: 100%;
  border: 2px solid #ececec!important;
  margin-bottom: 30px;
  font-size: 13px;
  padding: 10px 15px;
  height: 55px;
}
.contact-form textarea.form-control {
   border: 2px solid #ececec!important;
}

.contact-form textarea {
  height: 150px;
}

.contact-form ::-webkit-input-placeholder {
  font-style: normal;
}

.contact-form ::-ms-input-placeholder {
  font-style: normal;
}

.contact-form :-ms-input-placeholder {
  font-style: normal;
}

.contact-form ::placeholder {
  font-style: normal;
}

#send-form.done {
  background: #0fa049;
  border-color: #0fa049;
  color: #fff;
}

#send-form.error {
  background: #e20808;
  border-color: #e20808;
  color: #fff;
}

.cont-info {
  text-align: center;
  margin-bottom: 50px;
}

.cont-info i {
  display: block;
  font-size: 35px;
  margin-bottom: 15px;
}

.cont-info a,
.cont-info span {
  color: #333;
  font-size: 15px;
  font-weight: 600;
}

.cont-info a {
  text-decoration: underline;
}

.cont-info p {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ====================
  Footer Section
=======================*/

.footer-section {
      background-color: #000000;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
}

.social-links {
  margin-bottom: 25px;
}

.social-links a {
  display: inline-table;
  text-align: center;
  height: 35px;
  width: 35px;
  color: #fff;
  margin: 0 4px;
  border-radius: 50%;
  font-size: 13px;
}

.social-links a i {
  display: table-cell;
  vertical-align: middle;
}

.social-links a.facebook {
  background: #2D5DA1;
}

.social-links a.twitter {
  background: #1AB1E5;
}

.social-links a.behance {
  background: #2A71F3;
}

.social-links a.dribbble {
  background: #DF7EA5;
}

.copyright {
  color: #666;
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 20px;
}

/* ====================
  Other Pages
=======================*/



/* ====================
  Blog
=======================*/
.news-block {
  -webkit-box-shadow: 0px 2px 2px 0px rgba(222, 222, 222, 0.67);
  box-shadow: 0px 2px 2px 0px rgba(222, 222, 222, 0.67);
  border-radius: 7px;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 30px;
  border: #ffcc15 double 3px;
}
  .news-block img {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.recentPostImg{
  min-height:260px;
  max-height:260px;
  background: #ddd;
}
.recentPostImg img{
  max-height:260px!important;
  max-width:100%!important;
}
  .news-block:hover {
    -webkit-box-shadow: 0px 3px 50px 0px #dedede;
    box-shadow: 0px 3px 50px 0px #dedede;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
}
.news-block a{
  text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}
.news-block a:hover{
  color:#ffcc15;
  }
.news-title {
  padding: 20px 26px;
}
  .news-title p {
    font-size: 14px;
    color: #7c7c7c;
    margin: 0;
}
.news-title h5 {
    color: #484848;
    line-height: 1.3;
    margin: 10px 0;
    font-size: 20px;
}
.news-title h5:hover {
  color:#ffcc15;
}
.btn-wrap {
  text-align: center;
  margin: 40px 0 0;
}
.summaryHeight{
  max-height:90px;
  overflow:hidden;
}
  @media (max-width: 992px) {
    .btn-wrap {
      margin: 41px 0 0;
}
} }

.btn-simple {
  font-size: 22px;
  color: #FF4500;
  border-radius: 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
  @media (max-width: 992px) {
    .btn-simple {
      font-size: 17px;
} }
  .btn-simple:hover, .btn-simple:focus {
    color: #FF4500;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-wrap2 {
  margin: 20px 0 0;
}
  .btn-wrap2 .btn-simple {
    background-image: linear-gradient(to right, #ff4500, #ff5b00, #ff6d00, #ff7d00, #ff8c00);
    padding: 20px 36px;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
    .btn-wrap2 .btn-simple:hover {
      background: #FF4500;
}
.blogDate{
  font-weight:600;
  margin-right: 5px;
}
.blogBy{
  color: #ffcc15;
  font-weight: 600;
  margin-left: 5px;
      display: inline-block;
}


#blog-listing-big .post,
#blog-homepage .post {
  margin-bottom: 60px;
}
#blog-listing-big .post h2,
#blog-homepage .post h2,
#blog-listing-big .post h4,
#blog-homepage .post h4 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#blog-listing-big .post h2 a,
#blog-homepage .post h2 a,
#blog-listing-big .post h4 a,
#blog-homepage .post h4 a {
  color: #555555;
}
#blog-listing-big .post h2 a:hover,
#blog-homepage .post h2 a:hover,
#blog-listing-big .post h4 a:hover,
#blog-homepage .post h4 a:hover {
  color: #38a7bb;
}
#blog-listing-big .post .author-category,
#blog-homepage .post .author-category {
  color: #999999;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.08em;
}
#blog-listing-big .post .author-category a,
#blog-homepage .post .author-category a {
  font-weight: 500;
}
#blog-listing-big .post .date-comments a,
#blog-homepage .post .date-comments a {
  color: #999999;
  margin-right: 20px;
}
#blog-listing-big .post .date-comments a:hover,
#blog-homepage .post .date-comments a:hover {
  color: #38a7bb;
}
@media (min-width: 768px) {
  #blog-listing-big .post .date-comments,
  #blog-homepage .post .date-comments {
    text-align: right;
  }
}
#blog-listing-big .post .intro,
#blog-homepage .post .intro {
  text-align: left;
}
#blog-listing-big .post .image,
#blog-homepage .post .image {
  margin-bottom: 10px;
  overflow: hidden;
}
#blog-listing-big .post .image img,
#blog-homepage .post .image img {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 767px) {
  #blog-listing-big .post .image img.img-responsive,
  #blog-homepage .post .image img.img-responsive {
    min-width: 100%;
  }
}
#blog-listing-big .post .video,
#blog-homepage .post .video {
  margin-bottom: 10px;
}
#blog-listing-big .post .read-more,
#blog-homepage .post .read-more {
  text-align: right;
}
#blog-listing-medium .post {
    margin-bottom: 20px;
    padding: 10px 10px;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(222, 222, 222, 0.67);
    box-shadow: 0px 2px 2px 0px rgba(222, 222, 222, 0.67);
    border-radius: 7px;
    background: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: #ededed solid 1px;
}
#blog-listing-medium .post h2 {
  text-transform: uppercase;
  margin: 0 0 0px;
  font-size: 24px;
  letter-spacing: 0.08em;
}
#blog-listing-medium .post h2 a {
  color: #555555;
}
#blog-listing-medium .post h2 a:hover {
  color: #38a7bb;
}
#blog-listing-medium .post .author-category {
  float: left;
  color: #999999;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
}
#blog-listing-medium .post .author-category a {
  font-weight: 500;
}
#blog-listing-medium .post .author-category a:hover {
  color:#000;
}
#blog-listing-medium .post .date-comments {
  float: right;
  font-size: 12px;
}
#blog-listing-medium .post .date-comments a {
  color: #999999;
  margin-right: 20px;
  font-size: 13px;
}
#blog-listing-medium .post .date-comments a:hover {
  color: #f6c208;
}
@media (min-width: 768px) {
  #blog-listing-medium .post .date-comments {
    text-align: right;
  }
}
#blog-listing-medium .post .intro {
  text-align: left;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
}
#blog-listing-medium .post .clearfix:before,
#blog-listing-medium .post .clearfix:after,
#blog-listing-medium .post .navbar:before,
#blog-listing-medium .post .navbar:after,
#blog-listing-medium .post .navbar-header:before,
#blog-listing-medium .post .navbar-header:after {
  content: " ";
  display: table;
}
#blog-listing-medium .post .clearfix:after,
#blog-listing-medium .post .navbar:after,
#blog-listing-medium .post .navbar-header:after {
  clear: both;
}
#blog-listing-medium .post .clearfix:before,
#blog-listing-medium .post .clearfix:after,
#blog-listing-medium .post .navbar:before,
#blog-listing-medium .post .navbar:after,
#blog-listing-medium .post .navbar-header:before,
#blog-listing-medium .post .navbar-header:after {
  content: " ";
  display: table;
}
#blog-listing-medium .post .clearfix:after,
#blog-listing-medium .post .navbar:after,
#blog-listing-medium .post .navbar-header:after {
  clear: both;
}
#blog-listing-medium .post .image {
  margin-bottom: 10px;
  overflow: hidden;
  height: 100%;
    width: 100%;
    background: #f0f0f0;
}
#blog-listing-medium .post .image img {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  max-height:200px;
}
@media (max-width: 767px) {
  #blog-listing-medium .post .image img.img-responsive {
    min-width: 100%;
  }
}
#blog-listing-medium .post .video {
  margin-bottom: 10px;
}
#blog-listing-medium .post .read-more {
  text-align: right;
}
#blog-listing-medium .post .read-more a{
  border: #ffbc00 solid 2px;
    /* background: #f1f1f1; */
    color: #000;
    border-radius: 69px;
    padding: 10px 15px;
}
#blog-listing-medium .post .read-more a:hover{
  background: #000;
  color:#fff;
}
.box-image-text.blog .author-category {
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 300;
  font-size: 12px;
}
.box-image-text.blog .author-category a {
  font-weight: 500;
}
.box-image-text.blog .intro {
  text-align: left;
  margin-bottom: 20px;
}
#blog-homepage .post {
  margin-bottom: 30px;
}
#blog-homepage .post h2,
#blog-homepage .post h4,
#blog-homepage .post .author-category,
#blog-homepage .post .read-more {
  text-align: center;
}
#blog-homepage .post .read-more {
  margin-top: 20px;
}
#blog-post #post-content {
  margin-bottom: 20px;
}
#blog-post #post-content h2{
  font-size:20px;
  padding:10px 0px;
}
#blog-post .comment {
  margin-bottom: 25px;
}
#blog-post .comment:before,
#blog-post .comment:after {
  content: " ";
  display: table;
}
#blog-post .comment:after {
  clear: both;
}
#blog-post .comment:before,
#blog-post .comment:after {
  content: " ";
  display: table;
}
#blog-post .comment:after {
  clear: both;
}
#blog-post .comment .posted {
  color: #999999;
  font-size: 12px;
}
#blog-post .comment .reply {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
#blog-post .comment.last {
  margin-bottom: 0;
}
#blog-post #comments,
#blog-post #comment-form {
  padding: 20px 0;
  margin-top: 20px;
  border-top: solid 1px #eeeeee;
}
#blog-post #comments:before,
#blog-post #comment-form:before,
#blog-post #comments:after,
#blog-post #comment-form:after {
  content: " ";
  display: table;
}
#blog-post #comments:after,
#blog-post #comment-form:after {
  clear: both;
}
#blog-post #comments:before,
#blog-post #comment-form:before,
#blog-post #comments:after,
#blog-post #comment-form:after {
  content: " ";
  display: table;
}
#blog-post #comments:after,
#blog-post #comment-form:after {
  clear: both;
}
#blog-post #comments h4,
#blog-post #comment-form h4 {
  margin-bottom: 20px;
}
#blog-post #comment-form {
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
 Portfolio Css Style
----------------------------------------------------------------*/

.service-section4.over-layer-white:before {
    background-color: rgba(255, 255, 255, 0.96);
}

.service-item.style-4 {
    margin-bottom: 30px;
    border: #ffcc15 double 3px;
}

.service-item.style-4 .thumb {
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
    max-height: 250px;
    min-height: 250px;
    background: #e4e2e2;
}

.service-item.style-4 .thumb img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
    max-height:250px;
}

.service-item.style-4:hover .thumb img {
    transform: scale(1.2);
}

.service-item.style-4 .thumb .service-link-box {
    left: calc(45% - 50px);
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}

.service-item.style-4:hover .thumb .service-link-box {
    opacity: 1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
}

.service-item.style-4 .thumb .service-link-box a {
    background-color: rgba(255, 255, 255, 0.76);
    border: 3px solid #000;
    border-radius: 50px;
    box-shadow: 0 0 0 900px rgba(252, 171, 3, 0.9);
    color: #444;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 14px;
    text-transform: uppercase;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6;
    transition: all 0.6s;
}

.service-item.style-4 .thumb .service-link-box a:hover {
    background-color: #000;
    color:#fcab03;
    border: solid 3px #ffffff;
}

.service-item.style-4 .content {
    background-color:#111111;
    box-shadow: 0 4px 4px 0 rgba(111, 111, 111, 0.04);
    padding: 12px 18px 8px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6;
    transition: all 0.6s;
}

.service-item.style-4:hover .content {
    background-color: #fff;
}

.service-item.style-4 .content h3 {
    color: #fcab03;
    font-size: 22px;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    margin-top:2px;
}

.service-item.style-4 .content h4 {
    color: #eee;
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.9px;
    margin-bottom: 8px;
    position: relative;
    text-transform: capitalize;
}

.service-item.style-4:hover .content h4 {
    color: #091426;
}

.service-item.style-4 .content h4:before {
    background-color: #fcab03;
    bottom: 3px;
    content: "";
    height: 1px;
    position: absolute;
    right: -45px;
    width: 36px;
    display: none;
}

.service-item.style-4 .content p {
    margin-bottom: 16px;
}

.service-item.style-4 .content .btn-theme {
    background-color: #fcab03;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 8px 18px;
    text-transform: uppercase;
}

.service-item.style-4 .content .btn-theme:hover {
    background-color: #091426;
}

/***Service Css Style Two***/

.service-item.style-2 {
    position: relative;
    overflow: hidden;
}

.service-item.style-2.img-1 {
    position: relative;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.service-item.style-2.img-1:after,
.service-item.style-2.img-2:after  {
    left: -50%;
    position: absolute;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.service-item.style-2.img-1:after {
    content: url("../images/service/s2-1.jpg");
}

.service-item.style-2.img-2:after {
    content: url("../images/service/s2-2.jpg");
}

.service-item.style-2:hover.img-1:after,
.service-item.style-2:hover.img-2:after {
    left: 0;
}

.service-item.style-2 .content {
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 7px 0 rgba(111, 111, 111, 0);
    padding: 28px;
}

.service-item.style-2:hover .content {
    box-shadow: 0 5px 7px 0 rgba(111, 111, 111, 0.05);
    background-color: rgba(9, 20, 38, 0.9);
    border-color: #eee;
}

.service-item.style-2 .content h5 {
    color: #fcab03;
    font-size: 22px;
    letter-spacing: 0.7px;
    margin-bottom: 22px;
    padding-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.service-item.style-2 .content h5:before {
    background-color: #eee;
    bottom: 0;
    content: "";
    height: 1px;
    left: -28px;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.service-item.style-2 .content h5:after {
    background-color: #fcab03;
    bottom: 0;
    content: "";
    height: 1px;
    left: -28px;
    position: absolute;
    width: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.service-item.style-2:hover .content h5:after {
    width: 100%;
}

.service-item.style-2 .content h5 .icon {
    color: #000;
    display: inline-block;
    font-size: 42px;
    margin-right: 18px;
    position: relative;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.service-item.style-2:hover .content h5 .icon {
    color: #fcab03;
}

.service-item.style-2 .content p {
    margin-bottom: 16px;
}

.service-item.style-2 .content .btn-link {
    background-color: #fcab03;
    border: 1px solid #fcab03;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 7px 14px;
    text-transform: uppercase;
}

.service-item.style-2 .content .btn-link:hover {
    background-color: #fff;
    color: #fcab03;
}

/* ====================
  Contact
=======================*/

#contact {
    background-color:#0d0d0d;
    background-image: url(../img/map-image.png);
    background-position: center;
    background-repeat: no-repeat;
}
.contact .main {
    background: #ffffff;
    box-shadow: 1px 1px 20px 0 rgb(0, 0, 0);
}
.contact .main h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    margin-bottom: 20px;
}
.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom:20px;
    background: #f8f8f9;
    border: 0;
    border-radius: 5px;
}
.contact button.btn {
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    background-image: linear-gradient(135deg, #ffbc00 0%, #ffbc00 100%);
    color: #000000;
    font-weight: 600;
}
.contact button.btn:hover{
  background: #000;
  color:#fff;
}

.contact .main .left {
    padding: 40px 60px;
}
.contact .main .right {
   background: #000 url('../img/contact.png') center 80px no-repeat;
    background-size: cover;
    padding: 40px;
    color: #ffffff;
    height: 100%;
    /*background: #000;*/
}
.contact .main .right h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
        color: #ffcc15;
}
.contact .main .right .info {
    margin-bottom: 35px;
}
.contact .main .right .info i {
    font-size: 25px;
    color: #ffcc15;
}
.contact .main .right .info span {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    margin-left: 15px;
    letter-spacing: 1.5px;
}
.contact .main .right .info span a{
  color:#ffbc00;
}
.contact .main .right .info span a:hover{
  color:#fff;
}
.contact .main .right .info span p{
    color: #c3c2c2;
    font-size: 14px;
    line-height: 25px;
}
.contact .main .right .info span p strong{
  color: #fff;
  font-weight: 600;
}
.contact .main .right .social a {
    text-decoration: none;
    font-size: 30px;
    color: #ffffff;
    margin-right: 20px;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(255, 188, 0);
}


/* ====================
  SideBar
=======================*/

.sidebar aside{
  background-color: #f8f8f8;
  padding: 30px 20px;
  margin-bottom: 30px;
  width:100%;
  border: #e6e6e6 solid 1px;
}

.sidebar aside .title-side {
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.sidebar aside .title-side:before {
    content: '';
    position: absolute;
    bottom: 0;
    margin-top: 10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffbc00;
}
.sidebar aside ul li {
    position: relative;
    margin-bottom: 14px;
    color: #505050;
    overflow: hidden;
}
.sidebar aside ul li a {
  color: inherit;
  text-transform: capitalize;
}
.sidebar aside ul li .count {
    background-color: #ffbc00;
    float: right;
    min-width: 20px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    border-radius: 12px;
    line-height: 21px;
    font-weight: 600;
}
.sidebar aside .tags {
    position: relative;
}
.sidebar aside .tags .tagcloud a {
   border: 1px solid #ffbc00;
    font-size: 13px !important;
    color: inherit;
    display: inline-block;
    padding: 5px 12px;
    margin: 0 6px 8px 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #fff;
    line-height: 25px;
}
.sidebar aside .tags .tagcloud a:hover {
    background-color: #ffbc00;
    color: #fff;
}
.sidebar .search-form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin:0px 0px 20px 0px;
}
.sidebar .search-form-field input[type="search"] {
    padding: 18px 10px;
    color: #606060;
    border-radius: 2px 0 0 2px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    width:80%;
}
.sidebar .search-form-field .form-control{
    transition: none;
}
.sidebar .search-form-field input[type="search"]:focus{
  box-shadow:none;
}
.sidebar .search-form-field button {
      width: auto;
    padding: 10px 15px;
    background-color: #ffbc00;
    cursor: pointer;
    color: #fff;
    border-right: 0;
    border-radius: 0 2px 2px 0;
    /* font-size: 15px; */
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: none;
    border: none;
     
}

.portfolio-details, .blogContent{
  text-align:justify;
}

.portfolio-details h1, .blogContent h1{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.portfolio-details h3, .blogContent h3{
  font-size: 25px;
  margin-top: 20px;
}

.portfolio-details p, .blogContent p {
  text-align: justify;
  margin: 5px 0px 10px 0px;
  line-height: 30px;
  font-size: 15px;
}
.portfolio-details a, .portfolio-details p a, .blogContent a, .blogContent p a{
  font-weight: 600;
}
.portfolio-details figure, .blogContent figure{
  text-align: center;
  display: inline-block;
  width: 100%;
  margin: 10px 0px;
}
.portfolio-details figure img, .blogContent figure img{
  max-height:350px;
}
.portfolio-details ul, .blogContent ul{
  margin:0px;
  padding: 0px;
}
.portfolio-details li, .blogContent li{
  display: block;
  padding: 10px 30px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  position:relative;
}
.portfolio-details li:before, .blogContent li:before{
  position: absolute;
  left: 5px;
  top: 12px;
  content: "\f138";
  font: normal normal normal 16px/1 FontAwesome;
  color: #ffbc00;
}

.contentText p{
    text-align: justify;
    margin: 10px 0px;
    line-height: 25px;
    font-size: 15px;
}
.contentText a{
  font-weight: 600;
}
.contentText h2{
  margin: 5px 0px 5px 0px;
  padding: 10px 0px;
}
.contentText ul{
  margin: 0px;
  padding: 0px 0px;
}

.contentText li{
  display: block;
  padding: 10px 30px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  position:relative;
}
.contentText li:before{
  position: absolute;
  left: 5px;
  top: 12px;
  content: "\f138";
  font: normal normal normal 16px/1 FontAwesome;
  color: #ffbc00;
}

.categoriesBread{
  margin: 5px 0px;
}
.categoriesBread a{
  display:inline-block;
  color: #fff;
  text-transform:capitalize; 
}

/* ====================
  Responsive
=======================*/

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-text {
    padding-top: 0;
  }
  .about-title {
    margin-bottom: 30px;
  }
  .single-progress-item {
    margin-bottom: 35px;
  }
  .sp-container {
    width: 100%;
    margin-left: 0;
  }
  .portfolio-filter {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-top: 0;
    margin-left: 0;
    position: relative;
    padding-bottom: 25px;
  }
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    height: 900px;
  }
  .hero-content {
    padding-left: 70px;
  }
  .hero-content h2,
  .hero-section .typed-area h2 {
    font-size: 55px;
  }
  .about-text {
    padding-top: 40px;
  }
  .sp-container {
    width: 100%;
    margin-left: 0;
  }
  .portfolio-filter {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-top: 0;
    margin-left: 0;
    position: relative;
    padding-bottom: 25px;
  }
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  .responsive-switch {
    display: block;
    float: right;
    font-size: 26px;
    padding-top: 13px;
    padding-right: 12px;
    cursor: pointer;
    color: #fff;
  }
  .sm-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-align: center;
    padding-top: 9px;
    cursor: pointer;
    z-index: 9;
    opacity: 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: #ffbc00;
    color: #000;
  }
  .site-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: table;
    background: #fff;
    z-index: 999;
    opacity: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.4s ease 0.3s;
    -o-transition: all 0.4s ease 0.3s;
    transition: all 0.4s ease 0.3s;
  }
  .site-menu.active {
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .site-menu.active ul {
    top: 0;
    opacity: 1;
    -webkit-transition: all 0.3s ease 0.4s;
    -o-transition: all 0.3s ease 0.4s;
    transition: all 0.3s ease 0.4s;
  }
  .site-menu.active .sm-close {
    opacity: 1;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.3s ease 0.4s;
    -o-transition: all 0.3s ease 0.4s;
    transition: all 0.3s ease 0.4s;
  }
  .site-menu ul {
    display: table-cell;
    vertical-align: middle;
    float: none;
    text-align: center;
    position: relative;
    top: 100px;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .site-menu li {
    display: block;
  }
  .site-menu a {
    font-size: 25px;
    padding: 0px 4px;
    margin-left: 0;
    margin-bottom: 15px;
    display: inline-block;
    color: #141313;
    cursor: pointer;
  }
  .site-menu a:after {
    width: 100%;
    left: 2px;
    bottom: 6px;
    margin-left: -3px;
    z-index: -1;
  }
  .header-warp img{
      width: 30%;
  }
  .hero-section {
    height: 100%;
  }
  .hero-content {
    position: absolute;
    padding-left: 50px;
    bottom: 20px;
  }
  .hero-content h2,
  .hero-section .typed-area h2 {
    font-size: 45px;
  }
  .hero-content i {
    font-size: 60px;
  }

  .about-text {
    padding-top: 30px;
  }
  .about-title {
    margin-bottom: 35px;
  }
  .resume-item .resume-year {
    float: none;
    width: auto;
    display: inline-block;
    padding-bottom: 20px;
  }
  .resume-item .resume-year:after {
    left: auto;
    top: auto;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 23px;
  }
  .resume-item .resume-text {
    margin-left: 0;
  }
  .sp-container {
    width: 80%;
    margin-left: 10%;
  }
  .portfolio-filter {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    margin-top: 0;
    margin-left: 0;
    position: relative;
    padding-bottom: 25px;
  }
  .portfolio-details {
    padding-top: 200px;
  }
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
  .header-warp {
    height: 55px;
    padding-top: 5px;
  }
  .header-warp img {
    width: 50%;
}
  .responsive-switch {
    padding-top: 4px;
  }
  .hero-content {
    padding-left: 30px;
  }
  .hero-content h2,
  .hero-section .typed-area h2 {
    font-size: 26px;
  }
  .hero-content i {
    font-size: 40px;
  }
  .hero-section.hero-style-three .shap-image img {
    top: 1px;
  }
  .about-text h2 {
    font-size: 33px;
  }
  .resume-item .resume-text h3 {
    font-size: 18px;
  }
  .sp-container {
    width: 100%;
    margin-left: 0;
  }
  .work-item .work-info h3 {
    font-size: 22px;
  }
  .portfolio-details {
    padding-top: 130px;
  }
  .portfolio-details h2 {
    font-size: 30px;
  }
  .work-item .work-info {
    left: 30px;
  }
}