@charset "UTF-8";
/*===================================
  # Google Fonts
====================================== */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");
/*===================================
  # Typography
====================================== */
html {
  font-size: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  background-color: #fff;
  color: #131313;
}

::-moz-selection {
  color: #fff;
  background: #8d47de;
}

::selection {
  color: #fff;
  background: #8d47de;
}

p {
  margin-bottom: 25px;
  line-height: 1.95em;
}

p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  p {
    margin-bottom: 20px;
  }
}

small {
  font-size: 0.8em;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  line-height: 1.2em;
  color: #293b5f;
}

h1, h2, h3, h4 {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2.827em;
  margin: 0 0 15px;
}

h2 {
  font-size: 1.999em;
}

h3 {
  font-size: 1.414em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.85em;
}

/* [ ## Elements ] */
img {
  max-width: 100%;
}

a {
  color: inherit;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: none;
  color: inherit;
}

a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}

button:focus {
  outline: 0px dotted;
}

i {
  color: inherit;
}

figure {
  margin: 0;
}

blockquote {
  border-left: 3px solid #c39d6d;
}

blockquote p {
  font-size: 16px;
  font-weight: 400;
}

cite {
  color: #c39d6d;
  font-size: 12px;
}

.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #F5F5F5;
}

.bg-black {
  background-color: #131313;
}

.full-size {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bg-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-patent {
  background-repeat: repeat;
  background-position: center center;
}

.pos-abs {
  position: absolute;
}

.bg-color-black {
  background-color: rgba(0, 0, 0, 0.7);
}

.default-text-gradient {
  background: -webkit-linear-gradient(left, #02C1FF, #0E8FFF);
  background: linear-gradient(to right, #02C1FF, #0E8FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-cover {
  height: 710px;
}

.bg-overlay {
  position: relative;
}

.bg-overlay:before {
  background-color: rgba(19, 19, 19, 0.8);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.bg-overlay-gradient {
	position: relative;
}
.bg-overlay-gradient:before {
    content: "";
    position: absolute;
    background: -webkit-linear-gradient(35deg, #003dbe, #8d47de);
    background: linear-gradient(55deg, #003dbe, #8d47de);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.bg-overlay-gradient {
    position: relative;
}

.img-responsive {
  width: 100%;
}


.owl-carousel .owl-item img {
  width: auto;
}

@media only screen and (min-width: 1281px) and (max-width: 1920px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .container .col-lg-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
  }
  .container .col-lg-6,
  .container .col-lg-8,
  .container .col-lg-9,
  .container .col-lg-7,
  .container .col-lg-10,
  .container .col-10,
  .container .col-6 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .container .col-lg-4 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .container {
    width: 100%;
  }
}

/* [ ## White Space ] */
.mtb-110 {
  margin: 110px 0;
}

.mtb-100 {
  margin: 100px 0;
}

.mtb-90 {
  margin: 90px 0;
}

.mtb-80 {
  margin: 80px 0;
}

.mtb-70 {
  margin: 70px 0;
}

.mtb-60 {
  margin: 60px 0;
}

.mtb-50 {
  margin: 50px 0;
}

.mt-150 {
  margin: 150px 0 0;
}

.mt-110 {
  margin: 110px 0 0;
}

.mt-100 {
  margin: 100px 0 0;
}

.mt-90 {
  margin: 90px 0 0;
}

.mt-80 {
  margin: 80px 0 0;
}

.mt-70 {
  margin: 70px 0 0;
}

.mt-60 {
  margin: 60px 0 0;
}

.mt-50 {
  margin: 50px 0 0;
}

.mt-40 {
  margin: 40px 0 0;
}

.mt-30 {
  margin: 30px 0 0;
}

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

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

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

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

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

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

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

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

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

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

.ptb-180 {
  padding: 180px 0;
}

.ptb-150 {
  padding: 150px 0;
}

.ptb-110 {
  padding: 110px 0;
}

.ptb-100 {
  padding: 100px 0;
}

.ptb-90 {
  padding: 90px 0;
}

.ptb-85 {
  padding: 85px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-70 {
  padding: 70px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.pt-180 {
  padding: 180px 0 0;
}

.pt-150 {
  padding: 150px 0 0;
}

.pt-120 {
  padding: 120px 0 0;
}

.pt-125 {
  padding: 125px 0 0;
}

.pt-115 {
  padding: 115px 0 0;
}

.pt-110 {
  padding: 110px 0 0;
}

.pt-100 {
  padding: 100px 0 0;
}

.pt-95 {
  padding: 95px 0 0;
}

.pt-90 {
  padding: 90px 0 0;
}

.pt-80 {
  padding: 80px 0 0;
}

.pt-70 {
  padding: 70px 0 0;
}

.pt-60 {
  padding: 60px 0 0;
}

.pt-50 {
  padding: 50px 0 0;
}

.pt-40 {
  padding: 40px 0 0;
}

.pt-30 {
  padding: 30px 0 0;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pr-15 {
  padding-right: 15px !important;
}

.pt-right {
  padding-right: 5px;
}

.border-top {
  border-top: 1px solid rgba(10, 68, 150, 0.1);
}

@media only screen and (max-width: 1280px) {
  .pt-180 {
    padding-top: 120px;
  }
  .ptb-180 {
    padding: 120px 0;
  }
  .pb-145 {
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 992px) {
  .ptb-150,
  .ptb-180,
  .ptb-110 {
    padding: 100px 0;
  }
  .pt-150,
  .pt-125,
  .pt-115,
  .pt-110,
  .pt-180 {
    padding-top: 100px;
  }
  .pb-150,
  .pb-145,
  .pb-120,
  .pb-100,
  .pb-110,
  .pb-250 {
    padding-bottom: 100px;
  }
  .mt-150 {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .ptb-150,
  .ptb-100,
  .ptb-110,
  .ptb-180 {
    padding: 80px 0;
  }
  .pt-150,
  .pt-100,
  .pt-125,
  .pt-115,
  .pt-110,
  .pt-180 {
    padding-top: 80px;
  }
  .pb-150,
  .pb-145,
  .pb-120,
  .pb-110,
  .pb-100,
  .pb-250 {
    padding-bottom: 80px;
  }
  .mt-150 {
    margin-top: 80px;
  }
}

/*------------------------------------------------------------------
    # Button Style
*/
/***** [ ## Button ] ******/
.btn {
  -webkit-transition: all 0.3s ease 0.02s;
  transition: all 0.3s ease 0.02s;
}

.btn:active,
.btn:focus {
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
}

.btn {
  border: 0px solid;
  border-radius: 3px;
  color: #000;
  font-weight: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-default {
  background-color: #8d47de;
  color: #fff !important;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  border-radius: 5px;
  font-size: 16px;
}

.btn-default:hover, .btn-default:focus {
  background-color: #fff;
  color: #3b1d82  !important;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.18), 0 0px 0px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:active:not([disabled]):not(.disabled) {
  background-color: #8445ee;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}

/***** [ ## Fields ] ******/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  padding: 10px 20px !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  outline: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select option[selected] {
  color: white;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #7a7a7a !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #7a7a7a !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input,
select,
textarea {
  margin: 0;
  border: none;
  vertical-align: baseline;
  font-size: 100%;
  font-weight: 400;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 45px;
}

textarea {
  min-height: 150px;
  border-radius: 5px;
}

/* Form controllar */
.form-controllar {
  border: 0 none;
  border-radius: 5px;
  box-shadow: 0 0 0 transparent inset;
  width: 100%;
  font-size: 16px;
  border: 1px solid #E1E1E1;
}

.form-controllar:focus {
  border-color: none;
  box-shadow: none;
}

.default_form .form-group {
  margin-bottom: 20px;
}

.select_field {
  position: relative;
  width: 100%;
}

.select_field:before {
  content: "";
  font-family: fontawesome;
  font-size: 14px;
  position: absolute;
  right: 15px;
  top: 14px;
  z-index: 1;
}

.select_field > .form-controllar {
  color: #797979;
  cursor: pointer;
  font-size: 14px;
  height: 50px;
  padding: 5px 25px;
}

.select_field option {
  color: #000;
  padding: 7px 15px;
}

.error {
  color: red;
}

.success {
  text-align: center;
  margin-top: 100px;
  font-size: 18px;
  color: green;
}

/*------------------------------------------------------------------
    # Section Header
*/
.section-header {
  margin: -5px 0 60px;
}

.section-header .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #8d47de;
}

@media only screen and (max-width: 991px) {
  .section-header {
    margin-bottom: 30px;
  }
  .section-header .section-title {
    font-size: 28px;
  }
}

/*-------------------------------------------------------------------
    # Site Header
*/
/*-------------------------------------------------
    [ ## Site Navigation ]
*/
.site-header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 13px 0;
  background: #ffffff;
}
.site-header .site-navigation .navigation-area .mainmenu-wrap .menu ul>li>a {
  color: #293b5f;
}
.site-header .mobile-menu {
  display: none;
}

.navbar-brand.site-logo {
  padding: 8px 0;
  margin-top: -8px;
}

.navigation-area {
  padding: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mainmenu-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mainmenu-wrap .menu ul {
  margin-bottom: 0;
  padding-left: 0px;
}

.mainmenu-wrap .menu ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.mainmenu-wrap .menu ul li ul.dropdown-content li {
  padding: 0;
  display: block;
}

.mainmenu-wrap .menu ul li ul.dropdown-content li a {
  background: #fff;
  display: block;
  padding: 7px 15px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 500;
  font-weight: 15px;
  color: #666666;
  text-transform: capitalize;
}

.mainmenu-wrap .menu ul li:last-child a {
  border-bottom: none;
}

.mainmenu-wrap .menu > ul > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 23px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.mainmenu-wrap .menu > ul > li > a:hover, .mainmenu-wrap .menu > ul > li > a.active {
  color: #3b1d82  !important;
}

.mainmenu-wrap .menu > ul > li > a.btn-default {
  padding: 0 25px;
  margin-left: 25px;
}

.mainmenu-wrap .menu > ul > li > ul.dropdown-content {
  position: absolute;
  width: 200px;
  left: 0;
  top: calc(100% + 16px);
  z-index: 999;
  border-top: 3px solid #63B32E;
  visibility: hidden;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}

.mainmenu-wrap .menu > ul > li > ul.dropdown-content > li:hover > a {
  color: #63B32E;
  padding-left: 20px;
}

.mainmenu-wrap .menu > ul > li.dropdown-trigger:hover > ul.dropdown-content {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mainmenu-wrap .menu > ul > li.dropdown-trigger:after {
  content: "\f107";
  font-family: fontAwesome;
  padding-left: 5px;
}

/* [5.3 Sticky header] */
#sticky-header {
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

#sticky-header .site-header {
  background-color: #fff;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.15);
  position: relative;
  border-bottom: 0px solid;
}

#sticky-header .site-navigation {
  padding-top: 0;
  padding-bottom: 0;
}

#sticky-header .site-navigation .navigation-area {
  min-height: 50px;
}

#sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a {
  color: #293b5f;
}
#sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul>li>a.active {
  color: #FB9A33 !important;
}
#sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a.btn-default:hover, #sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a.btn-default:focus, #sticky-header .site-navigation .navigation-area .mainmenu-wrap .menu ul > li > a.btn-default.active {
  background-color: #3b1d82 ;
  color: #fff !important;
}

@media only screen and (max-width: 991px) {
  .single-demo > h3 {
    font-size: 20px;
    margin: 5px 0 15px;
  }
  .site-header {
    padding: 5px 15px;
    position: relative;
    overflow: hidden;
  }
  .site-header .mobile-menu {
    display: block;
    height: 70px;
  }
  .site-header .mobile-logo {
    top: 13px;
  }
  .site-header .site-navigation {
    display: none;
  }
  .site-header .mean-container .mean-nav ul li a {
    color: #000;
    display: block;
    float: none;
    font-size: 16px;
    padding: 15px 20px;
    width: auto;
    font-family: "Roboto", sans-serif;
  }
  .site-header .mean-container .mean-nav ul li a.btn-default {
    background-color: transparent;
    color: #000 !important;
    height: auto;
    padding: 15px 20px;
    line-height: normal;
  }
  .site-header .mean-container .mean-nav ul li a:hover {
    color: #8d47de !important;
  }
}

@media only screen and (max-width: 768px) {
  .site-header .mean-container .mean-nav ul li a {
    font-size: 13px;
    padding: 12px 20px;
  }
}

/*-----------------------------------------------------------------------
    # All Hero Section
*/
.hero-section {
  position: relative;
  background-position: top center;
}


.waves-effect {
  position: absolute;
  left: 0;
  width: 100%;
  background-size: cover;
}
.waves-effect.bottom {
  bottom: -1px;
  height: 185px;
}
.hero-section > .hero-section-content {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 200px 0 230px;
}

.hero-section .hero-content .hero-script {
  font-size: 88px;
  font-weight: 700;
  color: #FB9A33;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-section .hero-content .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 45px;
}

.hero-section .hero-content .hero-title > span {
  font-weight: normal;
}

.hero-section .hero-content .btn-default {
  margin-bottom: 50px;
}

.hero-section .technology-block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-section .technology-block > .tech {
  background-color: #fff;
  border-radius: 5px;
  height: 70px;
  line-height: 70px;
  margin: 15px;
  width: 70px;
  position: relative;
}

.hero-section .technology-block > .tech > span {
  height: 25px;
  width: 25px;
  font-size: 13px;
  border-radius: 50%;
  line-height: 25px;
  position: absolute;
  top: -12px;
  right: -12px;
  color: #fff;
  background-color: #FB9A33;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .hero-section > .hero-section-content {
    padding-top: 80px;
  }
  .hero-section .hero-content .hero-script {
    font-size: 62px;
    margin-bottom: 15px;
  }
  .hero-section .hero-content .hero-title {
    font-size: 36px;
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section .hero-content .hero-script {
    font-size: 48px;
  }
  .hero-section .hero-content .hero-title {
    font-size: 26px;
  }
}

/*-------------------------------------------------------------
    # Featured
*/
.features-items-list {
  margin-bottom: -30px;
}

.features-item {
  margin-bottom: 30px;
  border: 1px solid #E1E1E1;
  text-align: center;
  padding: 30px 10px;
  -webkit-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

.features-item .icon {
  min-height: 35px;
  line-height: 35px;
  color: #B9B9B9;
  font-size: 24px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.features-item p {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.3em;
  color: #293b5f;
  font-size: 16px;
  font-weight: 500;
}

.features-item:hover {
  background-color: #8d47de;
  border-color: #8d47de;
  color: #fff;
}

.features-item:hover p {
  color: #fff;
}

@media only screen and (max-width: 992px) {
  .feature-section .features-items-list > [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (max-width: 520px) {
  .feature-section .features-items-list > [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*-------------------------------------------------
    # Page Layouts
*/
.demos-section > div {
  margin-bottom: -53px;
}

.single-demo {
  margin-bottom: 50px;
}

.single-demo .demo-thumb img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.single-demo .demo-thumb a {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.single-demo .demo-thumb a > h3 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: #3b1d82 ;
  color: #fff;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  opacity: 0;
}

.single-demo .demo-thumb:hover img {
  opacity: 0.7;
}

.single-demo .demo-thumb:hover a > h3 {
  opacity: 1;
  bottom: 0;
}

.single-demo > h3 {
  font-size: 22px;
  font-weight: normal;
  margin: 18px 0 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.single-demo > h3 a:hover,
.single-demo > h3 a:focus {
  color: #8d47de;
}

@media only screen and (max-width: 992px) {
  .demos-section > div {
    margin-bottom: -43px;
  }
  .single-demo {
    margin-bottom: 40px;
  }
}

.promo-section {
  color: #fff;
  position: relative;
  overflow: hidden;
  /* background: -webkit-linear-gradient(35deg, #003dbe, #8d47de); */
  /* background: linear-gradient(55deg, #003dbe, #8d47de); */
  background: -webkit-linear-gradient(77deg, #3b1d82 0%, #9d0f7e 54%, #ff007a96%);
  background: linear-gradient(77deg, #3b1d82 0%, #9d0f7e 54%, #ff007a 96%);
}

.promo-section .promo-content {
  padding-top: 130px;
}

.promo-section .promo-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.4em;
  margin-bottom: 20px;
  font-weight: 700;
}

.promo-section .promo-content h2 > span {
  display: block;
  color: #FB9A33;
}

.promo-section .promo-thumbs-contnet {
  min-height: 500px;
  position: relative;
  width: 100%;
}

.promo-section .promo-thumbs-contnet > .thumb {
  bottom: 0;
  position: absolute;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}

.promo-section .promo-thumbs-contnet > .thumb:nth-child(1) {
  left: 15px;
}

.promo-section .promo-thumbs-contnet > .thumb:nth-child(2) {
  z-index: 5;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.promo-section .promo-thumbs-contnet > .thumb:nth-child(3) {
  right: -185px;
}

@media only screen and (max-width: 1200px) {
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(1) {
    left: 0px;
  }
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(3) {
    right: -85px;
  }
}

@media only screen and (max-width: 992px) {
  .promo-section .promo-content {
    padding-top: 80px;
  }
  .promo-section .promo-thumbs-contnet {
    min-height: auto;
    margin-top: 60px;
  }
  .promo-section .promo-thumbs-contnet > .thumb {
    position: relative;
    display: inline-block;
  }
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(1) {
    left: 0px;
    position: absolute;
  }
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(2) {
    right: auto;
    left: 22%;
    bottom: -10px;
  }
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(3) {
    right: 0px;
    position: absolute;
  }
}

@media only screen and (max-width: 767px) {
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(2) {
    left: 14%;
  }
}

@media only screen and (max-width: 480px) {
  .promo-section .promo-content h2 {
    font-size: 26px;
  }
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(1), .promo-section .promo-thumbs-contnet > .thumb:nth-child(3) {
    width: 250px;
  }
  .promo-section .promo-thumbs-contnet > .thumb:nth-child(2) {
    width: 280px;
  }
}

/*-------------------------------------------------
    [ ## Scroll Top ]
*/
.topbutton {
  color: #fff;
  bottom: 50px;
  display: block;
  height: 60px;
  line-height: 60px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 999;
  font-size: 16px;
  background-color: #8d47de;
}

.topbutton.btn-show {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.topbutton.btn-hide {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

.topbutton:hover {
  color: #fff !important;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.topbutton:focus {
  color: #fff !important;
}

@media only screen and (max-width: 576px) {
  .topbutton {
    bottom: 40px;
    height: 45px;
    line-height: 45px;
    width: 45px;
    font-size: 18px;
  }
}

/*------------------------------------------------------------------
    # Site Footer
*/
.site-footer {
  color: #fff;
}



.site-footer .footer-top-area .footer-content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.22em;
  font-weight: 500;
  margin-bottom: 45px;
}

.site-footer .footer-top-area .footer-content .price {
  font-size: 16px;
  font-style: italic;
  margin-top: 13px;
  font-weight: 600;
}

.site-footer .footer-top-area .footer-content .btn-default:hover, .site-footer .footer-top-area .footer-content .btn-default:focus {
  background-color: #fff;
  color: #3b1d82 ;
}

.site-footer .footer-copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}

.site-footer .footer-copyright-area a:hover,
.site-footer .footer-copyright-area a:focus {
  color: #8d47de;
}

@media only screen and (max-width: 992px) {
  .site-footer .footer-top-area .footer-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .site-footer .footer-top-area .footer-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
