/*-----------------------------------
[Table of Contents]
1. Base
2. Button
3. Animation
4. Navigation
5. Header
6. Section title
7. Member
8. Socials
9. Testimonials
10. Contact
11. Icon-text and service
12. Gallery
13. Post
14. Post comments
15. Slide
16. Form
17. Studio images
18. Footer

--------------*/
/* base */
.spacing {
  height: 20px; }

.two.spacing {
  height: 40px; }

.three.spacing {
  height: 60px; }

.four.spacing {
  height: 80px; }

.full {
  padding: 80px 0;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  /* for work section and member section*/ }

.full.light {
  color: #fff; }

.full.dark {
  background: #222; }

.full.red {
  background: #ec523d; }

.full.bg-1 {
  background-image: url(../images/@stock/bg-1.jpg); }

.full.bg-2 {
  background-image: url(../images/@stock/bg-2.jpg); }

.full.bg-3 {
  background-image: url(../images/@stock/bg-3.jpg); }

.full.bg-4 {
  background-image: url(../images/@stock/bg-4.jpg); }

.full.bg-5 {
  background-image: url(../images/@stock/bg-5.jpg); }

.single {
  overflow: auto;
  width: 100%;
  height: 100%; }

.no-padding {
  padding: 0; }

.no-overflow {
  overflow: hidden; }

.parallax {
  background-attachment: fixed; }

.centered-text {
  text-align: center; }

.right-aligned {
  text-align: right; }

.hide {
  display: none; }

a {
  outline: none;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s; }

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 2px;
  margin-bottom: 20px;
  margin-top: 0; }

h1.white, h2.white, h3.white, h4.white, h5.white, h6.white {
  color: #fff; }

h2.title::after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  margin: 20px auto 40px; }

/* button */
.button {
  letter-spacing: 1px; }

.button.boxed.white {
  border: 1px solid #fff;
  background: none;
  color: #fff; }

.button.boxed.white:hover {
  background: #fff;
  color: #333; }

.button.boxed.black {
  border: 1px solid #333;
  background: none;
  color: #333; }

.button.boxed.black:hover {
  background: #333;
  color: #fff; }

.button.boxed.red {
  border: 1px solid #ec523d;
  background: none;
  color: #ec523d; }

.button.boxed.red:hover {
  background: #ec523d;
  color: #fff; }

/* appear animation */
.moveup {
  opacity: 0;
  -webkit-transform: translate(0, 200px);
  -moz-transform: translate(0, 200px);
  -ms-transform: translate(0, 200px);
  -o-transform: translate(0, 200px);
  transform: translate(0, 200px);
  -webkit-transition-property: opacity transform;
  -moz-transition-property: opacity transform;
  transition-property: opacity transform;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s; }

.appear.moveup {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.fadeinleft {
  -webkit-transform: translateX(-80px);
  -moz-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  -o-transform: translateX(-80px);
  transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: all, 1s, linear;
  -moz-transition: all, 1s, linear;
  transition: all, 1s, linear; }

.fadeinleft.appear {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1; }

.fadeinright {
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
  opacity: 0;
  -webkit-transition: all, 1s, linear;
  -moz-transition: all, 1s, linear;
  transition: all, 1s, linear; }

.fadeinright.appear {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  z-index: 99;
  padding-top: 10px; }

.top-bar {
  height: 60px; }

header {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #000;
  position: fixed;
  top: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

header ul {
  list-style: none;
  font-size: 48px;
  margin: 0; }
  header ul a {
    color: #fff; }
  header ul a:hover {
    color: #ec523d; }

header.on {
  opacity: 1;
  visibility: visible; }

.menu-toggler {
  margin-right: 30px; }
  .menu-toggler a {
    color: #ddd; }
  .menu-toggler a:hover {
    color: #fff; }

.top-shift {
  margin-top: -60px; }

/* header */
.header {
  background-image: url(../images/top-img.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: static; }

.header-content {
  padding-top: 200px; }
  .header-content h1 {
    margin: 80px auto 0;
    font-weight: bold; }
  .header-content h1::after {
    content: "";
    display: block;
    height: 2px;
    width: 60px;
    background: #fff;
    margin: 90px auto 160px; }
  .header-content .anchor {
    width: 750px;
    height: 375px;
    margin: 0 auto;
    overflow: visible;
    overflow: hidden; }
  .header-content .anchor img {
    position: relative;
    max-width: 1000px;
    width: 678px;
    top: -100px;
    left: -203px; }

/* introduction */
.intro {
  background-image: url(../images/@stock/intro-1.jpg);
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: cover; }

.intro-content {
  padding: 100px 0 50px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff; }
  .intro-content h2 {
    color: #fff; }
  .intro-content span.line {
    content: "";
    height: 2px;
    width: 30px;
    background: #ec523d;
    display: inline-block;
    margin: 6px 0 35px; }

.right-section {
  margin-left: 50%;
  padding: 100px 15% 80px 90px; }

#about {
  margin-left: 80px; }

.special-title {
  float: left;
  width: 80px; }

/* member */
.member {
  text-align: center;
  width: 220px;
  margin: 0 auto 30px;
  position: relative; }

.member img, .hire {
  width: 220px;
  height: 220px;
  display: block;
  margin-bottom: 30px;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: url(../paths.svg#member); }

.hire {
  background: rgba(255, 255, 255, 0.8); }
  .hire h3 {
    padding-top: 30%; }
    .hire h3 a {
      color: #333; }

.member img.colored {
  display: none;
  position: absolute;
  top: 0; }

.member:hover img.colored {
  display: block; }

.member h4 {
  margin-bottom: 4px; }

.member p.position {
  margin-bottom: 10px; }

/*socials*/
ul.socials {
  list-style: none;
  margin: 0; }
  ul.socials li {
    display: inline-block;
    padding: 0 5px; }
    ul.socials li a {
      color: #333; }
    ul.socials li a:hover {
      color: #fff; }

/* testimonials */
.item {
  margin-bottom: 80px; }

.quote, .author {
  padding: 80px 80px 50px; }

.quote {
  margin: 0;
  background: rgba(0, 0, 0, 0.1);
  position: relative; }
  .quote p {
    font-size: 24px; }
  .quote i {
    font-size: 48px;
    float: left;
    position: absolute;
    top: 40px;
    left: 40px;
    color: white; }

.quote::after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  border: 20px solid rgba(0, 0, 0, 0.1);
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  right: 50%;
  margin-right: -20px;
  bottom: -40px; }

.quote.reverse {
  margin-top: 40px; }

.quote.reverse::after {
  top: -40px;
  border: 20px solid rgba(0, 0, 0, 0.1);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  top: -40px; }

.author {
  padding: 40px 20px 0;
  color: #333; }
  .author p {
    margin-bottom: 0;
    font-size: 14px; }
  .author p.author-avatar {
    margin-bottom: 25px; }
  .author p.author-name {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase; }

/* contact */
#contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 95%;
  overflow: auto;
  padding-top: 40px; }
  #contact .handle {
    width: 110px;
    height: 40px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: absolute;
    background: #333;
    top: 0;
    left: 50%;
    margin-left: -55px; }
  #contact h2 {
    color: #fff;
    padding: 10px 0;
    margin: 0;
    font-size: 14px;
    letter-spacing: 4px; }
    #contact h2 a {
      color: #fff; }
    #contact h2 a:hover {
      color: #ec523d; }
  #contact .contact-info {
    background: #333; }

.contact-details {
  margin-bottom: 40px; }
  .contact-details h3 {
    line-height: 30px; }
  .contact-details i {
    font-size: 24px;
    line-height: 30px;
    float: left;
    margin-right: 20px;
    color: #ec523d; }

/* Icon-text and service */
.services {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: none;
  border-bottom: none;
  overflow: hidden; }
  .services .columns {
    padding: 0; }

.icon-text {
  padding: 80px 60px;
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  text-align: center;
  display: block;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .icon-text h3 {
    color: #333;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s; }
  .icon-text i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 80px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-bottom: 30px; }

.icon-text::after {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 0;
  border: 1px solid #eee;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 0; }

.icon-text:hover {
  background: transparent;
  color: #333; }
  .icon-text:hover h3 {
    color: #fff; }
  .icon-text:hover i {
    color: #fff; }

.icon-text:hover::after {
  opacity: 1; }

/* gallery */
#works {
  margin: 0;
  padding: 0;
  background: #444; }
  #works li {
    list-style: none;
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  #works li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2); }
  #works li:hover {
    background-color: transparent; }
  #works a h2 {
    font-size: 60px;
    line-height: 72px;
    font-weight: bold;
    color: #999;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5;
    -moz-transition-duration: 0.5;
    transition-duration: 0.5; }
  #works a p {
    color: #fff; }
  #works a {
    padding: 150px;
    display: block; }
  #works a:hover h2 {
    color: #ec523d; }

#work-image {
  background-position: 50% 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: 0.5;
  -moz-transition-duration: 0.5;
  transition-duration: 0.5; }

@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(1); }
  to {
    -webkit-transform: scale(1.1); } }
@-moz-keyframes scale {
  from {
    -moz-transform: scale(1); }
  to {
    -moz-transform: scale(1.1); } }
@keyframes scale {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  to {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); } }
#work-image.scale {
  -webkit-animation-name: scale;
  -moz-animation-name: scale;
  animation-name: scale;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.work {
  height: 900px;
  background-position: 50% 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover; }
  .work .work-title {
    position: relative;
    top: 40%; }
    .work .work-title h2 {
      color: #ec523d; }

#work-6 {
  background-image: url(../images/@stock/work-6.jpg); }
  #work-1 {
  background-image: url(../images/@stock/work-1.jpg); }
  #work-2 {
  background-image: url(../images/@stock/work-2.jpg); }
  #work-3 {
  background-image: url(../images/@stock/work-3.jpg); }
  #work-4 {
  background-image: url(../images/@stock/work-4.jpg); }
  #work-5 {
  background-image: url(../images/@stock/work-5.jpg); }
  #work-7 {
  background-image: url(../images/@stock/work-7.jpg); }
  #work-8 {
  background-image: url(../images/@stock/work-8.jpg); }
  #work-9 {
  background-image: url(../images/@stock/work-9.jpg); }

.process ul {
  list-style: none;
  font-size: 20px;
  margin: 0; }
  .process ul span {
    padding: 10px; }

.nav-wrapper {
  margin-top: 40px;
  height: 50px; }
  .nav-wrapper .nav {
    float: right;
    list-style: none;
    margin: 0; }
    .nav-wrapper .nav li {
      display: inline-block; }

/* post */
.sticky.post.fixed {
  position: relative; }

.sticky.post {
  border: none;
  padding: 0; }
  .sticky.post p.info {
    color: #fff; }
    .sticky.post p.info a {
      color: #ec523d; }
  .sticky.post h2 {
    font-size: 60px; }

.sticky.post:hover {
  background: none; }

.post {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 80px 0 40px;
  background-position: 50% 40%;
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s; }
  .post h2 {
    line-height: 60px;
    font-size: 48px; }
  .post a {
    color: #fff; }
  .post a:hover {
    color: #fff;
    opacity: 0.7; }
  .post p.info {
    font-size: 14px; }
  .post .button:hover {
    opacity: 1; }

.post:hover {
  background: url(../images/@stock/work-1.jpg);
  background-position: 50% 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover; }

.post.single {
  border: none; }
  .post.single h2 {
    line-height: 60px;
    font-size: 60px; }
  .post.single h3, .post.single h4, .post.single h5, .post.single h6, .post.single p, .post.single ul, .post.single blackquote {
    margin-bottom: 30px; }
  .post.single ul, .post.single blockquote {
    padding-left: 20px; }
  .post.single blockquote {
    font-style: italic; }
  .post.single .tags {
    color: #333;
    padding-top: 40px; }
    .post.single .tags span {
      float: left;
      margin-right: 5px; }
    .post.single .tags ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .post.single .tags ul li {
        display: inline;
        padding: 0; }

.post.single:hover {
  background: none; }

/* post comments */
.comments-wrapper ul.comments li {
  border-bottom: 1px solid #333;
  padding: 20px 0 0;
  list-style: none; }

.comments-wrapper ul.comments .meta .avatar {
  float: left;
  padding: 5px 10px 0 0; }

.comments-wrapper ul.comments .meta .name {
  display: block; }

.comments-wrapper ul.comments .meta .datetime {
  font-size: 0.875rem;
  color: #999; }

.comments-wrapper ul.comments ul.children li {
  border-bottom: none;
  border-top: 1px solid #333; }

/* slide */
.slides {
  border: 10px solid rgba(0, 0, 0, 0.4); }

.slide img {
  width: 100%; }

.slick-dots {
  bottom: 0 !important; }
  .slick-dots li button:before {
    font-size: 30px !important; }

li button:before {
  font-size: 20px !important; }

/* form */
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea {
  padding: 15px;
  height: 3rem;
  margin-bottom: 1.875rem; }

form input[type="text"], form input[type="password"], form input[type="date"], form input[type="datetime"], form input[type="datetime-local"], form input[type="month"], form input[type="week"], form input[type="email"], form input[type="number"], form input[type="search"], form input[type="tel"], form input[type="time"], form input[type="url"], form textarea {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff; }

input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="color"]:focus, textarea:focus {
  background: none;
  border: 1px solid #fff; }

form textarea {
  height: 200px; }

/* studio images */
.studio-images img {
  width: 100%; }

/* footer */
.footer ul {
  list-style: none;
  margin: 0; }
.footer a {
  color: #333; }
.footer a:hover {
  color: #fff; }
.footer .socials i {
  font-size: 20px; }



.bg-white{
  background-color: rgba(255,255,255,0.9);
}

.col-01{
  width: 50%;
  float: left;
}
.padding25{
      padding-top: 35%;
}
.uppercase{
  text-transform: uppercase;
}
.text-center{
  text-align: center;
}
.color-orange{
  color: #ec523d;
}
.font50{
      font-size: 87px;
  font-weight: bolder;
  line-height: 0.6;
}
.king{
  margin-top: -39px;
    font-size: 40px;
    letter-spacing: 10px;
        font-family: Lato, "Helvetica neue", Helvetica;
}

@media (max-width: 550px){
.col-01{
  width: 100%;
  float: none;
}

.padding25 {
    padding-top: 0%;
    padding-bottom: 20px;
}

.font50 {
    font-size: 70px;
    
}
.king {
    margin-top: -31px;
    font-size: 28px;
    letter-spacing: 7px;
    font-family: Lato, "Helvetica neue", Helvetica;
    text-transform: uppercase;
}


#works a {
    padding: 100px 0px !important;
}
#works a h2 {
    font-size: 37px !important;
    line-height: 56px;
}
.work-title  h2 {
    font-size: 37px !important;
    line-height: 56px;
}
}

@media(min-width: 551px) and (max-width: 768px){

  .padding25 {
    padding-top: 17%;
}

.font50 {
    font-size: 72px;
    font-weight: bolder;
    line-height: 0.6;
}

.king {
    margin-top: -25px;
    font-size: 29px;
    letter-spacing: 8px;
    font-family: Lato, "Helvetica neue", Helvetica;
    text-transform: uppercase;
}


}
.clr{
  clear: both;
}
.color-black{
  color: black;
}