/* ============================================
Tema: Infinity Agency
Version: 1.0
===================================================*/
/* -------------------------------- 
Form Orçamento
-------------------------------- */
.cd-form {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.3rem;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form .cd-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form select, .cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #2b3e51;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #2c97de;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icons/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #2c97de;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("../img/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("../img/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #42a2e1;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}
@media only screen and (min-width: 600px) {
  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 16px;
  }
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* -------------------------------- 
Custom icons
-------------------------------- */
.cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  padding-left: 54px !important;
}
.cd-form .user {
  background: url("../images/icons/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("../images/icons/cd-icon-user.svg") no-repeat 16px center, url("../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("../images/icons/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("../images/icons/cd-icon-company.svg") no-repeat 16px center, url("../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("../images/icons/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("../images/icons/cd-icon-email.svg") no-repeat 16px center, url("../images/icons/cd-required.svg") no-repeat top right;
}
.cd-form .budget {
  background: url("../images/icons/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("../images/icons/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("../images/icons/cd-icon-message.svg") no-repeat 16px 16px, url("../images/icons/cd-required.svg") no-repeat top right;
}

/* -------------------------------- 
FLoating labels 
-------------------------------- */
.js .floating-labels div {
  margin: 28px 0;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.6rem;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.2rem;
  top: -16px;
  left: 0 !important;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}

.scrolltotop {
    background: #39A0F5 none repeat scroll 0 0;
    bottom: 20px;
    color: #ffffff;
    display: none;
    font-size: 20px;
    height: 60px;
    padding-top: 8px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 60px;
    z-index: 9;
    line-height: 47px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}
.scrolltotop:hover {
    background: #5783EB;
    color: #ffffff;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}


.scrolltotop span {
    animation: loadingH 1.5s cubic-bezier(.17,.37,.43,.67) infinite;

}
.scrolltotop span {
    animation: loadingJ 2s cubic-bezier(.17,.37,.43,.67) infinite;
}

@keyframes loadingJ {
    50% {
        transform: translate(0px,5px);
        color: #067D8B;
    }

    0%, 100% {
        transform: translate(0,-5px);
    }
}

.scrolltotop span {
    display: inline-block;
}
#owlreporter-preloader .loader-section {
    background: #1ACEEA;
}
.homepage-2 #owlreporter-preloader .loader-section {
    background: #F5F7FB;
}
.homepage-3 #owlreporter-preloader .loader-section {
    background: #FB736C;
}
.homepage-7 #owlreporter-preloader .loader-section {
    background: #FB736C;
}
.homepage-4 #owlreporter-preloader .loader-section {
    background: #659EF9;
}
.homepage-8 #owlreporter-preloader .loader-section {
    background: #659EF9;
}
.homepage-five #owlreporter-preloader .loader-section {
    background: #3580D8;
}
.homepage-one #owlreporter-preloader .loader-section {
    background: #3580D8;
}
.scrolltotop.homepage-1 {
    background: #3580D8 none repeat scroll 0 0;
}

.scrolltotop.homepage-2 {
    background: #00C8FD none repeat scroll 0 0;
}

.scrolltotop.homepage-3 {
    background: #FC5284 none repeat scroll 0 0;
}

.scrolltotop.homepage-4 {
    background: #64D0FF none repeat scroll 0 0;
}

.section-heading.text-center {
    margin-bottom: 110px;
}
.section-heading.text-center h2{
    font-size: 36px;
    font-weight: 700;
    color: #2c324b;

}
.section-heading.text-center img {
    margin-bottom: 25px;
    margin-top: 10px;
}
.section-heading.text-center {
    padding: 0 145px;
    font-size: 16px;
    line-height: 28px;
}








/*----------------------------------------
5.HEADER TOP STYLE CSS
------------------------------------------*/

.header-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 20px 0;
    transition: all .3s ease 0s ;
    -moz-transition: all .3s ease 0s ;
    -webkit-transition: all .3s ease 0s ;
}
.menu-main-menu-container ul li a {
    color: #fff;
    font-size: 20px;
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 30px 20px;
    padding-right: 15px;
    font-family: 'Unica One', cursive;
    text-transform: uppercase;
}


.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color:transparent;
}

div#sticker-sticky-wrapper {
    position: absolute;
    width: 100%;
    z-index: 9999;
    transition: all .3s ease 0s ;
    -moz-transition: all .3s ease 0s ;
    -webkit-transition: all .3s ease 0s ;
}
.header-top.headroom.headroom--not-bottom.headroom--pinned.headroom--top{
    transition: transform 0.25s ease-in-out 0s;

}

.sticky-wrapper.is-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: transparent;
    background-image: none;
    transition: all .3s ease 0s ;
    -moz-transition: all .3s ease 0s ;
    -webkit-transition: all .3s ease 0s ;
    padding: 10px 0;
}


.headroom {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    transition: transform 0.25s ease-in-out 0s;
}
.headroom--pinned.headroom--not-top {
    background-color: #3281D9;
    transform: translateY(0px);
    padding: 5px 0;
    transition: transform 0.25s ease-in-out 0s;
}
.homepage-3.headroom--pinned.headroom--not-top {
    background-color: #fc5185;
}
.homepage-6.headroom--pinned.headroom--not-top {
    background-color: #64d1ff;
}



.headroom--unpinned {
    transform: translateY(-100%);
    background-color: transparent;
    transition: transform 0.25s ease-in-out 0s;
}
.headroom {
    transition: transform 0.25s ease-in-out 0s;
    will-change: transform;
}





/*----------------------------------------
6.NAVEGATION STYLE CSS
------------------------------------------*/


.sticky-wrapper.is-sticky .dropdown:hover>.dropdown-nav{
    top: 85px;
    border: none;
}
.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar {
    margin-bottom: 0px;
    transition: all .3s ease 0s ;
    -moz-transition: all .3s ease 0s ;
    -webkit-transition: all .3s ease 0s ;
}
.navbar-brand {
    float: left;
    height: 50px;
    padding: 0;
    line-height: 20px;
    margin-top: 15px;
}
.navbar-brand > img{
    width: 200px;
    margin-top: -10px;
}
ul#mainmenu {
    padding: 0;
}

.menu-main-menu-container ul li a:hover{
    color: #2c324b;
    background-color: transparent;
}
.dropdown-nav {
    background-clip: padding-box;
    background-color: #3281D9;
    border-top: none;
    height: auto;
    left: 0;
    padding: 5px 0;
    position: absolute;
    text-align: left;
    top: 100px;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    z-index: 99;
    width: 280px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.dropdown.current-menu-has-children > a:after {
    font-family: 'FontAwesome';
    content: "\f0d7";
    font-size: 10px;
    display: inline-block;
    -webkit-transition: .25s ease;
    transition: .25s ease;
    margin-left: 8px;
}
.dropdown.current-menu-has-children:hover>a:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #2c324b;
}
.dropdown-nav  li a{
    padding: 0px 30px;
    display: block;
}
.dropdown:hover>.dropdown-nav {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    top: 80px;
    border-radius: 5px;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}
ul.dropdown-nav.dropdown-nav-left {
    margin:  0;
    padding:  0;
    list-style: none;
}

ul.dropdown-nav.dropdown-nav-left a {
    padding: 10px 30px;
    display:  block;
}
ul.dropdown-nav.dropdown-nav-left li:first-child {
    padding-top: 25px;
}

ul.dropdown-nav.dropdown-nav-left li:last-child {
    padding-bottom: 25px;
}


/*----------------------------------------
7.HOMEPAGE ONE STYLE CSS
------------------------------------------*/

.homepage-slider-area {
    background-size: cover;
    background-position: center center;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100vh;
}


.homepage-slider-area .container {
    position: relative;
}


.homepage-slider-area-3 .container {
    position: relative;
}


.homepage-slider-area:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/bg/curved.png);
    content: "";
    background-repeat: no-repeat;
    height: 100%;
    background-size: contain;
}


.slider-content-table {
    display: table;
    width: 100%;
    height: 100vh;
    padding-top: 170px;
}
.slider-content-table-cell {
    display:  table-cell;
    width: 100%;
    vertical-align:  middle;
    text-align: left;
    color: #fff;
}
.slider-content {
    width: 75%;
}
.slider-content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 45px;
    line-height: 28px;
    width: 82%;
}
.slider-content h1 {
    font-size: 66px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 46px;
}
a.download-btn.all-btn {
    display:  inline-block;
    color:  #fff;
    font-size:  14px;
    text-transform:  uppercase;
    padding: 17px 42px;   
    background: transparent none repeat scroll 0 0;
    border-radius: 35px;
    letter-spacing: 2px;
    font-weight:  500;
    margin-bottom:  100px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;
    border: 2px solid#fff;
}

.graydent-border-btn{
    display:  inline-block;
    color:  #2c324b;
    font-size:  14px;
    text-transform:  uppercase;
    padding: 17px 42px;   
    background: transparent none repeat scroll 0 0;
    border-radius: 35px;
    letter-spacing: 2px;
    font-weight:  500;
    margin-bottom:  100px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;

}
.graydent-border-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: calc(100% + 4px);
    z-index: -2;
}
.graydent-border-btn:after {
    background: #F5F7FB none repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}

.graydent-border-btn:hover:after{
    opacity: 0;
}
.graydent-border-btn:hover{
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3); 
}







a.about-btn.homepage-4:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}

a.about-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;
}



a.download-btn.all-btn:after {
    background-image: -moz-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: calc(100% + 4px);
    z-index: -1;
    opacity: 0;
    padding: 15px 42px;
}



.homepage-slider-area-3 a.download-btn.all-btn:after {
    background-image: -moz-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
}


a.download-btn.all-btn:hover:after, a.download-btn.all-btn:focus:after {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}


a.download-btn.all-btn:hover{
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3); 
    border-color: transparent;
    outline: 0 none;
}




.video-play-btn span {
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: rgb( 93, 125, 234 );
    font-size: 30px;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}

a.video-play-btn{
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none!important;
    cursor: pointer;z-index: 2;
}
a.video-play-btn:hover:after {
    border-color: transparent transparent transparent #5d7dea;
}

a.video-play-btn:after {
    display: block;
    top: 8px;
    left: 37px;
    margin: 16px 0 0 -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #5d7dea;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    content: "";
    position: absolute;
}

.homepage-3 a.video-play-btn:after {
    border-color: transparent transparent transparent #fc5185;
}

.homepage-6 a.video-play-btn:after {
    border-color: transparent transparent transparent #64d1ff;
}

.video-area-bg {
    margin-top: 7px;
    position: relative;
}

.video-area-bg:after {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}




.video-area-bg h4 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    display: inline-block;
    margin-left: 105px;
    margin-top: 30px;
}
.homepage-slider-area-3 .video-area-bg h4 {
    color: #2c324b;
}
.homepage-slider-area-3 a.video-play-btn:after{
    border-color: transparent transparent transparent #fc5185;

}

.slider-screen img {
    position: absolute;
    right: -187px;
    z-index: 2;
    top: 14%;
}
.slider-screen-2 img {
    position: absolute;
    right: -373px;
    z-index: 2;
    top: 21%;
}





/*----------------------------------------
8.HOMEPAGE TWO STYLE CSS
------------------------------------------*/

.homepage-2 .video-area-bg h4 {
    color: #2c324b;
}


.homepage-2 a.video-play-btn:after {
    border-color: transparent transparent transparent #00c9fd;
}
.homepage-2.headroom--pinned.headroom--not-top {
    background-color: #00C9FD;
}
.homepage-2.headroom--pinned.headroom--not-top .menu-main-menu-container ul li a {
    color: #fff;
}
.homepage-2.headroom--pinned.headroom--not-top .menu-main-menu-container ul li a:hover {
    color: #2c324b;
}

.homepage-2 .dropdown-nav {
    background-color: #00C9FD;
}
.homepage-2 ul.dropdown-nav.dropdown-nav-left a {
    color: #fff;
}

.mouse-bg {
    background-repeat: no-repeat;
    background-size: auto auto;
    position: absolute;
    left: 0;
    top: 0;
}

#background-1 {
    background-image: url(../images/bg/1.png);
    background-position: bottom 5% left 9%;
}

#background-2 {
    background-image: url(../images/bg/2.png);
    background-position: top 12% left 8%;
}

#background-3 {
    background-image: url(../images/bg/7.png);
    background-position: top 31% right 70%;
}

#background-4 {
    background-image: url(../images/bg/4.png);
    background-position: top 46% left 1%;
}

#background-5 {
    background-image: url(../images/bg/5.png);
    background-position: top 49% left 14%;
}

#background-6 {
    background-image: url(../images/bg/6.png);
    background-position: top 19% left 10%;
}

#background-7 {
    background-image: url(../images/bg/7.png);
    background-position: top 72% left 3%;
}

#background-8 {
    background-image: url(../images/bg/8.png);
    background-position: top 11% left 37%;
}
#background-9 {
    background-image: url(../images/bg/9.png);
    background-position: top 62% left 43%;
}

#background-15 {
    background-image: url(../images/bg/2.png);
    background-position: top 22% left 51%;
}

#background-10 {
    background-image: url(../images/bg/10.png);
    background-position: top 87% left 63%;
}
#background-16 {
    background-image: url(../images/bg/5.png);
    background-position: top 67% left 56%;
}


#background-11 {
    background-image: url(../images/bg/1.png);
    background-position: top 34% left 68%;
}
#background-14 {
    background-image: url(../images/bg/13.png);
    background-position: top 43% left 30%;
}
#background-13 {
    background-image: url(../images/bg/4.png);
    background-position: bottom 7% left 42%;
}

#background-12 {
    background-image: url(../images/bg/4.png);
    background-position: bottom 25% left 32%;
}

#background-17 {
    background-image: url(../images/bg/6.png);
    background-position: top 24% left 74%;
}
#background-18 {
    background-image: url(../images/bg/7.png);
    background-position: top 0% left 86%;
}
.homepage-2 .video-play-btn span{
    color: #00c9fd;
}

.homepage-2 .download-btn.all-btn{
    color: #2c324b;
    transition: all .3s ease-in-out;

}
.homepage-2 .download-btn.all-btn:hover{
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
    color: #ffffff;

}


.homepage-slider-area.homepage-2:after{
    background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);

}

.homepage-2 .menu-main-menu-container ul li a:hover {
    color: #2c324b;
}
.homepage-2 .menu-main-menu-container ul li a {
    color: #00c9fd;
}

.homepage-2 ul.dropdown-nav.dropdown-nav-left li > a:hover{
    color: #2c324b;
}
.homepage-2 .dropdown.current-menu-has-children:hover>a:after {
    color: #2c324b;
}


.homepage-2 .slider-content p {
    color: #535e72;
}
.homepage-2 .slider-content h1 {
    color: #535e72;
}

.homepage-2 .video-area-bg {
    color: #2c324b;
}


/*----------------------------------------
9.HOMEPAGE THREE STYLE CSS
------------------------------------------*/

.sticky-wrapper.is-sticky .homepage-3.stick   {
    width: 100%;
    background-image: -webkit-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-color: transparent;

}
.homepage-3 .dropdown-nav{
    background-color: #fc5185;
}
.navbar {
    border: none;
}
.homepage-3 .menu-main-menu-container ul li a {
    color: #fff;
}
.homepage-3 .menu-main-menu-container ul li a:hover {
    color: #2c324b;
}

#homepage-slider-3 {
    overflow: hidden;
    padding-bottom: 40px;
    z-index: 1;
}

.gradient-bg{
    background-image: -webkit-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);

}
.homepage-slider-area-3{
    position: relative;
    z-index: 1;
}

#homepage-slider-3.homepage-slider-area-3:before {
    background: #fff none repeat scroll 0 0;
    height: 50%;
    top: 80%;
}
.homepage-slider-area-3:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skewY(170deg);
    transform: skewY(170deg);
    width: 100%;
    z-index: -1;
}
.homepage-slider-area-3:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/bg/curved.png);
    content: "";
    background-repeat: no-repeat;
    height: 100%;
    background-size: contain;
    z-index: -1;
}
.slider-screen-3 img {
    position: absolute;
    right: -373px;
    z-index: 2;
    top: 18%;
}
.homepage-slider-area-3 .download-btn.all-btn {
    display:  inline-block;
    color:  #fff;
    font-size:  14px;
    text-transform:  uppercase;
    padding: 17px 42px;
    border-radius: 35px;
    letter-spacing: 2px;
    font-weight:  500;
    margin-bottom:  100px;
    -webkit-transition: .3s;
    transition: all .3s ease-in-out;
}
.homepage-slider-area-3 .download-btn.all-btn:hover{
    color:  #2c324b;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}

.homepage-slider-area-3 .video-area-bg {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: #2c324b;
}
.homepage-slider-area-3 .video-play-btn span {
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color:#fc5185;
    font-size: 30px;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}

.homepage-slider-area-3 .feature-img{
    background-color: #fc5185;
}

.homepage-slider-area-3 .read-more-btn:hover{
    color: #fc5185;
}


.feature-area.homepage-slider-area-3 .homepage-3.single-feature:hover h2 {
    color: #fc5185;
}


.homepage-slider-area-3 .read-more-btn {
    color: #fc5185;
}




/*----------------------------------------
10.HOMEPAGE FOUR STYLE CSS
------------------------------------------*/
.homepage-slider-area.homepage-4 {
    background-image: url(../images/bg/servicos_header.png);
}

.homepage-slider-area.homepage-4:after{
    background-image: -webkit-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);

}
.slider-wreapper-3 .slick-dots {
    bottom: 50%;
}
.slider-wreapper-3 .slick-dots li {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 12px;
    margin: 17px 0;
    position: relative;
    width: 12px;
    background-color: #fff;
    border: none;
}


.slider-wreapper-3 .slick-dots li:after {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    border: 1px solid #fff;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-out;
}
.slider-wreapper-3 .slick-dots li.slick-active {
    box-shadow: none;
    border-width: 0px;
    border-color: transparent;
    border-style: solid;
    padding:0px;
    background-image: none;
}
.slider-wreapper-3 .slick-dots li.slick-active:after {
    visibility: visible;
    opacity: 1;
}

.single-slider-content {
    margin: 300px 15px;
}
.screen-slider-actine {
    border-radius: 18px;
    margin: 22px auto 0px;
    overflow: hidden;
    position: absolute;
    right: -25px;
    top: 0px;
    width: 100%;
    height: 100%;
}
.screen-slider-actine.owl-carousel img {
    max-width: 100%;
    width: auto;
}
.screen-slider-bg {
    position: absolute;
    right: -16%;
    top: -33%;
}

.slider-text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 45px;
    line-height: 28px;
    color: #fff;
    width: 84%;
}
.slider-content-active .owl-dots {
    position: absolute;
    left: 0;
    bottom: 200px;
    width: 100%;
    text-align: center;
}
.slider-content-active .owl-dot span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid#fff;
    position: absolute;
    text-align: right;
    top: 10px;
    margin-left: -10px;
    opacity: 0;
    transition: .3s;
}
.slider-content-active .owl-dot.active span{
    opacity: 1;
}
.slider-content-active .owl-dots div{
    display: inline-block;
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    transition: .3s;
    margin: 15px;

}



/*HOMEPAGE 6 STYLE*/






/*----------------------------------------
11.HOMEPAGE FIVE STYLE CSS
------------------------------------------*/

.homepage-5 .slider-screen img {
    right: -373px;
    top: 21%;
}

.homepage-5 .about-left img {
    position: absolute;
    left: -98px;
    top: 33px;
}
.homepage-5 .faq-left img {
    position: absolute;
    left: 0;
    top: 0px;
}
.homepage-5 .dropdown-nav {
    background-color: rgb( 245, 247, 251 );
}

.homepage-5  ul.dropdown-nav.dropdown-nav-left li > a {
    color: #5d7dea;
}
.homepage-5  ul.dropdown-nav.dropdown-nav-left li > a:hover{
    color: #2c324b;
}


/*----------------------------------------
12.HOMEPAGE SIX STYLE CSS
------------------------------------------*/

.homepage-slider-area.homepage-6 {
    background-image: -webkit-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);

}


.sticky-wrapper.is-sticky .homepage-6 {
    background-image: -webkit-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-slider-area.homepage-6:after {
    display: none;
}

.homepage-6 .slider-single-item .slider-screen-2 img {
    position: absolute;
    left: 67%;
    z-index: 2;
    top: 18%;
}
.homepage-6 .slider-single-item .slider-content-table{
    padding-top: 200px;
    padding-bottom: 100px;
}
.homepage-slider-area.homepage-6{
    padding-bottom: 80px;
}

.homepage-slider-area.homepage-6-4 {
    padding-bottom: 80px;
    padding-top: 100px;
}
.slider-single-item-4 {
    padding: 260px 0px 55px 20px;
}
.slider-text h1 {
    font-size: 66px;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 46px;
    color: #fff;
}
.slider-text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 45px;
    line-height: 28px;
    color: #fff
}

.slider-single-item.slick-slide.slick-cloned {
    overflow: hidden;
}
.slider-single-item.slick-slide.slick-current.slick-active{
    overflow: hidden;

}
.slider-wreapper-3.slick-initialized .slick-slide {
    overflow: hidden;
}
.screen-slider-wrapper {
    padding: 76px 70px 72px 75px;
}
.slider-item {
    padding: 190px 0;
}

.screen-slider-wrapper .owl-carousel .owl-item img {
    width: 97%;
}

.slider-wreapper .owl-dots{
    position: absolute;
    left: -125px;
    bottom: -80px;
    width: 100%;
    text-align: right;
}
.slider-wreapper .owl-dot span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid#fff;
    position: absolute;
    text-align: right;
    top: 0px;
    margin-left: -15px;
    opacity: 0;
    transition: .3s;
}
.slider-wreapper .owl-dot.active span{
    opacity: 1;
}
.slider-wreapper .owl-dots div{
    display: inline-block;
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    transition: .3s;
    margin: 5px;

}
.homepage-6 .dropdown-nav {
    background-clip: padding-box;
    background-color: #64d1ff;
}

.homepage-6 a.download-btn.all-btn:after {
    background-image: -moz-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}


.homepage-6 .video-play-btn span {
    color: rgb( 100, 209, 255 );
}

.homepage-6 .feature-img {
    background-color: rgb( 100, 209, 255 );
}

.homepage-6 .feature-area .single-feature:hover h2 {
    color: #6674f5;
}

.homepage-6 .about-list ul li:before {
    background-image: url(../images/shape-6.png);
}

.homepage-6 a.about-btn {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .single-advance:hover {
    background-image: -webkit-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .promo-video-area .overlay-grad-one:after {
    background-image: -webkit-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .fan-fact-area-bg:after {
    background-image: -webkit-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}

.homepage-6 .pricing-heading h2 {
    color: #6674f5;
}


.homepage-6 .single-pricing-table:hover:after {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
}
.homepage-6 .pricing-amount .price {
    color: #6674f5;
}
.homepage-6 .pricing-amount .currency {
    color: #6674f5;
}
.homepage-6 .pricing-btn.blue-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6.faq-area .panel.panel-default {
    background-image: -webkit-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .download-table-cell h2 span {
    color: #6674f5;
}
.homepage-6 .btn-style-2:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .single-blog-box:hover .blog-heading h2 {
    color: #6674f5;
}
.homepage-6 .single-blog-box:hover .single-blog-image:after {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .subscribe-box button {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.homepage-6 .social-links span:hover {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}


/*----------------------------------------
13.HOMEPAGE SEVEN STYLE CSS
------------------------------------------*/

.homepage-7 .slick-dots li.slick-active {
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
}


.homepage-7 .slick-dots li {
    border-width: 1px;
    border-color: #FB6E6F;
    border-style: solid;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 15px;
    margin: 0 5px;
    padding: 0;
    position: relative;
    width: 15px;
}
.slider-screen-7 img {
    position: absolute;
    right: -278px;
    z-index: 2;
    top: 17%;
}
.homepage-7 .btn-style-2:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
}

.homepage-7 .download-table-cell h2 span {
    color: #fc5185;
}



/*----------------------------------------
14.HOMEPAGE EIGHT STYLE CSS
------------------------------------------*/



.homepage-6 .slider-single-item .slider-screen-8 img {
    position: absolute;
    left: 78%;
    z-index: 2;
    top: 15%;
}

.homepage-8 .btn-style-2:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}

.homepage-8 .download-table-cell h2 span {
    color: #6674f5;
}















/*----------------------------------------
15.FEATURE AREA STYLE CSS
------------------------------------------*/

.feature-area {
    padding-top: 150px;
    padding-bottom: 103px;
}

.single-feature {
    text-align:  center;
}

.feature-area .single-feature:hover h2{
    color: #5d7dea;
}
.single-feature:hover a.read-more-btn {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.feature-area.homepage-2 .single-feature:hover h2 {
    color: #00c9fd;
}

.feature-area.homepage-6 .single-feature:hover h2 {
    color: #6674f5;
}
.feature-area.homepage-6 a.read-more-btn:hover {
    color: #6674f5;
}
.feature-area.homepage-6 a.read-more-btn {
    color: #6674f5;
}



.single-feature h2 {
    font-size: 24px;
    color: #2c324b;
    margin-top: 40px;
    margin-bottom: 25px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 500;
}

.single-feature p {
    font-size: 16px;
    color: #535e72;
    line-height: 28px;
}

a.read-more-btn {
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 15px;
    display: inline-block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    color: #5d7dea;
}

a.read-more-btn:hover {
    color: #5d7dea;
}

.feature-area.homepage-2 a.read-more-btn:hover {
    color: #00c9fd;
}

.feature-area.homepage-2 a.read-more-btn {
    color: #00c9fd;
}

.feature-img {
    height: 120px;
    width: 120px;
    background: #5d7dea;
    text-align: center;
    line-height: 113px;
    margin: 0 auto;
}


.homepage-2 .feature-img {
    background: #00c9fd;
}









/*----------------------------------------
16.ABOUT AREA STYLE CSS
------------------------------------------*/
.about-area {
    padding-top: 140px;
    padding-bottom: 150px;
}
.about-right h2 {
    font-size: 20px;
    color: #6674f5;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 28px;
}
.about-right h3 {
    font-size: 36px;
    color: #2c324b;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 48px;
}

.about-right {
}

.about-right p {
    font-size: 16px;
    color: #535e72;
    line-height: 28px;
    margin-bottom: 40px;
}
.about-left img {
    position: absolute;
    left: -79px;
    top: -14px;
}
.about-left-2 img {
    position: absolute;
    left: -105px;
    top: 17px;
}
.about-right ul {
    margin:  0;
    padding:  0;
    list-style:  none;
}


.about-right ul li {
    font-size: 16px;
    color: #232d3f;
    line-height: 26px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 40px;
}
.about-right ul li:before{
    position: absolute;
    background-image: url(../images/shape-1.png);
    top:5px;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}
.about-area.homepage-2 .about-right ul li:before{
    background-image: url(../images/shape-2.png);
}

.advance-feature-area.homepage-2 .about-list ul li:before{
    background-image: url(../images/shape-2.png);
}
.advance-feature.about-right h2{
    font-size: 36px;
    color: #2c324b;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 48px;
}

.about-area.homepage-2 a.about-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);

}

.about-list.homepage-3 ul li:before{
    background-image: url(../images/shape-3.png);

}
a.about-btn {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 18px 45px;
    border-radius: 35px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 50px;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 1;
}
.work-area.homepage-2 a.about-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);

}
.work-left a.about-btn {
    margin-top: 20px;
}
a.about-btn {
    background: transparent none repeat scroll 0 0;
    color: #2b323f;
}

a.about-btn:after {
    background: #f5f7fb none repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}
.work-left a.about-btn:after {
    background: #fff none repeat scroll 0 0;
}

a.about-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;

}




a.about-btn:hover:after, a.about-btn:focus:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

a.about-btn:hover{
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);

}


a.about-btn.homepage-3:before{
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);

}
a.about-btn.homepage-4:before{
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);

}


a.about-btn:hover{
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    color: #fff;

}




/*----------------------------------------
17.WORK AREA STYLE CSS
------------------------------------------*/

.work-area {
    padding-top: 128px;
    padding-bottom: 106px;
}
.single-work h2 {
    font-size: 24px;
    color: #2c324b;
    margin-bottom: 20px;
}
.work-left h2 {
    font-size: 36px;
    color: #2c324b;
    font-weight: 700;
    margin-bottom: 27px;
    line-height: 48px;
}
.work-left p {
    font-size: 16px;
    color: #535e72;
    margin-bottom: 35px;
    line-height: 28px;
}
.work-left{
    padding-top: 100px ;
}

.single-work img {
    position: absolute;
    top: 50px;
    left: 35px;
}

.single-work p {
    font-size: 14px;
    line-height:  28px;
    color: #535e72;
}
.single-work {
    padding: 20px 20px 20px 120px;
    position: relative;
    margin-bottom: 15px;
    -webkit-transition: .3s;
    transition: .3s;
}
.single-work:hover{
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
}



/*----------------------------------------
18.ADVANCE FEATURE STYLE CSS
------------------------------------------*/


section.advance-feature-area {
    background: #f5f7fb;
    padding-top: 120px;
    padding-bottom: 114px;
}

.single-advance span {
    color: #595959;
    font-size:  36px;
}

.single-advance h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2c324b;
    margin-top: 26px;
    margin-bottom: 16px;
}

.single-advance p {
    color:  #535e72;
    font-size:  14px;
    line-height: 26px;

}
.row.ml-20 {
    margin-left: -60px;
}

.single-advance {
    padding: 30px;
    border-radius: 5px;
    background-color: transparent;
    display: block;
}



.single-advance:hover{
    background-image: -webkit-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
    transition: all .5s ease-in-out;

}

.homepage-3 .single-advance:hover{
    background-image: -webkit-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);

}


.homepage-2 .single-advance:hover{
    background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);

}

.single-advance:hover span {
    color: #fff;
}
.single-advance:hover  h2 {
    color: #fff;
}
.single-advance:hover  p {
    color: #fff;
}
.advance-feature.about-right {
    margin-top: 50px;
}

section.screenshots-area {
    padding-top: 145px;
}

.slider-wrapper-2 .slide {
    margin: 0 15px;
}
.slider-wrapper-2 .slider-image {
    margin: 5px 0 10px;
    position: relative;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.slider-wrapper-2 .slider-image:hover{

    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
}

.slider-wrapper-2 .slider-image:hover .preview-icon {
    opacity: 0.749;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    width: 80%;
    height: 90%;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}


.preview-icon {
    border-radius: 5px;
    background-color: rgb( 0, 0, 0 );
    height: 100%;
    left: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 70%;
    height: 80%;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}


.preview-icon span {
    color: #fff;
    font-size: 24px;
    left: 0;
    margin: 0 auto;
    position: relative;
    right: 0;
    top: 47%;
    z-index: 99;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}


.slider-wrapper-2.slick-dotted.slick-slider {
    margin-bottom: 60px;
}
.slick-dots li {
    border-width: 1px;
    border-color: rgb( 74, 68, 255 );
    border-style: solid;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 15px;
    margin: 0 5px;
    padding: 0;
    position: relative;
    width: 15px;
}

.testimonial-area.homepage-6 .slick-dots li {
    border-color: #64d1ff;
}

.testimonial-area.homepage-6 .slick-dots li.slick-active {
    background-image: -moz-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}
.Button_3 {
    border-width: 1px;
    border-color: rgb( 74, 68, 255 );
    border-style: solid;
    border-radius: 50%;
    position: absolute;
    left: 977px;
    top: 4921px;
    width: 12px;
    height: 13px;
    z-index: 575;
}


.slick-dots li.slick-active {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border: medium none;
    box-shadow: 0px 25px 60px 0px rgba(0, 27, 103, 0.15);
}

.testimonial-area.homepage-1 .slick-dots li.slick-active {
    background-image: -moz-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    border: medium none;
    box-shadow: 0px 25px 60px 0px rgba(0, 27, 103, 0.15);
}
.testimonial-area.homepage-1 .slick-dots li {
    border-color:#FB6E6F;
}

.testimonial-area.homepage-1.homepage-2 .slick-dots li{
    border-color: #00c9fd;
}

.testimonial-area.homepage-1.homepage-2 .slick-dots li.slick-active{
    background-color: #00c9fd;
    background-image: none;
}

.screenshots-area.homepage-2 .slick-dots li.slick-active {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    border: medium none;
    box-shadow: 0px 25px 60px 0px rgba(0, 27, 103, 0.15);
}


.screenshots-area.homepage-2 .slick-dots li {
    border-color: #48dcbe;
}

.slick-dots li button {
    display: none;
}
.slick-dots {
    bottom: -72px;
    text-align: center;
    position: absolute;
    left: 0;
}


.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 750px;
    height: 500px;
}
.swper-btn button {
    position: absolute;
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 20px;
    line-height: 42px;
    border: none;
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    top: -248px;
    left: -7%;
    outline: none;
    -webkit-transition: .3s;
    transition: .3s;
}

.swper-btn {
    position:  relative;
}

button.icon-next {
    position: absolute;
    left: auto;
    right: -70px;
}


/* =====================================
20. PROMO VIDEO AREA
===================================== */

.promo-video-area {
    position: relative;
    z-index: 2;
    top: 147px;
}
.video-demo-image {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    display: inline-block;
    left: 50%;
    position: relative;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 5px;
}
.promo-video-area .overlay-grad-one{
    position: relative;
}
.promo-video-area .overlay-grad-one img{
    border-radius: 5px;
}
.video-play-icon p {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-top: 16px;
}


.promo-video-area.homepage-3 .overlay-grad-one:after{
    background-image: -webkit-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);

}
.promo-video-area.homepage-3 .video-play-icon span{
    color: #fc5185;
}

.promo-video-area .overlay-grad-one:after {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-image: -webkit-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    content: "";
    opacity: .851;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    box-shadow: 0px 50px 70px 0px rgba(0, 27, 103, 0.04);
}


.promo-video-area.homepage-2 .overlay-grad-one:after{
    background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);

}

.Overlay {
    border-radius: 5px;
    background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    opacity: 0.851;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    box-shadow: 0px 50px 70px 0px rgb( 0, 27, 103 );
    position: absolute;
    left: 375px;
    top: 5085px;
    width: 1170px;
    height: 717px;
    z-index: 560;
}




.promo-video-area .overlay-grad-two:after {
    z-index: 1;
}
.video-play-icon {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
}
.video-play-icon span {
    background-color: #fff;
    border-radius: 80px;
    color: #5d7dea;
    display: inline-block;
    font-size: 36px;
    height: 95px;
    line-height: 95px;
    text-align: center;
    width: 95px;
    position: relative;
}
.video-play-icon span:after {
    display: block;
    top: 17px;
    left: 50%;
    margin: 16px 0 0 -9px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #5d7dea;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    content: "";
    position: absolute;
}

.homepage-3 .video-play-icon span:after {
    border-color: transparent transparent transparent #fc5185;
}
.homepage-6 .video-play-icon span:after {
    border-color: transparent transparent transparent #64d1ff;
}

.homepage-2 .video-play-icon span:after {
    border-color: transparent transparent transparent #00c9fd;
}
.promo-video-area.homepage-2 .video-play-icon span {
    color: #00c9fd;
}



/*----------------------------------------
    21.FUN FACT STYLE CSS
------------------------------------------*/

.fan-fact-area {
    padding-top: 428px;
    color: #fff;
    text-align: center;
    padding-bottom: 100px;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}

.fan-fact-area-bg {
    background-image: url(../images/bg/fan-fac-bg.jpg);
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    position: relative;
    z-index: 1;
}
.fan-fact-area-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    opacity: 0.902;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    background-size: cover;
    content: "";
    z-index: -1;
}

.fan-fact-area-bg.homepage-2:after{
    background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);

}




.homepage-3.fan-fact-area-bg:after {
    background-image: -webkit-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);

}
.single-items h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 35px;
}

.single-items h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 25px;
}
.single-items {
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
}
.icon-bg {
    height: 80px;
    width: 80px;
    line-height: 100px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
}

.icon-bg span {
    font-size: 30px;
    display: inline-block;/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5c7feb+0,4c8def+26,389ff5+62,2aacf9+100 */
    background: #5c7feb; /* Old browsers */ /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #5c7feb 0%,#4c8def 26%,#389ff5 62%,#2aacf9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #5c7feb 0%,#4c8def 26%,#389ff5 62%,#2aacf9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c7feb', endColorstr='#2aacf9',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.fan-fact-area-bg.homepage-2 .icon-bg span {
    font-size: 30px;
    display: inline-block;
    background: #00c9fd;
    background: -webkit-linear-gradient(left, #00c9fd 0%,#83ECAD 26%,#4AD4BD 62%,#29D1F9 100%);
    background: linear-gradient(to right, #00c9fd 0%,#83ECAD 26%,#4AD4BD 62%,#29D1F9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c9fd', endColorstr='#2aacf9',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.homepage-3 .icon-bg span{

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fb5f7b+0,fb6675+25,fa736c+52,fa8261+74,fa875c+100 */
    background: #fb5f7b; /* Old browsers */ /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fb5f7b 0%,#fb6675 25%,#fa736c 52%,#fa8261 74%,#fa875c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fb5f7b 0%,#fb6675 25%,#fa736c 52%,#fa8261 74%,#fa875c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb5f7b', endColorstr='#fa875c',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}



/*----------------------------------------
        22.  TESTIMONIAL STYLE
------------------------------------------*/
section.testimonial-area {
    margin-top: -37px;
    padding-bottom: 114px;
}


.testimonial-area .section-heading.text-center {
    margin-bottom: 52px;
}
.testi-single-item .item-inner:before {
    position: absolute;
    bottom: 6%;
    font-family: 'InfinityFont';
    content: "\e67e";
    color: #D0E2F4;
    font-size: 60px;
    right: 12%;
}

.testi-single-item .item-inner p {
    color: #535e72;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-style: italic;
}
.testimonial-meta h4 {
    color: #2c324b;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    text-align: left;
}

.testimonial-meta p {
    font-size: 14px;
    color: #6d8195;
    padding: 0;
}
.testi-carousel .testi-single-item {
    padding: 40px 15px;
}
.testi-carousel .testi-single-item .item-inner {
    padding: 61px 26px 95px 31px;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    border: 1px solid#ccdef1;
    border-radius: 5px;
}
.testi-carousel .testi-single-item .item-inner:hover{
    box-shadow: 0px 7px 30px rgba(77, 131, 173, 0.10);

}
.testi-single-item.slick-slide img {
    width: 90px;
    margin: 0;
    position: absolute;
    top: 31px;
    left: 43px;
    height: 90px;
    border: 1px solid rgb( 93, 125, 234 );
    border-radius: 50%;
}
.homepage-2 .testi-single-item.slick-slide img {
    border: 1px solid#00C8FD;
}
.homepage-1 .testi-single-item.slick-slide img {
    border: 1px solid #FC5284;
}
.homepage-6 .testi-single-item.slick-slide img {
    border: 1px solid #64D0FF;
}
.testimonial-area.homepage-1.homepage-2 .testi-single-item.slick-slide img {
    border: 1px solid#00C8FD;
}
.testimonial-meta h4 span {
    font-size: 14px;
    color: #8ca0b4;
    font-weight: 400;
}

.testimonial-meta {
    margin-bottom: 36px;
    margin-left: 130px;
}

.item-inner .testimonial-meta p {
    font-size: 14px;
    margin-bottom: 20px;
}

.slider-btns button {
    position: absolute;
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 20px;
    line-height: 42px;
    border: none;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    top: -222px;
    left: -7%;
    -webkit-transition: .3s;
    transition: .3s;
    outline: 0;
}

button.testi-nav-left.slick-arrow {
    background-color: rgb( 93, 125, 234 );
}

button.testi-nav-right.slick-arrow {
    position: absolute;
    left: auto;
    right: -70px;
    background-color: rgb( 93, 125, 234 );
}
button.testi-nav-left.slick-arrow:hover{
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
button.testi-nav-right.slick-arrow:hover {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}

.homepage-2 button.testi-nav-left.slick-arrow{
    background-color: #00c9fd;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.homepage-2 button.testi-nav-right.slick-arrow {
    left: auto;
    right: -70px;
    background-color: #00c9fd;
    background-image: none;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}

.homepage-2 button.testi-nav-left.slick-arrow:hover{
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.homepage-2 button.testi-nav-right.slick-arrow:hover {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}



.slider-btns.homepage-3 button{
    background-color: #FC5285;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}
.slider-btns.homepage-3 button.testi-nav-right.slick-arrow{
    background-color: #FC5285;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}



.slider-btns.homepage-3 button.testi-nav-left.slick-arrow:hover{
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.slider-btns.homepage-3 button.testi-nav-right.slick-arrow:hover {
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}



.homepage-6 button.testi-nav-left.slick-arrow {
    background-color: rgb( 100, 209, 255 );
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.homepage-6 button.testi-nav-right.slick-arrow {
    background-color: rgb( 100, 209, 255 );
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}



.homepage-6 button.testi-nav-left.slick-arrow:hover{
    background-image: -moz-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.homepage-6 button.testi-nav-right.slick-arrow:hover {
    background-image: -moz-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;

}

.slider-btns {
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: none;
}


.testimonial-area:hover .slider-btns{
    display: block;
}


/*----------------------------------------
        23. ALL BRAND STYLE
------------------------------------------*/


.brand-area {
    padding-top: 0px;
    padding-bottom: 150px;
}

.brand-single-item img {
    max-height: 105px;
    max-width: 105px;
    margin: 0 auto;
}


/*----------------------------------------
       24.  PRICING TABLE STYLE
------------------------------------------*/


.pricing-table-area {
    background-image: url(../images/bg/pricing-table-bg.png);
    background-size: cover;
    background-position: center center;
    padding-bottom: 150px;
    padding-top: 145px;
}

.single-pricing-table {
    text-align: center;
    border: 1px solid#d0e2f4;
    padding: 50px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}
.single-pricing-table:after {
    position: absolute;
    top: -203px;
    left: 127px;
    width: 118%;
    height: 65%;
    background: #f5f7fb;
    content: "";
    padding: 0px;
    border-radius: 42px;
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg);
    -webkit-transition: .3s;
    transition: .3s;
}

.pricing-heading h2 {
    font-size:  30px;
    color:  #5d7dea;
    font-weight:  500;
    position: relative;
    z-index: 99;
    -webkit-transition: .3s;
    transition: .3s;

}

.pricing-table-area.homepage-2 .pricing-heading h2 {
    color:  #00c9fd;

}
.pricing-table-area.homepage-2 .single-pricing-table:hover:after {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
}

.pricing-table-area.homepage-2 .pricing-amount .price {
    color: #00c9fd;
}

.pricing-table-area.homepage-2 .pricing-amount .currency {
    color: #00c9fd;
}
.pricing-table-area.homepage-2 .pricing-btn.blue-btn:before{
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);

}


.pricing-heading {
    margin-top:  25px;
    margin-bottom: 110px;
}

.pricing-content {
    margin-bottom:  60px;
}

.pricing-content ul {
    margin:  0;
    padding:  0;
    list-style:  none;
}

.pricing-content li {
    font-size:  16px;
    font-weight:  500;
    color: #535e72;
    margin-bottom: 25px;
}

a.pricing-btn.blue-btn {
    margin-top:  30px;
    display:  inline-block;
    padding: 15px 45px;
    font-size:  14px;
    color: #2c324b;
    font-weight: 500;
    border-radius: 35px;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    z-index: 1;
}

.pricing-btn.blue-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;
}
.pricing-btn.blue-btn:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}

.pricing-btn.blue-btn:hover:after, .pricing-btn.blue-btn:focus:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.single-pricing-table:hover .pricing-btn.blue-btn:after{
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.pricing-btn.blue-btn:after {
    background: #fff none repeat scroll 0 0;
}
.homepage-3 .pricing-btn.blue-btn:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;
}
.homepage-3 .pricing-btn.blue-btn:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}

.homepage-3 .pricing-btn.blue-btn:hover:after, .homepage-3 .pricing-btn.blue-btn:focus:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.homepage-3 .single-pricing-table:hover .homepage-3 .pricing-btn.blue-btn:after{
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.pricing-btn.blue-btn:after {
    background: #fff none repeat scroll 0 0;
}

.pricing-amount {
    position: relative;
}

.pricing-amount .currency {
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: -7px;
    color: #5d7dea;
    left: -13px;
}
.pricing-amount .price {
    font-size: 42px;
    font-weight: 700;
    color: #5d7dea;
}
.pricing-amount .subscription {
    font-size: 16px;
    font-weight: 400;
    color: #535e72;
}


.single-pricing-table:hover a.pricing-btn.blue-btn{
    color:#fff;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}
a.pricing-btn.blue-btn:hover{
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);

}
.homepage-3 .pricing-amount .price{
    color: #fc5185;

}

.homepage-3 .pricing-heading h2{
    color: #fc5185;
}
.homepage-3 .pricing-btn.blue-btn{
    border-color: #fa875c;
}
.homepage-3 .pricing-amount .currency{
    color: #fc5185;

}



.homepage-3 .single-pricing-table:hover:after{
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
}



.single-pricing-table:hover:after{
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
}
.single-pricing-table:hover{
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
}
.single-pricing-table:hover .pricing-heading h2{
    color: #fff;
}


/*----------------------------------------
        25. FAQ'S STYLE
------------------------------------------*/

.faq-left img {
    position: absolute;
    left: 0;
    top: -60px;
}

.faq-left-2 img {
    position: absolute;
    left: 0;
    top: 0;
}
.faq-area {
    padding-top: 146px;
    padding-bottom: 110px;
}




.faq-area .panel.panel-default {
    margin-bottom:34px;
    box-shadow: none;
    background: -webkit-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background: -ms-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    padding: 0;
    border-radius: 5px 5px 5px 5px;
}
.faq-area.homepage-3 .panel.panel-default{
    background-image: -webkit-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
}
.faq-area .panel.panel-default.active {
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
    border: none;

}



.beefup__head {
    cursor: pointer;
    margin-bottom: 0;
    overflow: hidden;
    padding-right: 50px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    color: #2c324b;
    padding: 20px 30px;
    font-weight: 500;
}
.beefup {
    border: 1px solid #ccdef1;
    border-radius: 4px;
    margin: 40px 0;
    -webkit-transition: border .2s ease;
    transition: border .2s ease;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.beefup:hover {
    border-color: #ccdef1;
}

.beefup__body {
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    padding: 0px 0px 24px 30px;
}

.beefup.is-open {
    background: -webkit-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background: -ms-linear-gradient( 120deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border-color:#3F98F2;
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
}


.homepage-3 .beefup.is-open {
    background-image: -webkit-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
    border-color:transparent;
}

.homepage-6 .beefup.is-open {
    background-image: -webkit-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
    border-color:transparent;
}



.faq-area.homepage-2 .beefup.is-open{
    border-radius: 5px;
    background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    border-color: transparent;

}



.beefup.is-open > .beefup__head {
    color: #2c324b;
}

.beefup.is-open > .beefup__head:after {
    border-bottom: 0px solid #999;
    border-right: 0px solid #999;
    content: '\e648';
    font-family:'InfinityFont';
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    display: none;
}

.beefup__head  span {
    color: #fff;
    display: block;
    float: right;
    font-size: 16px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    position: absolute;
    right: 15px;
    top: 23px;
    color: #6373c9;
}
.beefup.is-open .beefup__head  span {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #fff;
}
.beefup__head:after {
    border-style: solid;
    border-width: 0px 0px 0;
    border-color: transparent;
    content: '\e64b';
    position: absolute;
    right: 20px;
    height: 0;
    margin-top: -5px;
    top: 50%;
    width: 0;
    font-family:'InfinityFont';
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    display: none;
}

.faq-area.homepage-3 #accordion1 .panel-collapse .panel-body,
.faq-area.homepage-3 #accordion2 .panel-collapse .panel-body {
    border: 0 none;
    padding: 0 20px 26px;
    color: #fff;
    background-image: -webkit-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
}


/*----------------------------------------
        26. DOWNLOAD STYLE
------------------------------------------*/
.download-area {
    background-image: url(../images/bg/download-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    background-color: rgb( 245, 247, 251 );
    padding-top: 138px;
    padding-bottom: 146px;
    overflow: hidden;
}

#background-19 {
    background-image: url(../images/bg/1.png);
    background-position: top 42% left 50%;
}

#background-20 {
    background-image: url(../images/bg/2.png);
    background-position: top 47% left 73%;
}
#background-21 {
    background-image: url(../images/bg/7.png);
    background-position: top 41% left 19%;
}
#background-22 {
    background-image: url(../images/bg/7.png);
    background-position: top 63% left 83%;
}
#background-23 {
    background-image: url(../images/bg/12.png);
    background-position: top 64% left 35%;
}
#background-24 {
    background-image: url(../images/bg/10.png);
    background-position: top 56% left 15%;
}
#background-25 {
    background-image: url(../images/bg/10.png);
    background-position: top 46% left 84%;
}
#background-26 {
    background-image: url(../images/bg/14.png);
    background-position: top 49% left 12%;
}
#background-27 {
    background-image: url(../images/bg/4.png);
    background-position: top 77% left 10%;
}

#background-28 {
    background-image: url(../images/bg/4.png);
    background-position: top 59% left 73%;
}
#background-29 {
    background-image: url(../images/bg/4.png);
    background-position: top 31% left 91%;
}
#background-30 {
    background-image: url(../images/bg/5.png);
    background-position: top 31% left 65%;
}
#background-31 {
    background-image: url(../images/bg/5.png);
    background-position: top 46% left 50%;
}
#background-32 {
    background-image: url(../images/bg/5.png);
    background-position: top 61% left 60%;
}


#background-34 {
    background-image: url(../images/bg/13.png);
    background-position: top 41% left 32%;
}
#background-35 {
    background-image: url(../images/bg/13.png);
    background-position: top 63% left 7%;
}
#background-35 {
    background-image: url(../images/bg/13.png);
    background-position: top 64% left 5%;
}

#background-36 {
    background-image: url(../images/bg/6.png);
    background-position: top 38% left 7%;
}
.download-table {
    display:  table;
    width:  100%;
}

.download-table-cell {
    display:  table-cell;
    width:  100%;
    vertical-align:  middle;
    text-align:  center;
}

.download-table-cell
h2 {
    font-size:  40px;
    font-weight:  300;
    color:  #2c324b;
    line-height: 55px;
}

.download-table-cell
h2 span {
    color: #5d7dea;
}

.download-area.homepage-2 .download-table-cell
h2 span {
    color: #00c9fd;
}


.dsp-tc {
    display: table-cell;
    vertical-align: top;
}



.btn-style-2 {
    border-radius: 100px;
    color: #fff;
    line-height: 1;
    outline: 0 none;
    padding: 18px 36px;
    position: relative;
    text-align: left;
    text-decoration: none;
    z-index: 1;
    margin-left: 30px;
    display: inline-block;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    text-transform: uppercase;
}
.btn-style-2:hover{
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);

}

.btn-style-2:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;
}
.homepage-3 .btn-style-2:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;
}
.btn-style-2:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}

.btn-style-2:hover:after, .btn-style-2:focus:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.btn-style-2:after {
    background: #f5f7fb none repeat scroll 0 0;
}
.btn-style-2 a:after {
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
}
.btn-style-2 a:after {
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #ee0f6f 0%, #f89482 100%) repeat scroll 0 0;
}
.btn-style-2 {
    background: transparent none repeat scroll 0 0;
    color: #2b323f;
}

.download-area.homepage-2 .btn-style-2:before {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
}
.btn-style-2.home-2 {
    color: #2c324b;
    font-weight: 700;
    padding: 20px 40px;
    margin-left: 0;
}
a.btn-style-2.home-2:hover {
    color: #fff;
}








a.btn-style-2:hover p.dsp-tc{
    color: #fff;
}
a.btn-style-2:hover p.dsp-tc > span{
    color: #fff;
}
a.btn-style-2:hover  span{
    color: #fff;
}



p.dsp-tc {
    font-size: 14px;
    text-align:  left;
    padding-left: 30px;
    color: #4e5a6d;
    -webkit-transition: .3s;
    transition: .3s;
}

p.dsp-tc > span {
    font-size: 18px;
    font-weight:  700;
    color: #2c324b;
    -webkit-transition: .3s;
    transition: .3s;
}

.button-group.store-buttons > span {
}

a.btn-style-2 > span {
    font-size: 24px;
    position:  absolute;
    left: 26px;
    top: 23px;
    color: #2c324b;
    -webkit-transition: .3s;
    transition: .3s;
}


.button-group.store-buttons {
    margin-top: 45px;
}




.homepage-3 .download-table-cell
h2 span {
    color: #fc5185;
}











/*----------------------------------------
       27. BLOG STYLE
------------------------------------------*/


.blog-area {
    padding-top: 144px;
    padding-bottom: 150px;
}



.single-blog-box {
    border: 1px solid#d0e2f4;
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
    overflow: hidden;
    margin-bottom: 50px;
}
.post-meta {
    padding: 30px;
    font-size: 12px;
    color: #8ca0b4;
}

.post-meta span {
    position:  relative;
    top: 2px;
    margin-right: 5px;
}
.post-meta span {
    position:  relative;
    top: 2px;
    margin-right: 5px;
}

.blog-heading {
    padding: 30px;
    padding-top:  0;
}

.blog-heading h2 {
    font-size: 22px;
    font-weight: 600;
    margin:  0;
    color: #2c324b;
    -webkit-transition: .3s;
    transition: .3s;
}
.single-blog-image {
    position:  relative;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;

}

.single-blog-image:after {
    position: absolute;
    bottom: -14px;
    right: 30px;
    content: "\e61a";
    font-family: 'InfinityFont';
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    color: #5d7dea;
    box-shadow: 0px 0px 25px 0px rgba(0, 27, 103, 0.3);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    cursor: pointer;
}
.homepage-3 .single-blog-image:after{
    color: #fc5185;
}

.homepage-3 .single-blog-box:hover .single-blog-image:after{
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
}
.homepage-3 .single-blog-box:hover .blog-heading h2{
    color: #fc5185;
}


.single-blog-box:hover{
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
    border-color:#fff;
}



.single-blog-box:hover .single-blog-image:after {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    color: #fff;
    box-shadow: none;
}



.single-blog-box:hover .blog-heading h2{
    color: #5d7dea;
}
.blog-area.homepage-2 .single-blog-box:hover .blog-heading h2{
    color: #00c9fd;
}
.blog-area.homepage-2 .single-blog-box:hover .single-blog-image:after {
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -moz-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    color: #fff;
    box-shadow: none;
}
.blog-area.homepage-2 .single-blog-image:after{
    color: rgb( 93, 125, 234 );
}


/*----------------------------------------
        28. BLOG FULL PAGE STYLE
------------------------------------------*/

.blog-full-page-area{
    position: relative;
    background-image: url(../images/bg/blog-full-page-bg.jpg);
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    min-height: 120px;
}
.full-blog-area {
    padding-top: 150px;
    padding-bottom: 127px;
}

.blog-page-content-table {
    display:  table;
    width: 100%;
}

.blog-table-cell {
    display:  table-cell;
    width: 100%;
    vertical-align:  middle;
    text-align:  center;
    color:  #fff;
    padding-top:  220px;
    padding-bottom: 145px;
}

.blog-table-cell h2 {
    font-size:  36px;
    margin-bottom: 20px;
}

.blog-table-cell h4 {
    font-size: 14px;
    font-weight:  400;
}
.other-page-link {
    text-align: center;
    margin-top: 20px;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: none;
    width: inherit;
    height: inherit;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: none;
    width: inherit;
    height: inherit;
}
.pagination>li:first-child>a:hover {
    border: none;
    background: none;
    color: #5d7dea;
    box-shadow: none;
}
.pagination>li:last-child>a:hover {
    border: none;
    background: none;
    color: #5d7dea;
    box-shadow: none;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 0;
    margin-left: 0;
    line-height: 40px;
    color: #8ca0b4;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #4298F3;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 15px;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s;
    width: 40px;
    height: 40px;
}

.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    box-shadow: 0px 15px 47.5px 2.5px rgba(0, 27, 103, 0.3);
    border-color:none;
    z-index: 2;
    color: #fff;
    background-color:none;
    border-color: #4298F3;
}
.pagination>li>a.active{
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    box-shadow: 0px 15px 47.5px 2.5px rgba(0, 27, 103, 0.3);
    border-color:none;
    z-index: 2;
    color: #fff;
    background-color:none;
    border-color: #4298F3;
}



/*----------------------------------------
       29.  BLOG RIGHT PAGE STYLE
------------------------------------------*/


.latest-blog-area {
    padding-top: 150px;
    padding-bottom: 127px;
}
.latest-blog-area .row.mb-50 {
    margin-bottom: 35px;
}
.blog-right-search-button {
    border: 1px solid#d0e2f4;
    padding: 30px;
    border-radius: 5px;
}

.search-button input[type="text"] {
    width: 77%;
    padding: 13px;
    border: 1px solid #d0e2f4;
    border-radius: 5px 0px 0px 5px;
    outline: none;
}

.search-button button {
    border: none;
    padding: 12px 24px;
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    position: absolute;
    border-radius: 0px 5px 5px 0px;
}



.blog-categories-right {
    margin-top: 50px;
    border: 1px solid#d0e2f4;
    padding: 30px;
    border-radius: 5px;
}

.blog-categories-right h2 {
    font-size: 24px;
    color: #2c324b;
    font-weight: 600;
    margin: 0 0 20px;
}

.categories-right-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.categories-right-list li {
    padding: 10px 0;
}

.categories-right-list a {
    font-size: 14px;
    color: #535e72;
    display: block;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}
.categories-right-list a:hover{
    padding-left: 10px;
    color: #5dafef;
}


.blog-recent-post-image-1 {
    margin-bottom: 40px;
}

.blog-recent-post {
    padding: 0 28px;
    border: 1px solid#d0e2f4;
    border-radius: 5px;
    margin-top: 50px;
    padding-top: 30px;
}
.shop-recent-post-image-1 {
    margin-bottom: 30px;
}

.blog-recent-post h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c324b;
    margin: 0 0 30px;
}

.blog-recent-post-content p {
    font-size: 12px;
    color: #6d8195;
    margin: 0 0 5px;
}

.blog-recent-post-content h2 {
    font-size: 14px;
    font-weight: 600;
    color: #2c324b;
    margin: 0;
}

.blog-recent-post-content {
    margin-top: 20px;
}

.blog-recent-post-content a {
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}
.blog-recent-post-content:hover h2{
    color: #5dafef;
}
.blog-tag-cloud {
    padding: 25px;
    border: 1px solid#d0e2f4;
    border-radius: 5px;
    margin-top: 50px;
}

.blog-tag-cloud h2 {
    font-size: 24px;
    color: #2c324b;
    font-weight: 600;
    margin: 0 0 20px;
}

.blog-tag-cloud-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-tag-cloud-list ul li {
    display: inline-block;
    padding: 11px 6px;
}

.blog-tag-cloud-list ul li a {
    display: block;
    border: 1px solid#d0e2f4;
    padding: 7px 12px;
    font-size: 12px;
    color: #535e72;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
}
.blog-tag-cloud-list ul li a:hover{
    background: #5d7dea;
    color: #fff;
}


/*----------------------------------------
        30. BLOG DETAILS PAGE STYLE
------------------------------------------*/

.blog-details.latest-blog-area {
    padding-top: 150px;
    padding-bottom: 150px;
}

p.blog-2-line-p {
    margin: 0;
}

.latest-blog-area p.blog-meta {
    text-align: center;
}


.latest-blog-area blockquote {
    font-size: 16px;
    padding: 40px 55px;
    background: #f2f5f9;
    margin: 30px;
    font-weight: 500;
    position: relative;
    color: #3e445b;
    line-height: 27px;
}
blockquote:after {
    position: absolute;
    content: "";
    bottom: -69%;
    background-image: url(../images/icons/blog-details-icon-2.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;

}

blockquote:before {
    position: absolute;
    content: "";
    background-image: url(../images/icons/blog-details-icon.png);
    height: 100%;
    left: 4%;
    top: 19%;
    width: 100%;
    background-repeat: no-repeat;
}
.post-meta a {
    font-size: 12px;
    color: #8ca0b4;
}
.post-meta a span{
    font-size: 14px;
    color: #8ca0b4;
}
.post-meta p{
    padding: 0px;
}
.blog-box-content p {
    padding: 0 25px;
    margin: 0 0 30px;
    text-align: left;
    font-size: 16px;
    line-height: 30px;
    color: #535e72;
}
.blog-box-content h3,
.blog-box-content h4,
.blog-box-content h5{
    padding: 0 25px;
}

.blog-details.latest-blog-area .blog-heading h2 {
    font-size: 34px;
}
.latest-blog-area .single-blog-box {
    margin-bottom: 50px;
}
.latest-blog-area .single-blog-box img{
    width: 100%;
}
.latest-blog-area .post-date.pull-right a {
    padding-left: 30px;
}
.blog-social-links .social-links {
    display: inline-block;
    margin: 0;
    padding-bottom: 30px;
}
.blog-social-links .blog-tag-cloud-list {
    padding-bottom: 30px;
}
.blog-social-links .social-links span{
    font-size: 14px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    margin-right: 10px;
}
.blog-social-links{
    margin: 20px;
}
.blog-social-links .blog-tag-cloud-list ul li {
    display: inline-block;
    padding: 0px;
    margin: 0 10px;
}
.comment-area {
    border: 1px solid#d0e2f4;
    border-radius: 5px;
}

.comment-area h2 {
    font-size: 24px;
    font-weight: 600;
    color: #3e445b;
    margin-top: 30px;
    margin-left: 30px;
}

.single-comment-content {
    padding-left: 120px;
    position: relative;
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid#f6faff;
    padding-right: 11px;
    -webkit-transition: .3s;
    transition: .3s;
}
.single-comment-content:last-child{
    border: none;
}
.single-comment-content:hover button.reply-button{
    color: #5dafef;
}
.single-comment-content.comment-padding-left {
    padding-left: 160px;
}

.single-comment-content.comment-padding-left img {
    left: 9%;
}
.single-comment-content img {
    position: absolute;
    left: 3%;
    top: 30%;
}

.single-comment-content h4 {
    font-size: 18px;
    color: #3e445b;
    font-weight: 600;
}

.single-comment-content h4 span {
    display: block;
    font-size: 71%;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 15px;
}

.comment-reply {
    text-align: right;
    position: relative;
}

button.reply-button {
    border: none;
    background: none;
    font-size: 12px;
    text-transform: uppercase;
    outline: none;
    position: absolute;
    right: 10px;
    top: -30px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 500;
}

.single-comment-content p {
    font-size: 14px;
    color: #535e72;
    line-height: 25px;
}

.leave-comment-area {
    padding: 30px;
    border: 1px solid#d0e2f4;
    margin-top: 50px;
    border-radius: 5px;
}

.leave-comment-area h2 {
    font-size: 24px;
    font-weight: 600;
    color: #3e445b;
}

.leave-comment-area .single-input h4 {
    font-size: 14px;
    color: #a7b3c1;
    margin-top: 15px;
    font-weight: 400;
    margin-bottom: 5px;
}

.single-input input[type="text"] {
    width: 100%;
    height: 40px;
    border: 1px solid#d0e2f4;
    border-radius: 5px;
    outline: 0;
    margin-bottom: 24px;
    padding: 15px;
    box-shadow: none;
}

.single-input input[type="email"] {
    width: 100%;
    height: 40px;
    border: 1px solid#d0e2f4;
    border-radius: 5px;
    outline: 0;
    margin-bottom: 24px;
    padding: 15px;
    box-shadow: none;
}
.single-input textarea {
    width: 100%;
    border: 1px solid#d0e2f4;
    border-radius: 5px;
    outline: 0;
    margin-bottom: 24px;
    padding: 15px;
    height: 112px;
    box-shadow: 0px;
}

.single-input .submit-button button[type="submit"] {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    box-shadow: 0px 15px 47.5px 2.5px rgba(0, 27, 103, 0.3);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
    color: #fff;
    border: 0px;
    text-transform: uppercase;
    outline: none;
    padding: 20px 70px;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 100px;
}



.single-input .submit-button {
    text-align: right;
    margin-top: 40px;
}
.blog-detail {
    margin-bottom: 50px;
}
.post-date.pull-right {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}







/*----------------------------------------
      31. SUBSCRIBE STYLE
------------------------------------------*/
.subscribe-box input {
    background: #fff none repeat scroll 0 0;
    border: 0 none;
    border-radius: 50px;
    box-shadow: none;
    color: #4c5462;
    font-size: 18px;
    height: 65px;
    padding: 0 158px 0 50px;
    outline: 0px;
    width: 100%;
    margin-bottom: 10px;
}
.subscribe-box button {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    border: medium none;
    border-radius: 100px;
    color: #fff;
    font-size: 24px;
    height: 65px;
    padding: 0 60px;
    text-transform: uppercase;
    outline: 0px;
    width: 100%;
}
.subscribe-wrapper.homepage-3 {
    background: #fc5185;
}

.subscribe-wrapper.homepage-3 .subscribe-box [type="submit"] {
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);

}
.subscribe-text {
    margin-top: 15px;
}

.subscribe-wrapper {
    background: #5d7dea;
    padding: 40px 100px;
    border-radius: 5px 5px 0px 0px;
}

.subscribe-wrapper.homepage-2{
    background: #00c9fd;

}

.subscribe-text h2 {
    font-size:  24px;
    color:  #fff;
    font-weight:  500;
    text-align: justify;
}
.subscribe-box {
    position: relative;
}

.subscribe-wrapper.homepage-2 .subscribe-box [type="submit"] {
    background-image: -webkit-linear-gradient( 0deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);

}

.Button_Shape {
    background-image: -webkit-linear-gradient( 0deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    position: absolute;
    left: 1285px;
    top: 10663px;
    width: 158px;
    height: 66px;
    z-index: 127;
}




.homepage-6 .subscribe-box button{
    background-image: -webkit-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
}




/*----------------------------------------
      32. CONTACT FORM STYLE
------------------------------------------*/


.contact-form-area h2 {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
    color: #2c324b;
    margin-top: 80px;
}
.contact-wrapper {
    background: #fff;
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
}

.contact-form-area .form-control {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: transparent;
    border-color: currentcolor currentcolor #e5e5e5;
    -o-border-image: none;
    border-image: none;
    border-radius: 0;
    border-style: none none solid;
    border-width: 0 0 1px;
    box-shadow: none;
    color: #000;
    display: block;
    font-size: 14px;
    height: auto;
    line-height: 1.5;
    padding: 6px 0;
    -webkit-transition: border-color 0.2s ease 0s;
    transition: border-color 0.2s ease 0s;
    width: 100%;
}
.contact-form-area .form-group {
    margin-bottom: 40px;
}
.contact-form-area .form-control:focus {
    border-color: #5d7dea;
    box-shadow: none;
}
.contact-form-area.homepage-2 .form-control:focus {
    border-color: #00c9fd;
    color: #2b323f;
}
.homepage-3 .contact-form-area .form-control:focus {
    border-color: #fc5185;
}
.homepage-3 .btn.btn-blue {
    color: #fc5185;
}

.btn.btn-blue {
    outline: none;
    border: none;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 15px 47.5px 2.5px rgba(0, 27, 103, 0.3);
    color: blue;
    position: absolute;
    right: 0;
    bottom: 15px;
    line-height: 17px;
}

.contact-form-area {
    position: relative;
    margin: 0 60px;
}
.google-map {
    height: 507px;
    position: absolute;
    left: 0;
    top: 0;
    width: 98%;
}
#map {
    width: 100%;
    height: 100%;
}
#contact-section{
    position: relative;
}



.address-area {
    position: relative;
}

.address-wrapper {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 35px;
    font-size: 18px;
    color: #fefefe;
    background: #5d7dea;
    box-shadow: 0px 25px 57px 3px rgba(0, 27, 103, 0.15);
    border-radius: 0px 0px 5px 5px;
}
.address-wrapper.homepage-2{
    background: #00c9fd;
}

.homepage-3 .address-wrapper{
    background-color: #FC5285;
}

.single-address {
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;

}
.address-icon-bg {
    height: 50px;
    width: 50px;
    line-height: 55px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
}
.single-address span {
    text-align:  center;
    display:  inline-block;
    font-size:  18px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5c7feb+0,4c8def+26,389ff5+62,2aacf9+100 */
    background: #5c7feb; /* Old browsers */ /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #5c7feb 0%,#4c8def 26%,#389ff5 62%,#2aacf9 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #5c7feb 0%,#4c8def 26%,#389ff5 62%,#2aacf9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c7feb', endColorstr='#2aacf9',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.homepage-3 .single-address span {

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fb5f7b+0,fb6675+25,fa736c+52,fa8261+74,fa875c+100 */
    background: #fb5f7b; /* Old browsers */ /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fb5f7b 0%,#fb6675 25%,#fa736c 52%,#fa8261 74%,#fa875c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fb5f7b 0%,#fb6675 25%,#fa736c 52%,#fa8261 74%,#fa875c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb5f7b', endColorstr='#fa875c',GradientType=1 ); /* IE6-9 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-address p {
    font-weight:  500;
}

.single-address a {
    color:  #fff;
    font-size:  18px;
    font-weight:  500;
}
section.footer-area {
    padding: 30px 0;
    text-align: center;
}
.social-links {
    display: inline-block;
    margin: 52px 0;
}
.social-links span {
    background: transparent;
    text-align: center;
    line-height: 45px;
    border: 1px solid#4fabf5;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s;
    margin-right: 20px;
    font-size: 18px;
    width: 45px;
    height: 45px;
    color: #8ca0b4;
    display: inline-block;
}

.footer-area.homepage-2 .social-links span {
    border: 1px solid#37d9ce;
}

.footer-area.homepage-2 .social-links span:hover{
    background-image: -webkit-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(129,238,142) 0%, rgb(0,201,253) 100%);
    border:none; 
}






.homepage-3 .social-links span {
    border: 1px solid#f97d74;
}

.social-links span:hover {
    background-image: -webkit-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(93,125,234) 0%, rgb(41,173,249) 100%);
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
    color: #FFF;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    border: none;
}

.homepage-3 .social-links span:hover{
    background-image: -webkit-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
    color: #FFF;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    border:1px solid transparent; 
}

p.copy-rights {
    font-size:  16px;
    color:  #2c324b;
}

p.copy-rights a {
    font-size:  16px;
    color: #2c324b;
}

.footer-bg{
    background-image: url(../images/bg/footer-bg.jpg);
    background-size: cover;
    background-position: center;
}


/*----------------------------------------
      33. COMING SOON PAGE STYLE
------------------------------------------*/


.coming-soon {
    text-align: center;
    font-weight: 100;
    background: url(../images/bg/coming-soon-page-bg.jpg);
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    color: #fff;
    padding-top: 135px;
    padding-bottom: 1px;
}
i.fa.fa-circle-o-notch {
    font-size: 70px;
    margin-bottom: 40px;
}
.coming-soon h1 {
    font-weight: 500;
    font-size: 60px;
    margin: 40px 0px 20px;
}
.coming-soon-table-cell img {
    margin-bottom: 40px;
    width: 200px;
}

#clockdiv{
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
}

#clockdiv > div {
    padding: 75px;
    border-radius: 3px;
    display: inline-block;
}

#clockdiv div > span {
    border-radius: 3px;
    display: inline-block;
    font-size: 72px;
    font-weight: 700;
    position: relative;
    height: 100px;
    width: 100px;
}
#clockdiv div > span:first-child:after{
    display: none;
}

.smalltext {
    font-family: 'Raleway', sans-serif;
    padding-top: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
section.coming-soon h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 20px;
}
section.coming-soon input[type="email"] {
    border: 1px solid#fff;
    outline: none;
    padding-left: 35px;
    height: 50px;
    width: 26%;
    border-radius: 50px 0px 0px 50px;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
}
section.coming-soon input[type="email"]::-webkit-input-placeholder {
    color: #fff;
}
button.notify {
    border: 1px solid #fff;
    height: 50px;
    font-size: 12px;
    color: #5d7dea;
    font-weight: 500;
    outline: none;
    width: 12%;
    background: #fff;
    text-transform: uppercase;
    margin-left: -28px;
    padding-top: 2px;
    border-radius: 50px;
}
.coming-soon .social-links span {
    color: #fff;
    margin-top: 100px;
    border-color: #fff;
}
.coming-soon .social-links span:hover{
    border-color: #4fabf5;

}
.coming-soon .social-links {
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 20px;
}
.coming-soon p.copy-right {
    font-size: 16px;
    margin: 30px;
    color: #fff;
    font-weight: 400;
}
.coming-soon p.copy-right a{
    color: #fff;
    text-decoration: none;
    padding: 0 7px;
    font-size: 16px;
}


/*----------------------------------------
       34.404 PAGE STYLE
------------------------------------------*/


.blank-page-area{
    background-image: url(../images/bg/404-error-page.jpg);
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.blank-page-table {
    display:  table;
    width:  100%;
}

.blank-page-table-cell {
    display:  table-cell;
    width:  100%;
    vertical-align:  middle;
    text-align:  center;
    padding-top: 220px;
    padding-bottom: 150px;
}

.blank-page-table-cell li {
    font-size: 456px;
    font-weight: 700;
    width: 368px;
    height: 480px;
    background-color: #2BADF9;
    line-height: 454px;
    text-align: center;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    margin-left: -5px;
}
li.diff-color{

    background-color: #5D7DEA;
}
.blank-page-table-cell a {
    font-size:  36px;
    color:  #fff;
    padding-top: 100px;
    display: inline-block;
    -webkit-transition: .3s;
    transition: .3s;
}
.blank-page-table-cell a:hover {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
/* ------ venobox.css --------*/
.vbox-overlay *, .vbox-overlay *:before, .vbox-overlay *:after{
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;

}
.vbox-overlay{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1040;
    -webkit-transform:translateZ(1000px);
    transform: translateZ(1000px);
    transform-style: preserve-3d;
}

/* ----- navigation ----- */
.vbox-title{
    width: 100%;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    padding: 6px 40px;
    overflow: hidden;
    position: fixed;
    display: none;
    left: 0;
    z-index: 1050;
}
.vbox-close{
    cursor: pointer;
    position: fixed;
    top: -1px;
    right: 0;
    width: 50px;
    height: 40px;
    padding: 6px;
    display: block;
    background-position:10px center;
    overflow: hidden;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    z-index: 1050;
}
.vbox-num{
    cursor: pointer;
    position: fixed;
    left: 0;
    height: 40px;
    display: block;
    overflow: hidden;
    line-height: 28px;
    font-size: 12px;
    padding: 6px 10px;
    display: none;
    z-index: 1050;
}
/* ----- navigation ARROWS ----- */
.vbox-next, .vbox-prev{
    position: fixed;
    top: 50%;
    margin-top: -15px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 1050;
}
.vbox-next span, .vbox-prev span{
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #B6B6B6;
    border-right-color: #B6B6B6;
    text-indent: -100px;
    position: absolute;
    top: 8px;
    display: block;
}
.vbox-prev{
    left: 15px;
}
.vbox-next{
    right: 15px;
}
.vbox-prev span{
    left: 10px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.vbox-next span{
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10px;
}
/* ------- inline window ------ */
.vbox-inline{
    width: 420px;
    height: 315px;
    height: 70vh;
    padding: 10px;
    background: #fff;
    margin: 0 auto;
    overflow: auto;
    text-align: left;
}
/* ------- Video & iFrames window ------ */
.venoframe{
    max-width: 100%;
    width: 100%;
    border: none;
    width: 100%;
    height: 260px;
    height: 70vh;
}
.venoframe.vbvid{
    height: 260px;
}
@media (min-width: 768px) {
    .venoframe, .vbox-inline{
        width: 90%;
        height: 360px;
        height: 70vh;
    }
    .venoframe.vbvid{
        width: 640px;
        height: 360px;
    }
}
@media (min-width: 992px) {
    .venoframe, .vbox-inline{
        max-width: 1200px;
        width: 80%;
        height: 540px;
        height: 70vh;
    }
    .venoframe.vbvid{
        width: 960px;
        height: 540px;
    }
}
/* 
Please do NOT edit this part! 
or at least read this note: http://i.imgur.com/7C0ws9e.gif
*/
.vbox-open{
    overflow: hidden;
}
.vbox-container{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    z-index: 20;
    max-height: 100%;

}

.vbox-content{
    text-align: center;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
}
.vbox-container img{
    max-width: 100%;
    height: auto;
}
.figlio{
    box-shadow: 0 0 12px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    max-width: 100%;
    text-align: initial;
}
img.figlio{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.vbox-content.swipe-left{
    margin-left: -200px !important;
}
.vbox-content.swipe-right{
    margin-left: 200px !important;
}
.animated{
    webkit-transition: margin 300ms ease-out;
    transition: margin 300ms ease-out;
}
.animate-in{
    opacity: 1;
}
.animate-out{
    opacity: 0;
}

/*
*
*RESPONSIVO INFINITY AGENCY
*/


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

    .mean-container .mean-bar {
        float: left;
        width: 100%;
        position: fixed;
        background: transparent;
        padding: 30px 0;
        min-height: 42px;
        z-index: 99999;
    }

    .slider-wreapper-3 .slick-dots {
        bottom: -30px;
    }

    .header-top{
        padding: 0px 0;
    }

    .advance-feature-area .col-xs-6 {
        width: 100%;
    }



    .sticky-wrapper.is-sticky .header-top .navbar-brand {
        margin-top: 15px;
    }
    .navbar-brand {
        padding: 0px 15px;
    }
    .navbar-brand {
        margin-top: 15px;
    }


    .mean-container a.meanmenu-reveal {
        width: 30px;
        height: 30px;
        top: 2px;
        line-height: 30px;
        font-size: 30px;
    }

    .mean-container a.meanmenu-reveal span {
        height: 5px;
        margin-top: 4px;
    }


    .homepage-2.mean-container a.meanmenu-reveal span {
        background: #535e72;
    }

    .homepage-2.mean-container a.meanmenu-reveal.meanclose {
        color: #535e72;
    }
    .sticky-wrapper.is-sticky .header-top.homepage-2 {    
        background-image: -moz-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
    }

    nav.navbar.affix {
        padding: 0px 0px 15px 0px;
    }
    nav.navbar.affix {
        background-image: -webkit-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
        background-image: -o-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
    }
    .mean-container .mean-nav {
        background-image: -webkit-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
        margin-top: 40px;
    }


    .homepage-2.mean-container .mean-nav {
        background-image: -moz-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        margin-top: 29px;
    }



    .Design_Shape {
        background-image: -moz-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        background-image: -webkit-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        background-image: -ms-linear-gradient( 120deg, rgb(0,201,253) 0%, rgb(129,238,142) 100%);
        position: absolute;
        left: 1093px;
        top: 0px;
        width: 827px;
        height: 1080px;
        z-index: 783;
    }

    .navbar-brand>img {
        width: 80%;
        margin-top: -20px;
    }

    .homepage-3 .mean-container .mean-nav {
        background-image: -webkit-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
        margin-top: 35px;
    }
    .mean-container .mean-nav ul li {
        position: relative;
        float: left;
        width: 100%;
    }
    .dropdown.current-menu-has-children > a:after {
        display: none;
    }
    .mean-container .mean-nav ul li a {
        display: block;
        float: left;
        width: 90%;
        padding: 10px 5%;
        margin: 0;
        text-align: left;
        color: #fff;
        border-top: 1px solid #383838;
        border-top: 1px solid rgba(255,255,255,0.5);
        text-decoration: none;
        text-transform: capitalize;
    }
    .mean-container .mean-nav ul li li a {
        width: 80%;
        padding: 10px 10%;
        border-top: 1px solid #f1f1f1;
        border-top: 1px solid rgba(255,255,255,0.25);
        opacity: 0.90;
        filter: alpha(opacity=75);
        text-shadow: none !important;
        visibility: visible;
    }

    .mean-container .mean-nav ul li a.mean-expand:hover {
        background: #323FAF;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        height: 17px;
        line-height: 17px;
    }

    .homepage-2.mean-container .mean-nav ul li a.mean-expand:hover{
        background-color: #7DED91;
    }

    .testi-carousel .testi-single-item .item-inner {
        padding: 55px 20px 60px 30px;
    }
    .testi-single-item .item-inner:before {
        bottom: 6%;
        font-size: 40px;
    }
    .testi-single-item .item-inner p {
        font-size: 14px;
        line-height: 24px;
    }
    .slider-content  {
        width: 100%;
    }
    .slider-content p {
        width: 100%;
    }
    .testimonial-area .section-heading.text-center {
        margin-bottom: 25px;
    }
    .slider-content h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 26px;
    }
    .slider-text p {
        width: 100%;
    }
    a.download-btn.all-btn{
        margin-bottom: 50px;
    }
    .section-heading.text-center h2 {
        font-size: 28px;
        line-height: 40px;
    }
    .pricing-content {
        margin-bottom: 35px;
    }
    .pricing-heading {
        margin-top: 0px;
        margin-bottom: 65px;
    }
    .homepage-slider-area-3 .video-area-bg {
        font-size: 20px;
    }

    .homepage-slider-area-3 a.mfp-iframe.video-play-btn {
        padding-right: 10px;
    }
    .homepage-slider-area-3 .download-btn.all-btn{
        margin-bottom: 50px;
    }

    .homepage-slider-area-3 .video-play-btn span {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 23px;
    }

    a.mfp-iframe.video-play-btn {
        padding-right: 10px;
    }
    .video-area-bg {
        font-size: 20px;
    }

    .video-play-btn span {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 23px;
    }
    .video-area-bg:after {
        width: 50px;
        height: 50px;
    }
    a.video-play-btn:after {
        margin: 6px 0 0 -17px;
        border-width: 10px 0 10px 13px;
    }
    .video-area-bg h4 {
        margin-left: 55px;
        margin-top: 13px;
        font-size: 24px;
    }


    .slider-content-table-cell {
        text-align: left;
        vertical-align: inherit;
    }
    .homepage-slider-area {
        padding-top: 0px;
        padding-bottom: 98px;
        background-position: 36% 0px;
        height: 100%;
    }
    #homepage-slider-3 {
        padding-top: 0px;
        padding-bottom: 310px;
        z-index: 1;
    }

    .homepage-6 .slider-single-item .slider-content-table {
        padding-top: 170px;
        padding-bottom: 40px;
    }
    .slider-wreapper .slick-dots{
        bottom: -50px;
    }
    .homepage-6 .slider-single-item .slider-screen-2 img {
        left: 400px;
        top: 0px;
    }
    .slider-screen img {
        right: 52px;
        top: 108%;
        width: 65%;
    }

    .slider-screen-2 img {
        right: 0px;
        top: 112%;
        width: 90%;
    }
    .slider-screen-3 img {
        right: 0px;
        top: 110%;
        width: 80%;
    }
    .homepage-5 .slider-screen img {
        right: 0px;
        top: 112%;
        width: 95%;
    }


    .slider-screen-7 img {
        right: 45px;
        top: 108%;
        width: 75%;
    }
    .homepage-6 .slider-single-item .slider-screen-8 img {
        display: none;
    }
    .homepage-6 .slider-single-item .slider-screen-2 img {
        display: none;
    }
    .homepage-6 .slick-dots{
        margin-left: -80px;
    }
    .faq-left-2 img {
        display: none;
    }
    .homepage-slider-area:after {
        display: none;

    }
    .slider-content-table {
        width: 100%;
        height: 100%;
    }
    section.feature-area {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    a.read-more-btn {
        opacity: 1;
        visibility: visible;
    }
    .single-feature {
        margin-bottom: 50px;
    }
    .about-left img {
        display: none;
    }
    .about-area {
        padding-top: 70px;
        padding-bottom: 70px;
        text-align: center;
    }
    .about-list{
        text-align: left;
    }

    a.about-btn {
        margin-top: 50px;
    }
    section.work-area {
        padding-top: 10px;
        padding-bottom: 60px;
        text-align: center;
    }
    .single-feature p {
        font-size: 14px;
        line-height: 24px;
        padding: 0 20px;
    }
    .single-feature h2 {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .work-left h2 {
        font-size: 23px;
        margin-bottom: 35px;
        line-height: 38px;
    }
    .about-right p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 35px;
    }
    .work-left h2 {
        font-size: 28px;
        margin-bottom: 30px;
        line-height: 40px;
    }
    .work-left p {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 24px;
    }
    .single-work {
        text-align: left;
    }
    .single-work {
        padding: 20px 20px 20px 100px;
    }
    .single-work img {
        left: 15px;
    }
    .single-work h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .single-work p {
        font-size: 14px;
        line-height: 24px;
    }
    .single-advance {
        padding: 30px 30px;
        text-align: center;
        margin-bottom: 35px;
    }


    .single-advance span {
        font-size: 30px;
    }
    .single-advance h2 {
        font-size: 20px;
        margin-top: 14px;
        margin-bottom: 16px;
    }
    .single-advance p {
        font-size: 14px;
        line-height: 24px;
    }

    .row.ml-20 {
        margin-left: -16px;
    }

    .about-right h2 {
        font-size: 28px;
        margin-bottom: 35px;
        line-height: 40px;
    }

    .about-list ul li {
        font-size: 14px;
    }

    section.advance-feature-area {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    section.screenshots-area {
        padding-top: 75px;
    }

    .slider-image img{
        margin: 0 auto;
    }

    .slick-dots {
        margin-left: -73px;
    }
    .video-play-icon span {
        height: 60px;
        line-height: 60px;
        width: 60px;
    }
    .video-play-icon span:after {
        margin: -1px 0 0 -7px;
        top: 20px;
        border-width: 12px 0 12px 18px;
    }
    button.testi-nav-right.slick-arrow {
        right: 27px;
    }


    .video-play-icon p {
        font-size: 25px;
        margin-top: 10px;
    }

    .section-heading.text-center {
        padding: 0px;

    }
    .section-heading.text-center {
        margin-bottom: 50px;
    }
    .fan-fact-area {
        padding-top: 80px;
        transform: translateY(-0%);
        padding-bottom: 30px;
    }

    .promo-video-area {
        position: inherit;
        padding:60px 0; 
    }
    .single-items {
        text-align: -webkit-center;
        margin-bottom: 50px;
    }
    .slider-wrapper-2 .slider-image{
        min-height: 5px 0 60px;
    }
    section.testimonial-area {
        margin-top: 65px;
        padding-bottom: 80px;
    }
    section.testimonial-area.homepage-1 .slick-dots {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    .slider-btns button {
        left: 73%;
    }
    .slider-btns button {
        width: 30px;
        height: 30px;
        font-size: 17px;
        line-height: 30px;
        top: -14px;
    }
    .homepage-2 button.testi-nav-right.slick-arrow {
        right: 20px;
    }
    .testimonial-meta h4 {
        font-size: 17px;
    }
    .testimonial-meta h4 span {
        font-size: 11px;
        line-height: 12px;

    }
    .testi-single-item .item-inner p {
        font-size: 14px;
    }
    .testimonial-meta {
        margin-bottom: 25px;
        margin-left: 120px;
    }
    section.pricing-table-area {
        padding-bottom: 30px;
        padding-top: 70px;
    }
    .single-pricing-table {
        margin-bottom: 45px;
    }
    .brand-area {
        padding-top: 0px;
        padding-bottom: 50px;
    }
    .work-left {
        padding-top: 58px;
        margin-bottom: 58px;
    }
    .faq-left img {
        display: none;
    }

    .faq-area {
        padding-top: 70px;
        padding-bottom: 35px;
    }

    .faq-area .panel-title a {
        font-size: 16px;
    }
    .download-table-cell h2 {
        font-size: 20px;
        line-height: 34px;
    }
    .btn-style-2 {
        margin-left: 10px; 
        margin-bottom: 15px;
    }
    .download-area {
        padding-top: 63px;
        padding-bottom: 60px;
    }
    .blog-area {
        padding-top: 70px;
        padding-bottom: 0px;
    }
    .single-blog-box img {
        width: 100%;
    }
    .single-blog-box {
        margin-bottom: 70px;
    }
    .blog-heading h2 {
        font-size: 23px;
        line-height: 34px;
    }
    .subscribe-text h2 {
        font-size: 28px;
    }

    .subscribe-wrapper {
        text-align: center;
    }
    .subscribe-wrapper {
        padding: 30px 10px;
    }

    .subscribe-box input {
        font-size: 12px;
        height: 40px;
        padding: 0 44px 0 20px;
        width: 100%;
    }
    .subscribe-box button{
        font-size: 24px;
        height: 50px;
        padding: 0 25px;
    }

    .subscribe-text {
        margin-bottom: 15px;
        margin-top: 0;
    }


    .contact-form-area {
        margin: 20px 20px;
    }

    .contact-form-area h2 {
        font-size: 28px;
        margin-top: 0;
    }
    .google-map {
        width: 100%;
    }
    .footer-area {
        padding: 35px 0;
    }
    .address-wrapper {
        margin-top: 507px;
        padding-bottom: 0;
    }

    .address-icon-bg {
        margin-bottom: 16px;
    }

    .single-address p {
        margin-bottom: 40px;
    }


    .social-links span {
        text-align: center;
        line-height: 40px;
        margin-right: 15px;
        font-size: 16px;
        width: 40px;
        height: 40px;
    }
    .social-links {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .section-heading.text-center p{
        font-size: 14px;
    }


    .blank-page-table-cell li {
        font-size: 220px;
        width: 200px;
        height: 313px;
        line-height: 283px;
    }


    .blog-right-search-button {
        margin-top: 50px;
    }


    .blog-recent-post-image-1 img {
        width: 100%;
    }


    .latest-blog-area {
        padding-top: 50px;
        padding-bottom: 34px;
    }

    .coming-soon h1 {
        font-size: 45px;
    }
    #clockdiv div > span {
        font-size: 45px;
    }

    section.coming-soon input[type="email"] {
        width: 50%;
    }

    .coming-soon .social-links {
        margin-top: 0px; 
    }
    .blog-details.latest-blog-area {
        padding-top: 50px;
        padding-bottom: 34px;
    }

    p.speak-quate:before {
        top: 6%;
        left: -6px;
    }
    p.speak-quate:after {
        bottom: -89%;
        left: 55%;
    }
    .pagination>li>a, .pagination>li>span {
        padding: 0;
        font-size: 11px;
        margin: 0 3px;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    .full-blog-area {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    .single-blog-box.mb-o{
        margin-bottom: 0;
    }


    .coming-soon {
        padding-top: 60px;
    }
    .coming-soon h1 {
        font-size: 25px;
        margin: 20px 0px 10px;
    }

    #clockdiv div > span {
        font-size: 25px;
        padding: 0;
    }
    .smalltext {

        margin-top: 0px; 
    }
    section.coming-soon h2 {
        font-size: 20px;
        margin-top: 30px;
    }
    section.coming-soon input[type="email"] {
        width: 75%;
        padding-left: 20;
    }
    button.notify {
        width: 30%;
        padding-top: 2px;
    }
    .coming-soon p.copy-right {
        font-size: 16px;
        margin: 0px; 
    }

    .blank-page-table-cell {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .blank-page-table-cell li {
        font-size: 80px;
        width: 80px;
        height: 87px;
        line-height: 90px;
    }

    .blank-page-table-cell a {
        font-size: 20px;
        padding-top: 50px;
    }

    .homepage-7.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
        margin-top: 29px;
    }

    .homepage-3.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
        margin-top: 29px;
    }
    .homepage-4.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
        margin-top: 29px;
    }
    .homepage-8.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
        margin-top: 29px;
    }
    .homepage-7.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #FC5B7E;
    }
    .homepage-3.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #FC5B7E;
    }
    .homepage-4.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #6681F6;
    }
    .homepage-8.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #6681F6;
    }

    .blog-table-cell {
        padding-top: 120px;
        padding-bottom: 90px;
    }

    .post-meta {
        padding: 20px;
    }
    .blog-heading{
        padding: 30px 10px;
    }
    .blog-details.latest-blog-area .blog-heading h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .blog-box-content p {
        padding: 0 10px;
        font-size: 14px;
        line-height: 25px;
    }
    .blog-box-content h3,
    .blog-box-content h4,
    .blog-box-content h5{
        padding: 0 10px;
    }

    .latest-blog-area p.speak-quate {
        font-size: 14px;
        padding: 10px 10px;
        line-height: 24px;
    }
    .blog-tag-cloud-list ul li a {
        padding: 5px 6px;
    }

    .single-comment-content {
        padding-left: 77px;
        padding-right: 0px;
    }
    .single-comment-content img {
        left: 2%;
        top: 8%;
        width: 17%;
    }
    .single-comment-content.comment-padding-left img {
        left: 5%;
    }


    .single-comment-content.comment-padding-left {
        padding-left: 88px;
    }

    p.copy-rights {
        font-size: 13px;
    }


    #clockdiv > div {
        padding: 10px;
    }
    #clockdiv div > span {
        height: 40px;
        width: 40px;
    }


    .slider-text h1 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 27px;
    }


    .single-slider-content {
        margin: 125px 0px;
    }

    .slider-content-active .owl-dots {
        left: 0;
        bottom: 0px;
        text-align: center;
    }
    .slider-content-active .owl-dot span{
        margin-left: -10px;
    }

    .scrolltotop {
        font-size: 17px;
        height: 40px;
        padding-top: 0px;
        width: 40px;
        line-height: 43px;
    }




}




/* Extra Small Devices, Phones */

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



    .mean-container .mean-bar {
        float: left;
        width: 100%;
        position: fixed;
        background: transparent;
        padding: 30px 0;
        min-height: 42px;
        z-index: 99999;
    }


    .header-top{
        padding: 0px 0;
    }

    .header-top{

    }


    .navbar-brand {
        padding: 0px 15px; 
    }

    .advance-feature-area .col-xs-6 {
        width: 50%;
    }

    .mean-container a.meanmenu-reveal {
        width: 30px;
        height: 30px;
        top: 2px;
        line-height: 30px;
        font-size: 30px;
    }

    .mean-container a.meanmenu-reveal span {
        height: 5px;
        margin-top: 4px;
    }

    nav.navbar.affix {
        padding: 0px 0px 15px 0px;
    }
    nav.navbar.affix {
        background-image: -webkit-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
        background-image: -o-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
    }
    .navbar-brand>img {
        width: 80%;
    }

    .mean-container .mean-nav {
        background-image: -webkit-linear-gradient(bottom left, rgb(51,48,165) 0%, rgb(41,173,249) 100%);
        margin-top: 29px;
    }
    .homepage-7.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
        margin-top: 29px;
    }

    .homepage-3.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(252,81,133) 0%, rgb(249,149,82) 100%);
        margin-top: 29px;
    }
    .homepage-4.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
        margin-top: 29px;
    }
    .homepage-8.mean-container .mean-nav {
        background-image: -webkit-linear-gradient( 45deg, rgb(102,116,245) 0%, rgb(100,209,255) 100%);
        margin-top: 29px;
    }



    .mean-container .mean-nav ul li {
        position: relative;
        float: left;
        width: 100%;
    }
    .dropdown.current-menu-has-children > a:after {
        display: none;
    }
    .mean-container .mean-nav ul li a {
        display: block;
        float: left;
        width: 90%;
        padding: 10px 5%;
        margin: 0;
        text-align: left;
        color: #fff;
        border-top: 1px solid #383838;
        border-top: 1px solid rgba(255,255,255,0.5);
        text-decoration: none;
        text-transform: capitalize;
    }
    .mean-container .mean-nav ul li li a {
        width: 80%;
        padding: 10px 10%;
        border-top: 1px solid #f1f1f1;
        border-top: 1px solid rgba(255,255,255,0.25);
        opacity: 0.90;
        filter: alpha(opacity=75);
        text-shadow: none !important;
        visibility: visible;
    }

    .mean-container .mean-nav ul li a.mean-expand:hover {
        background: #323FAF;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        height: 17px;
        line-height: 17px;
    }

    .homepage-7.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #FC5B7E;
    }
    .homepage-3.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #FC5B7E;
    }
    .homepage-4.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #6681F6;
    }
    .homepage-8.mean-container .mean-nav ul li a.mean-expand:hover {
        background: #6681F6;
    }






    .slider-content {
        width: 60%;
    }
    .slider-content h1 {
        font-size: 30px;
        line-height: 45px;
    }
    .slider-content p {
        width: 100%;
    }
    .homepage-slider-area {
        padding-top: 0px;
        padding-bottom: 80px;
        background-position: 55% 0px;
        height: 100%;
    }
    #homepage-slider-3 {
        padding-top: 0px;
        padding-bottom: 145px;
    }
    .video-play-icon span:after {
        top: 20px;
        border-width: 12px 0 12px 18px;
    }


    button.testi-nav-right.slick-arrow {
        right: 27px;
    }
    .slider-wreapper-3 .slick-dots{
        bottom: -50px;
    }
    .subscribe-box [type="email"] {
        font-size: 14px;
    }
    .single-work {
        padding: 40px 20px 30px 108px;
        margin-bottom: 25px;
    }

    .homepage-6 .slider-single-item .slider-content-table {
        padding-top: 170px;
        padding-bottom: 40px;
    }
    .homepage-6 .slider-single-item .slider-screen-2 img {
        left: 400px;
        top: 0px;
    }
    .slider-screen img {
        right: 10px;
        top: 20%;
        width: 30%;
    }
    .video-area-bg h4 {
        margin-top: 10px;
    }
    .slider-screen-2 img {
        right: -100px;
        top: 25%;
        width: 55%;
    }
    .homepage-5 .slider-screen img {
        right: -100px;
        top: 23%;
        width: 55%;
    }
    .slider-screen-7 img {
        right: 0px;
        top: 30%;
        width: 40%;
    }
    .homepage-6 .slider-single-item .slider-screen-8 img {
        left: 66%;
        top: 18%;
        display: block;
        width: 30%;
    }
    .slider-screen-3 img {
        right: -100px;
        top: 27%;
        width: 55%;
    }
    .faq-left-2 img {
        display: none;
    }
    .homepage-slider-area:after {
        top: -3%;
        left: 80%; 

    }
    section.feature-area {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    .single-feature {
        margin-bottom: 50px;
    }
    .about-left img {
        display: none;
    }
    section.about-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    a.about-btn {
        margin-top: 50px;
    }
    .pricing-content {
        margin-bottom: 60px;
    }
    .testi-carousel .testi-single-item .item-inner {
        padding: 61px 26px 95px 31px;
        position: relative;
        -webkit-transition: .3s;
        transition: .3s;
        border: 1px solid#ccdef1;
        border-radius: 5px;
    }
    .testimonial-meta {
        margin-bottom: 36px;
        margin-left: 130px;
    }
    .testimonial-meta h4 {
        font-size: 20px;
    }
    .pricing-heading {
        margin-top: 25px;
        margin-bottom: 110px;
    }
    section.work-area {
        padding-top: 0px;
        padding-bottom: 30px;
    }
    .row.ml-20 {
        margin-left: -16px;
    }
    section.advance-feature-area {
        background: #f5f7fb;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section.screenshots-area {
        padding-top: 50px;
    }
    .section-heading.text-center {
        padding: 0px;

    }
    .section-heading.text-center {
        margin-bottom: 50px;
    }
    .fan-fact-area {
        padding-top: 70px;
        transform: translateY(-0%);
        padding-bottom: 0;
    }

    .promo-video-area {
        position: inherit;
        padding:50px 0; 
    }
    .single-items {
        text-align: -webkit-center;
        margin-bottom: 70px;
    }

    section.testimonial-area {
        margin-top: 50px;
        padding-bottom: 50px;
    }
    section.testimonial-area.homepage-1 .slick-dots {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    .testimonial-meta h4 span {
        font-size: 10px;
    }

    .slider-btns button {
        left: 84%;
    }
    .homepage-2 button.testi-nav-right.slick-arrow {
        right: 27px;
    }

    section.pricing-table-area {
        padding-bottom: 5px;
        padding-top: 50px;
    }
    .single-pricing-table {
        margin-bottom: 45px;
    }
    .brand-area {
        padding-top: 0px;
        padding-bottom: 50px;
    }
    .work-left {
        padding-top: 50px;
    }
    .faq-left img {
        display: none;
    }

    .faq-area {
        padding-top: 50px;
        padding-bottom: 18px;
    }
    .download-table-cell h2 {
        font-size: 35px;
        line-height: 48px;
    }
    .download-area {
        padding-top: 43px;
        padding-bottom: 50px;
    }


    .blog-area {
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .single-blog-box img {
        width: 100%;
    }
    .single-blog-box{
        margin-bottom: 50px;
    }


    .subscribe-wrapper {
        text-align: center;
    }
    .subscribe-wrapper {
        padding: 40px 20px;
    }
    .subscribe-text {
        margin-bottom: 15px;
        margin-top: 0;
    }
    .google-map {
        width: 100%;
    }

    .address-wrapper {
        margin-top: 507px;
        padding-bottom: 0;
    }

    .address-icon-bg {
        margin-bottom: 16px;
    }

    .single-address p {
        margin-bottom: 40px;
    }
    .social-links {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .section-heading.text-center p{
        font-size: 14px;
    }


    .blank-page-table-cell li {
        font-size: 200px;
        width: 183px;
        height: 280px;
        line-height: 267px;
    }

    .blog-right-search-button {
        margin-top: 50px;
    }


    .blog-recent-post-image-1 img {
        width: 100%;
    }


    .latest-blog-area {
        padding-top: 50px;
        padding-bottom: 34px;
    }

    .coming-soon h1 {
        font-size: 45px;
    }
    #clockdiv div > span {
        font-size: 45px;
    }
    button.notify {
        width: 20%;
    }
    section.coming-soon input[type="email"] {
        width: 50%;
    }

    .coming-soon .social-links {
        margin-top: 0px; 
    }


    .single-comment-content img {
        left: 2%;
        top: 12%;
        width: 8%;
    }
    .single-comment-content.comment-padding-left img {
        left: 3%;
    }
    p.speak-quate:after {
        bottom: -78%;
        left: 29%;
    }
    p.speak-quate:before {
        top: 6%;
        left: -6px;
    }


    #clockdiv > div {
        padding: 20px;
    }
    #clockdiv div > span {
        height: 60px;
        width: 60px;
    }


    .single-slider-content {
        margin: 150px 15px;
    }
    .slider-text h1 {
        font-size: 45px;
        line-height: 55px;
    }
    .slider-content-active .owl-dots {
        left: 0;
        bottom: 2px;
        text-align: center;
    }
    .slider-content-active .owl-dot span{
        margin-left: -10px;
    }



}

/* Small Devices, Tablets */

@media (min-width: 768px) and (max-width: 991px){
    .slicknav_menu {
        display: none;
    }
    .menu-main-menu-container ul li a {
        font-size: 14px;
        padding: 20px 12px;
    }

    .navbar-brand {
        padding: 0px 14px;
        margin-top: 8px;
    }
    .dropdown:hover>.dropdown-nav {
        top: 65px;
    }


    .slider-content h1 {
        font-size: 35px;
        line-height: 47px;
    }

    .slider-content {
        width: 60%;
    }

    .slider-screen img {
        right: -15px;
        top: 15%;
        width: 40%;
    }

    .slider-screen-2 img {
        right: -185px;
        top: 20%;
        width: 65%;
    }
    .homepage-6 .slider-single-item .slider-screen-2 img{
        top: 23%;
        left: 55%;
        width: 75%;
    }
    .slider-content p {
        width: auto;
    }
    .homepage-slider-area {
        background-position: 60% 0px;
    }
    #homepage-slider-3 {
        padding-top: 10px;
        padding-bottom: 0px;
    }
    .homepage-slider-area.homepage-6 {
        padding-bottom: 70px;
    }

    .homepage-6 .slider-single-item .slider-content-table {
        padding-top:260px;
        padding-bottom: 0px;
    }

    .slider-content-table {
        padding-top: 260px;
    }
    .slider-content-table-cell {
        vertical-align: inherit;
    }
    .homepage-slider-area:after {
        top: 6%;
        left: 73%;
    }
    .homepage-5 .slider-screen img {
        right: -237px;
        top: 26%;
        width: 80%;
    }
    .slider-screen-7 img {
        right: -7px;
        top: 20%;
        width: 40%;
    }
    .slider-screen-3 img {
        right: -260px;
        top: 17%;
        width: 80%;
    }
    .homepage-6 .slider-single-item .slider-screen-8 img {
        left: 61%;
        top: 15%;
        max-width: 40%;
    }

    .single-feature h2 {
        font-size: 19px;
    }
    .about-left-2 img {
        left: -60px;
    }
    .single-advance {
        padding: 8px;
        margin-bottom: 30px;
    }
    .row.ml-20 {
        margin-left: -30px; 
    }
    .section-heading.text-center {
        padding: 0 0px;
    }
    .testimonial-meta h4 span {
        font-size: 9px;
    }
    .single-pricing-table {
        margin-bottom: 50px;
    }

    .faq-left img {
        display: none;
    }
    .single-blog-box img {
        width: 100%;
    }
    .single-blog-box{
        margin-bottom: 50px;
    }
    .subscribe-wrapper {
        padding: 40px 40px;
    }
    .subscribe-text h2 {
        font-size: 20px;
    }
    .subscribe-box button {
        font-size: 20px;
        right: -2px;
        padding:0 45px;
    }
    .subscribe-box .form-control {
        padding: 0 132px 0 50px;
    }
    .contact-form-area {
        margin: 0 10px;
    }
    .single-address a {
        font-size: 16px;
    }

    .address-wrapper {
        font-size: 16px;
    }

    .testimonial-area:hover .slider-btns {
        display: none;
    }

    #clockdiv > div {
        padding: 35px;
    }

    section.coming-soon input[type="email"] {
        width: 45%;
    }
    button.notify {
        width: 20%;
    }

    .slider-text h1 {
        font-size: 58px;
        line-height: 70px;
    }
    .slider-content-active .owl-dots {
        left: 0;
        bottom: 100px;
        text-align: center;
    }
    .slider-content-active .owl-dot span{
        margin-left: -10px;
    }

}

/* Medium Devices, Desktops */

@media (min-width: 992px) and (max-width: 1169px){

    .slider-content {
        width: 55%;
    }
    .slider-content-table {
        padding-top: 130px;
    }
    .slider-content h1 {
        font-size: 43px;
        line-height: 57px;
    }
    .slider-content p {
        width: 100%;
    }
    .homepage-slider-area {
        background-position: 57% 0px;
        padding-top: 0px;
    }
    #homepage-slider-3 {
        padding-bottom: 80px;
    }


    .subscribe-text h2 {
        font-size: 29px;

    }
    .testi-single-item .item-inner p {
        font-size: 15px;
    }
    .section-heading.text-center {
        padding: 0 50px;

    }
    .single-work img {
        left: 9px;
    }
    .single-work {
        padding: 20px 20px 20px 77px;
    }
    .homepage-slider-area:after {
        left: 82%;
        transform: rotate(52deg);
    }

    .slider-screen img {
        right: -17px;
        width: 35%;
        top: 19%;
    }
    .slider-screen-7 img {
        right: 0px;
        width: 40%;
        top: 20%;
    }
    .homepage-6 .slider-single-item .slider-screen-8 img {
        left: 64%;
        top: 21%;
        width: 30%;
    }
    .slider-screen-2 img {
        right: -220px;
        top: 20%;
        width: 65%;
    }
    .homepage-5 .slider-screen img {
        right: -220px;
        top: 17%;
        width: 65%;
    }
    .slider-screen-3 img {
        right: -160px;
        top: 26%;
        width: 60%;
    }
    .homepage-6 .slider-single-item .slider-screen-2 img {
        left: 57%;
        top: 20%;
        width: 60%;
    }
    .single-feature p {
        font-size: 14px;
    }
    .about-list ul li {
        font-size: 14px;
    }
    .blog-heading h2 {
        font-size: 19px;
    }

    .slider-wreapper-3 .slick-dots {
        bottom: 50px;
    }
    .screen-slider-actine {
        right: 17px;
        width: 86%;
        height: 92%;
        margin: 18px auto 0px;
    }

    .screen-slider-bg {
        position: absolute;
        right: -1%;
        width: 28%;
        top: -12%;
        max-width: 100%;
    }

    .slider-content-active .owl-dots {
        bottom: 125px;
    }
    .slider-text h1 {
        font-size: 53px;
        line-height: 62px;
    }
    .single-slider-content {
        margin: 180px 15px;
    }

}

/* Large Devices, Wide Screens */

@media (min-width: 1170px) and (max-width: 1366px){
    .slicknav_menu {
        display: none;
    }
}

@media (min-width: 1367px) and (max-width: 1920px){
    .slicknav_menu {
        display: none;
    }
}
/*Add custom cursor so it auto inherits font styles*/
.typed::after {
    content: '|';
    display: inline;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

/*Removes cursor that comes with typed.js*/
.typed-cursor{
    opacity: 0;
    display: none;
}
/*Custom cursor animation*/
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
.offset_none{display: none !important;}
.offset_block{display: block !important;}
.al_center{text-align: center;}
/*
TRIGGER
Personaliza mensagens do sistema
*/
.trigger{
    display: block;
    width: 100%;
    padding: 15px;
    background: #333;
    font-size: 1em;
    color: #fff;
    margin-bottom: 20px;
}

.trigger p{
    margin-top: 8px;
}

.trigger_success{background-color: #00B494;}
.trigger_info{background-color: #0E96E5;}
.trigger_alert{background-color: #FAAD50;}
.trigger_error{background-color: #F45563;}

.trigger_none{
    margin-bottom: 0;
}
.embed-container iframe{width: 100%;}
.activeCampaignAlert{
    text-align: right;
    padding: 0 5px; 
    margin-bottom: 5px; 
    overflow-x: hidden;
}
.wc_contact_sended {
    margin: 50px 0;
}
.wc_contact_sended p.h2 {
    font-size: 18px;
    color: #5d7cea;
}
.btn_red {
    background: #ff5a5a;
    color: #fff;
    padding: 8px 50px;
    border-radius: 30px;
}
.btn_red:hover,
.btn_red:focus{
    color: #fff;
    background: #e02222;
    box-shadow: 0px 15px 50px 0px rgba(0, 27, 103, 0.3);
}
.trigger_notify_box{
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 90%;
    padding-top: 15px;
    padding-right: 15px;
    z-index: 100;
}

.trigger_notify_timer{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4%;
    background: rgba(0,0,0,0.5);
}

.trigger_notify{
    position: relative;
    padding: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
    overflow: hidden;
    margin-bottom: 15px;
}
.trigger_notify p{
    font-family: 'Montserrat', sans-serif;
}

.trigger_notify_blue {
    background-color: #5d7cea;
    color: #FFF;
}
.trigger_notify_red {
    background-color: #e32e3a;
    color: #FFF;
}
.trigger_notify_green {
    background-color: forestgreen;
    color: #FFF;
}

section.portfolio-area{
    padding-top: 145px;
}
.portfolio-area svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.portfolio-area circle {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: -webkit-transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-area text {
    font-size: 1.1rem;
    text-transform: uppercase;
    text-anchor: middle;
    letter-spacing: 1px;
    font-weight: 600;
}

.portfolio-area .svg-text {
    fill: #545a64;
}

.portfolio-area .svg-masked-text {
    fill: white;
}

.portfolio-area image {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-area .items {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.portfolio-area .item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 32.4%;
    height: 300px;
    margin: 5px;
    cursor: pointer;
    background-color: #e1e4ec;
    border-radius: 2px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02), inset 0 0px 0px 1px rgba(0, 0, 0, 0.07);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.portfolio-area .item:hover circle,
.portfolio-area .item:hover image {
    -webkit-transform: scale(1);
    transform: scale(1);
}
@media(max-width: 468px){
    .portfolio-area .item{
        width: 100%;
    }
}
/*** Modal ***/
.modal{
    z-index: 99999;
}
.modal-dialog.wide {
    width: 90%;
}
.modal-dialog.wide .row {
    margin: 0 0 30px;
}
.modal-dialog.wide .row .row {
    margin-left: -15px;
    margin-right: -15px;
}
.modal-header {
    border: none;
    padding: 30px 30px 0;
}
.modal-header .fecharModal {
    font-size: 54px;
    position: absolute;
    right: 30px;
    top: 0;
    -webkit-appearance: none;
    border: 0;
}
.modal-content {
    background-color: #fffefd;
    border: none;
    box-shadow: 0 3px 6px rgba(8,33,30,0.2);
}
.modal-body {
    padding: 30px;
}
.modal-body li {
    margin-bottom: 9px;
}
.modal-footer {
    padding: 30px 0 15px;
}
/* Fade Up Animation */
.modal.fade .modal-dialog {
    -webkit-transform: translate3d(0, 100vh, 0);
    -ms-transform: translate3d(0, 100vh, 0);
    transform: translate3d(0, 100vh, 0);
}
.modal.in .modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.modal-backdrop {
    background-color: #fffefd;
    z-index: 1025;
}
.modal-backdrop.in {
    opacity: 0.9;
}
/*** Project Modals ***/
.hero {
    margin: 0;
    max-width: 900px;
    width: 100%;
}
.label.tag {
    border: 1px solid#d0e2f4;
    padding: 7px 12px;
    font-size: 14px;
    color: #535e72;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    margin-bottom: 5px;
}
.label.tag:hover{
    background: #5d7dea;
    color: #fff;
}
.center {
    text-align: center;
}
.produto-area{
    padding: 90px 0;
}
.produto{
    padding: 30px;
}
.produto header{
    padding-bottom: 20px;
}
.produto p,
.produto ul{
    margin-bottom: 30px;
}
.produto .price{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.produto .price strike{
    font-size: 20px;
    color: #8ca0b4;
}
.produto .price .pdt_single_split{
    font-size: 16px;
    color: #8ca0b4;
}
.btn_green{
    background: #339900;
    color: #fff;
    border-radius: 30px;
}
.btn_green:hover,
.btn_green:focus{
    background: #348704;
    color: #FFF;
}
.btn_blue{
    background: #3366cc;
    color: #fff;
    border-radius: 30px;
}
.btn_blue:hover,
.btn_blue:focus{
    background: #215ab7;
    color: #FFF;
}