/*-----------------------------------------------------------------------------------

 Theme Name: Robertson
 Theme URI: http://
 Description: Portfolio / Resume Onepage Template
 Author: Uddog
 Author URI: http://themeforest.net/user/uddog
 Version: 1.0

 Main Color   : #000000
 main Font    : Roboto

-----------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------

 == Table Of Content

	01 Basics
	02 Navbar
	03 Header
	04 Hero
	05 Testimonials
	06 Services
	07 Resume
	08 Works
	09 Price
	10 Blog
	11 Contact
	12 Footer
 

---------------------------------------------------------------- */
/* ----------------------------------------------------------------
     [ 01 Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  color: #000;
  line-height: 1.3;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden !important;
}

p {
  font-size: 16px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.3;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 30px;
}
.section-head h3 {
  font-size: 65px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bg-gray {
  background: #f7f7f7;
}

.o-hidden {
  overflow: hidden;
}

.position-re {
  position: relative;
}

.full-width {
  width: 100% !important;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
  line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 7px;
  border-radius: 50%;  
  background: #000;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #FFF;
  box-shadow: -1px 1px 5px 0px;
}

.cd-headline {
  font-size: 26;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 36px;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 52px;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 70%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
}

/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 02 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9;
  min-height: 80px;
}
.navbar .icon-bar {
  color: #fff;
}
.navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #eee;
  letter-spacing: .5px;
  margin: 15px 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: relative;
}
.navbar .navbar-nav .nav-link:after {
  content: '';
  width: 30px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -5px;
  opacity: 0;
  left: calc(50% - 15px);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navbar .navbar-nav .active:after {
  bottom: 0px;
  opacity: 1;
}

.nav-scroll {
  background: #000000;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.nav-scroll .icon-bar {
  color: #FFFFFF;
}
.nav-scroll .navbar-nav .nav-link {
  color: #FFFFFF;
}
.nav-scroll .navbar-nav .nav-link:after {
  background: #FFFFFF;
}
.nav-scroll .navbar-nav .logo {
  padding: 15px 0;
  color: #111;
}

.logo {
  padding: 15px 0;
  width: 70px;
  color: #fff;
  font-size: 20px;
}

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 03 Start Header ]
-----------------------------------------------------------------*/
.header {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.header .caption h6 {
  font-size: 20px;
  letter-spacing: 2px;
}
.header .caption h1 {
  margin: 10px 0;
  font-size: 72px;
  font-weight: 500;
  font-family: inherit;
  word-spacing: 2px;
  letter-spacing: 2px;
}
.header .caption p {
  font-size: 15px;
  font-weight: 300;
  color: #eee;
  letter-spacing: 1px;
  word-spacing: 2px;
}
.header .caption .social a {
  color: #fff;
  font-size: 12px;
  margin: 0 10px;
}
.header .caption .butn {
  color: #000000;
  background-color: #ffffff;
  padding: 12px 40px;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-right: 20px;
}
.header .caption .butn:hover {
  background: #eee;
  color: #111;
}
.header #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.header .bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}
.header.creative .svg {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header.creative .svg svg {
  fill: #fff;
  width: 101%;
}

/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 04 Start Hero ]
-----------------------------------------------------------------*/
.hero {
  position: relative;
}
.hero .hero-img {
  position: relative;
}
.hero .hero-img:after {
  content: '';
  width: 90%;
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: 0;
  background-image: url(../image/dots.png);
  background-repeat: repeat;
  z-index: -1;
}
.hero .hero-img .img {
  padding: 0 0 0 5px;
  position: relative;
}

.hero .hero-img .img img {
  position: relative;
  z-index: 2;
}
.hero .content h3 {
  font-weight: 600;
}
.hero .content span {
  margin: 10px 0 15px;
  color: #555;
  font-size: 18px;
  font-weight: 500;
}
.hero .content p {
  letter-spacing: -0.55px;
}
.hero .content .butn {
  padding: 12px 40px;
  border: 1px solid #111;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.hero .content .butn:hover {
  background: #fff;
  color: #111;
}
.hero .wave {
  position: absolute;
  top: -100px;
  left: -5%;
  width: 110%;
  height: 100px;
  background-image: url(https://dssbd.net/theme/demo/html/robertson/template/img/wave.svg);
  background-size: cover;
  z-index: 1;
}
.skills {
  margin-top:20px;
}
.skills .skill-item {
  margin-bottom: 20px;
}
.skills .skill-item:last-child {
  margin-bottom: 0;
}
.skills .skill-item h6 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
}
.skills .skill-progress {
  width: 100%;
  height: 16px;
  background: #f7f7f7;
  border-radius: 20px;
  position: relative;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.08) inset;
}
.skills .skill-progress .progres {
  position: absolute;
  height: 100%;
  width: 10%;
  left: 0;
  top: 0;
  background: #111;
  background: -webkit-gradient(linear, left top, right top, from(#555), to(#111));
  background: linear-gradient(to right, #555, #111);
  border-radius: 20px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}


/* ----------------------------------------------------------------
     [ End Hero ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 05 Start Testimonials ]
-----------------------------------------------------------------*/
.testimonials {
  background-color: #aaabaa;
}
.testimonials .aligment {
  margin: auto;
}
.testimonials.minimal .item p {
  color: #8a8a8a;
}
.testimonials .testimonial-img {
  width: 90px!important;
  height: auto!important;
  margin: auto;
  border: 4px solid #000000;
  border-radius: 100%;
  margin-bottom: 20px;
}
.testimonials .icon {
  font-size: 50px;
  margin-bottom: 30px;
}
.testimonials .item p {
  font-size: 16px;
  font-family: inherit;
  color: #050505;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.testimonials .item h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.testimonials .item h5 {
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 15px;
}

/* ----------------------------------------------------------------
     [ End Testimonials ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 06 Start Services ]
-----------------------------------------------------------------*/
.services .item {
  padding: 45px;
  background: #a09e9d;
  -webkit-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
}
.services .item:hover {
 box-shadow: -1px 1px 2px 0px rgb(0 0 0 / 58%);
}
.services .item .service-img {
  width: 115px;
  height: 115px;
  background-color: #ffffff;
  margin: auto;
  display: flex;
  border-radius: 100%;
  justify-content: center;
  margin-bottom: 25px;

}
.services .item .service-img img.icon-img {
 width: 55%;
 margin: auto;
}

.services .item h6 {
  font-size: 22px;
  margin-bottom: 15px;
}

.services .item p {
  font-size: 18px;
  color: #FFFFFF;
}

/* ----------------------------------------------------------------
     [ End Services ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 07 Start Resume ]
-----------------------------------------------------------------*/
.resume-sec {
  background-color: #aaabaa;
}

.resume .education-img {
  max-width: 80px;
  margin: auto;
  margin-bottom: 30px;
}

.single-experience {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.single-experience h5 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000000;
}

.single-experience h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
}

.single-experience span {
    float: right;
    margin-top: -42px;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
}
/* ----------------------------------------------------------------
     [ End Resume ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 08 Start Works ]
-----------------------------------------------------------------*/
.works .filtering span {
  margin: 5px;
  padding: 8px 25px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #a09e9d;
}
.works .filtering .active {
  background: #a09e9d;
  -webkit-box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.works .item-img {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}
.works .item-img:hover .item-img-overlay {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
  -webkit-transition: opacity 0s, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0s, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0s;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0s, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.works .item-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255 255 255 / 65%);
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  text-align: left;
  padding-left: 5%;
}
.works .item-img-overlay h6{
  font-weight: 600;
}
.works .item-img-overlay .icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f7f7f7;
  margin: 15px 5px 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.works .item-img-overlay .icon:hover {
  background: #111;
  color: #fff;
}
.works .item-img-overlay .icon:before {
  line-height: 2;
}

/* ----------------------------------------------------------------
     [ End Works ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 09 Start Price ]
-----------------------------------------------------------------*/
.price-sec {
  background-color: #aaabaa;
}

.price {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.price:hover {
  box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .price-header {
  color: #000000;
  font-size: 20px;
}

.price li {
  border-bottom: 1px solid #000000;
  padding: 20px;
  text-align: center;
}

.price .grey {
  background-color: #eee;
  font-size: 20px;
}
.price li span {
  background-color: #FFFFFF;
  font-size: 25px;
  padding: 10px 25px;
  border-radius: 12px;
}
.price li span small {
  font-size: 60%;
}
.price li:last-child {
  border-bottom: none;
}

.price li:nth-child(1) {
  border-bottom: none;
}

.button {
  background-color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}

/* ----------------------------------------------------------------
     [ End Price ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 10 Start Blog ]
-----------------------------------------------------------------*/
.blog .item {
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.blog .item.blog-item {
  border: 4px solid #000000;
}
.blog .item .post-img .img {
  overflow: hidden;
}
.blog .item .post-img:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.blog .item .post-img img {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.blog .item .cont {
  padding: 30px;
}
.blog .item .cont h5 {
  font-size: 20px;
  font-weight: 600;
}
.blog .item .cont .creator p{
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.blog .item .info {
  margin-bottom: 10px;
  text-align: center;
}
.blog .item .info a {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 5px;
}
.blog .item .info a:after {
  content: '/';
  position: relative;
  margin-left: 2px;
}
.blog .item .info a:last-child:after {
  display: none;
}
.blog .item h5 {
  line-height: 2;
  margin-bottom: 8px;
}

.min-header {
  height: 40vh;
  background: #1c1c1c;
  position: relative;
}
.min-header h5 {
  font-weight: 600;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 15px;
}
.blog .item .blog-btn {
  text-align: center;
}
.blog .item a.butn{
  padding: 8px 20px;
  border: 1px solid #111;
  border-radius: 12px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.min-header a {
  position: relative;
  color: #ddd;
}
.min-header a:after {
  content: '/';
  position: relative;
  margin: 0 10px;
}
.min-header a:last-child:after {
  display: none;
}

.blogs .posts .post {
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.blogs .posts .post .content {
  padding: 50px 15px;
  background: #fff;
}
.blogs .posts .post .content .post-title h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.blogs .posts .post .content .meta {
  margin-bottom: 20px;
}
.blogs .posts .post .content .meta li {
  display: inline-block;
  font-size: 12px;
  color: #777;
  margin: 5px;
}
.blogs .posts .post .content p {
  font-weight: 300;
}
.blogs .posts .post .content .spical {
  padding: 15px;
  margin: 30px 0;
  border-left: 2px solid #111;
  background: #f7f7f7;
  font-size: 16px;
}
.blogs .posts .post .content .butn {
  display: inline-block;
  margin-top: 30px;
  padding: 8px 30px;
  border: 2px solid #ddd;
  font-weight: 500;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.blogs .posts .post .content .butn:hover {
  background: #1c1c1c;
  border-color: #1c1c1c;
  color: #fff;
}
.blogs .posts .post .share-post {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #eee;
  text-align: left;
}
.blogs .posts .post .share-post span {
  font-weight: 600;
}
.blogs .posts .post .share-post ul {
  float: right;
}
.blogs .posts .post .share-post ul li {
  display: inline-block;
  margin: 0 10px;
}
.blogs .posts .title-g h3 {
  font-weight: 600;
  font-size: 25px;
}
.blogs .posts .comments-area .comment-box {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.blogs .posts .comments-area .comment-box:nth-child(odd) {
  margin-left: 80px;
}
.blogs .posts .comments-area .comment-box:last-child {
  margin-bottom: 0;
}
.blogs .posts .comments-area .comment-box .author-thumb {
  width: 80px;
  float: left;
}
.blogs .posts .comments-area .comment-box .comment-info {
  margin-left: 100px;
}
.blogs .posts .comments-area .comment-box .comment-info h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.blogs .posts .comments-area .comment-box .comment-info .reply {
  margin-top: 10px;
  font-weight: 500;
}
.blogs .posts .comments-area .comment-box .comment-info .reply i {
  padding-right: 5px;
  font-size: 12px;
}
.blogs .posts .comment-form .form input[type='text'],
.blogs .posts .comment-form .form input[type='email'],
.blogs .posts .comment-form .form textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  background: #f4f4f4;
}
.blogs .posts .comment-form .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}
.blogs .posts .comment-form .form .butn {
  padding: 10px 40px;
  width: 100%;
  background-color: #222;
  color: #fff;
  border-radius: 5px;
  border: 0;
}
.blogs .posts .pagination {
  display: block;
  text-align: center;
}
.blogs .posts .pagination li {
  display: inline-block;
  padding: 5px 10px;
  margin: 2px;
  border: 1px solid #ddd;
}
.blogs .side-bar .widget {
  margin-bottom: 50px;
}
.blogs .side-bar .widget:last-child {
  margin-bottom: 0;
}
.blogs .side-bar .widget .widget-title {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.blogs .side-bar .widget .widget-title h6 {
  position: relative;
  padding-bottom: 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blogs .side-bar .widget .widget-title h6:after {
  content: '';
  width: 30px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.blogs .side-bar .widget li {
  margin-bottom: 10px;
  color: #777;
}
.blogs .side-bar .widget li:last-child {
  margin: 0;
}
.blogs .side-bar .search form input {
  width: calc(100% - 52px);
  height: 50px;
  padding: 0 10px;
  border: 0;
  background: #f7f7f7;
}
.blogs .side-bar .search form button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #1c1c1c;
  color: #fff;
  border: 0;
  float: right;
}

/* ----------------------------------------------------------------
     [ End Blog ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 11 Start Contact ]
-----------------------------------------------------------------*/
.contact-sec {
  background-color: #aaabaa;
}
.contact .form input, .contact .form textarea {
  width: 100%;
  padding: 15px 15px;
  background: #fafafa;
  border: 0;
  border-radius: 12px;
  margin-bottom: 10px;
}
.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}
.contact .form button {
  font-size: 15px;
  font-weight: 400;
  padding: 10px 35px 7px 35px;
  color: #000;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-top: 15px;
  cursor: pointer;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.contact .form button:hover {
  color: #FFFFFF;
  background: transparent;
}
.contact .social {
  margin-bottom: 20px;
  padding-left: 50px;
}
.contact .info-content {
  vertical-align: middle;
  margin: auto;
}
.contact .social a {
  font-size: 14px;
    padding: 4px 8px;
    color: #000000;
    border: 1px solid;
}
.contact .contact-info {
  border-left: 4px solid;
  padding-left: 10px;
  margin-left: 38px;
}
.contact .contact-info p {
  color: #000000;
  margin-bottom: 10px;
}
.contact .contact-info p img {
  width: 24px;
  margin-right: 5px;
}

/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 12 Start Footer ]
-----------------------------------------------------------------*/
footer .item {
  text-align: center;
  margin-bottom: 40px;
}
footer .item .icon {
  color: #999;
  font-size: 30px;
  margin-bottom: 15px;
}
footer .item h6 {
  font-size: 16px;
  margin-bottom: 10px;
}
footer .item p {
  font-weight: 400;
  letter-spacing: 1px;
}
footer .sub-footer {
  background: #444;
  padding: 40px 0;
}
footer .footer-logo {
  max-width: 100px;
  margin: auto;
  margin-bottom: 20px;
}
footer .social a {
  font-size: 14px;
  margin: 0 10px;
  color: #eee;
}
footer .copy p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
     [ End Footer ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 13 Responsive ]
-----------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .mb-md50 {
    margin-bottom: 50px;
  }

  .mb-md30 {
    margin-bottom: 30px;
  }

  .mb-md0 {
    margin-bottom: 0;
  }

  .bgimg-height {
    height: 400px;
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }

  .navbar {
    padding-left: 15px;
  }
  .navbar .navbar-collapse {
    max-height: 340px;
    overflow: auto;
    background: #111;
    text-align: center;
    padding: 10px 0;
  }
  .navbar .nav-link {
    margin: 10px auto !important;
  }
  .navbar .nav-scroll .navbar-collapse .nav-link {
    color: #fff !important;
  }
  .navbar .nav-scroll .navbar-collapse .nav-link:after {
    background: #fff;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }
  .header .caption h1 {
    font-size: 45px;
  }

  .hero .hero-img:after {
    display: none;
  }

  .hero .content {
    padding-left: 0;
  }
  
  .hero .hero-img {
    display: none;
  }

  .contact .info-content {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mb-sm50 {
    margin-bottom: 50px;
  }

  .mb-sm30 {
    margin-bottom: 30px;
  }

  .header .caption h1 {
    font-size: 35px;
  }
  .header .caption p {
    font-size: 12px;
  }

  .portfolio .filtering span {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .section-head h3 {
    font-size: 40px;
  }
}

/*# sourceMappingURL=style.css.map */
