html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    font-family: 'Century Gothic';
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #777;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #101010;
    font-family: 'Century Gothic';
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 0 20px 0;
}

p {
    font-family: 'Century Gothic';
    font-size: 14px;
    line-height: 1.5em;
    margin: 0 0 20px;
    color: #888;
}

ul {
    list-style-type: none;
}

a {
    color: #101010;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #101010;
    outline: none;
    text-decoration: none !important;
}

a:link {
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    width: 100%;
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.small,
small {
    font-size: 80%;
}

b,
strong {
    color: #101010;
}

button,
input,
optgroup,
select,
textarea {
    font-family: 'Century Gothic';
}

input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    border-color: #ececec;
    padding: 18px 0 10px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 300;
    color: #101010;
    background-image: none;
    border-bottom: 1px solid #ececec;
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}

input:focus,
textarea:focus {
    border-bottom-width: 2px;
    border-color: #101010;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    padding: 9px 20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-weight: 300;
    border: none;
    color: #fff;
    -webkit-transition: background-color .15s ease-out;
    -moz-transition: background-color .15s ease-out;
    -o-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background-color: #101010;
    margin-top: 10px;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: #101010;
    color: #fff;
}

select {
    padding: 10px;
    border-radius: 5px;
}

table,
th,
tr,
td {
    border: 1px solid #101010;
}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #101010;
}

::-webkit-scrollbar-thumb:hover {
    background: #101010;
}

::-webkit-selection {
    color: #777;
    background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
    color: #777;
    background: rgba(0, 0, 0, 0.1);
}

::selection {
    color: #777;
    background: rgba(0, 0, 0, 0.1);
}

#minds-page {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#minds-aside {
    padding: 60px 30px;
    width: 23%;
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    /* overflow-y: scroll; */
    z-index: 1001;
    background: #010101;
    -webkit-transition: all .75s ease;
    -moz-transition: all .75s ease;
    -o-transition: all .75s ease;
    transition: all .75s ease;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1200px) {
    #minds-aside {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    #minds-aside {
        width: 270px;
        -moz-transform: translateX(-270px);
        -webkit-transform: translateX(-270px);
        -ms-transform: translateX(-270px);
        -o-transform: translateX(-270px);
        transform: translateX(-270px);
        padding-top: 4em;
    }
}

#minds-aside #minds-logo {
    position: absolute;
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 60px;
    display: block;
    width: 80%;
    bottom: 0;
}

#minds-aside #minds-logo span {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    font-weight: 400;
    letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
    #minds-aside #minds-logo {
        margin-bottom: 60px;
    }
}

#minds-aside #minds-logo a {
    display: inline-block;
    text-align: center;
    color: #fff;
    letter-spacing: 3px;
}

#minds-aside #minds-logo a span {
    display: block;
    margin-top: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    
}

#minds-main {
    width: 77%;
    float: right;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

@media screen and (max-width: 1200px) {
    #minds-main {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    #minds-main {
        width: 100%;
    }
}

#minds-hero {
    min-height: 560px;
    background: #fff url(../images/loader.gif) no-repeat center center;
    width: 100%;
    float: left;
    margin-bottom: 0;
    clear: both;
}

#minds-hero .btn {
    font-size: 24px;
}

#minds-hero .btn.btn-primary {
    padding: 15px 30px !important;
}

#minds-hero .flexslider {
    border: none;
    z-index: 1;
    margin-bottom: 0;
}

#minds-hero .flexslider .slides {
    position: relative;
    overflow: hidden;
}

#minds-hero .flexslider .slides li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    min-height: 100%;
}

#minds-hero .flexslider .flex-control-nav {
    bottom: 20px;
    z-index: 1000;
    right: 20px;
    float: right;
    width: auto;
}

#minds-hero .flexslider .flex-control-nav li {
    display: block;
    margin-bottom: 6px;
}

#minds-hero .flexslider .flex-control-nav li a {
    background: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 8px;
    height: 8px;
    cursor: pointer;
}

#minds-hero .flexslider .flex-control-nav li a.flex-active {
    cursor: pointer;
    background: #101010;
    height: 25px;
}

#minds-hero .flexslider .flex-direction-nav {
    display: none;
}

#minds-hero .flexslider .slider-text {
    display: table;
    opacity: 0;
    min-height: 500px;
    padding: 0;
    z-index: 9;
}

#minds-hero .flexslider .slider-text > .slider-text-inner {
    display: table-cell;
    vertical-align: middle;
    min-height: 700px;
    padding: 20px;
    position: relative;
}

#minds-hero .flexslider .slider-text > .slider-text-inner .desc {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: #4a484863;
    width: 75%;
}

.carousel-indicators .active {
    width: 40px !important;
    background-color: #000 !important;
    border: 2px solid #000 !important;
}

.carousel-indicators li {
    border: 2px solid #000 !important;
    background-color: #fff !important;
}

.desc strong {
    color: #fff;
    font-size: 16px;
}

.home-menu {
    text-align: center;
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
}

.home-menu a {
    color: #fff;
    padding-left: 15px;
    font-family: "Cookie";
}

.home-menu img {
    width: 29% !important;
    height: 20% !important;
    float: left;
    display: flex !important;
    padding: 5px;
    margin: 0 auto;
}

/* .home-menu a:after {
    content: "|";
    float: right;
    color: #fff;
    position: absolute;
    margin-left: 5px;
}

.home-menu a:last-child::after {
    display: none;
} */

@media screen and (max-width: 768px) {
    #minds-hero .flexslider .slider-text > .slider-text-inner {
        text-align: center;
    }
}

#minds-hero .flexslider .slider-text > .slider-text-inner h1 {
    font-size: 40px;
    line-height: 1.5;
    color: #fff;
    font-family: 'Century Gothic';
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    #minds-hero .flexslider .slider-text > .slider-text-inner h1 {
        font-size: 30px;
    }
}

#minds-hero .flexslider .slider-text > .slider-text-inner .heading-section {
    font-size: 50px;
}

@media screen and (max-width: 768px) {
    #minds-hero .flexslider .slider-text > .slider-text-inner .heading-section {
        font-size: 30px;
    }
}

#minds-hero .flexslider .slider-text > .slider-text-inner p {
    margin-bottom: 0;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #minds-hero .flexslider .slider-text > .slider-text-inner .btn {
        width: 100%;
    }
}

body.offcanvas {
    overflow-x: hidden;
}

body.offcanvas #minds-aside {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    width: 270px;
    z-index: 999;
    position: fixed;
}

body.offcanvas #minds-main,
body.offcanvas .minds-nav-toggle {
    top: 0;
    -moz-transform: translateX(270px);
    -webkit-transform: translateX(270px);
    -ms-transform: translateX(270px);
    -o-transform: translateX(270px);
    transform: translateX(270px);
}

.minds-heading {
    color: #101010;
    font-family: 'Century Gothic';
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.minds-heading span {
    display: block;
}

.minds-about-heading {
    color: #101010;
    font-family: 'Century Gothic';
    font-weight: 600;
    font-size: 24px;
}

.minds-about p {
    text-align: justify;
    line-height: 17px;
}

.services {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f5f5f5;
}

.services img {
    width: 75%;
}

.services h4 {
    font-weight: 300;
    text-align: center;
    font-size: 24px;
}

.vertical {
    position: absolute;
    top: 27%;
}

.studio {
    padding-top: 40px;
    background-color: #f5f5f5;
}
@media screen and (min-width: 991px) {
    .studio {
        padding: 60px 30px 30px 30px;
    }
}
.img-wrapper {
    position: relative;
    margin-top: 15px;
}
.img-wrapper img {
    width: 100%;
}
.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.img-overlay i {
    color: #fff;
    font-size: 1em;
}
#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
    #overlay img {
      margin: 0;
      width: 80%;
      height: auto;
      object-fit: contain;
      padding: 5%;
    }
    #nextButton {
      color: #fff;
      font-size: 2em;
      transition: opacity 0.8s;
    }
    #nextButton:hover {
      opacity: 0.7;
    }
    #prevButton {
      color: #fff;
      font-size: 2em;
      transition: opacity 0.8s;
    }
    #prevButton:hover {
      opacity: 0.7;
    }
    #exitButton {
      color: #fff;
      font-size: 2em;
      transition: opacity 0.8s;
      position: absolute;
      top: 15px;
      right: 15px;
    }
    #exitButton:hover {
      opacity: 0.7;
    }
    @media screen and (min-width: 768px) {
      #overlay img {
        width: 60%;
      }
      #nextButton {
        font-size: 2em;
      }
      #prevButton {
        font-size: 2em;
        margin-left: 25%;
      }
      #exitButton {
        font-size: 2em;
      }
    }
    @media screen and (min-width: 1200px) {
      #overlay img {
        width: 60%;
      }
    }

.heading-meta {
    display: block;
    font-family: 'Century Gothic';
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
    letter-spacing: 5px;
}

.minds-pagination-wrap {
    padding:0;
    margin: 0;
    text-align: center;
}

.minds-pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}

.minds-pagination-wrap li a {
    background: #f6f6f6;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #777;
    font-weight: 400;
    border-radius: 50%;
}

.minds-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.20);
}

.minds-pagination-wrap li a.active {
    background-color: #101010;
    border: 1px solid #101010;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .minds-pagination-wrap {
        padding: 0 0 60px 0;
        margin: 0;
        text-align: center;
    }
}

.project {
    position: relative;
    margin-bottom: 30px;
}

.project .desc {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    right: 0;
    background: rgba(0, 0, 0, .9);
    opacity: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.project .desc .con {
    padding: 30px;
    display: block;
    position: relative;
}

.project .desc .con .icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px
}

.project .desc .con .icon span {
    display: inline;
    padding-right: 5px
}

.project .desc .con .icon span a {
    color: #ccc;
    padding: 5px;
    background: #333;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px
}

.project .desc .con .icon i {
    font-size: 16px;
    color: #ccc
}

.project .desc h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    -moz-transition: -webkit-transform .3s, opacity .3s;
    -ms-transition: -webkit-transform .3s, opacity .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
    -webkit-transform: translate3d(0, -15px, 0);
    -moz-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    -o-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    margin-bottom: 15px
}

.project .desc h3 a {
    color: #fff
}

.project .desc span {
    display: block;
    color: #ccc;
    font-size: 13px;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    -moz-transition: -webkit-transform .3s, opacity .3s;
    -ms-transition: -webkit-transform .3s, opacity .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
    -webkit-transform: translate3d(0, 15px, 0);
    -moz-transform: translate3d(0, 15px, 0);
    -ms-transform: translate3d(0, 15px, 0);
    -o-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0)
}

.project .desc span a {
    color: #101010
}

.project:hover .desc {
    opacity: 1
}

.project:hover .desc h3 {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.project:hover .desc span {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.project-desc h2 {
    color: #101010;
    font-family: 'Century Gothic';
    font-weight: 600;
    font-size: 24px;
}

.project-desc span {
    display: block;
    color: #666;
    font-size: 13px;
    margin-bottom: 15px
}

.project-desc span a {
    color: #666
}

.project-desc .icon span {
    display: inline;
    padding-right: 5px
}

.project .desc1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.38);
    opacity: 1;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.project .desc1 .con {
    padding: 30px;
    display: block;
    position: relative;
}

.project .desc1 h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    -moz-transition: -webkit-transform .3s, opacity .3s;
    -ms-transition: -webkit-transform .3s, opacity .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
    -webkit-transform: translate3d(0, -15px, 0);
    -moz-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    -o-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    margin-bottom: 15px;
}

.minds-team,
.minds-about,
.minds-contact {
    padding-top: 60px;
    padding-bottom: 60px;
    clear: both;
    width: 100%;
    display: block;
}

.minds-projects {
    padding-top: 30px;
    padding-bottom: 50px;
}

.minds-team p {
    text-align: right;
    font-size: 14px;    
}

.minds-team .team-desc p {
    text-align: left;
    margin-bottom: 10px;
}

.team-detail-desc p {
    margin-top: 15px;
    text-align: justify;
}
.team-detail-desc.blocks {
    padding-top: 10px;
}
.team-detail-desc.blocks p {
    margin-top: 0;
    margin-bottom: 5px;
}
.team-detail-desc.blocks ul {
    margin-bottom: 10px;
}


.team-detail-desc ul {
    padding-left: 0;
}

.arrow-left {
    position: absolute;
    top: 52%;
    z-index: 5;
    display: inline-block;
    margin-top: -22px;
    left: 2%;
    font-size: 25px;
    color: #fff;
}
.arrow-right {
    position: absolute;
    top: 52%;
    z-index: 5;
    display: inline-block;
    margin-top: -24px;
    right: 2%;
    font-size: 25px;
    color: #fff;
}

@media screen and (max-width: 768px) {

    .minds-projects,
    .minds-about,
    .minds-contact {
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .minds-team {
        padding-top: 0;
    }

    .heading-meta {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    
}

.minds-lead {
    font-size: 13px;
    line-height: 2em;
}

.map-section {
    overflow: hidden;
    margin-bottom: 60px;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    height: 54px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding: 0;
    font-family: 'Century Gothic';
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 300;
}

.form-control:active,
.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #101010;
    border-bottom: 2px solid #101010;
}

.btn-contact {
    font-family: 'Century Gothic';
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    border-style: solid;
    color: #fff;
    letter-spacing: 1px;
    border-width: 0;
    -webkit-transition: background-color .15s ease-out;
    -moz-transition: background-color .15s ease-out;
    -ms-transition: background-color .15s ease-out;
    -o-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background-color: #101010;
    margin-top: 10px;
    border-radius: 0;
}

#message {
    height: 130px;
}

.minds-nav-toggle {
    cursor: pointer;
    text-decoration: none;
}

.minds-nav-toggle.active i::before,
.minds-nav-toggle.active i::after {
    background: #fff;
}

.minds-nav-toggle.dark.active i::before,
.minds-nav-toggle.dark.active i::after {
    background: #101010;
}

.minds-nav-toggle:hover,
.minds-nav-toggle:focus,
.minds-nav-toggle:active {
    outline: none;
    border-bottom: none !important;
}

.minds-nav-toggle i {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    width: 20px;
    height: 1px;
    color: #fff;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #fff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: -4px;
}

.minds-nav-toggle i::before,
.minds-nav-toggle i::after {
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.minds-nav-toggle.dark i {
    position: relative;
    color: #101010;
    background: #101010;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.minds-nav-toggle.dark i::before,
.minds-nav-toggle.dark i::after {
    background: #101010;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.minds-nav-toggle i::before {
    top: -7px;
}

.minds-nav-toggle i::after {
    bottom: -7px;
}

.minds-nav-toggle:hover i::before {
    top: -10px;
}

.minds-nav-toggle:hover i::after {
    bottom: -10px;
}

.minds-nav-toggle.active i {
    background: transparent;
}

.minds-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.minds-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.minds-nav-toggle {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    padding: 11px 15px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #101010;
    margin: 15px 30px;
    border-radius: 50%;
    display: none;
}

@media screen and (max-width: 768px) {
    .minds-nav-toggle {
        opacity: 1;
        visibility: visible;
    }
}

.js .animate-box {
    opacity: 0;
}

#sticky_item {
    overflow: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#sticky_item.is_stuck {
    margin-top: 10px;
}

@media screen and (max-width: 992px) {
    .sticky-parent {
        clear: both;
        height: inherit !important;
        float: left;
        padding-top: 30px;
    }
}

.team {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.team .desc {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.team .desc .con {
    padding: 20px;
    display: block;
    position: relative;
}

.team .desc .con p {
    text-align: left;
}

.team .desc h3 {
    font-size: 18px;
    color: #fff;
    font-family: 'Century Gothic';
    font-weight: 600;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -webkit-transform 0.3s, opacity 0.3s;
    -o-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, -15px, 0);
    -moz-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    -o-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    margin-bottom: 15px;
}

.team .desc h3 a {
    color: #fff;
}

.team .desc span {
    display: block;
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, 15px, 0);
    -moz-transform: translate3d(0, 15px, 0);
    -ms-transform: translate3d(0, 15px, 0);
    -o-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
    margin-bottom: 15px;
}

.team .desc span a {
    color: #101010;
}

.team:hover .desc {
    opacity: 1;
}

.team:hover .desc h3 {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.team:hover .desc span {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.team-desc h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-desc span {
    display: block;
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.team-desc span a {
    color: #666;
}

.team-desc .icon span {
    display: inline;
    padding-right: 5px;
}

@media screen and (max-width:768px) {
    .team .desc {
        opacity: 1;
        background: rgba(0, 0, 0, 0.4);
    }

    .team .desc h3 {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        color: #101010
    }

    .team .desc span {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    
    .services img {
        position: relative;
    }
    
    .vertical {
        top: 0;
    }
    
    .arrow-right, .arrow-left {
        margin-top: 0;
    }
    
    .clientele {margin-top:-55% !important;}
}

.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}


.font-35px {
    font-size: 35px;
}

.font-14px {
    font-size: 14px;
}

.gray-icon {
    color: #999;
    background: transparent;
    padding: 6px;
    border-radius: 50%;
}

.white-icon {
    color: #fff;
    background: transparent;
    padding: 6px;
    border-radius: 50%;
}


.black-icon {
    color: #777;
}

hr {
    margin-top: 0;
    margin-bottom: -20px;
    border: 0;
}


@media screen and (max-width: 900px) {
    #minds-page {
        margin-top: 0%;    
    }
    
    #minds-aside {
        width: 100%;
        padding-top: 1em;
        bottom: unset;
        transform: none;
    }
    
    #minds-aside #minds-logo {
        margin-bottom: 5px;
    }
    
    .home-menu img {
        width: 45% !important;
    }
}







