/*
Author: Iconic-Graphics
Author URL: http://iconicgraphics.com
*/

/*------------------------------------------------------------------
[Table of content CSS]


1. Page Loader / #loader_wrapper
2. Header / .v1-header
3. One Page Nav / #primary
4. Agency Menu / .cd-nav-trigger
5. Button Style / .button-arrow
6. Theme Image Border / .template-border
7. Classic Banner / .homebanner-styling
8. Agency Banner / .v2-banner
9. Feature Page Banner / .feature-banner
10. About Banner / .about-banner
11. Home Testimonial / .testimonials
12. Testimonials Page / .testimonials-1
13. Portfolio Filter / #filters
14. Portfolio / #portfolio
15. Team Home / #team
16. Blog Home Page / #blog
17. Blog Page / #blog-page-header-section
18. Blog Page 2 /  #blog-page-v2
19. Blog Page 3 / .custom-columns-3
20. Tab Section Agency / #tab-section
21. Testimonial Agency / #testimonials-v2
22. Number Stats Agency / #number-stats
23. About Page / #discover
24. Blog SIngle Page / .blog-single-banner
25. Pricing 1  / #pricing
26. Pricing 2 / #pricing.v2-table
27. Included / #included
28. Number Stats Agency / #number-stats
29. About Page / #discover
30. Blog SIngle Page / .blog-single-banner
31. Pricing 1  / #pricing
32. Pricing 2 / #pricing.v2-table
33. Included / #included
34. Faq 1 / .faq-banner
35. Faq 2 / #faq .panel-group .panel
36. Error Page / .errorpage-box
37. Coming Soon / .coming-soon-banner
38. Contact Page / .contact-banner
39. Home Dark Version / #dark-version
-------------------------------------------------------------------*/

/*Meine eignenen Styles: */



@media(max-width: 980px){
 .packing-nav-responsive{
    display: none;
}   
}


.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
    
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
    
}



/*-----------------------------------------*/


body {
    font-family: 'Montserrat', sans-serif;
}
p {
    font-family: "Lato", sans-serif;
    color: #898680;
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
}
h2 {
    font-size: 42px;
    font-weight: bolder;
    color: #21201e;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
section h2:after {
    content: "";
    background-color: #fdb511;
    height: 2px;
    position: absolute;
    width: 56px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 70px;
}
h3 {
    color: #21201e;
    font-size: 18px;
    margin: 30px 0;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}
h4 {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    color: #fdb511;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-transform: uppercase;
}
h5 {
    text-align: center;
    margin: 50px auto;
    width: 56%;
    color: #21201e;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
}
a {
    text-decoration: none !important;
}
a:hover {
    transition: all 0.25s cubic-bezier(0.955, 0.03, 0.515, 0.955) 0s;
    color: #fdb511;
}
a:focus {
    outline: none;
    color: #FFF;
    background-color: transparent;
}
section {
    padding: 120px 0;
}
/*--- Page Loader ---*/

#loader_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 9999;
}
#loader_wrapper .circleone,
#loader_wrapper .circletwo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 75px;
    height: 75px;
    opacity: 0;
    border: 4px solid #fdb511;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.circleone {
    -webkit-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -moz-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -o-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.circletwo {
    -webkit-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -moz-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -o-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@-webkit-keyframes popout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-moz-keyframes popout {
    0% {
        -moz-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
@-o-keyframes popout {
    0% {
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        -o-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes popout {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
/*----------Menu Home V1-------------*/

.v1-header h1 {
    margin: 0px;
    -webkit-transition: padding 0.3s linear;
    -o-transition: padding 0.3s linear;
    transition: padding 0.3s linear;
}
.v1-header .navbar {
    margin-bottom: 0;
    border: none;
    -webkit-transition: background .3s ease-in-out, padding .3s ease-in-out;
    -moz-transition: background .3s ease-in-out, padding .3s ease-in-out;
    transition: background .3s ease-in-out, padding .3s ease-in-out;
    transition: background-color 0.3s linear 0s;
}
.v1-header .top-nav-collapse .dropdown-menu {
    margin-top: 0;
}
.v1-header .navbar-default {
    background-color: transparent;
    border-bottom: solid 1px #3b4049;
}
.mega-menu {
    margin-left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
}
.mega-menu ul {
    position: static;
    display: block;
    margin: 0.83em 0;
    border: 0;
    padding: 0;
    width: auto;
    background: transparent;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.mega-menu ul li {
    display: list-item;
    list-style-type: none;
    border: 0;
}
.mega-menu li a {
    padding: 10px 40px 10px 40px;
    display: block;
}
.mega-menu .column-1-2 {
    float: left;
    width: 50%;
}
.mega-menu .column-1-3:last-child {
    margin-top: -20px;
}
.dropdown-large {
    position: static !important;
}
.dropdown-menu-large > li > ul {
    padding: 0;
    margin: 0;
}
.dropdown-menu-large > li > ul > li {
    list-style: none;
}
.dropdown-menu-large > li > ul > li > a {
    display: block;
    white-space: pre;
}
.v1-header .top-nav-collapse {
    background-color: #21201e;
}
.v1-header .navbar-right {
    margin-top: 50px;
    margin-right: 0;
}
.v1-header .navbar-default .navbar-nav > li > a {
    color: #FFF;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 0 26px 55px 0;
    margin: 5px 25px 0 0;
    line-height: 10px;
    background-color: transparent !important;
    background-image: url(../img/arrow-normal.png);
    background-repeat: no-repeat;
    background-position: top right;
}
.v1-header .navbar-default .navbar-nav > li > a:hover {
    background-image: url(../img/arrow-hover-drop.png);
    background-repeat: no-repeat;
    background-position: top right;
    color: #fdb511;
    border-bottom: none;
}
.v1-header .navbar-default .navbar-nav > li > a:last-child {
    background-image: none;
}
.v1-header .navbar-default .navbar-nav > li > a:last-child:hover {
    background-image: none;
}
.v1-header .navbar-default .navbar-nav > li > a:last-child {
    padding-right: 0;
}
.v1-header .navbar-default .navbar-nav > li > a:before {
    height: 0 !important;
}
.v1-header .navbar-default .navbar-nav > li > #search-open {
    padding-bottom: 0;
    margin: 0;
    margin-right: 40px;
    margin-left: 10px;
}
.v1-header .navbar-default .navbar-nav > li > #search-open:before {
    border: none;
    content: normal;
}
.v1-header .navbar-right.nav-icons {
    float: right !important;
}
.v1-header .navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #fdb511;
}
.v1-header .navbar-brand {
    height: auto;
    padding: 0 !important;
    margin: 10px 0 10px 40px !important;
}
.v1-header .dropdown-menu {
    min-width: 240px;
    background-color: #21201e;
    border-top: solid 3px #fdb511;
    margin-top: -1px;
    font-family: lato;
    font-weight: 400;
    font-size: 16px;
}
.v1-header .dropdown-menu {
    padding: 15px 0;
}
.v1-header .navbar-nav li a {
    padding: 10px 40px 10px 30px;
    color: #FFF;
}
.v1-header .dropdown-menu li a:hover {
    background-color: #fdb511;
    color: #21201e;
}
.v1-header .dropdown .dropdown-menu .dropdown:hover {
    background-image: url(../img/arrow-hover.png);
    background-repeat: no-repeat;
    background-position: 200px center;
}
.v1-header .navbar-default .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #fdb511;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.v1-header .navbar-default .navbar-nav > li > a:hover:before,
.v1-header .navbar-default .navbar-nav > li > a:focus:before,
.v1-header .navbar-default .navbar-nav > li > a:active:before {
    left: 0;
    right: 0;
}
.v1-header .navbar-toggle {
    margin-top: 40px;
    margin-bottom: 40px;
}
.relative-nav-container.open-search {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    opacity: 0;
}
.navbar-search {
    background-color: #fdb511;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 122px;
    padding: 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.navbar-search .input-group {
    width: 100%;
}
.navbar-search .form-control {
    box-shadow: none;
    background-color: transparent;
    letter-spacing: 2px;
    font-family: "Lato", sans-serif;
    color: white;
    font-size: 20px;
    height: 120px;
    border: none;
    line-height: 1;
    padding-left: 0;
    padding-right: 10px;
}
.navbar-search .form-control::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}
.navbar-search .form-control:-ms-input-placeholder {
    color: #ffffff;
}
.navbar-search .form-control::-webkit-input-placeholder {
    color: #ffffff;
}
.navbar-alt .navbar-search .form-control {
    color: #7f858f;
}
.navbar-alt .navbar-search .form-control::-moz-placeholder {
    color: #7f858f;
    opacity: 1;
}
.navbar-alt .navbar-search .form-control:-ms-input-placeholder {
    color: #7f858f;
}
.navbar-alt .navbar-search .form-control::-webkit-input-placeholder {
    color: #7f858f;
}
.navbar-search .search-close {
    padding: 0;
    background-color: transparent;
    color: white;
    font-size: 17px;
}
.navbar-alt .navbar-search .search-close {
    color: #7f858f;
}
.navbar-search.open {
    visibility: visible;
    opacity: 1;
}
.navbar-alt.navbar-default .navbar-search {
    background: rgba(255, 255, 255, 0.9);
}
.navbar-alt .navbar-search {
    height: 79px;
}
.navbar-alt .navbar-search .form-control {
    height: 80px;
}
.v1-header .navbar-default .navbar-nav > li > #search-open .fa-search {
    font-size: 17px;
}
/*------ One Page Menu --------*/
/*************************************************
Main Nav Style
*************************************************/

#primary {
    position: fixed;
    top: 50%;
    right: 30px;
    z-index: 100000;
    transform: translateY(-50%);
}
#primary ul {
    margin-right: -55px;
}
#primary li {
    display: list-item;
    height: 20px;
    list-style: none outside none;
    margin-top: 15px;
    position: relative;
    text-align: right;
}
#primary a {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #000;
    padding-right: 185px;
    letter-spacing: 1px;
}
.logo {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 99;
}
#primary li:before {
    background-color: #666;
    content: "";
    display: block;
    height: 2px;
    margin-left: 124px;
    width: 15px;
}
#primary li a span {
    margin-top: -9px;
    position: absolute;
    -webkit-transition-property: width;
    /* Safari */
    
    -webkit-transition-duration: 5s;
    /* Safari */
    
    transition-property: width;
    transition-duration: 5s;
    color: #666;
    text-transform: uppercase;
}
#primary li.active a span {
    display: block;
    color: #fdb511;
}
#primary li:hover a span {
    display: block;
    color: #fdb511;
}
#primary li:hover:before,
#primary li.active:before {
    color: #fff;
    content: "";
    display: block;
    height: 2px;
    width: 50px;
    background-color: #fdb511;
    cursor: pointer;
}
.navbar-inverse {
    border: 0 none;
    background: transparent;
}
.metis.tparrows {
    display: none;
}
@media (max-width: 767px) {
    /*~~~~~~~~~~~~~~
   Carosul
  ~~~~~~~~~~~~~~~*/
    
    #primary {
        width: 100%;
    }
    .navbar-inverse .navbar-toggle {
        background: none repeat scroll 0 0 #000;
        border: medium none;
        margin: 0;
        border-radius: 0;
    }
    #primary ul {
        padding-left: 0;
        padding-right: 0;
    }
    #primary .onepage-nav {
        padding-left: 0;
        padding-right: 0;
        border-top: 0;
    }
    #primary {
        top: 0;
        right: 0;
        width: 90%;
        padding: 2% 5%;
        height: 35px;
        margin: 60px 0;
        position: fixed;
        background: transparent;
    }
    #primary li:before {
        display: none;
    }
    #primary a:before {
        display: none;
    }
    #primary ul {
        position: relative;
        overflow: hidden;
    }
    #primary li {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    #primary li a {
        min-width: 200px;
        text-align: left;
        padding: 25px;
        font-size: 16px;
        line-height: 20px;
        color: #fff;
        font-family: lato;
    }
    #primary li.active a,
    #primary li a.active,
    #primary li a:hover {
        background: #f9f9f9;
        color: #34495E;
    }
    #primary li:before {
        display: none;
    }
    #primary li a span {
        display: block;
    }
    #primary li.active a span {
        display: block;
        color: #fdb511;
    }
    #primary li:hover a span {
        display: block;
        color: #fdb511;
    }
    #primary li:hover:before,
    #primary li.active:before {
        display: none;
    }
    #primary ul {
        background-color: #21201e;
        border: none;
    }
    .onepage-nav,
    .onepage-nav.collapse {
        height: auto;
        overflow: hidden;
        width: 100%;
    }
}
@media (min-width: 980px) {
    .onepage-nav.collapse {
        height: auto;
        overflow: visible;
    }
}
.tilter {
    display: block;
    position: relative;
    width: 300px;
    height: 415px;
    margin: 1.5em 2.5em;
    color: #fff;
    flex: none;
    perspective: 1000px;
}
.tilter__figure,
.tilter__image {
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.tilter__deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.tilter__deco--lines {
    fill: none;
    stroke: #fff;
    stroke-width: 15px;
}
/* Example 5 (line animating) */

.tilter--5 .tilter__deco--lines path {
    stroke-dasharray: 1270;
    stroke-dashoffset: 1270;
    transition: stroke-dashoffset 0.7s;
}
.tilter--5:hover .tilter__deco--lines path {
    stroke-dashoffset: 0;
}
.tilter--5 .tilter__figure::before {
    box-shadow: none;
}
/*----------Menu Home V2-------------*/

.v2-header {
    position: absolute;
    width: 100%;
}
.v2-header h1 {
    position: relative;
    z-index: 99;
    margin: 0;
}
.v2-header .navbar-brand {
    height: auto;
    padding: 0 !important;
    margin: 10px 0 10px 40px !important;
}
svg {
    max-width: 100%;
}
/*----------Menu Home V2-------------*/
/* -------------------------------- 

Main Components 

-------------------------------- */

.cd-nav-trigger {
    /* hamburger icon */
    
    position: absolute;
    z-index: 3;
    top: 38px;
    right: 0;
    margin-right: 40px;
    height: 44px;
    width: 44px;
    /* image replacement */
    
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
.cd-nav-trigger span {
    /* icon created in CSS */
    
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 32px;
    height: 1px;
    background-color: #FFF;
}
.cd-nav-trigger:nth-child(2) {
    width: 20px;
}
.cd-nav-trigger:nth-child(3) {
    width: 10px;
}
.cd-nav-trigger span::before,
.cd-nav-trigger span:after {
    /* upper and lower lines of the menu icon */
    
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    /* Force Hardware Acceleration in WebKit */
    
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.2s, width 0.2s;
    -moz-transition: -moz-transform 0.2s, width 0.2s;
    transition: transform 0.2s, width 0.2s;
}
.cd-nav-trigger span::before {
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}
.cd-nav-trigger span::after {
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.no-touch .cd-nav-trigger:hover {
    /* rotate trigger on hover */
    
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.no-touch .cd-nav-trigger:hover span::after,
.no-touch .cd-nav-trigger:hover span::before {
    /* animate arrow --> from hamburger to arrow */
    
    width: 50%;
}
.no-touch .cd-nav-trigger:hover span::before {
    -webkit-transform: translateX(1px) translateY(1px) rotate(45deg);
    -moz-transform: translateX(1px) translateY(1px) rotate(45deg);
    -ms-transform: translateX(1px) translateY(1px) rotate(45deg);
    -o-transform: translateX(1px) translateY(1px) rotate(45deg);
    transform: translateX(1px) translateY(1px) rotate(45deg);
}
.no-touch .cd-nav-trigger:hover span::after {
    -webkit-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    -moz-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    -ms-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    -o-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    transform: translateX(1px) translateY(-1px) rotate(-45deg);
}
/* -------------------------------- 

xnavigation 

-------------------------------- */

.cd-nav-container {
    position: fixed;
    z-index: 4;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    overflow-y: auto;
    background-color: #ffffff;
    /* Force Hardware Acceleration in WebKit */
    
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
    -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
    transition: transform 0.4s 0s, box-shadow 0s 0.4s;
    z-index: 99;
}
.cd-nav-container.is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
    -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
    transition: transform 0.4s 0s, box-shadow 0s 0s;
}
.cd-nav-container figure {
    padding: 1em;
    height: 100px;
    position: relative;
    background-color: #21201e;
}
.cd-nav-container h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 28px 30px;
    text-transform: uppercase;
    color: #FFF;
}
@media only screen and (min-width: 700px) {
    .cd-nav-container {
        width: 70%;
    }
    .cd-nav-container main {
        height: 116px;
        padding-top: 3em;
    }
}
.cd-close-nav {
    /* 'X' close icon */
    
    position: absolute;
    height: 44px;
    width: 44px;
    /* set the right position value so that it overlaps the .cd-nav-trigger*/
    
    right: 6.25%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* image replacement */
    
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.cd-close-nav::after,
.cd-close-nav::before {
    /* lines of 'X' icon */
    
    content: '';
    position: absolute;
    height: 3px;
    width: 32px;
    left: 50%;
    top: 50%;
    background-color: #FFF;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cd-close-nav::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-close-nav::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.no-touch .cd-close-nav:hover {
    opacity: .8;
}
@media only screen and (min-width: 700px) {
    .cd-close-nav {
        right: 7.14%;
    }
}
.cd-nav {
    background-color: #21201e;
    padding: 0;
    margin-bottom: 0;
}
.cd-nav::after {
    clear: both;
    content: "";
    display: table;
}
.cd-nav li {
    width: 50%;
    float: left;
    list-style: none;
    /* 68px is the navigation header height  and the menu items will be allocated in 3 rows */
    
    height: calc((100vh - 68px)/3);
    min-height: 120px;
    border: 1px solid #2e2e2e;
    border-top: none;
    border-left: none;
}
.cd-nav li:nth-of-type(2n) {
    border-right-width: 0;
}
.cd-nav a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.no-touch .cd-nav a:hover svg {
    -webkit-animation: cd-shock 0.3s;
    -moz-animation: cd-shock 0.3s;
    animation: cd-shock 0.3s;
}
.no-touch .cd-nav li a:hover span *,
.cd-nav li.cd-selected a span * {
    /* on hover or if selected - change text and icon color*/
    
    stroke: #21201e;
}
.no-touch .cd-nav li a:hover em,
.cd-nav li.cd-selected a em {
    /* on hover or if selected - change text and icon color*/
    
    color: #21201e;
}
.no-touch .cd-nav li a:hover,
.cd-nav li.cd-selected a {
    background-color: #fdb511;
}
/*.no-touch .cd-nav li:nth-of-type(2) a:hover,
.cd-nav li.cd-selected:nth-of-type(2) a {
background-color: #5c4b51;
}
.no-touch .cd-nav li:nth-of-type(3) a:hover,
.cd-nav li.cd-selected:nth-of-type(3) a {
background-color: #e0cf75;
}
.no-touch .cd-nav li:nth-of-type(4) a:hover,
.cd-nav li.cd-selected:nth-of-type(4) a {
background-color: #f5b65a;
}
.no-touch .cd-nav li:nth-of-type(5) a:hover,
.cd-nav li.cd-selected:nth-of-type(5) a {
background-color: #f25f5c;
}
.no-touch .cd-nav li:nth-of-type(6) a:hover,
.cd-nav li.cd-selected:nth-of-type(6) a {
background-color: #8abeb2;
}*/

.cd-nav span,
.cd-nav em {
    position: absolute;
}
.cd-nav span {
    top: calc(50% - 48px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 48px;
    width: 48px;
}
.cd-nav span * {
    -webkit-transition: stroke 0.2s;
    -moz-transition: stroke 0.2s;
    transition: stroke 0.2s;
    stroke: #FFF;
}
.cd-nav em {
    width: 100%;
    left: 0;
    top: calc(50% + 15px);
    color: #FFF;
    font-style: normal;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem !important;
}
@media only screen and (min-width: 700px) {
    .cd-nav li {
        /* 116px is the navigation header height and the menu items will be allocated in 3 rows */
        
        height: calc((100vh - 116px)/3);
        min-height: 200px;
    }
    .cd-nav span {
        height: 64px;
        width: 64px;
        top: calc(50% - 56px);
    }
    .cd-nav em {
        font-size: 2.2rem;
        font-weight: 300;
        top: calc(50% + 21px);
    }
}
@media only screen and (min-width: 1024px) {
    .cd-nav li {
        width: 33.33%;
        float: left;
        /* 116px is the navigation header height  and the menu items will be allocated in 2 rows */
        
        height: calc((100vh - 116px)/2);
        min-height: 250px;
    }
    .cd-nav li:nth-of-type(2n) {
        border-right-width: 1px;
    }
    .cd-nav li:nth-of-type(3n) {
        border-right-width: 0;
    }
    .cd-nav em {
        font-size: 2.5rem;
    }
}
@-webkit-keyframes cd-shock {
    0% {
        -webkit-transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0);
    }
}
@-moz-keyframes cd-shock {
    0% {
        -moz-transform: rotate(0);
    }
    30% {
        -moz-transform: rotate(10deg);
    }
    60% {
        -moz-transform: rotate(-10deg);
    }
    100% {
        -moz-transform: rotate(0);
    }
}
@keyframes cd-shock {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

/*---------Button Style-----------*/

.button-arrow {
    background-color: transparent;
    border: 2px solid #fdb511;
    border-radius: 50px;
    color: #21201e;
    display: inline-block;
    margin-top: 40px;
    padding: 1em 0.5em 1em 2.5em;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
}
.button-arrow:hover {
    text-decoration: none;
    color: #FFF;
    background-color: #fdb511;
}
.button-arrow:focus {
    color: #21201e;
}
.button-arrow img {
    font-size: 24px;
    transition: all !important;
    transition-duration: 0.4s !important;
    margin-left: 10px !important;
    margin-right: -30px !important;
}
.button-arrow:hover img {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
/*----------Border Offset Style------------*/

.template-border.bd-left .banner-image:after {
    bottom: -27px;
    left: -25px;
}
.template-border.bd-left .banner-image:after {
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    outline-offset: 15px;
    position: absolute;
    border: 10px solid #fdb511;
}
.template-border {
    position: relative;
    margin-bottom: 100px;
    margin-left: 24px;
    display: inline-block;
    max-width: 100%;
    z-index: 99;
}
#discover .template-border {
    width: 100%;
    margin-top: 80px;
}
.template-border .banner-image {
    position: relative;
    display: block;
}
@media(max-width: 1199px) {
    .template-border {
        max-width: 90%;
        margin-left: 25px;
    }
}
.template-border figure {
    overflow: hidden;
    position: relative;
}
.template-border figure img {
    width: 100%;
}
/*----------Banner V1------------*/

.homebanner-styling .carousel-caption-custom {
    text-shadow: none;
    text-align: center;
}
.homebanner-styling .carousel-caption-custom .fa.fa-times {
    font-size: 23px;
}
.homebanner-styling .hephaistos .tp-bullet {
    width: 43px;
    height: 2px;
    background-color: #FFF;
    box-shadow: none;
    border: none;
    border-radius: 0;
}
.homebanner-styling .tp-bullet {
    position: relative !important;
    margin-top: 30px !important;
    counter-reset: my-badass-counter;
}
.homebanner-styling .tp-bullet.selected {
    width: 73px;
    background-color: #fdb511 !important;
}
.homebanner-styling .tp-bullet:nth-child(1):before {
    content: "1";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .tp-bullet:nth-child(2):before {
    content: "2";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .tp-bullet:nth-child(3):before {
    content: "3";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .tp-bullet:nth-child(4):before {
    content: "4";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .tp-bullet:nth-child(5):before {
    content: "5";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .tp-bullet:nth-child(6):before {
    content: "6";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;

    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .tp-bullet:nth-child(7):before {
    content: "7";
    position: absolute;
    color: #fdb511;
    display: inline-block;
    width: 1em;
    margin-left: -2em;
    margin-right: 0.5em;
    text-align: right;
    direction: rtl;
    margin-top: -8px;
}
.homebanner-styling .carousel-caption-custom .button-arrow {
    margin: 0;
}
.carousel-caption-custom h2 {
    color: #FFF;
    font-size: 1em;
    margin: 0.5em 0;
    line-height: 0.9em;
    font-weight: normal;
    letter-spacing: 5px;
}
#banner-form {
    margin: 0 auto;
    width: 100%;
}
#banner-form::-webkit-input-placeholder {
    color: #000;
    letter-spacing: 2px;
    opacity: 0.8;
}
#banner-form:-moz-placeholder {
    /* Firefox 18- */
    
    color: #000;
    letter-spacing: 2px;
    opacity: 0.8;
}
#banner-form::-moz-placeholder {
    /* Firefox 19+ */
    
    color: #000;
    letter-spacing: 2px;
    opacity: 0.8;
}
#banner-form:-ms-input-placeholder {
    color: #000;
    letter-spacing: 0px;
    opacity: 1;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold !important;
}
#banner-form input {
    border: medium none;
    border-radius: 50px;
    color: #000;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: lighter;
    height: 60px;
    padding: 0 12.5em 0 1.5em;
    width: 100%;
    font-family: "Lato", sans-serif;
    margin: 0 auto;
    float: left;
}
#banner-form #subscribe {
    background-color: #fdb511;
    border: medium none;
    border-radius: 60px;
    color: #FFF;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 1.32em 3.160em;
    margin-left: -190px;
    text-transform: uppercase;
}
#banner-form .responsive-button {
    display: none;
}
.carousel-caption-custom h2 span {
    color: #fdb511;
}
.rev-burger {
    display: none !important;
}
.onepage .tparrows {
    display: none;
}
.homebanner-styling .carousel-caption-custom p {
    font-size: 1.3em;
    line-height: 1.5em;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    letter-spacing: 1px;
    margin-top: 0.6em;
    margin-bottom: 0.1em;
    white-space: normal;
}
.homebanner-styling .carousel-caption-custom p.text-left {
    margin-left: 0;
    margin-right: 0;
}
.homebanner-styling .carousel-caption-custom .button-arrow {
    color: #FFF;
}
.homebanner-styling .carousel-indicators {
    margin-left: 0;
    left: auto;
    right: 0px;
    top: 40%;
    width: 110px;
    position: absolute;
}
.homebanner-styling .carousel-indicators li {
    color: #fff;
    display: block;
    margin: 35px 0;
    border: none;
    width: 0;
    height: 0;
    text-indent: 0;
    transition-duration: 0.4s;
}
.homebanner-styling .carousel-indicators .active {
    border: none;
}
.homebanner-styling .carousel-indicators li:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 2px;
    margin-left: 30px;
    width: 15px;
}
.homebanner-styling .carousel-indicators li.active:after {
    color: #fff;
    content: "";
    display: block;
    height: 2px;
    margin-left: 30px;
    width: 80px;
    background-color: #fdb511;
}
.homebanner-styling .carousel-indicators li span {
    margin-top: -9px;
    position: absolute;
    display: none;
}
.homebanner-styling .carousel-indicators li.active span {
    display: block;
    color: #fdb511;
}
/*----------Banner V2------------*/

.v2-banner .banner-img-1 {
    background-image: url(../img/placeholder/home-v2-banner.jpg);
}
.v2-banner .button-arrow {
    border-radius: 0;
}
/*--------Features-----------*/

.feature-banner {
    background-image: url(../img/placeholder/light-bulb-4514505_1920.jpg);
    height: 540px;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    background-size: cover;
    display: table;
}
.noslider h2 {
    color: #FFF;
    font-size: 60px;
    background-image: none;
    letter-spacing: 6px;
    font-weight: normal;
    margin: 60px 0 0 0;
}
.noslider .valign-middle {
    display: table-cell;
    vertical-align: middle;
}
.noslider .h4-template-breadcrumb {
    background-color: transparent;
    text-align: center;
    padding: 0;
    margin: 25px 0 0 0;
    text-transform: uppercase;
}
.noslider .h4-template-breadcrumb li a {
    color: #FFF;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
}
.noslider .h4-template-breadcrumb > .active {
    color: #fdb511;
    letter-spacing: 2px;
}
.noslider .h4-template-breadcrumb > li + li::before {
    content: url(../img/dash.png);
    display: inline-flex;
    padding: 0 25px;
    vertical-align: middle;
}
#features {
    text-align: center;
}
#features .text-left svg {
    float: left;
    margin-right: 10px;
    width: 64px;
    height: 64px;
}
#features .text-left h3 {
    margin: 50px 0 0 0;
}
#features .text-left p {
    display: inline-block;
    margin-left: 75px;
}
/*--------About Us-----------*/

.about-banner {
    background-image: url(../img/placeholder/background-3063287_1920.jpg);
    height: 540px;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    background-size: cover;
    display: table;
}
#about-us {
    background-color: #f4f4f4;
}
#about-us h2 {
    margin-bottom: 40px;
}
#custom-top {
    margin-top: -180px;
}
#aboutslider {
    background-color: #FFF;
    margin-top: 90px;
    clear: both;
    padding-top: 123px;
}
#about-us #aboutslider .template-border {
    margin-left: 0;
}
#about-us #aboutslider .box-1 {
    padding: 100px 70px 70px;
}
#about-us #aboutslider p span {
    font-weight: bold;
    color: #898680;
}
#about-us #aboutslider p {
    margin-top: 20px;
}
#about-us #aboutslider .border-offset {
    padding: 70px 0;
}
#about-us #aboutslider .border-offset:before {
    content: "";
    display: block;
    height: 75%;
    margin-left: -16px;
    margin-top: 35px;
    outline: 10px solid #fdb511;
    position: absolute;
    width: 390px;
}
#about-us #aboutslider .border-offset img {
    position: relative;
}
#about-us #aboutslider .carousel-indicators .active {
    background-color: #fdb511;
}
#about-us #aboutslider .carousel-indicators {
    left: 97.5%;
    top: 43%;
    margin-left: 0;
    width: 0;
}
#about-us #aboutslider .carousel-indicators li {
    border: 2px solid #fdb511;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    height: 12px;
    margin: 10px 0;
    text-indent: -999px;
    width: 12px;
}
/*--------Our Work-----------*/

#our-work h5 {
    margin-bottom: 80px;
}
.pr-box-left {
    text-align: right;
    padding: 0px;
}
.pr-box-left:nth-child(2) {
    margin-top: 120px;
    margin-bottom: 120px;
}
.service-work .pr-box-left:nth-child(1) {
    margin-top: 115px;
}
.service-work .pr-box-left:nth-child(2) {
    margin-top: 24px;
    margin-bottom: 0;
}
.service-work .pr-box-left {
    margin-top: 24px;
}
.service-work .pr-box-right:nth-child(1) {
    margin-top: 115px;
}
.service-work .pr-box-right:nth-child(2) {
    margin-top: 24px;
    margin-bottom: 0;
}
.service-work .pr-box-right {
    margin-top: 24px;
}
.pr-box-left h3 span {
    color: #fdb511;
    letter-spacing: 0;
}
.pr-box-left h3 {
    letter-spacing: 0;
    margin: 10px 0;
    text-transform: none;
}
.pr-box-right {
    text-align: left;
    padding: 0px;
}
.pr-box-right:nth-child(2) {
    margin-top: 120px;
    margin-bottom: 120px;
}
.pr-box-right h3 {
    letter-spacing: 0;
    margin: 10px 0;
    text-transform: none;
}
.pr-box-right h3 span {
    font-size: 18px;
    color: #fdb511;
    letter-spacing: 0;
}
/*--------Testimonials-----------*/

.testimonials {
    background-image: url(../img/placeholder/clients-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 0;
}
.testimonials h2 {
    color: #FFF;
}
.testimonials .fa-quote-left {
    color: #fdb511;
    font-size: 60px;
    margin-bottom: 15px;
}
.testimonials p {
    color: #efeff0;
    font-size: 21px;
    font-weight: lighter;
    font-family: "Lato", sans-serif;
    line-height: 40px;
}
#quote-carousel {
    margin-top: 60px;
}
#quote-carousel .carousel-control {
    background: none;
    color: #CACACA;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 30px;
}
#quote-carousel .carousel-indicators {
    position: relative;
    top: auto;
    bottom: -70px;
    right: 0%;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: -20px;
}
#quote-carousel .carousel-indicators li {
    width: 115px;
    min-height: 115px;
    cursor: pointer;
    transition: all .4s ease-in;
    vertical-align: middle;
    text-indent: inherit;
    border: 0px;
    background-color: transparent;
    margin: 1px 5px;
}
#quote-carousel .carousel-indicators li .testimonials_avtar {
    border: 4px solid #ffffff;
    border-radius: 50%;
    background-color: #efeff0;
    width: auto;
    height: 100%;
    overflow: hidden;
}
#quote-carousel .carousel-indicators li img {
    opacity: 0.30;
    display: block;
    width: 100%;
    height: auto;
}
#quote-carousel .carousel-indicators li h4 {
    cursor: pointer;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    display: none;
}
#quote-carousel .carousel-indicators li h5 {
    font-size: 13px;
    text-transform: uppercase;
    line-height: inherit;
    margin: 0px;
    width: 100%;
    display: none;
}
#quote-carousel .carousel-indicators li.active img {
    opacity: 1;
}
#quote-carousel .carousel-indicators .active {
    opacity: 1;
    transition: all .2s;
    transform: scale(1.1);
}
#quote-carousel .carousel-indicators .active h4 {
    color: #fdb511;
    display: block;
}
#quote-carousel .carousel-indicators .active h5 {
    color: #21201e;
    display: block;
}
.item blockquote {
    border-left: none;
    margin: 0;
}
/*--------Testimonials Page-----------*/

.testimonials.testimonials-1 {
    background-image: none !important;
    text-align: center;
    padding-bottom: 120px;
}
.testimonials.testimonials-1 h5 {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}
.testimonials.testimonials-1 h4 {
    font-size: 14px;
}
.testimonials.testimonials-1 h2 {
    color: #21201e;
    margin-bottom: 70px;
}
.testimonials.testimonials-1 .image-avatar {
    margin-top: 50px;
}
.testimonials.testimonials-1 p {
    color: #898680;
    font-size: 24px;
    font-weight: lighter;
    font-family: "Lato", sans-serif;
    line-height: 40px;
}
.testimonials-1 .carousel-control {
    width: auto;
    text-shadow: none;
    opacity: 1;
    color: #FFF;
}
.testimonials-1 .carousel-control .icon-next {
    margin-right: 13px;
}
.testimonials-1 .carousel-control .icon-next img {
    margin-right: 13px;
}
.testimonials-1 .carousel-control .icon-prev::before {
    display: none;
}
.testimonials-1 .carousel-control .icon-next::before {
    display: none;
}
.testimonials.testimonials-3 .testimonial-block {
    border: solid 1px #F3F0EA;
    padding: 30px 30px 70px 30px;
    border-radius: 5px;
    margin-top: 70px;
}
.testimonials.testimonials-3 {
    background-image: none !important;
    margin: 120px 0;
}
.testimonials.testimonials-3 h2 {
    color: #21201e;
    margin-bottom: 70px;
}
.testimonials.testimonials-3 p {
    font-size: 21px;
    color: #898680;
    line-height: 32px;
}
.testimonials.testimonials-3 h5 {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}
.testimonials.testimonials-3 h4 {
    font-size: 14px;
}
.testimonials-3 .carousel-control {
    width: auto;
    text-shadow: none;
    opacity: 1;
    color: #FFF;
}
.testimonials-3 .carousel-control .icon-next {
    margin-right: -40px;
}
.testimonials-3 .carousel-control .icon-next img {
    margin-right: -40px;
}
.testimonials-3 .carousel-control .icon-prev {
    margin-left: -40px;
}
.testimonials-3 .carousel-control .icon-prev img {
    margin-left: -40px;
}
.testimonials-3 .carousel-control .icon-prev::before {
    display: none;
}
.testimonials-3 .carousel-control .icon-next::before {
    display: none;
}
.testimonials-3 .image-avatar img {
    border-radius: 100%;
    margin-top: -55px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}
.testimonials.testimonials-3 h6 {
    color: #21201e;
    font-size: 18px;
    text-align: center;
}
.testimonials.testimonials-3 h6 b {
    color: #fdb511;
}
/*--------Clients-----------*/

#clients {
	padding-top: 200px;
}
#clients ul {
    padding-left: 0;
    overflow: hidden;
}
#clients ul li {
    list-style: none;
    padding: 40px 20px;
    text-align: center;
}
#clients ul li:before {
    border-bottom: 2px solid #eeeeee;
    border-left: 2px solid #eeeeee;
    bottom: -2px;
    content: "";
    height: 100%;
    left: -2px;
    position: absolute;
    top: auto;
    width: 100%;
}
#clients ul li:after {
    content: "";
    position: absolute;
    border: 5px solid #fdb511;
    outline: 10px solid #FFF;
    border-radius: 25px;
    top: auto;
    left: -5px;
    bottom: -5px;
    z-index: 1;
}
#clients ul li img {
    margin: 0 auto;
    -webkit-filter: grayscale(100%);
    / Safari 6.0 - 9.0 / filter: grayscale(100%);
}
#clients ul li:nth-child(1):after,
#clients ul li:nth-child(5):after,
#clients ul li:nth-child(6):after,
#clients ul li:nth-child(7):after,
#clients ul li:nth-child(8):after {
    display: none;
}
/*--------------Portfolio----------------*/

#filters ul li a h5 {
    color: #21201e;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    padding: 10px 0px 10px 20px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out 0s;
}
#filters ul li a.active {
    position: relative;
    border-bottom: solid 2px #fdb511;
}
#filters ul li a.active::after,
#filters ul li a.active::before {
    border: medium solid transparent;
    bottom: 100%;
    content: " ";
    height: 0;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 100%;
    width: 0;
}
#filters ul li a.active::after {
    border-bottom-color: #f4f4f4;
    border-width: 4.5px;
    margin-left: -5px;
    top: 100%;
    transform: rotate(180deg);
}
#filters ul li a sup {
    opacity: 0;
    top: -1.5em;
    transition: all 0.3s ease-in-out 0s;
}
#filters ul li a.active sup {
    opacity: 1;
    transition: all 0.2s ease-in-out 0s;
    color: #fdb511;
}
#filters ul li a.active::before {
    border-color: rgba(194, 225, 245, 0) rgba(194, 225, 245, 0) #fdb511;
    border-width: 7px;
    margin-left: -8px;
    transform: rotate(180deg);
}
#filters .button {
    display: inline-block;
    padding: 0 0px 20px 18px;
    border: none;
    background-color: transparent;
    color: #222;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: -1px;
}
#filters .button:hover {
    color: #fdb511;
}
.is-checked #filters .button:after {
    content: "";
    background: url(../img/down-arrow.png);
}
#filters .button:active,
#filters .button.is-checked {
    background-color: transparent;
}
#filters .button.is-checked {
    border-bottom: 2px solid #fdb511;
    border-radius: 0;
    color: #fdb511;
    padding-bottom: 20px;
}
#filters .button sup {
    opacity: 0;
    color: #fdb511;
    top: -18px;
    display: none;
}
#filters .button.is-checked sup {
    opacity: 1;
}
#filters .button:active {
    background-color: transparent;
}
/* ---- button-group ---- */

.button-group {
    margin: 60px 0;
    text-align: center;
    border-bottom: solid 1px #dedede;
}
#filters .button-group:after {
    content: '';
    display: block;
    clear: both;
}
#filters .button-group .button {
    float: left;
    border-radius: 0;
    margin-left: 0;
    margin-right: 1px;
}
#filters .button-group #filters .button:first-child {
    border-radius: 0.5em 0 0 0.5em;
}
#filters .button-group #filters .button:last-child {
    border-radius: 0 0.5em 0.5em 0;
}
/* ---- isotope ---- */

#portfolio {
    background-color: #f4f4f4;
}
figcaption .share-link {
    border-radius: 50%;
    border: solid 3px #fdb511;
    width: 60px;
    height: 60px;
}
figcaption .share-link .fa-circle {
    font-size: 6px;
    text-align: center;
    vertical-align: middle;
    margin-top: 25px;
}
.bg-none {
    background-color: transparent !important;
}
#portfolio .portfolio-grid {
    width: 100%;
}
/* clear fix */

.portfolio-grid:after {
    content: '';
    display: block;
    clear: both;
}
/* ---- .element-item ---- */

.grid-sizer,
.portfolio-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    float: left;
    width: 20%;
}
.element-item img {
    height: auto !important;
    width: 100% !important;
}
.element-item > * {
    margin: 0px;
    padding: 0;
}
.portfolio-grid figure.element-item--width2 {
    width: 40%;
}
#portfolio-full .grid-sizer,
#portfolio-full.portfolio-grid figure {
    position: relative;
    margin: 0 !important;
    overflow: hidden;
    float: left;
    width: 25%;
}
#portfolio-full .element-item img {
    height: auto !important;
    width: 100% !important;
}
#portfolio-full .element-item > * {
    margin: 0;
    padding: 0;
}
#portfolio-full figure.element-item--width2 {
    width: 50%;
}
/*----Portfolio Grid---*/

#portfolio-grid-page figure {
    position: relative;
    overflow: hidden;
    float: left;
    width: 33.333%;
}
#portfolio-grid-page .element-item {
    height: auto;
}
#portfolio-grid-page .element-item img {
    height: 100% !important;
    width: 100% !important;
}
#portfolio-grid-page .element-item > * {
    margin: 0;
    padding: 0;
}
#portfolio-grid-page figure.element-item--width2 {
    width: 66.666%;
}
.portfolio-grid .element-item figcaption {
    background-color: rgba(38, 38, 43, 0.9);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity 0.3s ease-in-out 0s;
    width: 100%;
    z-index: 2;
}
.portfolio-grid .element-item:hover figcaption {
    opacity: 1;
    cursor: pointer;
}
.portfolio-grid .element-item figcaption a {
    color: white;
    float: right;
    font-size: 18px;
    position: relative;
    top: 50px;
    margin-right: 20px;
    transform: translate(0px, -50%);
}
.portfolio-grid .element-item figcaption h5 {
    bottom: 75px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    padding-left: 20px;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}
.portfolio-grid .element-item figcaption h5:after {
    background: #fdb511 none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 20px;
    position: absolute;
    width: 50px;
}
.portfolio-grid .element-item figcaption p {
    text-align: left;
    padding-left: 20px;
    position: absolute;
    margin-top: 30px;
    bottom: 15px;
    font-size: 16px;
    color: #cccccc;
}
/*Portfolio Wide Same Image*/

.portfoliowide-img-same .element-item {
    width: 25%;
}
.portfoliowide-img-same2 .element-item {
    width: 32.1%;
    margin-bottom: 20px;
}
.portfoliowide-img-same3 .element-item {
    width: 50%;
}
/* ---- element-item-Grid 2 Columns  ---- */

#Portfolio-ColumnTwo ..columnTwo {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
}
#Portfolio-ColumnTwo .columnTwoItem,
#Portfolio-ColumnTwo .grid-sizer {
    width: 49%;
    margin-bottom: 20px;
}
#Portfolio-ColumnTwo .columnTwoItem {
    float: left;
    margin-bottom: 20px;
}
#Portfolio-ColumnTwo .columnTwoItem img {
    width: 100%;
    height: auto;
    display: block;
}
#Portfolio-ColumnTwo .gutter-sizer {
    width: 2%;
}
@media only screen and (max-width: 640px) {
    #Portfolio-ColumnTwo .columnTwoItem,
    #Portfolio-ColumnTwo .grid-sizer {
        width: 49%;
    }
}
@media only screen and (max-width: 480px) {
    #Portfolio-ColumnTwo .columnTwoItem,
    #Portfolio-ColumnTwo .grid-sizer {
        width: 100%;
    }
}
/* ----  Isptope Prtfolio Column Three ---- */

#Portfolio-ColumnThree .columnThree {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
}
#Portfolio-ColumnThree .columnThreeItem,
#Portfolio-ColumnThree .grid-sizer {
    width: 32%;
    margin-bottom: 20px;
}
#Portfolio-ColumnThree .columnThreeItem {
    float: left;
    margin-bottom: 20px;
}
#Portfolio-ColumnThree .columnThreeItem img {
    width: 100%;
    height: auto;
    display: block;
}
#Portfolio-ColumnThree .gutter-sizer {
    width: 2%;
}
@media only screen and (max-width: 640px) {
    #Portfolio-ColumnThree .columnThreeItem,
    #Portfolio-ColumnThree .grid-sizer {
        width: 49%;
    }
}
@media only screen and (max-width: 480px) {
    #Portfolio-ColumnThree .columnThreeItem,
    #Portfolio-ColumnThree .grid-sizer {
        width: 100%;
    }
}
/* ----  Isptope Prtfolio Column Four ---- */

#Portfolio-ColumnFour .columnFour {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
}
#Portfolio-ColumnFour .columnFourItem,
#Portfolio-ColumnFour .grid-sizer {
    width: 23.5%;
    margin-bottom: 1.5%px;
}
#Portfolio-ColumnFour .columnFourItem {
    float: left;
    margin-bottom: 1.5%;
}
#Portfolio-ColumnFour .columnFourItem img {
    width: 100%;
    height: auto;
    display: block;
}
#Portfolio-ColumnFour .gutter-sizer {
    width: 2%;
}
@media only screen and (max-width: 640px) {
    #Portfolio-ColumnFour .columnFourItem,
    #Portfolio-ColumnFour .grid-sizer {
        width: 49%;
    }
}
@media only screen and (max-width: 480px) {
    #Portfolio-ColumnFour .columnFourItem,
    #Portfolio-ColumnFour .grid-sizer {
        width: 100%;
    }
}
/*Portfolio Masonry Image*/

#columns-2 .element-item {
    width: 50%;
}
#columns-2 .element-item--width2 {
    width: 50%;
}
@media only screen and (max-width: 992px) {
    .grid-sizer,
    .portfolio-grid figure {
        width: 20%;
    }
    .portfolio-grid figure.element-item--width2 {
        width: 40%;
    }
    #portfolio-full .grid-sizer,
    #portfolio-full.portfolio-grid figure {
        width: 25%;
    }
    #portfolio-full figure.element-item--width2 {
        width: 50%;
    }
    /*	#portfolio-grid-page figure {
	  width: 50%;
  }
  #portfolio-grid-page figure.element-item--width2 { width: 50%; }*/
}
@media (max-width: 768px) {
    .grid-sizer,
    .portfolio-grid figure {
        width: 50%;
    }
    .portfolio-grid figure.element-item--width2 {
        width: 50%;
    }
    #portfolio-full .grid-sizer,
    #portfolio-full.portfolio-grid figure {
        width: 50%;
    }
    #portfolio-full figure.element-item--width2 {
        width: 50%;
    }
    /*	#portfolio-grid-page figure.element-item {
	  width: 50%;
  }
  #portfolio-grid-page figure.element-item--width2 { width: 50%; }*/
}
/*--------Team-----------*/

#team {
    text-align: center;
}
#team h3 {
    margin: 0;
}
#team h6 {
    color: #b9b9b9;
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 43px;
    font-weight: bold;
    text-transform: uppercase;
}
#team h6:after {
    content: "";
    background-color: #fdb511;
    height: 2px;
    position: absolute;
    width: 56px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 43px;
}
#team .template-border {
    margin-bottom: 51px;
    margin-top: 20px;
}
#team .margin-top {
    margin-top: 50px;
}
#team .secondary-paragraph {
    width: 80%;
    margin: 0 auto;
}
.grid {
    position: relative;
    clear: both;
    margin: 0 auto;
    padding: 1em 0 4em;
    max-width: 1000px;
    list-style: none;
    text-align: center;
}
/* Common style */

.grid figure {
    position: relative;
    overflow: hidden;
    margin: 10px 1% 50px 1%;
    min-width: 296px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    height: auto;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}
.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
}
#team .border-offset:before {
    content: "";
    display: block;
    height: 50%;
    margin-left: 16px;
    margin-top: 62px;
    outline: 10px solid #fdb511;
    position: absolute;
    width: 276px;
}
.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */

.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}
.grid figure h2,
.grid figure p {
    margin: 0;
}
.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}
/* Individual effects */
/*---------------*/
/***** Julia *****/
/*---------------*/

figure.team-member {
    background: opacity 100;
    margin: 0 auto;
}
figure.team-member img {
    max-width: none;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.team-member figcaption {
    text-align: center;
    bottom: 20px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100%;
}
figure.team-member p {
    display: inline-block;
    margin: 0 0 0 8px;
    color: #2f3238;
    text-transform: none;
    font-weight: 500;
    font-size: 75%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-360px, 0, 0);
}
figure.team-member p:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
figure.team-member p:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
figure.team-member p:nth-of-type(3) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
figure.team-member:hover p:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
figure.team-member:hover p:nth-of-type(2) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
figure.team-member:hover p:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
figure.team-member:hover img {
    opacity: 0.2;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}
figure.team-member:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
figure.team-member p .fa:hover {
    transition: all 0.25s cubic-bezier(0.955, 0.03, 0.515, 0.955) 0s;
}
figure.team-member p .fa-facebook {
    border: 2px solid #ffffff;
    border-radius: 60px;
    color: #fff;
    display: table-cell;
    font-size: 17px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    width: 60px;
}
figure.team-member p .fa-facebook:hover {
    color: #fdb511;
    background-color: #FFF;
}
figure.team-member p .fa-twitter {
    border: 2px solid #ffffff;
    border-radius: 60px;
    color: #fff;
    display: table-cell;
    font-size: 17px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    width: 60px;
}
figure.team-member p .fa-twitter:hover {
    color: #fdb511;
    background-color: #FFF;
}
figure.team-member p .fa-envelope {
    border: 2px solid #ffffff;
    border-radius: 60px;
    color: #fff;
    display: table-cell;
    font-size: 17px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    width: 60px;
}
figure.team-member p .fa-envelope:hover {
    color: #fdb511;
    background-color: #FFF;
}
/*--------Counter Stats---------*/

.counter {
    font-size: 48px;
    color: #FFF;
    font-weight: bold;
    margin: 25px 0;
}
#number-stats {
    text-align: center;
}
#number-stats h3 {
    color: #FFF;
}
#number-stats {
    background-image: url(../img/placeholder/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    background-position: center center;
}
/*--------Blog-----------*/

#blog .template-border {
    margin-bottom: 0;
}
#blog .blog-post-box-container {
    margin-bottom: 0;
}
.blog-box-img:before {
    content: "";
    height: 91%;
    margin-left: -8px;
    margin-top: 37px;
    outline: 10px solid #fdb511;
    outline-offset: 3px;
    position: absolute;
    width: 222px;
    z-index: -1;
}
.button-arrow.arrow-left img {
    font-size: 24px;
    transition-duration: 0.4s;
    margin-right: 15px !important;
}
.arrow-left:hover img {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}
#blog .blog-post-box-container h3 {
    margin-top: 0;
    line-height: 27px;
    letter-spacing: 0;
}
.blog-post-box-container .button-arrow {
    margin-top: 20px;
}
.padding-bottom-remove {
    padding-bottom: 0;
}
#blog .blog-post-box-container h6 b {
    font-size: 18px;
}
#blog .blog-post-box-container h6 {
    font-size: 14px;
    background-image: url(../img/border.jpg);
    background-repeat: no-repeat;
    background-position: bottom left;
    padding-bottom: 20px;
    line-height: 27px;
    color: #b9b9b9;
    font-weight: bold;
    text-transform: uppercase;
}
#blog .blog-post-box-container p {
    text-align: left;
    padding-right: 31px;
    margin-top: 30px;
}
.padding-remove {
    padding: 0;
}
/*--------Blog Columns 2-----------*/

#blog-page-v2.custom-columns-2 .row:last-child .template-border {
    margin-bottom: 70px;
}
#blog-page-v2.custom-columns-2 .blog-post-box-container {
    padding: 0 15px;
}
/*--------Blog Columns 3-----------*/

#blog-page-v2.custom-columns-3 .row:last-child .template-border {
    margin-bottom: 70px;
}
#blog-page-v2.custom-columns-3 .blog-post-box-container {
    padding: 0 15px;
}
.margin-bottom-remove {
    margin-bottom: 0 !important;
}
/*--------Footer-----------*/

footer {
    background-color: #21201e;
    text-align: center;
    padding-bottom: 0;
    padding: 120px 0 0 0;
}
footer #footer .fa-map-marker {
    border: solid 3px #fdb511;
    height: 109px;
    width: 109px;
    font-size: 46px;
    color: white;
    line-height: 105px;
    text-align: center;
}
footer #footer .fa-mobile {
    border: solid 3px #fdb511;
    height: 109px;
    width: 109px;
    font-size: 46px;
    color: white;
    line-height: 105px;
    text-align: center;
}
footer #footer .fa-envelope {
    border: solid 3px #fdb511;
    height: 109px;
    width: 109px;
    font-size: 40px;
    color: white;
    line-height: 105px;
    text-align: center;
}
footer #footer h3 {
    margin: 35px 0;
    color: #FFF;
}
footer #footer p {
    color: #898680;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    margin: 0 auto 40px;
    width: 63%;
}
footer #footer p a {
    font-size: 18px;
    color: #898680;
    text-decoration: none;
    font-family: "Lato", sans-serif;
}
footer #footer p a:hover {
    color: #fdb511;
}
#footer .subcribe {
    background-color: transparent;
    display: inline-block;
    width: 50%;
}
#footer input:nth-child(1) {
    background-color: transparent;
    border: medium none;
    color: #727272;
    margin-top: 30px;
    padding-bottom: 10px;
    padding-right: 15px;
    text-align: left;
    width: 85%;
    border-bottom: solid 1px #282725;
}
#footer .subscribe_btn {
    background-color: transparent;
    background-image: url("../img/field-arrow.png");
    background-position: right center;
    background-repeat: no-repeat;
    border: medium none;
    width: 42px;
    margin-left: -5px;
    border-bottom: solid 1px #282725;
    padding-bottom: 10px;
}
footer #footer ul {
    padding-left: 0;
    margin-top: 80px;
}
footer #footer ul li {
    display: inline-block;
    margin: 0 25px;
}
footer #footer ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #555450;
    padding-bottom: 15px;
    font-weight: bold;
    z-index: 99;
    position: relative;
}
footer #footer ul li a:hover {
    color: #FFF;
}
footer #footer ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #fdb511;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
footer #footer ul li a:hover:before,
footer #footer ul li a:focus:before,
footer #footer ul li a:active:before {
    left: 0;
    right: 0;
}
.footer-bottom {
    border-top: solid 1px #282725;
    margin-top: 60px;
}
#footer .footer-bottom p {
    color: #454441;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    padding: 40px 0;
    margin: 0 auto;
    width: 100%;
}
/*------------------Home Version 2-----------------------*/
/*--------Tab Section-----------*/

#tab-section {
    padding-top: 0;
}
#tab-section i {
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
}
#tab-section nav {
    background-color: #fdb511;
    margin-top: -1px;
    position: relative;
}
#tab-section ul {
    border-bottom: none;
}
#tab-section ul li {
    margin-bottom: 0;
}
#tab-section ul li a {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #21201e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 0;
    border-radius: 0;
    width: 190px;
    padding: 55px 0;
    border: none;
    border-right: solid 1px rgba(255, 255, 255, 0.4);
}
#tab-section ul li a.last {
    border-right: none;
}
#tab-section ul li a:hover {
    background-color: #21201e;
    color: #FFF;
}
#tab-section ul li.active a {
    background-color: #21201e;
    color: #FFF;
}
#tab-section ul li.active a::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    top: 92%;
    transform: rotate(180deg);
    width: 0;
}
#development {
    background-image: url(../img/tab-bg-img-1.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 120px;
    padding-bottom: 120px;
}
#branding {
    background-image: url(../img/tab-bg-img-2.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 120px;
    padding-bottom: 120px;
}
#mobileapps {
    background-image: url(../img/tab-bg-img-3.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 120px;
    padding-bottom: 120px;
}
#SEO {
    background-image: url(../img/tab-bg-img-4.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 120px;
    padding-bottom: 120px;
}
#wordpress {
    background-image: url(../img/tab-bg-img-5.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 120px;
    padding-bottom: 120px;
}
#writing {
    background-image: url(../img/tab-bg-img-6.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 120px;
    padding-bottom: 120px;
}
#development p {
    font-size: 16px;
    text-align: left;
    color: #898680;
    line-height: 30px;
    font-weight: normal;
}
#branding p {
    font-size: 16px;
    text-align: left;
    color: #898680;
    line-height: 30px;
    font-weight: normal;
}
#mobileapps p {
    font-size: 16px;
    text-align: left;
    color: #898680;
    line-height: 30px;
    font-weight: normal;
}
#SEO p {
    font-size: 16px;
    text-align: left;
    color: #898680;
    line-height: 30px;
    font-weight: normal;
}
#wordpress p {
    font-size: 16px;
    text-align: left;
    color: #898680;
    line-height: 30px;
    font-weight: normal;
}
#writing p {
    font-size: 16px;
    text-align: left;
    color: #898680;
    line-height: 30px;
    font-weight: normal;
}
.left-content-container {
    text-align: right;
}
.left-content-container p {
    text-align: right !important;
}
.left-content-container h4 {
    text-transform: uppercase;
    color: #21201e;
    text-align: right;
    font-size: 42px;
    font-weight: bold;
    margin-left: 45px;
}
.left-content-container .counter {
    color: #fdb511;
    font-family: "Lato", sans-serif;
    font-size: 60px;
    margin: 25px 0 0;
    font-weight: lighter;
}
.left-content-container h5 {
    margin: 0;
    text-align: right;
    width: 100%;
    text-transform: uppercase;
}
.left-content-container .box-counter {
    float: left;
    margin: 0 0 0 60px;
}
/*--------------flickity-------------*/

#home-v2-slider {
    background-color: #f4f4f4;
    background-image: url(../img/setting-icon.png);
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 190px;
}
.flickity-enabled {
    padding: 0px 0 50px;
}
/*.flickity-enabled.is-draggable .flickity-viewport {
  padding: 60px 0px;
}*/

.carousel-cell {
    width: 50%;
    height: auto;
    margin-right: 130px;
    text-align: center;
    opacity: 0.5;
}
.carousel-cell.is-selected {
    opacity: 1;
}
.carousel-cell img {
    text-align: center;
    display: inline-block;
    width: 100%;
}
.carousel-cell .share-link {
    border: solid 3px #21201e;
}
.flickity-prev-next-button,
.flickity-prev-next-button {
    background-color: transparent;
}
.carousel-cell figcaption {
    background-color: rgba(253, 181, 17, 0.9);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity 0.3s ease-in-out 0s;
    width: 100%;
    z-index: 2;
}
.carousel-cell:hover figcaption {
    opacity: 1;
}
.carousel-cell figcaption a {
    color: white;
    float: right;
    font-size: 18px;
    position: relative;
    top: 85%;
    margin-right: 40px;
    transform: translate(0px, -50%);
}
.carousel-cell figcaption h5 {
    top: 40px;
    color: #21201e;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    padding-left: 40px;
    position: absolute;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}
.carousel-cell figcaption h5:after {
    background: #21201e none repeat scroll 0 0;
    top: 40px;
    content: "";
    height: 2px;
    left: 40px;
    position: absolute;
    width: 50px;
}
.carousel-cell figcaption p {
    text-align: left;
    padding-left: 40px;
    position: absolute;
    margin-top: 30px;
    top: 70px;
    font-size: 16px;
    color: #21201e;
}
/*--------------Testimonials V2-------------*/

#testimonials-v2 {
    background-image: url(../img/testimonials-bg-icon.png);
    background-repeat: no-repeat;
    padding-top: 190px;
    background-position: center top;
}
#testimonials-v2 .border-offset:before {
    content: "";
    display: block;
    height: 60%;
    margin-left: -10px;
    margin-top: 22px;
    outline: 6px solid #fdb511;
    position: absolute;
    width: 60%;
}
#testimonials-v2 .template-border {
    margin-left: auto;
    margin-right: auto;
    display: table;
	margin-bottom: 65px;
}
#testimonials-v2 span {
    font-size: 18px;
    font-weight: bold;
    color: #fdb511;
    display: table;
    clear: both;
    margin: 0 auto;
    text-transform: uppercase;
}
#testimonials-v2 h6 {
    font-size: 18px;
    font-weight: bold;
    color: #21201e;
    text-transform: uppercase;
    text-align: center;
}
#testimonials-v2 .border-offset img {
    position: relative;
}
#testimonials-v2 p {
    font-size: 24px;
    margin-left: 40px;
    letter-spacing: 2px;
    line-height: 40px;
    font-weight: lighter;
	margin-top: 10px;
}
#testimonials-v2 .item {
    margin-left: 50px;
}
#testimonials-v2 .fa-quote-left {
    color: #fdb511;
    font-size: 30px;
}
#testimonials-v2 .carousel-indicators li {
    border: solid 2px #cacaca;
    background-color: transparent;
    width: 12px;
    height: 12px;
    margin: 4px;
}
#testimonials-v2 .carousel-indicators .active {
    background-color: #fdb511;
    border: solid 2px #fdb511;
    margin: 4px;
    width: 12px;
    height: 12px;
}
#testimonials-v2 .carousel-indicators {
    margin-left: 0;
    left: 80px;
}
#number-stats2 {
    text-align: center;
}
#number-stats2 h2 {
    color: #FFF;
    margin-bottom: 80px;
}
#number-stats2 h6 {
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
}
#number-stats2 {
    background-image: url(../img/placeholder/number-stats2-bg.jpg);
    background-repeat: no-repeat;
    padding-top: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}
.bg-icon-number {
    background-image: url(../img/facts-bg-icon.png);
    background-repeat: no-repeat;
    padding-top: 190px;
    background-position: center top;
}
.bg-icon-team {
    background-image: url(../img/team-bg-icon.png);
    background-repeat: no-repeat;
    padding-top: 190px;
    background-position: center top;
}
.padding-top-remove {
    padding-top: 0;
}
#readytostart h2 {
    text-transform: uppercase;
    font-size: 42px;
    color: #21201e;
    margin: 0;
    font-weight: bold;
}
#readytostart {
    background-color: #fdb511;
    text-align: center;
}
#readytostart .button-arrow {
    border: 2px solid #FFF;
}
#readytostart p {
    color: #21201e;
    margin-top: 25px;
}
.border-radius {
    border-radius: 0;
}
/*--------------About Page CSS------------------*/

#discover {
    text-align: left;
}
#discover .right-paragraph {
    font-size: 24px;
    line-height: 42px;
    font-weight: lighter;
    margin-top: 142px;
}
#discover h2 {
    text-align: left;
    margin-bottom: 50px;
}
#discover h2:after {
    left: 15px;
    margin-left: 0;
    margin-right: 0;
}
#discover h4 {
    text-align: left !important;
}
#philosophy {
    background-color: #f4f4f4;
    position: relative;
}
#philosophy h2 {
    margin-bottom: 50px;
}
#philosophy h2:after {
    left: 15px;
    margin-left: 0;
    margin-right: 0;
}
#philosophy .philosophy-content-box h2 {
    text-align: left;
}
#philosophy:after {
    background-attachment: scroll;
    background-clip: border-box;
    background-image: url(../img/how-it-work.png);
    background-origin: padding-box;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover !important;
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    width: 50%;
}
#philosophy .philosophy-content-box h4 {
    text-align: left;
}
#philosophy {
    padding: 0;
}
.philosophy-content-box {
    padding-top: 100px;
    padding-bottom: 100px;
}
.philosophy-img img {
    height: 715px;
    width: 100%;
}
.philosophy-content-box p {
    margin-right: 60px;
}
.border-offset-video iframe {
    z-index: 99;
    margin-bottom: -270px;
    position: relative;
}
iframe {
    width: 100%;
    border: none;
}
.border-offset-video:before {
    content: "";
    display: block;
    height: 47.5%;
    margin-left: -15px;
    margin-top: 40px;
    outline: 10px solid #fdb511;
    position: absolute;
    width: 69%;
    z-index: 99;
}
#choose-section {
    background-color: #f4f4f4;
}
#choose-section ul {
    padding-left: 0;
}
#choose-section ul li {
    list-style: none;
    margin: 0 0 15px;
}
#choose-section ul li a {
    text-decoration: none;
    color: #b9b9b9;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}
#choose-section ul li.active a {
    background-image: url(../img/tab-arrow.png);
    background-position: right center;
    display: block;
    color: #21201e;
    background-repeat: no-repeat;
}
#choose-section h2 {
    margin-bottom: 80px;
}
#choose-section p {
    width: 85%;
}
#choose-section.bg-color {
    background-color: transparent;
}
.padding-top {
    padding-top: 270px;
    margin-top: -355px;
}
#identity {
    background-color: #f4f4f4;
    position: relative;
}
.identity-fullimg img {
    width: 100%;
    height: 100%;
}
.identity-fullimg {
    width: 50%;
    float: left;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
#identity h2::after {
    left: 85px;
    margin-left: 0;
    margin-right: 0;
}
#identity .text-left {
    background-position: left bottom;
    text-align: left;
}
#identity h2 {
    margin-bottom: 50px;
}
#identity {
    position: relative;
    padding: 0;
}
#identity .identity-content-box {
    padding: 100px 70px;
}
.identity-content-box .button-arrow {
    margin-top: 20px;
}
#identity .rate-box {
    background-color: #FFF;
    border: solid 10px #fdb511;
    width: 181px;
    position: absolute;
    left: -130px;
    height: 210px;
    padding: 48px 0;
}
#identity .rate-box span {
    font-size: 15px;
    color: #898680;
    margin-left: 18px;
    text-align: center;
}
#identity .rate-box h6 {
    font-size: 60px;
    text-align: center;
    color: #21201e;
    letter-spacing: 2px;
    font-weight: lighter;
    font-family: "Lato", sans-serif;
}
#identity .rate-box h6 sup {
    font-size: 35px;
}
#identity h3 {
    margin-top: 40px;
}
.identity-img {
    width: 100%;
    height: 905px;
}
#featuresslider .carousel-indicators .active {
    background-color: #fdb511;
    width: 12px;
    height: 12px;
}
#featuresslider .carousel-indicators li {
    border: solid 2px #fdb511;
    display: list-item;
    margin: 12px 0;
    width: 12px;
    height: 12px;
}
#featuresslider .carousel-indicators {
    width: 5%;
    right: 0;
    top: 50%;
    margin-left: 0;
    left: auto;
}
#identity ul {
    padding-left: 0;
    margin-top: 40px;
}
#identity ul li:nth-child(6) {
    border-bottom: none;
}
#identity ul li {
    border-bottom: 1px solid #e0dfdd;
    color: #21201e;
    font-size: 16px;
    list-style: none;
    width: 70%;
    font-family: "Lato", sans-serif;
    padding: 18px 0 18px 30px;
    background-image: url(../img/circle.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.portfolio-banner {
    background-image: url(../img/placeholder/portfolio-detail-banner.jpg);
    height: 540px;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    background-size: cover;
    display: table;
}
#project-detail-slider {
    padding-top: 0;
}
#project-detail ul {
    padding-left: 0px;
}
#project-detail li {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #898680;
    margin: 15px 0;
    background-image: url(../img/circle.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    display: block;
}
#projectdetailslider .template-border {
    display: block;
}
#project-detail h2 {
    text-align: left;
}
#project-detail h2:after {
    left: 15px;
    margin-left: 0;
    margin-right: 0;
}
#project-detail span {
    color: #21201e;
    font-size: 18px;
    display: block;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 25px;
}
#project-detail h4 {
    text-align: left;
}
#project-detail .button-arrow {
    margin-top: 0;
}
#project-detail p {
    text-align: left;
    margin: 50px 0;
}
#project-detail-slider figure {
    margin: 0 auto;
}
#project-detail-slider .carousel-indicators .active {
    background-color: #fdb511;
    width: 12px;
    height: 12px;
    border: none;
}
#project-detail-slider .carousel-indicators li {
    border: solid 2px #21201e;
    margin: 12px 8px;
    width: 12px;
    height: 12px;
}
#project-detail-slider .carousel-indicators {
    bottom: -25px;
}
#project-detail-slider .carousel-control.left {
    background: none;
    left: 7%;
}
#project-detail-slider .carousel-control.right {
    background: none;
    right: 7%;
}
#project-detail-slider .carousel-control {
    top: 45%;
    z-index: 99;
    opacity: 1;
}
#project-colors {
    background-color: #f4f4f4;
    margin-top: -350px;
    padding-top: 350px;
}
#project-colors .color-box-1 {
    background-color: #FFF;
    border: 6px solid #f4f4f4;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #FFF;
    height: 133px;
    margin: 70px auto 0;
    text-align: center;
    width: 133px;
}
#project-colors .color-box-2 {
    width: 133px;
    height: 133px;
    border-radius: 50%;
    background-color: #898680;
    text-align: center;
    margin: 70px auto 0;
    background-color: #898680;
    border: 6px solid #fff;
    box-shadow: 0 0 0 3px #898680;
}
#project-colors .color-box-3 {
    width: 133px;
    height: 133px;
    border-radius: 50%;
    background-color: #fdb511;
    text-align: center;
    margin: 70px auto 0;
    background-color: #fdb511;
    border: 6px solid #fff;
    box-shadow: 0 0 0 3px #fdb511;
}
#project-colors .color-box-4 {
    width: 133px;
    height: 133px;
    border-radius: 50%;
    background-color: #21201e;
    text-align: center;
    margin: 70px auto 0;
    background-color: #21201e;
    border: 6px solid #fff;
    box-shadow: 0 0 0 3px #21201e;
}
#project-colors h3 {
    background-color: #fff;
    border: 3px solid #fdb511;
    display: table;
    font-weight: bolder;
    margin: 20px auto 0;
    padding: 12px 35px;
    text-align: center;
}
#pre-next button {
    width: 100%;
    color: #21201e;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    border: solid 1px #e5e5e5;
    letter-spacing: 1.5px;
    padding: 25px;
    background-color: transparent;
}
#pre-next button:hover {
    background-color: #fdb511;
    border: solid 1px #fdb511;
}
#pre-next .pre-button:hover {
    border-right: none;
}
#pre-next button:hover span {
    color: #FFF;
}
#pre-next .pre-button {
    text-align: right;
    border-right: none;
}
#pre-next .next-button {
    text-align: left;
}
#pre-next button span {
    color: #fdb511;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 14px;
}
.blog-banner {
    background-image: url(../img/placeholder/blog-v1-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 540px;
    width: 100%;
    display: table;
}
.blog-page-img-border img {
    position: relative;
    z-index: 99;
    margin-left: 20px;
}
#blog-page .blog-page-img-border:after {
    content: "";
    display: block;
    height: 91%;
    margin-left: 9px;
    outline: 10px solid #fdb511;
    outline-offset: 7px;
    position: absolute;
    top: 50px;
    width: 83%;
}
#blog h5 {
    margin-bottom: 80px;
}
#blog-page h3 {
    text-transform: uppercase;
    color: #21201e;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
}
#blog-page .right-content-blog h6:after {
    content: "";
    background-color: #fdb511;
    height: 2px;
    position: absolute;
    width: 56px;
    right: 15px;
    margin-top: 40px;
}
#blog-page .left-content-blog h6:after {
    content: "";
    background-color: #fdb511;
    height: 2px;
    position: absolute;
    width: 56px;
    left: 15px;
    margin-top: 40px;
}
#blog-page p {
    margin-top: 40px;
}
#blog-page .left-content-blog h6 {
    color: #b9b9b9;
    font-size: 14px;
    font-weight: bold;
}
#blog-page .right-content-blog h6 {
    color: #b9b9b9;
    font-size: 14px;
    font-weight: bold;
}
#blog-page .right-content-blog .button-arrow img:nth-child(2) {
    display: none;
}
#blog-page h6 b {
    font-size: 18px;
}
.blog-img-push-right {
    bottom: 0;
    float: right;
    right: 55px;
    top: 0;
}
#blog-page .left-content-blog {
    padding-top: 30px;
    padding-bottom: 30px;
}
#blog-page .right-content-blog {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: right;
}
.margin-top {
    margin-top: 90px;
}
.border-none {
    border: none !important;
}
.border-none:hover {
    background-color: unset;
    color: #21201e;
}
#blog-page .right-content-blog .button-arrow {
    text-align: right;
}
#blog-page-v2 .blog-page-img-border:after {
    content: "";
    display: block;
    height: 87%;
    margin-left: 15px;
    outline: 10px solid #fdb511;
    outline-offset: 7px;
    position: absolute;
    top: 50px;
    width: 74%;
}
#blog-page-v2 .button-arrow {
    margin-top: 20px;
}
#blog-page-v2 h6:after {
    content: "";
    background-color: #fdb511;
    height: 2px;
    position: absolute;
    width: 56px;
    left: 15px;
    margin-top: 40px;
}
.blog-post-box-container {
    padding: 0px;
    margin-bottom: 75px;
}
#blog-page-v2 .row:last-child .template-border {
    margin-bottom: 0px;
}
#blog-page-v2 .row:last-child .blog-post-box-container {
    margin-bottom: 0px;
}
#blog-page-v2 .row:last-child .blog-post-box-container:last-child {
    margin-bottom: 0px;
}
#blog-page-v2 h6 b {
    font-size: 18px;
}
#blog-page-v2 h6 {
    color: #b9b9b9;
    font-size: 14px;
    font-weight: bold;
}
.margin-remove {
    margin-bottom: 0 !important;
}
#blog-page-v2 h3 {
    letter-spacing: 0;
    line-height: 30px;
    margin: 0;
}
#blog-page-v2 span {
    color: #b9b9b9;
    font-weight: bold;
    font-size: 14px;
    margin: 10px 0 20px;
    display: block;
}
#blog-page-v2 span:after {
    content: "";
    background-color: #fdb511;
    height: 2px;
    position: absolute;
    width: 56px;
    left: 15px;
    margin-top: 40px;
}
#blog-page-v2 span b {
    font-size: 18px;
}
#blog-page-v2 p {
    margin-top: 50px;
}
#contact-section h2 {
    text-align: left;
}
#contact-section h2:after {
    left: 15px;
    margin-left: 0;
    margin-right: 0;
}
#contact-section h3 {
    text-align: left;
}
#map {
    height: 700px;
    width: 100%
}
.blog-single-banner {
    background-image: url(../img/placeholder/boy-1209131_1920.png);
    height: 540px;
    background-repeat: no-repeat;
    width: 100%;
    display: table;
    background-position: center center;
    background-size: cover;
    background-color: whitesmoke
}
#blog-single-page b {
    font-size: 86px;
    color: #21201e;
    line-height: 68px;
    margin-right: 17px;
    float: left;
    font-weight: bolder;
}
#blog-single-page .margin-top {
    margin-top: 50px;
}
#blog-single-page .large-size-paragraph {
    font-size: 24px;
    color: #898680;
    font-weight: 100;
    line-height: 40px;
    margin-bottom: 40px;
}
#blog-single-page .blog-single-page-h3 {
    margin: 50px 0;
    font-size: 36px;
    color: #21201e;
    font-weight: lighter;
    font-family: "Lato", sans-serif;
    text-transform: none;
}
#blog-single-page ul {
    padding-left: 0;
    margin: 60px 0 15px;
}
#blog-single-page .social-media:nth-child(2) {
    float: right;
}
#blog-single-page ul li {
    background-image: url("../img/circle.png");
    background-position: left center;
    background-repeat: no-repeat;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    list-style: outside none none;
    margin: 30px 0;
    padding-left: 30px;
    color: #21201e;
}
#blog-single-page ul li:last-child {
    margin-bottom: 0;
}
#blog-single-page blockquote {
    padding: 50px 50px 50px 100px;
    border: 15px solid #f1f1f0;
    margin: 50px 0;
}
#blog-single-page blockquote p {
    font-size: 30px;
    color: #21201e;
    font-weight: lighter;
    line-height: 42px;
    font-style: italic;
    font-family: "Lato", sans-serif;
    letter-spacing: 2px;
    background-image: url(../img/qoute-icon.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-right: 90px;
}
.float-right {
    float: right;
}
.float-left {
    float: left;
}
#blog-single-page .social-media {
    padding-left: 0;
}
#blog-single-page .social-media span {
    list-style: none;
    display: inline;
    background-image: none;
    padding-left: 0;
}
#blog-single-page .social-media span a {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: #898680;
    font-size: 14px;
    margin-right: 30px;
    letter-spacing: 1px;
    font-weight: bolder;
    text-decoration: none;
}
#blog-single-page .social-media span a:hover {
    color: #fdb511;
}
#blog-single-page .post-section {
    border: solid 1px #e0dfdd;
    border-left: none;
    padding: 50px 0;
    border-right: none;
    margin-bottom: 50px;
}
#blog-single-page .post-img {
    border: solid 3px #fdb511;
    padding: 9px;
    margin-bottom: 20px;
}
#blog-single-page .fa {
    font-size: 22px;
    color: #b9b9b9;
    margin: 20px 20px 20px 0;
}
#blog-single-page hr {
    margin-top: 40px;
    margin-bottom: 40px;
}
#blog-single-page .people-comments-box {
    margin: 65px 0;
}
#blog-single-page .people-comments-box h6 {
    text-transform: uppercase;
    color: #555450;
    font-weight: bold;
    font-size: 14px;
}
#blog-single-page .people-comments-box span {
    text-transform: uppercase;
    color: #b9b9b9;
    font-weight: bold;
    font-size: 14px;
}
#blog-single-page .people-comments-box a {
    text-transform: uppercase;
    color: #fdb511;
    float: right;
    font-weight: bold;
    font-size: 14px;
}
#blog-single-page .people-comments-box a:hover {
    text-decoration: none;
    color: #555450;
}
#blog-single-page .people-comments-box .secondary-paragraph {
    margin-top: 20px;
}
#blog-single-page .people-comments-box:nth-child(odd) {
    margin-left: 195px;
    margin-top: 60px;
    margin-bottom: 0px;
    display: inline-block;
}
#h4-form-blog input {
    width: 100%;
    position: relative;
    z-index: 99;
    border: none;
    padding: 7px 10px;
    border-bottom: solid 1px #e0dfdd;
    margin-bottom: 50px;
}
#h4-form-blog label {
    color: #898680;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    padding-left: 10px;
    opacity: 0.8;
}
#h4-form-blog textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 50px;
    height: 235px;
    border: solid 1px #e0dfdd;
}
#h4-form-blog:-moz-placeholder {
    color: #898680;
    font-family: "Lato", sans-serif;
    font-size: 16px;
}
#h4-form-blog button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 0;
}
.next-pre-post h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFF;
}
.next-pre-post span {
    font-size: 36px;
    font-weight: lighter;
    color: #FFF;
    display: block;
    font-family: "Lato", sans-serif;
}
.next-pre-post .button-arrow {
    color: #fdb511;
}
.pre-post {
    background-image: url(../img/placeholder/pre-post-img.jpg);
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    background-size: cover;
    padding: 85px 20px;
}
.pre-post:hover {
    background-image: url(../img/placeholder/pre-post-img-hover.jpg);
}
.pre-post:hover .button-arrow {
    color: #FFF;
}
.next-post:hover {
    background-image: url(../img/placeholder/next-post-img-hover.jpg);
}
.next-post:hover .button-arrow {
    color: #FFF;
}
.next-post {
    background-image: url(../img/placeholder/next-post-img.jpg);
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    background-size: cover;
    padding: 85px 20px;
}
/*---Pricing---*/
/*Pricing 1*/

#pricing {
    text-align: center;
}
.pricing-banner {
    background-image: url(../img/placeholder/pricing-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: table;
    height: 540px;
}
#pricing p {
    margin: 50px 0;
}
#pricing .tab-pane .table-content {
    border: solid 10px #f4f4f4;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: all .2s ease-in-out;
    background-color: #FFF;
    margin-top: 50px;
}
#pricing .nav-tabs {
    display: inline-block;
    margin: 50px 17px 130px 0;
}
#pricing .nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: #fdb511;
}
#pricing .nav-tabs > li > a {
    margin-right: 0;
    border: solid 2px #fdb511;
    font-size: 18px;
    text-transform: uppercase;
    color: #21201e;
    padding: 15px 46px;
    border-radius: 0;
    letter-spacing: 2px;
}
#pricing .nav-tabs > li > a:hover {
    background-color: transparent;
}
#pricing .tab-pane .table-content .table-header {
    width: 181px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #FFF;
}
#pricing .tab-pane .table-active {
    margin: -27px -10px;
    z-index: 99;
}
#pricing .tab-pane .table-active .table-content .table-header {
    border: solid 10px #fdb511;
    margin-top: -100px;
    height: 200px;
    padding: 50px 0;
}
#pricing .tab-pane .table-active .table-content {
    border: solid 10px #21201e;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.19);
}
#pricing .tab-pane .table-active .table-content ul {
    margin-top: 45px;
}
#pricing .tab-pane .table-content .button-arrow {
    margin-bottom: 15px;
}
#pricing .tab-pane h6 {
    font-size: 18px;
    color: #21201e;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
}
#pricing .tab-pane span {
    font-size: 60px;
    letter-spacing: 2px;
    color: #fdb511;
    font-weight: 300;
    font-family: "Lato", sans-serif;
}
#pricing .tab-pane span sup {
    font-size: 38px;
}
#pricing .tab-pane ul {
    padding-left: 0;
}
#pricing .tab-pane li {
    list-style-type: circle;
    color: #fdb511;
    padding: 15px 10px;
    width: 80%;
    margin: 0 auto;
    border-bottom: solid 1px #e0dfdd;
    font-size: 16px;
}
#pricing .tab-pane li span {
    color: #21201e;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}
#pricing .tab-pane li:last-child {
    border-bottom: none;
}
/*Pricing 2*/

#pricing.v2-table .tab-pane .table-content .table-header {
    border: solid 10px #fdb511;
    margin-top: -100px;
    height: 200px;
    padding: 50px 0;
}
#pricing.v2-table .tab-pane .table-active .table-content .table-header {
    border: solid 10px #21201e;
    background-color: #fdb511;
}
#pricing.v2-table .tab-pane ul {
    margin-top: 15px;
}
#pricing.v2-table .tab-pane .table-content {
    margin-top: 100px;
    margin-left: 15px;
    margin-right: 15px;
}
#pricing.v2-table .tab-pane .table-active {
    margin: 0;
}
#pricing.v2-table .tab-pane .table-active .table-content {
    background-color: #21201e;
    border: solid 10px #fdb511;
    box-shadow: none;
}
#pricing.v2-table .tab-pane .table-active li {
    border-bottom: solid 1px rgba(224, 223, 221, 0.10) !important;
}
#pricing.v2-table .tab-pane .table-active .table-content ul {
    margin-top: 15px;
}
#pricing.v2-table .tab-pane .table-active .button-arrow {
    color: #FFF;
}
#pricing.v2-table .tab-pane li:last-child {
    border-bottom: none;
}
#pricing.v2-table .tab-pane span {
    color: #21201e;
}
#pricing.v2-table .tab-pane .table-active li {
    list-style-type: circle;
    color: #fdb511;
    padding: 15px 10px;
    width: 80%;
    margin: 0 auto;
    border-bottom: solid 1px #e0dfdd;
}
#pricing.v2-table .tab-pane .table-active li span {
    color: #FFF;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}
#pricing.v2-table .tab-pane .table-active li:last-child {
    border-bottom: none !important;
}
/*-- Included --*/

#included {
    background-color: #f4f4f4;
}
#included p {
    margin-top: 50px;
    margin-bottom: 50px;
}
.included-box {
    border: solid 3px #fdb511;
    background-color: #FFF;
    text-align: center;
    padding: 25px;
    margin-top: 25px;
}
.included-box span {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1px;
    background-image: url(../img/check-icon.png);
    background-position: left center;
    padding-left: 30px;
    background-repeat: no-repeat;
}
/*-- FAQ --*/

.faq-banner {
    background-image: url(../img/placeholder/banner-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: table;
    height: 540px;
}
#integration-list {
    width: 100%;
    margin: 0 auto;
    display: table;
}
#integration-list ul {
    padding: 0;
    margin-top: 50px;
    color: #555;
    border: solid 3px #f4f4f4;
}
#integration-list ul > li {
    list-style: none;
    border-top: solid 3px #f4f4f4;
    display: block;
    padding: 0 30px;
    overflow: hidden;
}
#integration-list ul > li:first-child {
    border-top: none;
}
.expand {
    display: block;
    text-decoration: none;
    color: #555;
    cursor: pointer;
}
.expand span:hover {
    color: #fdb511;
}
.expand .right-arrow:hover {
    color: #fdb511;
}
.expand span {
    display: block;
    padding: 24px 0;
    font-weight: bold;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #21201e;
}
.content-dispaly {
    display: table;
}
#sup {
    display: table-cell;
    vertical-align: middle;
    width: 80%;
}
.detail a {
    text-decoration: none;
    color: #C0392B;
    border: 1px solid #C0392B;
    padding: 6px 10px 5px;
    font-size: 14px;
}
.detail {
    margin: 10px 0 10px 0px;
    display: none;
    line-height: 22px;
}
.detail span {
    margin: 0;
}
.right-arrow {
    width: 28px;
    height: 100%;
    float: right;
    font-size: 50px;
    color: #ececec;
    font-family: none;
}
/*-- FAQ 2--*/

#faq .panel-group .panel {
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    border: none;
}
#faq .panel-default > .panel-heading {
    padding: 0 0 20px 79px;
    border-radius: 0;
    border: 0px;
    color: #212121;
    background-color: transparent;
}
#accordion-one h5 {
    text-align: left;
    width: 100%;
}
#faq .panel-title {
    font-size: 20px;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    position: relative;
}
#faq .panel-title > a {
    display: block;
    text-decoration: none;
    margin-top: 40px;
    color: #21201e !important;
}
#faq .panel-body {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 85px;
}
#faq .panel-body p {
    margin-top: 0;
}
#faq .more-less {
    color: #fdb511;
    border: solid 2px #fdb511;
    font-weight: 200;
    padding: 0px 9px;
    text-align: center;
    font-size: 40px;
    vertical-align: middle;
    font-family: none;
    background-color: #FFF;
    z-index: 99;
}
#faq .collapsed .more-less {
    color: #eeeeee;
    border: solid 2px #eeeeee;
    font-weight: 200;
    padding: 0px 9px;
    text-align: center;
    font-size: 40px;
    vertical-align: middle;
    font-family: none;
    background-color: #FFF;
    z-index: 99;
}
#faq .panel-group .panel:after {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 60px;
    left: 37px;
    width: 2px;
    background: #eeeeee;
}
.accordion-icon {
    position: absolute;
    top: -18px;
    left: -82px;
    background: transparent;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    line-height: 50px;
    padding: 3px;
    z-index: 3;
}
#faq .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
}
/*-- Error Page--*/

.errorpage-box {
    border: solid 10px #fdb511;
    padding: 80px 0 0px 80px;
}
.errorpage-box span {
    font-size: 80px;
    color: #fdb511;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    line-height: 50px;
}
.errorpage-box h2 {
    text-align: left;
    margin-bottom: 50px;
}
.errorpage-box h2:after {
    margin-left: 0;
    margin-right: 0;
    left: 20px;
}
.errorpage-box .robot {
    margin-top: 47px;
    margin-bottom: -25px;
}
.errorpage-box .button-arrow {
    margin-top: 20px;
    margin-bottom: 60px;
}
/*-- Coming Soon--*/

.coming-soon-banner {
    background-image: url(../img/placeholder/coming-soon.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: table;
    height: 100vh;
    text-align: center;
}
.coming-soon-banner #banner-form {
    width: 50%;
}
.coming-soon-banner #banner-form input {
    width: 98%;
}
.coming-soon-banner p {
    color: #FFF;
}
.coming-soon-banner hr {
    width: 300px;
}
#countbox1 {
    color: #FFF;
    font-size: 70px;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    line-height: 70px;
    margin: 30px 0;
}
#countbox1 span {
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: lighter;
    margin-right: 20px;
}
.v1-header.comingsoon-header {
    position: absolute;
    width: 100%;
}
.comingsoon-header .navbar-brand {
    float: none;
}
.comingsoon-header .navbar-brand img {
    margin: 0 auto;
}
.coming-soon-banner ul {
    margin-top: 40px;
    padding-left: 0;
}
.coming-soon-banner ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #b2b2b3;
    padding-bottom: 15px;
    font-weight: bold;
    z-index: 99;
    position: relative;
}
.coming-soon-banner ul li {
    display: inline-block;
    margin: 0 25px;
}
.coming-soon-banner ul li a:hover {
    color: #FFF;
}
.coming-soon-banner ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #fdb511;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.coming-soon-banner ul li a:hover:before,
.coming-soon-banner ul li a:focus:before,
.coming-soon-banner ul li a:active:before {
    left: 0;
    right: 0;
}
/*-- Contact --*/

.contact-banner {
    background-image: url(../img/placeholder/smartphone-5692532_1920.jpg);
    height: 540px;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    background-size: cover;
    display: table;
}
#contact-form .field-label {
    border-bottom: 1px solid #b9b9b9;
    margin-top: 20px;
    width: 35%;
    padding: 10px 0;
    color: #21201e;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2px;
    float: left;
}
#contact-form input {
    width: 65%;
    border: none;
    color: #898680;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    border-bottom: solid 1px #b9b9b9;
    margin: 20px 0;
    padding: 10px;
    float: left;
}
#contact-form .select-style {
    width: 100%;
    background-image: url(../img/down-arro.png);
    background-repeat: no-repeat;
    background-position: right center;
    border: none;
    border-image: none;
    border: none;
    color: #21201e;
    font-size: 16px;
    border-bottom: solid 1px #b9b9b9;
    margin: 40px 0;
    padding: 10px 0;
    border-radius: 0;
    border-style: none none solid;
    border-width: 0 0 1px;
    opacity: 1;
}
#contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#contact-form option {
    padding: 10px;
    border: none;
}
#contact-form select,
option {
    /* Firefox 19+ */
    
    color: #21201e;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
}
#contact-form input.css-checkbox[type="checkbox"] {
    display: none;
}
#contact-form input.css-checkbox[type="checkbox"] + label.custom-checkbox {
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    font-family: Calibri;
    font-size: 18px;
    font-weight: normal;
    height: 45px;
    line-height: 24px;
    margin: 10px 0 0;
    padding-left: 50px;
    padding-top: 4px;
    vertical-align: middle !important;
    z-index: 99;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}
#contact-form input.css-checkbox[type="checkbox"]:checked + label.custom-checkbox {
    background-image: url(../img/checkbox-select.png);
}
#contact-form label.custom-checkbox {
    -moz-user-select: none;
    background-image: url(../img/checkbox-normal.png);
}

/*--------------------- DATA CHECKBOX*/

#contact-form input.css-checkbox[type="checkbox"] + label.custom-checkbox-data {
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    font-family: Calibri;
    font-size: 12px;
    font-weight: normal;
    height: 45px;
    line-height: 24px;
    margin: 10px 0 0;
    padding-left: 50px;
    padding-top: 4px;
    vertical-align: middle !important;
    z-index: 99;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}
#contact-form input.css-checkbox[type="checkbox"]:checked + label.custom-checkbox-data {
    background-image: url(../img/checkbox-select.png);
}
#contact-form label.custom-checkbox-data {
    -moz-user-select: none;
    background-image: url(../img/checkbox-normal.png);
}


/*--------------------- DATA CHECKBOX END*/

#contact-form .intrest-section label {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #898680;
    font-weight: 500;
    font-weight: light;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#contact-form .intrest-section label {
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #898680;
    font-weight: 500;
    font-weight: light;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#contact-form .button-arrow {
    background-color: transparent;
    border: 2px solid #fdb511;
    border-radius: 50px;
    color: #21201e;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    padding: 16px 35px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-transform: uppercase;
    width: auto;
    float: none;
}
#contact-form .button-arrow:hover {
    background-color: #fdb511;
    color: #21201e;
}

#contact-form .button-disable {
    background-color: transparent;
    border: 2px solid #898680;
    border-radius: 50px;
    color: #21201e;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    padding: 16px 35px;
    text-decoration: none;
    cursor: not-allowed;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-transform: uppercase;
    width: auto;
    float: none;
}
#contact-form .button-disable:hover {
    background-color: #898680;
    color: #21201e;
}


#response {
    margin-top: 50px;
}
#response div {
    color: #dd4b39;
}
#response .success {
    color: #28ad62;
}
#contact-form h5 {
    text-align: left;
    display: inline-block;
    letter-spacing: 2px;
    margin-top: 30px;
}
.padding-right-remove {
    padding-right: 0;
}
.padding-left-remove {
    padding-left: 0;
}
#contact-form input::-moz-placeholder {
    /* Firefox 19+ */
}
#contact-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    
    color: #21201e;
}
#contact-form textarea {
    width: 100%;
    border: solid 1px #b9b9b9;
    padding: 15px;
    height: 237px;
}
/*----Dark Version-----*/

.slider-heading {
    color: #FFF;
    text-transform: inherit;
    letter-spacing: -2px !important;
}
#dark-version h2 {
    color: #FFF;
}
#dark-version h2 span {
    font-weight: bold;
}
#dark-version h3 {
    color: #FFF;
}
#dark-version h5 {
    color: #666666;
}
#dark-version .button-arrow {
    color: #FFF;
}
#dark-version #features {
    background-color: #21201e;
}
#dark-version #features .ftr-1:hover .fa-lightbulb-o {
    color: #FFF;
}
#dark-version #features .ftr-2:hover .fa-code {
    color: #FFF;
}
#dark-version #features .ftr-3:hover .fa-mobile {
    color: #FFF;
}
#dark-version #about-us {
    background-color: #1b1a19;
}
#dark-version #aboutslider {
    background-color: #21201e;
}
#dark-version .template-border figure img {
    -webkit-filter: grayscale(100%);
    / Safari 6.0 - 9.0 / filter: grayscale(100%);
}
#dark-version #our-work {
    background-color: #21201e;
}
#dark-version .testimonials {
    background-image: url(../img/placeholder/dark-version-testimonials-bg.jpg);
}
#dark-version #quote-carousel .carousel-indicators .active h5 {
    color: #898680;
}
#dark-version #clients {
    background-color: #21201e;
}
#dark-version #clients ul li::before {
    border-bottom: 2px solid #2b2b2b;
    border-left: 2px solid #2b2b2b;
}
#dark-version #clients ul li::after {
    content: "";
    position: absolute;
    border: 5px solid #fdb511;
    outline: 10px solid #21201e;
    border-radius: 25px;
    top: auto;
    left: -5px;
    bottom: -5px;
    z-index: 1;
}
#dark-version #portfolio {
    background-color: #1b1a19;
}
#dark-version .element-item img {
    -webkit-filter: grayscale(100%);
    / Safari 6.0 - 9.0 / filter: grayscale(100%);
}
#dark-version #filters .button {
    color: #FFF;
}
#dark-version .button-group {
    border-bottom: none;
}
#dark-version .portfolio-grid .element-item figcaption h5 {
    color: #FFF;
}
#dark-version #team {
    background-color: #21201e;
}
#dark-version #team figure.team-member img {
    -webkit-filter: grayscale(100%);
    / Safari 6.0 - 9.0 / filter: grayscale(100%);
}
#dark-version #number-stats {
    background-image: url(../img/placeholder/dark-version-numberstats-bg.jpg);
}
#dark-version #blog {
    background-color: #1b1a19;
}
@media only screen and (max-width: 1200px) {
    .contact-form .col-md-6 {
        position: inherit;
    }
    #contact-form .field-label {
        border-bottom: none;
        float: none;
        z-index: 99;
        position: relative;
    }
    #contact-form input {
        margin: 0;
        width: 100%;
        float: none;
        position: relative;
        z-index: 99;
    }
    #contact-form .padding-left-remove {
        padding-left: 15px;
    }
	#testimonials-v2 .carousel-indicators {
		left: 90px;
	}
}
@media only screen and (max-width: 992px) {
    h2 {
        font-size: 30px;
    }
    .navbar-search {
        height: 101px;
    }
    .navbar-search .form-control {
        height: 101px;
    }
    .v1-header .dropdown-menu > li > a {
        margin: 0px 40px !important;
        color: #FFF !important;
        line-height: 40px;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
    }
    .flickity-prev-next-button {
        display: none;
    }
    .v1-header .navbar-nav .mega-menu a {
        padding-right: 15px;
		padding-left: 40px;
    }
	.v1-header .mega-menu ul {
		margin-top: 0;
	}
    .v1-header .dropdown .mega-menu {
        width: 100% !important;
    }
    .v1-header .dropdown-menu > li > a:hover {
        color: #fdb511 !important;
        background-color: transparent;
    }
    .v1-header .dropdown .dropdown-menu .dropdown li {
        padding-left: 20px;
    }
    .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li {
        padding-left: 40px;
    }
    .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li a {
        background-image: none;
    }
    .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li:first-child a {
        margin-top: 0px !important;
    }
    .v1-header .dropdown .dropdown-menu .dropdown .dropdown-menu li a:hover {
        background-image: none !important;
    }
    .v1-header .dropdown .dropdown-menu li:last-child a:hover {
        background-image: none !important;
    }
    .v1-header .dropdown .dropdown-menu .dropdown a {
        background-color: transparent !important;
    }
    .v1-header .navbar-nav .open .dropdown-menu .dropdown .dropdown-menu > li > a:hover,
    .navbar-nav .open .dropdown-menu .dropdown-menu .dropdown .dropdown-menu > li > a:focus {
        background-image: url(../img/arrow-hover-drop.png);
    }
    .dropdown-menu-large > li > ul > li > a:hover {
        color: #fdb511;
        background-color: transparent;
    }
    .v1-header .dropdown-menu > li:first-child > a {
        margin-top: -15px !important;
    }
    .v1-header .dropdown .dropdown-menu .dropdown a {
        background-position: right center;
    }
    .relative-nav-container {
        position: static;
    }
    #about-us #aboutslider .carousel-indicators {
        left: 50%;
        top: 97%;
        transform: rotate(90deg);
    }
    .navbar-search {
        background-color: #fdb511;
        color: white;
        top: 0;
        border: none;
    }
    #project-colors {
        padding-top: 120px;
        margin-top: 0;
    }
    .navbar-search .search-close {
        color: #FFF;
    }
    .nav-icons {
        float: right;
        margin-top: 0 !important;
    }
    .navbar-search .search-close:hover {
        color: white;
    }
    .v1-header .navbar-toggle {
        float: left;
        border: none;
        padding: 0;
        margin: 40px 0 40px 40px;
    }
    .v1-header .navbar-brand img {
        display: block;
        float: none;
        height: 80px;
        left: 0;
        position: absolute;
        right: 0;
        width: 80px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2px;
        margin-bottom: 0;
    }
    .v1-header {
        background-color: #21201e;
    }
    .v1-header .navbar-toggle .fa-navicon {
        color: #fdb511;
        font-size: 17px;
        font-weight: lighter;
    }
    .v1-header .navbar-toggle .fa-navicon:hover {
        background-color: transparent;
    }
    .v1-header .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: transparent;
    }
    .v1-header .navbar-right {
        background-color: #21201e;
        margin-bottom: 0;
        float: none;
    }
    .v1-header .navbar-default .navbar-nav > li {
        float: none;
        clear: both;
    }
    .v1-header .dropdown-menu li a:hover {
        background-color: transparent;
        color: #fdb511;
    }
    .v1-header .navbar-fixed-top .navbar-collapse {
        max-height: auto !important;
        overflow-x: auto !important;
    }
    .v1-header .dropdown .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-top: 0;
    }
    .v1-header .navbar-right {
        margin-top: 30px;
    }
    .v1-header .relative-nav-container .navbar-right {
        background-color: transparent;
    }
    .v1-header {
        border-bottom: none;
    }
    .v1-header .navbar-default .navbar-nav > li > a {
        padding-bottom: 30px;
    }
    .v1-header .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-top: 1px solid #3b4049;
    }
    .v1-header .navbar-default .navbar-nav > li > #search-open {
        margin: 40px 40px 40px 0 !important;
    }
    .v1-header .navbar-default .navbar-nav > li > a {
        margin: 0 40px !important;
    }
    .v1-header #bs-example-navbar-collapse-1 {
        background-color: #21201e;
    }
    .v1-header .navbar-header {
        float: none;
    }
    .v1-header .navbar-toggle {
        display: block;
    }
    .v1-header .navbar-collapse.collapse {
        display: none!important;
    }
    .v1-header .collapse.in {
        display: block !important;
    }
    .left-content-container h5 {
        margin-bottom: 30px;
    }
    .left-content-container .float-right {
        display: table;
        margin: 0 auto;
    }
    .left-content-container .box-counter:first-child {
        margin-left: 0;
    }
    #pricing .nav-tabs {
        display: block;
        margin: 50px 0;
        border-bottom: none;
    }
    #blog-page-v2 .row:last-child .blog-post-box-container {
        margin-bottom: 75px;
    }
    #blog .blog-post-box-container {
        margin-bottom: 75px;
    }
    #blog .blog-post-box-container:last-child {
        margin-bottom: 0;
    }
    #blog .template-border {
        margin-bottom: 70px;
    }
    .coming-soon-banner {
        padding-top: 100px;
    }
    .errorpage-box .robot {
        margin-left: auto;
        margin-right: auto;
    }
    #blog-page .right-content-blog .button-arrow img:nth-child(1) {
        display: none;
    }
    #blog-page .right-content-blog .button-arrow img:nth-child(2) {
        display: inline-block;
        margin-left: 10px;
        margin-right: -30px;
    }
    #blog-page .right-content-blog .button-arrow:hover img:nth-child(2) {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    #blog-page-v2 .row:last-child .template-border {
        margin-bottom: 70px;
    }
    #blog-single-page blockquote {
        padding: 50px;
    }
    #identity ul li {
        width: 100%;
    }
    #blog-page h3 {
        margin-top: 0;
    }
    #blog-page .left-content-blog {
        padding-top: 0;
    }
    #blog-page .right-content-blog {
        padding-top: 0;
    }
    .philosophy-content-box p {
        margin-right: 0;
    }
    #choose-section p {
        width: 100%;
    }
    #choose-section ul {
        margin-top: 50px;
    }
    #choose-section canvas {
        margin-top: 50px;
    }
    #banner-form .responsive-button {
        background-color: #fdb511;
        border: medium none;
        border-radius: 60px;
        display: inline-block;
        letter-spacing: 1px;
        margin-left: 96px;
        padding: 13px 16px;
        margin-left: -65px;
        margin-top: 2px;
    }
    #banner-form input {
        padding: 0 30px;
    }
    #banner-form .responsive-button .fa-pencil {
        font-size: 25px;
        color: #FFF;
    }
    #banner-form #subscribe {
        display: none;
    }
    figure.team-member p .fa-facebook {
        width: 45px;
        height: 45px;
    }
    #testimonials-v2 .carousel-indicators {
        bottom: -14px;
    }
    #identity .rate-box {
        position: relative;
        left: 0;
        margin-bottom: 50px;
    }
    figure.team-member p .fa-twitter {
        width: 45px;
        height: 45px;
    }
    figure.team-member p .fa-envelope {
        width: 45px;
        height: 45px;
    }
    h5 {
        width: 100%;
    }
    #footer .subcribe {
        width: 100%;
        display: block;
    }
    #blog-single-page .people-comments-box:nth-child(2n+1) {
        display: block;
        margin-left: 0;
    }
    .float-right {
        float: none;
    }
    #blog-page .blog-img-push-right {
        position: relative;
        right: 0;
    }
    #blog-page .right-content-blog h6::after {
        left: 15px;
    }
    #blog-page .right-content-blog {
        text-align: left;
    }
    #clients ul li:nth-child(1):after,
    #clients ul li:nth-child(3):after,
    #clients ul li:nth-child(5):after,
    #clients ul li:nth-child(7):after {
        display: none;
    }
    #clients ul li:nth-child(6):after {
        display: block;
    }
    .v1-header .navbar-default .navbar-nav > li > a {
        margin: 0 10px;
    }
    .v1-header .navbar-default .navbar-nav > li > #search-open {
        margin-left: 0;
    }
    #filters .button {
        padding-left: 0;
        display: block;
        padding-bottom: 5px;
        margin-bottom: 15px;
        text-align: left;
    }
    .container-fluid .button-group {
        margin: 60px 40px;
    }
    .button-group {
        border-bottom: 0px;
        margin: 0 15px;
    }
    #filters .button.is-checked {
        padding-bottom: 5px;
        width: 100%;
    }
    #blog-page .right-content-blog span {
        background-position: left bottom;
    }
    #philosophy:after {
        display: block;
        height: 400px;
        position: relative;
        width: 100%;
    }
    .identity-fullimg {
        width: 100%;
        position: relative;
        height: 400px;
    }
    #identity .identity-content-box {
        padding-top: 100px;
        padding-bottom: 55px;
        padding-left: 0;
        padding-right: 0;
    }
    #project-detail ul {
        padding-left: 0;
    }
    #testimonials-v2 p {
        margin-bottom: 50px;
    }
    #testimonials-v2 .carousel-indicators {
        left: 20%;
    }
    #testimonials-v2 .item {
        margin-left: 0;
    }
    #pricing .tab-pane .table-active .table-content .table-header {
        margin-top: 0;
    }
    #pricing .tab-pane .table-active {
        margin: 0;
    }
    #pricing.v2-table .tab-pane .table-content .table-header {
        margin-top: -100px;
    }
    .testimonials-1 .carousel-control .icon-prev img {
        margin-left: 0;
    }
    .testimonials-1 .carousel-control .icon-next img {
        margin-right: 0;
    }
    .testimonials-3 .carousel-control .icon-prev img {
        margin-left: 0;
    }
    .testimonials-3 .carousel-control .icon-next img {
        margin-right: 0;
    }
    .errorpage-box {
        padding: 50px;
    }
    .errorpage-box .robot {
        margin-bottom: 0px;
        margin-top: 30px;
    }
    .testimonials-1 .carousel-control {
        display: none;
    }
    .testimonials-3 .carousel-control {
        display: none;
    }
    .carousel-cell {
        margin-right: 50px;
    }
    .flickity-prev-next-button.previous {
        left: 170px;
    }
    .flickity-prev-next-button.next {
        right: 170px;
    }
    .tp-banner-container:hover {
        cursor: grab !important;
    }
    .tp-bullets {
        display: none;
    }
}
@media only screen and (max-width: 850px) {
    .carousel-caption-custom .button-arrow {
        padding: 12px 25px;
    }
	.rev_slider_wrapper .button-arrow img {
		margin-left: 20px !important;
		margin-right: -50px !important;
	}
    .noslider h2 {
        font-size: 35px;
    }
    .homebanner-styling .carousel-indicators {
        width: 60px;
    }
    .homebanner-styling .carousel-caption-custom .text-left h2 {
        margin-left: 100px;
        background-position: 20px bottom;
    }
    .homebanner-styling .carousel-caption-custom .text-left p {
        margin-left: 120px;
    }
}
@media only screen and (max-width: 768px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
	#rev_slider_20_1_wrapper {
		margin-top: 60px !important;
	}
	.logo {
		width: 101px;
		height: 101px;
		padding: 15px;
		top: 10px;
	}
    #development {
        background-position: 40px top;
    }
    #branding {
        background-position: 40px top;
    }
    #mobileapps {
        background-position: 40px top;
    }
    #SEO {
        background-position: 40px top;
    }
    #wordpress {
        background-position: 40px top;
    }
    #writing {
        background-position: 40px top;
    }
    .left-content-container h4 {
        font-size: 30px;
        text-align: left;
        margin-top: 100px;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .v1-header .dropdown-menu > li > a {
        margin: 0px 40px !important;
        color: #FFF;
        line-height: 40px !important;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
    }
    .v1-header .dropdown-menu > li > a:hover {
        color: #fdb511 !important;
        background-color: transparent;
    }
    .left-content-container p {
        text-align: left !important;
    }
    #primary {
        width: 55%;
    }
    #map {
        height: 400px;
        margin-top: 50px;
    }
    .carousel-cell {
        margin-right: 10px;
    }
    #project-detail-slider .carousel-control {
        top: 40%;
    }
    .flickity-prev-next-button.previous {
        left: 10px;
    }
    .flickity-prev-next-button.next {
        right: 10px;
    }
    #identity h2::after {
        left: 15px;
    }
    .navbar-inverse .navbar-toggle {
        background: transparent;
        border: solid 2px #fdb511;
        margin: 0;
        border-radius: 0;
		padding: 10px 8px !important;
    }
    .navbar-inverse .navbar-toggle:hover {
        background: transparent;
    }
    .navbar-inverse .navbar-toggle:focus {
        background: transparent;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fdb511 !important;
    }
    #primary li a span {
        color: #FFF;
    }
    #primary li.active a span {
        color: #FFF;
    }
    #primary li.active a,
    #primary li a.active,
    #primary li a:hover {
        background: #fdb511;
    }
    #primary li.active a span,
    #primary li a.active span,
    #primary li a:hover span {
        color: #FFF !important;
    }
    #team .margin-top {
        margin-top: 0;
    }
    .pr-box-left {
        text-align: left !important;
        margin: 30px 0 0 !important;
    }
    .pr-box-right {
        margin: 0 0 30px 0 !important;
    }
    #our-work .work-big-img {
        display: none;
    }
    #blog-single-page blockquote p {
        background-image: none;
        padding-right: 0;
        font-size: 18px;
        line-height: 25px;
    }
    #features .ftr-1,
    .ftr-2 {
        margin-bottom: 50px;
    }
    #blog .template-border {
        margin-bottom: 50px;
    }
    .homebanner-styling .carousel-indicators {
        display: none;
    }
    #contact-form .field-label {
        border-bottom: none;
    }
    #contact-form input {
        margin: 0;
        width: 100%;
        float: none;
    }
    #contact-form .padding-left-remove {
        padding-left: 15px;
    }
    #pre-next .pre-button {
        text-align: center;
        border-right: solid 1px #e5e5e5;
        border-bottom: none;
    }
    #pre-next .next-button {
        text-align: center;
    }
    #team .template-border {
        margin-top: 70px;
    }
    #team .team-member-spacing-top {
        margin-top: 20px;
    }
    #discover .right-paragraph {
        margin-top: 50px;
    }
    #contact-form input {
        padding: 10px 0;
    }
    .coming-soon-banner #banner-form input {
        width: 100%;
    }
    .coming-soon-banner #banner-form {
        width: 75%;
    }
}
@media only screen and (max-width: 640px) {
    .homebanner-styling .carousel-caption-custom p {
        width: 100%;
    }
    .right-arrow {
        margin-right: -20px;
    }
    .coming-soon-banner #banner-form {
        width: 100%;
    }
    .homebanner-styling .carousel-caption-custom h2 {
        letter-spacing: 2px;
    }
    .homebanner-styling .carousel-caption-custom .text-left h2 {
        margin-left: 1em;
    }
    .homebanner-styling .carousel-caption-custom p.text-left {
        width: 60%;
        margin-left: 3em;
    }
    .left-content-container h4 {
        font-size: 25px;
    }
    #project-detail-slider .carousel-control {
        top: 35%;
    }
    .testimonials-1 .carousel-control {
        display: none;
    }
    .testimonials-3 .carousel-control {
        display: none;
    }
    footer #footer ul li {
        list-style: outside none none;
        margin: 10px 5px;
    }
    .coming-soon-banner ul li {
        list-style: outside none none;
        margin: 10px 5px;
    }
    .portfolio-grid .element-item figcaption h5 {
        display: none;
    }
    .portfolio-grid .element-item figcaption p {
        display: none;
    }
    .portfolio-grid figure {
        position: relative;
    }
    .portfolio-grid .element-item figcaption {
        text-align: center;
    }
    .portfolio-grid .element-item figcaption a {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0px;
        margin-left: -25px;
        float: none;
    }
    .carousel-cell figcaption a {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0px;
    }
    .carousel-cell figcaption {
        text-align: center;
    }
    figcaption .share-link {
        width: 50px;
        height: 50px;
    }
    figcaption .share-link .fa-circle {
        margin-top: 18px;
    }
    .carousel-cell figcaption h5 {
        display: none;
    }
    .carousel-cell figcaption p {
        display: none;
    }
    .left-content-container .box-counter {
        float: none;
        margin-left: 0;
        text-align: center;
    }
    .left-content-container h5 {
        text-align: center;
    }
    #pricing .nav-tabs > li {
        float: none;
    }
    #pricing .nav-tabs {
        margin-bottom: 70px;
    }
    #quote-carousel .carousel-indicators li {
        width: 50px;
        min-height: 85px;
        margin-left: 0;
        margin-right: 0;
    }
    #quote-carousel .carousel-indicators li .testimonials_avtar {
        width: 50px;
        height: 50px;
    }
    .errorpage-box {
        padding: 30px;
    }
    #quote-carousel .carousel-indicators li h4 {
        font-size: 12px;
    }
    #quote-carousel .carousel-indicators li h5 {
        font-size: 11px;
    }
}
@media only screen and (max-width: 480px) {
    #countbox1 {
        font-size: 50px;
        margin-bottom: 30px;
    }
    #blog-single-page blockquote {
        padding: 50px 25px;
    }
    #countbox1 span {
        font-size: 16px;
    }
    #about-us #aboutslider .box-1 {
        padding: 100px 40px 70px;
    }
    #project-detail-slider .carousel-control {
        top: 30%;
    }
    #contact-form .field-label {
        width: 100%;
    }
    .coming-soon-banner hr {
        width: 250px;
    }
    .v1-header .dropdown-menu li a {
        background-position: 95% center;
    }
    #banner-form input {
        width: 98%;
    }
    .flickity-prev-next-button {
        top: 35% !important;
    }
    #footer input:nth-child(1) {
        width: 80%;
    }
    #pricing.v2-table .tab-pane .button-arrow img {
        display: none;
    }
    #pricing.v2-table .tab-pane .button-arrow {
        padding: 16px;
    }
    #pricing.v2-table .tab-pane .table-content {
        margin-left: 0;
        margin-right: 0;
    }
    #pricing .tab-pane li span {
        font-size: 14px;
    }
    .button-arrow {
        padding: 16px 35px 16px 35px;
    }
    .button-arrow.border-none {
        padding: 0;
    }
    .button-arrow img {
        display: none;
    }
    .button-arrow.border-none img {
        display: inline-block;
    }
    .included-box span {
        font-size: 14px;
    }
    .included-box {
        padding: 25px 0;
    }
    #readytostart .button-arrow {
        padding: 16px 20px;
    }
    #pricing.v2-table li .tab-pane span {
        font-size: 14px;
    }
    #pricing.v2-table .tab-pane .table-active li span {
        font-size: 14px;
    }
    #quote-carousel .carousel-indicators li {
        width: 50px;
        min-height: 85px;
        margin-left: 0;
        margin-right: 0;
    }
    #quote-carousel .carousel-indicators li .testimonials_avtar {
        width: 50px;
        height: 50px;
    }
}
#features svg {
    width: 80px;
    height: 80px;
    margin-top: 30px;
}
#features svg path {
    stroke: #fdb511;
    fill: transparent;
    stroke-width: 1px;
}
.border-svgicon {
    width: 109px;
    height: 109px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
    padding: 30px 0;
    border: solid 3px #fdb511;
}
.border-svgicon svg {
    margin-top: 0;
    width: 46px;
    height: 46px;
    stroke-width: 2.931px;
}
.branding_0 {
    stroke-dasharray: 37 39;
    stroke-dashoffset: 38;
    animation: EEYxXvJX_draw 1333ms linear 0ms forwards;
}
.branding_1 {
    stroke-dasharray: 17 19;
    stroke-dashoffset: 18;
    animation: EEYxXvJX_draw 1333ms linear 166ms forwards;
}
.branding_2 {
    stroke-dasharray: 17 19;
    stroke-dashoffset: 18;
    animation: EEYxXvJX_draw 1333ms linear 333ms forwards;
}
.branding_3 {
    stroke-dasharray: 9 11;
    stroke-dashoffset: 10;
    animation: EEYxXvJX_draw 1333ms linear 500ms forwards;
}
.branding_4 {
    stroke-dasharray: 117 119;
    stroke-dashoffset: 118;
    animation: EEYxXvJX_draw 1333ms linear 666ms forwards;
}
@keyframes EEYxXvJX_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes EEYxXvJX_fade {
    0% {
        stroke-opacity: 1;
    }
    93.54838709677419% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.webdevelopment_0 {
    stroke-dasharray: 1659 1661;
    stroke-dashoffset: 1660;
    animation: EFDlxdpS_draw 1200ms linear 0ms forwards;
}
.webdevelopment_1 {
    stroke-dasharray: 1828 1830;
    stroke-dashoffset: 1829;
    animation: EFDlxdpS_draw 1200ms linear 600ms forwards;
}
@keyframes EFDlxdpS_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes EFDlxdpS_fade {
    0% {
        stroke-opacity: 1;
    }
    93.33333333333333% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.qXuTYcMA_0 {
    stroke-dasharray: 203 205;
    stroke-dashoffset: 204;
    animation: qXuTYcMA_draw 1333ms linear 0ms forwards;
}
.qXuTYcMA_1 {
    stroke-dasharray: 224 226;
    stroke-dashoffset: 225;
    animation: qXuTYcMA_draw 1333ms linear 666ms forwards;
}
@keyframes qXuTYcMA_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes qXuTYcMA_fade {
    0% {
        stroke-opacity: 1;
    }
    93.54838709677419% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.mobile_0 {
    stroke-dasharray: 239 241;
    stroke-dashoffset: 240;
    animation: dJuZBlIT_draw 1200ms linear 0ms forwards;
}
.mobile_1 {
    stroke-dasharray: 176 178;
    stroke-dashoffset: 177;
    animation: dJuZBlIT_draw 1200ms linear 200ms forwards;
}
.mobile_2 {
    stroke-dasharray: 19 21;
    stroke-dashoffset: 20;
    animation: dJuZBlIT_draw 1200ms linear 400ms forwards;
}
.mobile_3 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: dJuZBlIT_draw 1200ms linear 600ms forwards;
}
@keyframes dJuZBlIT_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes dJuZBlIT_fade {
    0% {
        stroke-opacity: 1;
    }
    93.33333333333333% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.aDgygLUS_0 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: aDgygLUS_draw 1200ms linear 0ms forwards;
}
.aDgygLUS_1 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: aDgygLUS_draw 1200ms linear 150ms forwards;
}
.aDgygLUS_2 {
    stroke-dasharray: 127 129;
    stroke-dashoffset: 128;
    animation: aDgygLUS_draw 1200ms linear 300ms forwards;
}
.aDgygLUS_3 {
    stroke-dasharray: 4 6;
    stroke-dashoffset: 5;
    animation: aDgygLUS_draw 1200ms linear 450ms forwards;
}
.aDgygLUS_4 {
    stroke-dasharray: 30 32;
    stroke-dashoffset: 31;
    animation: aDgygLUS_draw 1200ms linear 600ms forwards;
}
@keyframes aDgygLUS_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes aDgygLUS_fade {
    0% {
        stroke-opacity: 1;
    }
    93.33333333333333% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.TySfYLha_0 {
    stroke-dasharray: 113 115;
    stroke-dashoffset: 114;
    animation: TySfYLha_draw 1333ms linear 0ms forwards;
}
.TySfYLha_1 {
    stroke-dasharray: 75 77;
    stroke-dashoffset: 76;
    animation: TySfYLha_draw 1333ms linear 83ms forwards;
}
.TySfYLha_2 {
    stroke-dasharray: 124 126;
    stroke-dashoffset: 125;
    animation: TySfYLha_draw 1333ms linear 166ms forwards;
}
.TySfYLha_3 {
    stroke-dasharray: 20 22;
    stroke-dashoffset: 21;
    animation: TySfYLha_draw 1333ms linear 250ms forwards;
}
.TySfYLha_4 {
    stroke-dasharray: 20 22;
    stroke-dashoffset: 21;
    animation: TySfYLha_draw 1333ms linear 333ms forwards;
}
.TySfYLha_5 {
    stroke-dasharray: 101 103;
    stroke-dashoffset: 102;
    animation: TySfYLha_draw 1333ms linear 416ms forwards;
}
.TySfYLha_6 {
    stroke-dasharray: 101 103;
    stroke-dashoffset: 102;
    animation: TySfYLha_draw 1333ms linear 500ms forwards;
}
.TySfYLha_7 {
    stroke-dasharray: 74 76;
    stroke-dashoffset: 75;
    animation: TySfYLha_draw 1333ms linear 583ms forwards;
}
.TySfYLha_8 {
    stroke-dasharray: 46 48;
    stroke-dashoffset: 47;
    animation: TySfYLha_draw 1333ms linear 666ms forwards;
}
@keyframes TySfYLha_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes TySfYLha_fade {
    0% {
        stroke-opacity: 1;
    }
    93.54838709677419% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.wp_development_0 {
    stroke-dasharray: 159 161;
    stroke-dashoffset: 160;
    animation: FwrFWqOh_draw 1200ms linear 0ms forwards;
}
.wp_development_1 {
    stroke-dasharray: 44 46;
    stroke-dashoffset: 45;
    animation: FwrFWqOh_draw 1200ms linear 66ms forwards;
}
.wp_development_2 {
    stroke-dasharray: 0 2;
    stroke-dashoffset: 1;
    animation: FwrFWqOh_draw 1200ms linear 133ms forwards;
}
.wp_development_3 {
    stroke-dasharray: 0 2;
    stroke-dashoffset: 1;
    animation: FwrFWqOh_draw 1200ms linear 200ms forwards;
}
.wp_development_4 {
    stroke-dasharray: 0 2;
    stroke-dashoffset: 1;
    animation: FwrFWqOh_draw 1200ms linear 266ms forwards;
}
.wp_development_5 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: FwrFWqOh_draw 1200ms linear 333ms forwards;
}
.wp_development_6 {
    stroke-dasharray: 10 12;
    stroke-dashoffset: 11;
    animation: FwrFWqOh_draw 1200ms linear 400ms forwards;
}
.wp_development_7 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: FwrFWqOh_draw 1200ms linear 466ms forwards;
}
.wp_development_8 {
    stroke-dasharray: 10 12;
    stroke-dashoffset: 11;
    animation: FwrFWqOh_draw 1200ms linear 533ms forwards;
}
.wp_development_9 {
    stroke-dasharray: 16 18;
    stroke-dashoffset: 17;
    animation: FwrFWqOh_draw 1200ms linear 600ms forwards;
}
@keyframes FwrFWqOh_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes FwrFWqOh_fade {
    0% {
        stroke-opacity: 1;
    }
    93.33333333333333% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.writing_0 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: aDgygLUS_draw 1200ms linear 0ms forwards;
}
.writing_1 {
    stroke-dasharray: 11 13;
    stroke-dashoffset: 12;
    animation: aDgygLUS_draw 1200ms linear 150ms forwards;
}
.writing_2 {
    stroke-dasharray: 127 129;
    stroke-dashoffset: 128;
    animation: aDgygLUS_draw 1200ms linear 300ms forwards;
}
.writing_3 {
    stroke-dasharray: 4 6;
    stroke-dashoffset: 5;
    animation: aDgygLUS_draw 1200ms linear 450ms forwards;
}
.writing_4 {
    stroke-dasharray: 30 32;
    stroke-dashoffset: 31;
    animation: aDgygLUS_draw 1200ms linear 600ms forwards;
}
@keyframes aDgygLUS_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes aDgygLUS_fade {
    0% {
        stroke-opacity: 1;
    }
    93.33333333333333% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.zTkSOSDF_0 {
    stroke-dasharray: 186 188;
    stroke-dashoffset: 187;
    animation: zTkSOSDF_draw 1602ms linear 0ms forwards;
}
.zTkSOSDF_1 {
    stroke-dasharray: 137 139;
    stroke-dashoffset: 138;
    animation: zTkSOSDF_draw 1182ms linear 1602ms forwards;
}
.zTkSOSDF_2 {
    stroke-dasharray: 15 17;
    stroke-dashoffset: 16;
    animation: zTkSOSDF_draw 137ms linear 2785ms forwards;
}
.zTkSOSDF_3 {
    stroke-dasharray: 8 10;
    stroke-dashoffset: 9;
    animation: zTkSOSDF_draw 77ms linear 2922ms forwards;
}
@keyframes zTkSOSDF_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes zTkSOSDF_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.lYXWmwMr_0 {
    stroke-dasharray: 64 66;
    stroke-dashoffset: 65;
    animation: lYXWmwMr_draw 547ms linear 0ms forwards;
}
.lYXWmwMr_1 {
    stroke-dasharray: 64 66;
    stroke-dashoffset: 65;
    animation: lYXWmwMr_draw 547ms linear 547ms forwards;
}
.lYXWmwMr_2 {
    stroke-dasharray: 31 33;
    stroke-dashoffset: 32;
    animation: lYXWmwMr_draw 269ms linear 1095ms forwards;
}
.lYXWmwMr_3 {
    stroke-dasharray: 19 21;
    stroke-dashoffset: 20;
    animation: lYXWmwMr_draw 168ms linear 1365ms forwards;
}
.lYXWmwMr_4 {
    stroke-dasharray: 19 21;
    stroke-dashoffset: 20;
    animation: lYXWmwMr_draw 168ms linear 1533ms forwards;
}
.lYXWmwMr_5 {
    stroke-dasharray: 35 37;
    stroke-dashoffset: 36;
    animation: lYXWmwMr_draw 303ms linear 1702ms forwards;
}
.lYXWmwMr_6 {
    stroke-dasharray: 42 44;
    stroke-dashoffset: 43;
    animation: lYXWmwMr_draw 362ms linear 2005ms forwards;
}
.lYXWmwMr_7 {
    stroke-dasharray: 24 26;
    stroke-dashoffset: 25;
    animation: lYXWmwMr_draw 210ms linear 2367ms forwards;
}
.lYXWmwMr_8 {
    stroke-dasharray: 24 26;
    stroke-dashoffset: 25;
    animation: lYXWmwMr_draw 210ms linear 2578ms forwards;
}
.lYXWmwMr_9 {
    stroke-dasharray: 24 26;
    stroke-dashoffset: 25;
    animation: lYXWmwMr_draw 210ms linear 2789ms forwards;
}
@keyframes lYXWmwMr_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes lYXWmwMr_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.HRGcuSPy_0 {
    stroke-dasharray: 117 119;
    stroke-dashoffset: 118;
    animation: HRGcuSPy_draw 1824ms linear 0ms forwards;
}
.HRGcuSPy_1 {
    stroke-dasharray: 53 55;
    stroke-dashoffset: 54;
    animation: HRGcuSPy_draw 835ms linear 1824ms forwards;
}
.HRGcuSPy_2 {
    stroke-dasharray: 21 23;
    stroke-dashoffset: 22;
    animation: HRGcuSPy_draw 340ms linear 2659ms forwards;
}
@keyframes HRGcuSPy_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes HRGcuSPy_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.HEhvqAuf_0 {
    stroke-dasharray: 135 137;
    stroke-dashoffset: 136;
    animation: HEhvqAuf_draw 800ms linear 0ms forwards;
}
.HEhvqAuf_1 {
    stroke-dasharray: 38 40;
    stroke-dashoffset: 39;
    animation: HEhvqAuf_draw 229ms linear 800ms forwards;
}
.HEhvqAuf_2 {
    stroke-dasharray: 7 9;
    stroke-dashoffset: 8;
    animation: HEhvqAuf_draw 47ms linear 1029ms forwards;
}
.HEhvqAuf_3 {
    stroke-dasharray: 102 104;
    stroke-dashoffset: 103;
    animation: HEhvqAuf_draw 605ms linear 1076ms forwards;
}
.HEhvqAuf_4 {
    stroke-dasharray: 120 122;
    stroke-dashoffset: 121;
    animation: HEhvqAuf_draw 711ms linear 1682ms forwards;
}
.HEhvqAuf_5 {
    stroke-dasharray: 102 104;
    stroke-dashoffset: 103;
    animation: HEhvqAuf_draw 605ms linear 2394ms forwards;
}
@keyframes HEhvqAuf_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes HEhvqAuf_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.HmURDRiW_0 {
    stroke-dasharray: 211 213;
    stroke-dashoffset: 212;
    animation: HmURDRiW_draw 1503ms linear 0ms forwards;
}
.HmURDRiW_1 {
    stroke-dasharray: 59 61;
    stroke-dashoffset: 60;
    animation: HmURDRiW_draw 425ms linear 1503ms forwards;
}
.HmURDRiW_2 {
    stroke-dasharray: 58 60;
    stroke-dashoffset: 59;
    animation: HmURDRiW_draw 418ms linear 1929ms forwards;
}
.HmURDRiW_3 {
    stroke-dasharray: 58 60;
    stroke-dashoffset: 59;
    animation: HmURDRiW_draw 418ms linear 2347ms forwards;
}
.HmURDRiW_4 {
    stroke-dasharray: 10 12;
    stroke-dashoffset: 11;
    animation: HmURDRiW_draw 78ms linear 2765ms forwards;
}
.HmURDRiW_5 {
    stroke-dasharray: 10 12;
    stroke-dashoffset: 11;
    animation: HmURDRiW_draw 78ms linear 2843ms forwards;
}
.HmURDRiW_6 {
    stroke-dasharray: 10 12;
    stroke-dashoffset: 11;
    animation: HmURDRiW_draw 78ms linear 2921ms forwards;
}
@keyframes HmURDRiW_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes HmURDRiW_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.mLfQFYDM_0 {
    stroke-dasharray: 193 195;
    stroke-dashoffset: 194;
    animation: mLfQFYDM_draw 2196ms linear 0ms forwards;
}
.mLfQFYDM_1 {
    stroke-dasharray: 70 72;
    stroke-dashoffset: 71;
    animation: mLfQFYDM_draw 803ms linear 2196ms forwards;
}
@keyframes mLfQFYDM_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes mLfQFYDM_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.LOvgHDhB_0 {
    stroke-dasharray: 62 64;
    stroke-dashoffset: 63;
    animation: LOvgHDhB_draw 843ms linear 0ms forwards;
}
.LOvgHDhB_1 {
    stroke-dasharray: 160 162;
    stroke-dashoffset: 161;
    animation: LOvgHDhB_draw 2156ms linear 843ms forwards;
}
@keyframes LOvgHDhB_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes LOvgHDhB_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}
.pRYzWCvV_0 {
    stroke-dasharray: 190 192;
    stroke-dashoffset: 191;
    animation: pRYzWCvV_draw 2282ms linear 0ms forwards;
}
.pRYzWCvV_1 {
    stroke-dasharray: 28 30;
    stroke-dashoffset: 29;
    animation: pRYzWCvV_draw 346ms linear 2282ms forwards;
}
.pRYzWCvV_2 {
    stroke-dasharray: 30 32;
    stroke-dashoffset: 31;
    animation: pRYzWCvV_draw 370ms linear 2629ms forwards;
}
@keyframes pRYzWCvV_draw {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes pRYzWCvV_fade {
    0% {
        stroke-opacity: 1;
    }
    94.44444444444444% {
        stroke-opacity: 1;
    }
    100% {
        stroke-opacity: 0;
    }
}