
/*-----------------
* [Master Stylesheet]
*
* Theme    : Michelle
* Version  : 1.0
* Author   : beingeorge
* Support  : hello@beingeorge.com
*
------------------*/


/*-----------------
  [ALL CONTENTS]

1. Reset.css
2. General
3. Intro
4. Header
5. About
6. Contact
7. Works
8. Blog
9. Footer
10. All Media Queries

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



/* ---------------------------------------------- /*
* 1. Reset.css
/* ---------------------------------------------- /*

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font: 400 16px/1.8 'Poppins', sans-serif;
    color: #555;
    overflow-x: hidden;
    /*background-color: #E1E6EC;*/
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ----------------------------------------------
* 2. General
/* ---------------------------------------------- */

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
}

::-webkit-scrollbar {
	display: none;
}

a, .ease-3 {
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

p {
	color: #1C1B1B;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font: 700 40px/1.2 'Poppins', sans-serif;
    letter-spacing: 2px;
    color: #000;
}

h2 {
    font-size: 36px;
    margin: 0 0 30px;
}

h3 {
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0 0 5px;
}

h4 {
    font-size: 20px;
    letter-spacing: 1px;
}

h5 {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 400;
}

h6 {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
}

img {
	max-width: 100%;
    vertical-align: middle;
}

textarea {
    height: 100px;
    resize: none;
}

.btn-blue {
    color: #ffffff;
    background-color: #6C63FF;
    box-shadow: 0 20px 36px -4px rgba(157, 166, 186, 0.4);
    border-radius: 50px;
    padding: 10px 36px;
    font-weight: 300;
}

.btn-blue:hover {
    box-shadow: 0 0px 36px -4px rgba(157, 166, 186, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-link {
    color: #000;
    padding: 10px 36px;
    font-weight: 300;
}

.btn-link:hover {
    color: #000;
    text-decoration: none;
}

/*----- Helper Classes -----*/


.custom-container {
	max-width: 1250px;
	padding: 0 15px;
	margin: 0 auto;
}

.custom-container .mini-container {
    padding: 0;
}

.mini-container {
    max-width: 800px;
    padding: 0 15px;
    margin: 0 auto;
}


.section-head h1{
    font-size: 36px;
    color: #000;
    padding-bottom: 50px;
    position: relative;
    font-weight: 100;
    line-height: 50px;
}

.section-head h1 b {
    display: block;
}

.section-head h1:after, .section-head h1:before {
    /*content: "";*/
    position: absolute;
    bottom: 30px;
    width: 100px;
    height: 2px;
    background: #d6d6d6;
    left: 0;
}

.section-head p {
	max-width: 600px;
	line-height: 2;
	font-size: 20px;
}

.section-head p.sub-head {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-head p {
    margin-bottom: 15px;
}

.sub-head {
    font-size: 16px;
    padding-left: 60px;
    position: relative;
    text-transform: uppercase;
    display: block;
    letter-spacing: 1px;

}

.sub-head:before {
    height: 1px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 48%;
    display: block;
    background: #4a4a4a;
    content: "";
}

.overflow-hidden {
    overflow: hidden !important;
}

.loader {
    display: flex;
    position: fixed;
    background-color: #3e3c56;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 9999999;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: opacity 700ms step-start, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-start, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

.loader.is-done {
    transition: opacity 700ms step-end, transform 700ms cubic-bezier(0.8, 0, 0.55, 0.94), visibility 700ms step-end, background-color 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    visibility: hidden;
}

/*#*/
#spinner-five {
    width: 3em;
    height: 3em;
    border-radius: 3em;
    border: 2px solid #6c61f6;
    -webkit-animation: pulse 1000ms ease infinite;
    -moz-animation: pulse 1000ms ease infinite;
    -ms-animation: pulse 1000ms ease infinite;
    -o-animation: pulse 1000ms ease infinite;
    animation: pulse 1000ms ease infinite;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}


/* ---------------------------------------------- /*
* 4. Header
/* ---------------------------------------------- */


header {
    padding: 50px 0;
}

header.header-fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
}

.header-clip:after {
    position: absolute;
    content: "";
    background-image: url(../images/Frame.svg);
    right: -10px;
    top: -10px;
    height: 500px;
    width: 100%;
    background-position: top right;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: 50%;
}

.header-clip .navbar-toggler .ham .line {
    /*stroke: #fff;*/
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 25px;
    position: relative;
}

.navbar-light .navbar-nav .active .nav-link:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    width: 5px;
    border-radius: 10px;
    content: "";
    background: #6C63FF;
    margin: 0 auto;
}

.navbar-light .navbar-nav .nav-link:hover {
	color: rgba(50, 50, 50, 1);
    transition-delay: 0s;
}

.navbar {
    padding: 0;
    justify-content: space-between;
}

.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

.navbar .navbar-toggler {
    padding: 0;
    border: 0;
    outline: none !important;
    position: relative;
    z-index: 2;
}

.navbar-light .navbar-brand {
    font-weight: 300;
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 6px 0px;
    position: relative;
}

.navbar-light .navbar-brand:after {
   content: "";
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
}

.navbar-collapse .navbar-nav {
    justify-content: center;
    align-items: center;
    height: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar-collapse {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
}

.navbar-collapse:after {
    background-color: #3e3c56;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    transform: translate3d(0, -100%, 0);
    transition:  all 700ms cubic-bezier(0.8, 0, 0.55, 0.94);

}

.navbar-expand-lg .navbar-collapse {
    display: block !important;
}

.navbar-collapse.collapse-open:after {
    transition:  all 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
    transform: translate3d(0, 0%, 0);
    opacity: 1;
    visibility: visible;
}

.navbar-collapse.collapse-open {
    opacity: 1;
    visibility: visible;
}

.navbar-toggler .ham .line {
    stroke: #6C63FF;
}

.navbar-light .navbar-nav .active .nav-link:after {
    content: none;
}

.navbar-light .navbar-nav .active .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    font-size: 6vh;
    font-weight: 700;
    color: #3e3c56;
    letter-spacing: 5px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
    transform: scale(1.2);
    letter-spacing: 8px;
}

.navbar-collapse .nav-item {
    overflow: hidden;
}

.navbar-collapse .nav-item a {
    transition:  all 700ms cubic-bezier(0.8, 0, 0.55, 0.94);
    transform: translateY(100%);
    opacity: 0;
}

.navbar-collapse.collapse-open .nav-item a {
    transition-delay: 0.5s;
    transform: translate(0);
    opacity: 1;
}


.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.active .hamRotate {
  transform: rotate(45deg);
}

.active .hamRotate180 {
  transform: rotate(180deg);
}

.line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#000;
    stroke-width:2.5;
    stroke-linecap:round;
}

.hams .top {
    stroke-dasharray: 40 121;
}

.hams .bottom {
    stroke-dasharray: 40 121;
}

.active .hams .top {
    stroke-dashoffset: -68px;
}

.active .hams .bottom {
    stroke-dashoffset: -68px;
}

body:hover #follower {
    display: block;
}

#follower {
    position: absolute;
    color: white;
    width: 30px;
    height: 30px;
    border: 2px solid #6C63FF;
    z-index: 999999;
    border-radius: 50%;
    pointer-events: none;
    transition: all 20ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    transition: transform 300ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    pointer-events: none;
}

/* ----------------------------------------------
* 3. Intro
/* ---------------------------------------------- */

.intro-section {
    padding: 100px 0 60px;
    position: relative;
    /*height: 100vh;*/
    /*background-color: #E1E6EC;*/
 /*   overflow: hidden;*/
}

.intro-section .custom-container {
    width: 100%;
}

.about-img {
    position: absolute;
    right: -86px;
    bottom: -21%;
    transform: rotate(-20deg);
    width: 50%;
    height: 90%;
}

.about-img img {
    border-radius: 100px;
    object-fit: cover;
    box-shadow: -10px 0px 20px rgba(0,0,0,0.5);
}

.about-img:before {
    content: "";
    height: 100%;
    width: 100%;
    background: #f09493;
    left: -10%;
    right: 0;
    top: -9%;
    display: block;
    z-index: -1;
    position: absolute;
    border-radius: 100px;
    transform: rotate(-11deg);
}


.intro-section {
    padding: 100px 0 60px;
    position: relative;
}

.hero-social {
    padding: 80px 0 0;
}

.hero-social li {
    flex: 1;
}

.hero-social a {
    color: #333;
    width: 130px;
    margin: 0 auto;
    height: 130px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.hero-social a:hover i {
    transform: translatey(-5px);
}

.hero-social span {
    color: #888;
    display: block;
    width: 100%;
    text-transform: capitalize;
}

.hero-social i {
    display: block;
    font-size: 30px;
    width: 100%;
}


/*-----------------
4. Purchase
------------------*/

.theme-purchase {
    position: relative;
    overflow: hidden;
}

.theme-purchase .custom-container {
    max-width: 100%;
    padding: 0;
}

.portfolio-list {
    height: 500px;
    overflow: hidden;
    position: relative;
    background: #FFE9D7;
    display: block;
}


.portfolio-list img {
    max-width: 450px;
    margin: 0 auto;
    display: block;
    width: 80%;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 4px;
    top: 80px;
    box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}

.portfolio-desc {
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
       -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
         -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
}


.portfolio-desc p {
    font-size: 25px;
    color: #333;
    padding-bottom: 20px;
}

.portfolio-tags i {
    color: rgba(0,0,0,0.2);
    position: relative;
    top: 3px;
    font-size: 19px;
    padding-right: 10px;
}

.portfolio-tags span {
    font-size: 17px;
    color: #333;
    padding-right: 7px;
}

.portfolio-list:hover img {
    filter: blur(10px);
    opacity: 0.5;
}

.portfolio-list:hover .portfolio-desc {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.portfolio-contain li:nth-child(2) .portfolio-list {
    background: #DCE9FB;
}

.portfolio-contain li:nth-child(3) .portfolio-list {
    background: #FFD6E3;
}

.portfolio-contain li:nth-child(4) .portfolio-list {
    background: #E0E0E0;
}

.portfolio-contain li:nth-child(5) .portfolio-list {
    background: #DCE9FB;
}

.theme-purchase .viewMore {
    margin: 30px auto;
    text-align: center;
    display: table;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    max-width: 200px;
    transition: all .8s cubic-bezier(0.19, 1.32, 0.48, 1) 0.5s;
    transform: translateY(150px);
}

.viewMore.visible {
    transform: translateY(0);
}

/* ---------------------------------------------- /*
* 5. About
/* ---------------------------------------------- */


.about-banner {
    background: #DCE9FB url('../images/alone.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
    transition: all 2s ease 0s;
}

.parallax {
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
    width: 100%;
    transition: all 2s ease 0s;
}

.about-wrapper {
    margin-bottom: 70px;
}

.about-tiles {
    margin: 100px 0 0px;
}

.about-tiles h2 {
    font-size: 28px;
}

.about-tiles p {
    font-size: 16px;
}

.about-tiles h3 {
    font-size: 20px;
}

.about-tiles.about-skills {
    margin-top: 50px;
}

.tiles {
    border: 1px solid #c5bfbf;
    cursor: pointer;
    text-align: center;
    margin-bottom: 30px;
}

.tiles  i {
    padding: 20% 0px;
    display: block;
    font-size: 50px;
}

.tiles img {
    height: 100px;
    display: block;
    width: auto;
    margin: 10px auto;
}

.tiles span {
    display: block;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.team-wrap img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: 1s;
}

.team-wrap {
    text-align: center;
    margin: 0 0px 30px;
    position: relative;
}

.team-wrap:after {
    /*content: "";*/
    position: absolute;
    height: 80%;
    top: 10%;
    width: 100%;
    z-index: 0;
    background-color: #6C63FF;
    left: 0;
    right: 0;
    display: block;
}

.team-wrap--img {
    transition: 1s ease;
    overflow: hidden;
}

.team-wrap .team-wrap--img:hover {
    transform: scale(0.97);
}

.team-wrap:hover img {
    transform: scale(1.1);
}

.team-wrap h5 {
    margin-top: 15px;
}


/* ---------------------------------------------- /*
* 6.  Contact
/* ---------------------------------------------- */

.contact-wrapper {
    padding: 50px 0 70px;
}

.contact-detail {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 50px 0;
    z-index: 1;
    transform: translateY(100%);
    transition: all 500ms cubic-bezier(0.8, 0, 0.55, 0.94);
    z-index: 2;
}

.contact-detail--form .form-control {
    border: none;
    background: #eee;
    border-radius: 0;
    padding: 10px 20px;
}

.contact-detail--form textarea.form-control {
    height: 100px;
}

.contact-detail--form .form-group {
    margin-bottom: 30px;
}

.modal-open .contact-detail {
    transform: translateY(0%);
    box-shadow: -10px -10px 100px rgba(0,0,0,0.2)
}

.contact-wrapper .modal {
    visibility: hidden;
}

.modal-open .contact-wrapper .modal {
    visibility: visible;
}

#contactForm {
    display: block !important;
}

.modal-backdrop.show {
    opacity: 0;
}

.contact-detail--desc {
    margin-bottom: 40px;
}

.contact-detail--desc a {
    color: #1C1B1B;
    text-decoration: underline;
}

.contact-detail--desc a:hover {
    text-decoration: none;
}

.btn-contact {
    margin-top: 50px;
}

/* ----------------------------------------------
* 7. Works
/* ----------------------------------------------*/


.project-banner {
    background: #DCE9FB url('../images/alone.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
    width: 100%;
    transition: all 2s ease 0s;
}

.pagewrap-work {
    background: #2588f6;
    background: -moz-linear-gradient(left,  #2588f6 0%, #6772e4 100%);
    background: -webkit-linear-gradient(left,  #2588f6 0%,#6772e4 100%);
    background: linear-gradient(to right,  #2588f6 0%,#6772e4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2588f6', endColorstr='#6772e4',GradientType=1 );
}

.pagewrap-work .module {
    padding: 50px 0 100px;
}

.pagewrap-work .module h2 {
    color: #fff;
    text-align: center;
}

.module {
    padding: 130px 0;
    background: #E1E6EC;
    position: relative;
}

.module:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    height: 300px;
    background: #E1E6EC;
    content: "";
    z-index: -1;
}

.module h2 {
    margin-bottom: 0;
}

/*.portfolio-banner.module {
    background: transparent;
}

.portfolio-banner.module:after {
    content: none;
}*/

.portfolio {
    margin-bottom: 30px;
}

.portfolio .list-items-container {
    margin-top: 50px;
}

.filter {
    text-align: center;
    margin-bottom: 30px
}

.filter li {
    display: inline-block;
    margin: 0 10px;
}

.filter li a {
    color: #000;
    padding: 10px 15px;
    font-weight: 300;
    display: block;
}

.filter li.active a {
    color: #ffffff;
    background-color: #6C63FF;
    box-shadow: 0 20px 36px -4px rgba(157, 166, 186, 0.4);
    border-radius: 50px;
    padding: 10px 35px;
    font-weight: 300;
}


.list-items-container {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
}

.list-items-container .list-item {
    display: block;
    list-style: outside none none;
    margin-bottom: 50px;
    padding: 0 25px;
    width: 50%;
}

.list-item-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -ms-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.list-items-container .list-item:hover .list-item-img {
    transform: scale(.98);
}

.list-items-container .list-item:hover img {
    transform: scale(1.08);
}

.list-items-container .list-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s ease 0s;
    -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -ms-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.list-items-container .list-item {
    -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -ms-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.list-item a {
    margin: 0;
    overflow: hidden;
    position: relative;
}
.list-items-container .list-item .figcaption {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease 0s;
}

.caption-inner .portfolio-item-title {
    font-size: 20px;
    font-weight: 600;
}

.caption-inner .portfolio-item-desc {
    font-size: 16px;
    color: #1C1B1B
}

.projectDesc-content {
    margin: 100px 0;
}

.projectDesc-content .sub-head {
    margin-bottom: 20px;
}

.projectDesc--head {
    margin: 0px 0 20px;
}

.projectDesc--text {
    margin-bottom: 50px;
}

.projectDesc-Details {
    margin-top: 50px;
}

.project-info-wrap h4 {
    margin-bottom: 10px;
}

.project-info-wrap {
    margin-bottom: 40px;
}

.project-info-wrap a {
    color: #1C1B1B;
    text-decoration: underline;
}

.project-info-wrap a:hover {
    text-decoration: none;
}

.process-tiles {
    margin: 50px 0
}

.process-tiles h3 {
    margin-bottom: 30px;
}

.process-tiles .tiles h2 {
    font-size: 80px;
    font-weight: 700 !important;
    display: block;
    color: #000;
    line-height: 80px;
    margin: 20px;
    opacity: 0.1
}

.process-tiles .tiles span {
    font-weight: 500;
}

/* ----------------------------------------------
* 8. Blog
/* ----------------------------------------------*/

.post {
    color: #000;
    margin-bottom: 60px;
    display: block;
}

.post:hover .post-img-wrap {
    transform: scale(0.97);
}

.post:hover .post-img img {
    transform: scale(1.05);
}

.post:hover {
    color: #000;
}

.post:hover h3 {
    color: #6C63FF
}

.post-img-wrap {
    overflow: hidden;
    -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -ms-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.post-img {
    position: relative;
    height: 350px;
}

.post-img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -moz-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -ms-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.post-desc {
    padding: 30px 0px 0;
}

.post-desc--foot span {
    padding-right: 20px;
}

.post-desc-title {
    margin: 15px 0;
}

.post-desc-title h3 {
    -webkit-transition: all 0.35s ease 0s, transform 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s, transform 0.35s ease 0s;
    -ms-transition: all 0.35s ease 0s, transform 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s, transform 0.35s ease 0s;
    transition: all 0.35s ease 0s, transform 0.35s ease 0s;
}

.panel {
    padding: 20px 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-recent-posts li:last-child {
    padding-bottom: 0 !important;
}

.sidebar-recent-posts a {
    color: #6C63FF;
}

.sidebar-category a {
    background: #eee;
    padding: 5px 20px;
    display: inline-block;
    margin: 0 5px 10px 0;
    text-transform: capitalize;
    color: #000;
}

.blogDetail--head-details {
    margin-top: 20px;
}

.blogDetail--head-details li {
    margin-right: 20px;
}

.blogDetail--content {
    max-width: 800px;
    padding: 0 15px;
    margin: 30px auto 70px;
}

.blogDetail--content p {
    margin-bottom: 15px;
}

.blogDetail--content h2, .blogDetail--content h3, .blogDetail--content h4 {
    font-size: 24px;
    font-weight: 400;
    margin: 15px 0;
}

.full-width.caption {
    text-align: center;
}

.full-width.caption img {
    height: 300px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.full-width .figcaption {
    font-size: 14px;
    margin-top: 10px;
}

/* ----------------------------------------------
* 9. Footer
/* ----------------------------------------------*/

footer {
	padding: 50px 0;
    position: relative;
    background-color: #eee;
}

.copyright p {
	font-size: 20px;
	color: #000;
}

.copyright span {
	color: #999;
	font-size: 16px;
}

.footer-social {
    padding: 20px 0;
}

.footer-social a {
    font-size: 26px;
    padding: 0 20px;
    color: rgba(0,0,0,.2);
}

.footer-social a:hover {
	color: #000
}



/* ---------------------------------------------- /*
*  10. All Media Queries
/* ---------------------------------------------- */

@media (min-width: 1800px) {

    .theme-purchase .custom-container {
    	max-width: 1250px;
        padding: 0 15px;
    }

    .theme-purchase .custom-container , .no-gutters>.col, .no-gutters>[class*=col-] {
    	padding-right: 15px;
    	padding-left: 15px;
    }

    .theme-purchase .custom-container .no-gutters {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 991px) and (max-width: 1200px)  {
    .about-img {
        right: -145px;
    }
}


@media (min-width: 767px) and (max-width: 991px)  {

    .about-img {
        height: 70%;
    }

}
@media (max-width: 991px) {

    #follower {
        display: none !important;
    }

}

@media (max-width: 767px) {

    .intro-section {
        padding: 70px 0 40px;
        position: relative;
    }

    .intro-section .section-head {
        margin-top: -30px;
    }

    .section-head h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero-social a {
        height: 70px;
        width: 70px;
    }

    .hero-social i {
        font-size: 26px;
    }

    .hero-social span {
        font-size: 14px;
    }

    .hero-social ul {
        flex-wrap: wrap;
    }

    .hero-social li {
        flex: auto;
        margin-bottom: 30px;
        width: 50%;
    }

    .btn {
        font-size: 14px;
    }

    .portfolio-list {
        height: 350px;
    }

    .copyright {
        text-align: center;
    }

    .copyright p {
        font-size: 18px;
    }

    .footer-social {
        text-align: center !important;
        padding: 30px 0 0;
    }

    .filter li a {
        font-size: 12px;
        padding: 3px 10px;
        margin: 0;
    }

    .filter li.active a {
        padding: 2px 20px;
    }

    .filter li {
        margin: 0 5px;
    }

    .list-items-container .list-item {
        width: 100%;
        padding: 0 ;
        margin-bottom: 30px;
    }

    .module h1 {
        font-size: 30px;
    }

    .module:after {
        height: 180px;
    }

    .project-banner {
        height: 350px;
    }

    .about-banner {
        height: 350px;
    }

    .about-tiles {
        margin: 70px 0 0px;
    }

    .about-tiles h2 {
        margin-bottom: 30px !important;
    }

    .about-tiles h3 {
        font-size: 18px;
    }

    .about-tiles p {
        font-size: 14px;
    }

    .about-wrapper {
        margin-bottom: 50px;
    }

    .about-services h3 {
        margin-bottom: 10px !important;
    }

    .about-services p {
        margin-bottom: 30px !important;
    }

    .team-wrap img {
        height: 320px;
    }

    .about-img {
        position: absolute;
        right: -86px;
        bottom: -21%;
        transform: rotate(-20deg);
        width: 70%;
        height: 50%;
    }

    .projectDesc-content {
        margin: 50px 0 70px
    }

    .project-info-wrap {
        margin-bottom: 30px;
    }

    .btn-contact {
        margin-top: 30px;
    }

    .contact-img{
        margin-top: 30px;
    }

    .contact-wrapper h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
}
