/*===========================
    1. COMMON css 
===========================*/
body {
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #676767;
  background: #070632; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; }

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline-block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #070632;
  margin: 0px; }

a.navbar-brand {
    color: #fff;
    font-weight: bold;
    font-size: 40px;
}

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #676767;
  margin: 0px;
  font-family: "Open Sans", sans-serif; }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0; }

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0 32px;
  font-size: 16px;
  line-height: 60px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  z-index: 5; }
  .main-btn::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fc2274;
    z-index: -1;
    -webkit-transform: skewX(13deg) skewY(4deg);
    -moz-transform: skewX(13deg) skewY(4deg);
    -ms-transform: skewX(13deg) skewY(4deg);
    -o-transform: skewX(13deg) skewY(4deg);
    transform: skewX(13deg) skewY(4deg);
    border-radius: 5px;
    border: 1px solid #fc2274;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }
  .main-btn:hover {
    color: #fc2274; }
    .main-btn:hover::before {
      background: transparent; }
  .main-btn.main-btn-2::before {
    background: #000000;
    border-color: #000000; }

.section-title {
  margin-bottom: 45px; }
  .section-title > span {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 3px;
    padding-bottom: 15px;
    font-family: "Open Sans", sans-serif; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .section-title > span {
        font-size: 16px; } }
  .section-title .title {
    font-size: 24px;
    padding: 0 20px;
    color: #fff; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .section-title .title {
        font-size: 22px; } }
    @media (max-width: 767px) {
      .section-title .title {
        font-size: 20px;
        padding: 0; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .section-title .title {
        font-size: 24px;
        padding: 0 20px; } }
    .section-title .title span {
      color: #999;
      font-family: "Playfair Display", serif;
      display: inline;
      font-style: italic;
      text-decoration: underline;
      position: relative; }

/* PRELOADERS */
#preloader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 9999999999; }
  #preloader .three {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    #preloader .three .loader {
      width: 100px;
      height: 100px;
      border-radius: 100%;
      position: relative; }

#loader-7 {
  -webkit-perspective: 120px;
  -moz-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px; }
  #loader-7::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    background-color: #fc2274;
    animation: flip 1s infinite; }

@keyframes flip {
  0% {
    transform: rotate(0); }
  50% {
    transform: rotateY(180deg); }
  100% {
    transform: rotateY(180deg) rotateX(180deg); } }
/*===========================
    2.HEADER css 
===========================*/
.navigation {
  padding: 0;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: transparent;
  padding-left: 70px;
  padding-right: 70px; }
  @media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .navigation {
      padding-left: 30px;
      padding-right: 30px; } }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation {
      padding-left: 0px;
      padding-right: 0px; } }
  @media (max-width: 767px) {
    .navigation {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation {
      padding: 32px 0; } }
  @media (max-width: 767px) {
    .navigation {
      padding: 32px 0; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .navigation {
      padding: 32px 0; } }
  .navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: sticky 1s;
    background-color: #070632;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.09);
    padding: 0; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navigation.sticky {
        padding: 20px 0; } }
    @media (max-width: 767px) {
      .navigation.sticky {
        padding: 20px 0; } }
    .navigation.sticky .navbar .navbar-nav .nav-item a {
      line-height: 100px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navigation.sticky .navbar .navbar-nav .nav-item a {
          line-height: 45px; } }
      @media (max-width: 767px) {
        .navigation.sticky .navbar .navbar-nav .nav-item a {
          line-height: 45px; } }
  .navigation .navbar {
    position: relative;
    padding: 0; }
    .navigation .navbar .navbar-toggler .toggler-icon {
      width: 30px;
      height: 2px;
      background-color: #fc2274;
      margin: 5px 0;
      display: block;
      position: relative;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 7px; }
    .navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
      opacity: 0; }
    .navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      transform: rotate(135deg);
      top: -7px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navigation .navbar .navbar-collapse {
        position: absolute;
        top: 150%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 16px;
        box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15); } }
    @media (max-width: 767px) {
      .navigation .navbar .navbar-collapse {
        position: absolute;
        top: 150%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 16px;
        box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15); } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .navigation .navbar .navbar-collapse {
        top: 150%; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navigation .navbar .navbar-nav {
        margin-right: 0; } }
    @media (max-width: 767px) {
      .navigation .navbar .navbar-nav {
        margin-right: 0; } }
    .navigation .navbar .navbar-nav .nav-item {
      position: relative;
      margin-left: 50px; }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .navigation .navbar .navbar-nav .nav-item {
          margin-right: 18px;
          margin-left: 24px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navigation .navbar .navbar-nav .nav-item {
          margin-right: 0px;
          margin-left: 0px; } }
      @media (max-width: 767px) {
        .navigation .navbar .navbar-nav .nav-item {
          margin-right: 0px;
          margin-left: 0px; } }
      .navigation .navbar .navbar-nav .nav-item a {
        font-size: 16px;
        font-weight: 600;
        padding: 0;
        color: #fff;
        text-transform: uppercase;
        position: relative;
        margin: 0;
        line-height: 100px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        @media only screen and (min-width: 992px) and (max-width: 1200px) {
          .navigation .navbar .navbar-nav .nav-item a {
            font-size: 14px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navigation .navbar .navbar-nav .nav-item a {
            padding: 0;
            display: block;
            color: #070632;
            border: 0;
            margin: 0;
            line-height: 40px; } }
        @media (max-width: 767px) {
          .navigation .navbar .navbar-nav .nav-item a {
            padding: 0;
            display: block;
            color: #070632;
            border: 0;
            margin: 0;
            line-height: 40px; } }
        .navigation .navbar .navbar-nav .nav-item a:hover {
          color: #fc2274; }
      .navigation .navbar .navbar-nav .nav-item .sub-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 260px;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        z-index: 99;
        -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16); }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navigation .navbar .navbar-nav .nav-item .sub-menu {
            position: relative !important;
            width: 100% !important;
            left: 0 !important;
            top: auto !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: none;
            right: auto;
            -webkit-transform: translateX(0%);
            -moz-transform: translateX(0%);
            -ms-transform: translateX(0%);
            -o-transform: translateX(0%);
            transform: translateX(0%);
            -webkit-transition: all none ease-out 0s;
            -moz-transition: all none ease-out 0s;
            -ms-transition: all none ease-out 0s;
            -o-transition: all none ease-out 0s;
            transition: all none ease-out 0s;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            text-align: left;
            border-top: 0; } }
        @media (max-width: 767px) {
          .navigation .navbar .navbar-nav .nav-item .sub-menu {
            position: relative !important;
            width: 100% !important;
            left: 0 !important;
            top: auto !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: none;
            right: auto;
            -webkit-transform: translateX(0%);
            -moz-transform: translateX(0%);
            -ms-transform: translateX(0%);
            -o-transform: translateX(0%);
            transform: translateX(0%);
            -webkit-transition: all none ease-out 0s;
            -moz-transition: all none ease-out 0s;
            -ms-transition: all none ease-out 0s;
            -o-transition: all none ease-out 0s;
            transition: all none ease-out 0s;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            text-align: left;
            border-top: 0; } }
        .navigation .navbar .navbar-nav .nav-item .sub-menu > li {
          position: relative; }
          .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-nav-toggler {
            color: #070632;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s; }
          .navigation .navbar .navbar-nav .nav-item .sub-menu > li a {
            display: block;
            padding: 8px 24px;
            position: relative;
            color: #070632;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            border-radius: 0;
            margin: 0 0;
            line-height: 30px; }
            .navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
              float: right;
              font-size: 14px;
              margin-top: 5px; }
              @media only screen and (min-width: 768px) and (max-width: 991px) {
                .navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
                  display: none; } }
              @media (max-width: 767px) {
                .navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
                  display: none; } }
            .navigation .navbar .navbar-nav .nav-item .sub-menu > li a .sub-nav-toggler i {
              display: inline-block; }
          .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
            right: auto;
            left: 100%;
            top: 0;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s; }
            @media only screen and (min-width: 768px) and (max-width: 991px) {
              .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
                padding-left: 30px; } }
            @media (max-width: 767px) {
              .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
                padding-left: 30px; } }
            .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu li a::before {
              display: none; }
          .navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover .sub-menu {
            opacity: 1;
            visibility: visible; }
          .navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover .sub-nav-toggler {
            color: #fff; }
          .navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover > a {
            background-color: #fc2274;
            color: #fff !important; }
            .navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover > a::before {
              opacity: 1; }
      .navigation .navbar .navbar-nav .nav-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%; }
      .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: none; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
            display: inline-block;
            position: absolute;
            top: 0;
            right: 0;
            padding: 10px 14px;
            font-size: 16px;
            background: none;
            border: 0;
            color: #070632; } }
        @media (max-width: 767px) {
          .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
            display: inline-block;
            position: absolute;
            top: 0;
            right: 0;
            padding: 10px 14px;
            font-size: 16px;
            background: none;
            border: 0;
            color: #070632; } }
        .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler img {
          width: 30%; }
      .navigation .navbar .navbar-nav .nav-item.active a {
        color: #fc2274; }
        .navigation .navbar .navbar-nav .nav-item.active a::before {
          width: 100%; }
      .navigation .navbar .navbar-nav .nav-item.active a {
        color: #fc2274; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navigation .navbar .navbar-btn {
        position: absolute;
        right: 100px;
        top: 50%;
        transform: translateY(-50%); } }
    @media (max-width: 767px) {
      .navigation .navbar .navbar-btn {
        position: absolute;
        right: 100px;
        top: 50%;
        transform: translateY(-50%); } }

@-webkit-keyframes sticky {
  0% {
    top: -200px; }
  100% {
    top: 0; } }
@keyframes sticky {
  0% {
    top: -200px; }
  100% {
    top: 0; } }
/*===========================
    3.BANNER css 
===========================*/
.banner-area {
  height: 850px;
  display: flex;
  align-items: center;
  background-size: contain;
  position: relative;
  overflow: hidden;
  z-index: 5;
  background: #040326; }
  .banner-area::before {
    position: absolute;
    left: 200px;
    top: 140px;
    content: '';
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: .3;
    animation: rotated-x infinite linear 10s; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area {
      height: 760px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area {
      height: 760px; } }
  @media (max-width: 767px) {
    .banner-area {
      background-position: -2000px center;
      height: 700px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area {
      background-position: -95px center;
      height: 700px; } }
  .banner-area .banner-content .title {
    font-size: 110px;
    font-weight: 700;
    color: #fff; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .banner-area .banner-content .title {
        font-size: 74px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .banner-area .banner-content .title {
        font-size: 64px; } }
    @media (max-width: 767px) {
      .banner-area .banner-content .title {
        font-size: 38px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .banner-area .banner-content .title {
        font-size: 52px; } }
    .banner-area .banner-content .title span {
      color: #fc2274;
      font-weight: 700;
      display: contents;
      font-style: italic;
      letter-spacing: -6px; }
      @media (max-width: 767px) {
        .banner-area .banner-content .title span {
          letter-spacing: 0; } }
      .banner-area .banner-content .title span span {
        font-family: "Playfair Display", serif;
        color: #fff; }
  .banner-area .banner-thumb {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    z-index: -1; }
    .banner-area .banner-thumb img {
      width: 80%; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-area .banner-thumb img {
          width: 70%; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .banner-area .banner-thumb img {
          width: 55%; } }
  .banner-area .banner-shape {
    position: absolute;
    top: 50px;
    right: 75px;
    z-index: -2; }
  .banner-area .banner-shape-2 {
    position: absolute;
    bottom: 100px;
    left: 50px;
    z-index: -2;
    transform: rotate(-18deg); }
  .banner-area .shape-1 {
    position: absolute;
    top: 150px;
    left: 0px;
    animation: animationFramesTwo 13s infinite linear;
    z-index: -1; }
  .banner-area .shape-2 {
    position: absolute;
    top: 150px;
    left: 0px;
    animation: animationFramesThree 17s infinite linear;
    z-index: -1; }
  .banner-area .shape-3 {
    position: absolute;
    bottom: 150px;
    left: 0px;
    animation: animationFramesFive 17s infinite linear;
    z-index: -1; }
  .banner-area .shape-4 {
    position: absolute;
    top: 150px;
    left: 500px;
    animation: animationFramesFive 17s infinite linear;
    z-index: -1; }
  .banner-area .shape-5 {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    animation: animationFramesThree 20s infinite linear;
    z-index: -1; }
  .banner-area .shape-6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: animationFramesTwo 17s infinite linear;
    z-index: -1; }
  .banner-area .shape-7 {
    position: absolute;
    top: 300px;
    right: 0%;
    animation: rotatedHalfTwo 7s infinite linear;
    z-index: -1; }
  .banner-area.page-title-area {
    height: 585px;
    overflow: hidden; }
    .banner-area.page-title-area .page-title .title {
      color: #fff;
      text-transform: capitalize;
      font-size: 115px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-area.page-title-area .page-title .title {
          font-size: 84px; } }
      @media (max-width: 767px) {
        .banner-area.page-title-area .page-title .title {
          font-size: 54px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .banner-area.page-title-area .page-title .title {
          font-size: 80px; } }
      .banner-area.page-title-area .page-title .title span {
        font-family: "Playfair Display", serif;
        color: #fc2274;
        font-style: italic; }
    .banner-area.page-title-area .page-title .banner-play {
      margin-top: 45px; }
      .banner-area.page-title-area .page-title .banner-play a {
        display: flex;
        align-items: center; }
        .banner-area.page-title-area .page-title .banner-play a i {
          height: 100px;
          width: 100px;
          border-radius: 50%;
          background-color: transparent;
          border: 3px solid #29083a;
          text-align: center;
          line-height: 92px;
          font-size: 45px;
          color: #fc2274; }
          @media (max-width: 767px) {
            .banner-area.page-title-area .page-title .banner-play a i {
              height: 70px;
              width: 70px;
              font-size: 28px;
              line-height: 60px; } }
        .banner-area.page-title-area .page-title .banner-play a span {
          font-size: 24px;
          color: #fff;
          padding-left: 25px;
          font-family: "Open Sans", sans-serif; }
          @media (max-width: 767px) {
            .banner-area.page-title-area .page-title .banner-play a span {
              font-size: 18px;
              padding-left: 15px; } }
    .banner-area.page-title-area .shape-8 {
      position: absolute;
      left: 0;
      bottom: -230px;
      z-index: -1; }
    .banner-area.page-title-area .shape-9 {
      position: absolute;
      top: 50px;
      right: -50px;
      text-align: right;
      transform: rotate(-29deg);
      z-index: -1; }
      .banner-area.page-title-area .shape-9 img {
        width: 70%; }

/*===========================
    4.SERVICE css 
===========================*/
.services-area {
  padding-top: 112px; }
  .services-area .section-title {
    margin-bottom: 30px; }
  .services-area .services-item .services-icon {
    width: 35%; }
  .services-area .services-item .services-content .title {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize; }
  .services-area .services-item .services-content p {
    font-size: 18px;
    color: #fff;
    line-height: 32px;
    font-weight: 300;
    opacity: .8; }
    @media (max-width: 767px) {
      .services-area .services-item .services-content p {
        font-size: 15px;
        line-height: 28px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .services-area .services-item .services-content p {
        font-size: 18px;
        line-height: 32px; } }

/*===========================
    4.ABOUT US css 
===========================*/
.about-us-area {
  position: relative;
  padding-bottom: 112px;
  padding-top: 113px; }
  .about-us-area .about-content > span {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    padding-left: 33px;
    position: relative; }
    .about-us-area .about-content > span::before {
      position: absolute;
      content: '';
      left: 0;
      bottom: 9px;
      width: 26px;
      height: 1px;
      background: #fc2274; }
    .about-us-area .about-content > span::after {
      position: absolute;
      content: '';
      left: 0;
      bottom: 0px;
      width: 100%;
      height: 1px;
      background: #fc2274; }
  .about-us-area .about-content .title {
    font-size: 32px;
    color: #000000;
    font-weight: 700;
    padding-top: 11px; }
    .about-us-area .about-content .title span {
      display: inline;
      color: #798795;
      text-decoration: underline;
      font-family: "Playfair Display", serif;
      font-style: italic; }
      .about-us-area .about-content .title span span {
        text-decoration: none;
        color: #000000; }
  .about-us-area .about-content p {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    line-height: 32px;
    color: #798795;
    font-weight: 300;
    padding-right: 90px;
    padding-top: 32px; }
    @media (max-width: 767px) {
      .about-us-area .about-content p {
        padding-right: 0; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about-us-area .about-content p {
        padding-right: 60px; } }
  .about-us-area .about-content a {
    margin-top: 62px;
    margin-left: 10px; }
  .about-us-area .about-list {
    margin-top: 40px;
    position: relative; }
    .about-us-area .about-list::before {
      position: absolute;
      content: '';
      left: 7px;
      width: 1px;
      height: 86%;
      background: #fc2274;
      top: 20px; }
    .about-us-area .about-list ul li a {
      font-size: 18px;
      color: #000000;
      line-height: 60px;
      padding-left: 28px;
      position: relative; }
      .about-us-area .about-list ul li a::before {
        position: absolute;
        content: '';
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 15px;
        width: 15px;
        border-radius: 50%;
        border: 1px solid #fc2274; }
      .about-us-area .about-list ul li a::after {
        position: absolute;
        content: '';
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 26px;
        background: #fff; }
  .about-us-area .about-thumb {
    padding-top: 52px;
    background-image: url(../images/about-map-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .about-us-area .about-chat {
    position: absolute;
    top: 40px;
    left: 53%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .about-us-area .about-chat {
        top: 600px;
        left: 60px; } }
    .about-us-area .about-chat span {
      position: absolute;
      left: 55%;
      top: 40%;
      -webkit-transform: translate(-50%, -50%) rotate(20deg);
      -moz-transform: translate(-50%, -50%) rotate(20deg);
      -ms-transform: translate(-50%, -50%) rotate(20deg);
      -o-transform: translate(-50%, -50%) rotate(20deg);
      transform: translate(-50%, -50%) rotate(20deg);
      font-size: 50px;
      color: #fc2274;
      font-family: "Playfair Display", serif;
      font-style: italic;
      line-height: 60px; }

.about-content-area {
  padding-top: 113px; }
  .about-content-area .about-content-title {
    padding-bottom: 55px; }
    .about-content-area .about-content-title .title {
      font-size: 48px;
      font-weight: 700;
      color: #fff; }
      @media (max-width: 767px) {
        .about-content-area .about-content-title .title {
          font-size: 25px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .about-content-area .about-content-title .title {
          font-size: 48px; } }
      .about-content-area .about-content-title .title span {
        display: inline;
        font-family: "Playfair Display", serif;
        font-style: italic; }
        .about-content-area .about-content-title .title span span {
          color: #999;
          text-decoration: underline; }
  .about-content-area .about-content-text {
    padding-bottom: 77px; }
    .about-content-area .about-content-text p {
      color: #fff;
      font-size: 18px;
      font-weight: 300;
      line-height: 32px; }
      .about-content-area .about-content-text p.text {
        padding-top: 30px; }
  .about-content-area .about-counter-item .item {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background: #040326;
    border: 5px solid #fc2274;
    padding-top: 50px; }
    .about-content-area .about-counter-item .item .title {
      color: #fff;
      font-size: 48px; }
    .about-content-area .about-counter-item .item > span {
      color: #fff;
      font-weight: 500;
      text-transform: capitalize;
      opacity: .7; }

/*===========================
    5.AWARD css 
===========================*/
.award-area .award-content > span {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  padding-bottom: 12px; }
.award-area .award-content .title {
  font-size: 45px;
  color: #fff;
  font-weight: 400;
  padding-right: 100px;
  padding-bottom: 28px; }
  @media (max-width: 767px) {
    .award-area .award-content .title {
      padding-right: 0;
      font-size: 25px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .award-area .award-content .title {
      padding-right: 0;
      font-size: 45px; } }
  .award-area .award-content .title span {
    display: inline;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #999; }
.award-area .award-content p {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  line-height: 32px;
  padding-right: 50px;
  padding-bottom: 35px;
  opacity: .8; }
.award-area .award-content a {
  font-size: 50px;
  color: #1a1a42;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .award-area .award-content a:hover {
    color: #fc2274; }
.award-area .award-list .award-list-item .award-year .title {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-style: italic; }
  @media (max-width: 767px) {
    .award-area .award-list .award-list-item .award-year .title {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .award-area .award-list .award-list-item .award-year .title {
      margin-bottom: 0px; } }
.award-area .award-list .award-list-item .award-text span {
  font-size: 24px;
  font-weight: 500;
  color: #fff; }
.award-area .award-list .award-list-item .award-text p {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  line-height: 32px;
  padding-top: 10px;
  opacity: .8; }

/*===========================
    6.PORTFOLIO css 
===========================*/
.portfolio-area {
  padding-top: 107px;
  z-index: 6;
  position: relative; }
  .portfolio-area .section-title .title {
    padding: 0; }
  .portfolio-area .section-title .project-menu {
    margin-top: 50px; }
    .portfolio-area .section-title .project-menu ul li {
      display: inline-block;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      height: 50px;
      line-height: 50px;
      padding: 0 28px;
      position: relative;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      color: #fff;
      font-family: "Open Sans", sans-serif; }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .portfolio-area .section-title .project-menu ul li {
          padding: 0 15px; } }
      @media (max-width: 767px) {
        .portfolio-area .section-title .project-menu ul li {
          padding: 0 10px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .portfolio-area .section-title .project-menu ul li {
          padding: 0 20px; } }
      .portfolio-area .section-title .project-menu ul li.active {
        color: #fff;
        -webkit-transition: all 0.4s ease-out 0s;
        -moz-transition: all 0.4s ease-out 0s;
        -ms-transition: all 0.4s ease-out 0s;
        -o-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s; }
        .portfolio-area .section-title .project-menu ul li.active::before {
          position: absolute;
          content: '';
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          background: #fc2274;
          z-index: -1;
          -webkit-transform: skewX(13deg) skewY(4deg);
          -moz-transform: skewX(13deg) skewY(4deg);
          -ms-transform: skewX(13deg) skewY(4deg);
          -o-transform: skewX(13deg) skewY(4deg);
          transform: skewX(13deg) skewY(4deg);
          border-radius: 5px;
          border: 1px solid #fc2274;
          -webkit-transition: all 0.4s ease-out 0s;
          -moz-transition: all 0.4s ease-out 0s;
          -ms-transition: all 0.4s ease-out 0s;
          -o-transition: all 0.4s ease-out 0s;
          transition: all 0.4s ease-out 0s; }
  .portfolio-area .portfolio-filter {
    align-items: center; }
    .portfolio-area .portfolio-filter span {
      font-size: 14px;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600; }
    .portfolio-area .portfolio-filter ul li {
      display: inline-block; }
      .portfolio-area .portfolio-filter ul li a {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin-left: 40px;
        font-family: "Open Sans", sans-serif;
        opacity: .8; }
      .portfolio-area .portfolio-filter ul li:first-child a {
        margin-left: 5px; }
  .portfolio-area .single-portfolio {
    position: relative;
    overflow: hidden; }
    .portfolio-area .single-portfolio img {
      width: 100%;
      background: #ededed;
      transform: scale(1.1);
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .portfolio-area .single-portfolio .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(252, 34, 116, 0.8);
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      opacity: 0; }
      .portfolio-area .single-portfolio .portfolio-overlay a {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 100px;
        width: 100px;
        background: #fff;
        color: #fc2274;
        text-align: center;
        line-height: 100px;
        font-size: 45px; }
    .portfolio-area .single-portfolio:hover .portfolio-overlay {
      opacity: 1; }
    .portfolio-area .single-portfolio:hover img {
      transform: scale(1); }
  .portfolio-area.portfolio-page {
    padding-top: 112px; }

/*===========================
    6.TESTIMONIALS css 
===========================*/
.testimonils-area {
  padding-top: 0;
  padding-bottom: 120px; }
  .testimonils-area .section-title {
    margin-bottom: 48px; }
    .testimonils-area .section-title .title {
      padding-bottom: 15px; }
  .testimonils-area .testimonils-item {
    background: #040330;
    padding: 28px 33px;
    position: relative;
    margin-top: 30px;
    z-index: 5; }
    @media (max-width: 767px) {
      .testimonils-area .testimonils-item {
        padding: 28px 15px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonils-area .testimonils-item {
        padding: 28px 33px; } }
    .testimonils-area .testimonils-item::before {
      position: absolute;
      content: '';
      width: 0;
      height: 0;
      border-bottom: 60px solid #040330;
      border-right: 72px solid transparent;
      left: 11px;
      bottom: -24px;
      transform: rotate(33deg);
      z-index: -1; }
    .testimonils-area .testimonils-item p {
      font-size: 22px;
      font-style: italic;
      font-family: "Playfair Display", serif;
      line-height: 36px;
      color: #fff;
      opacity: .8; }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .testimonils-area .testimonils-item p {
          font-size: 17px; } }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .testimonils-area .testimonils-item p {
          font-size: 20px; } }
      @media (max-width: 767px) {
        .testimonils-area .testimonils-item p {
          font-size: 18px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .testimonils-area .testimonils-item p {
          font-size: 22px; } }
    .testimonils-area .testimonils-item i {
      position: absolute;
      top: -26px;
      right: 20px;
      font-size: 50px;
      color: #fc2274; }
  .testimonils-area .single-testimonils .testimonils-info .test-content .title {
    font-size: 18px;
    font-weight: 600;
    color: #fff; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .testimonils-area .single-testimonils .testimonils-info .test-content .title {
        font-size: 17px; } }
    @media (max-width: 767px) {
      .testimonils-area .single-testimonils .testimonils-info .test-content .title {
        font-size: 15px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonils-area .single-testimonils .testimonils-info .test-content .title {
        font-size: 18px; } }
  .testimonils-area .single-testimonils .testimonils-info .test-content p {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #999; }
  .testimonils-area.testimonils-services {
    padding-top: 108px; }
  .testimonils-area.testimonils-page {
    padding-top: 112px; }

.brand-area {
  background: #fc2274;
  padding: 70px 0; }
  .brand-area .brand-item img {
    opacity: .4;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .brand-area .brand-item img:hover {
      opacity: 1; }

/*===========================
    7.TEAM css 
===========================*/
.team-area {
  padding-top: 113px;
  padding-bottom: 108px; }
  .team-area .section-title {
    margin-bottom: 35px; }
    .team-area .section-title .title {
      padding: 0;
      line-height: 33px; }
  .team-area .single-team {
    position: relative; }
    .team-area .single-team img {
      width: 100%; }
    .team-area .single-team .team-overlay {
      position: absolute;
      left: 0;
      top: 0;
      background-image: -moz-linear-gradient(90deg, #070632 0%, rgba(7, 6, 50, 0) 100%);
      background-image: -webkit-linear-gradient(90deg, #070632 0%, rgba(7, 6, 50, 0) 100%);
      background-image: -ms-linear-gradient(90deg, #070632 0%, rgba(7, 6, 50, 0) 100%);
      background-image: -o-linear-gradient(90deg, #070632 0%, rgba(7, 6, 50, 0) 100%);
      height: 100%;
      width: 100%;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .team-area .single-team .team-overlay ul {
        position: absolute;
        left: 50%;
        top: 65%;
        transform: translate(-50%, -50%);
        white-space: nowrap; }
        .team-area .single-team .team-overlay ul li {
          display: inline-block; }
          .team-area .single-team .team-overlay ul li a {
            height: 40px;
            width: 40px;
            color: #fff;
            background-color: rgba(255, 255, 255, 0.07);
            text-align: center;
            line-height: 40px;
            border-radius: 30% 70% 30% 70% / 30% 70% 30% 70%;
            font-size: 16px;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            margin: 0 7px; }
            .team-area .single-team .team-overlay ul li a:hover {
              background: #fc2274;
              color: #fff; }
    .team-area .single-team:hover .team-overlay {
      opacity: 1; }
  .team-area .team-active .slick-arrow {
    position: absolute;
    top: -95px;
    right: 0;
    height: 55px;
    width: 55px;
    background: #191840;
    border-radius: 50%;
    text-align: center;
    line-height: 58px;
    cursor: pointer;
    font-size: 40px;
    color: #fff; }
    .team-area .team-active .slick-arrow.prev {
      right: 85px; }
    .team-area .team-active .slick-arrow.next {
      right: 15px; }
  .team-area .team-info .title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding-top: 22px;
    padding-bottom: 7px; }
    @media (max-width: 767px) {
      .team-area .team-info .title {
        font-size: 20px; } }
  .team-area .team-info span {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    opacity: .8; }
    @media (max-width: 767px) {
      .team-area .team-info span {
        font-size: 16px; } }
  .team-area.team-page {
    padding-bottom: 115px; }
  .team-area.team-services {
    padding-bottom: 0px; }
  .team-area.about-team {
    padding-bottom: 118px; }

/*===========================
    8.CONTACT css 
===========================*/
.contact-area {
  background: #040330;
  padding-top: 85px; }
  .contact-area .contact-info .contact-info-item .item {
    position: relative;
    padding-left: 65px; }
    .contact-area .contact-info .contact-info-item .item i {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 34px;
      color: #fff; }
    .contact-area .contact-info .contact-info-item .item p {
      color: #fff;
      line-height: 28px;
      opacity: .8; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .contact-area .contact-info .contact-info-item .item p {
          font-size: 15px; } }
  .contact-area .contact-info .contact-social {
    margin-top: 70px; }
    .contact-area .contact-info .contact-social ul li {
      display: inline-block; }
      .contact-area .contact-info .contact-social ul li a {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.04);
        margin-right: 14px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .contact-area .contact-info .contact-social ul li a {
            height: 40px;
            width: 40px;
            line-height: 40px;
            margin-right: 8px;
            font-size: 14px; } }
        .contact-area .contact-info .contact-social ul li a:hover {
          background: #fc2274; }
  .contact-area .contact-form .contact-title .title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 20px; }
  .contact-area .contact-form .input-box input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.02);
    color: #798795;
    font-weight: 300;
    font-size: 14px; }
    .contact-area .contact-form .input-box input::placeholder {
      color: #798795;
      opacity: 1; }
  .contact-area .contact-form .input-box textarea {
    width: 100%;
    height: 135px;
    background-color: transparent;
    border: 1px solid #11103b;
    border-radius: 5px;
    resize: none;
    padding-left: 20px;
    padding-top: 15px;
    color: #798795;
    font-size: 14px; }
    .contact-area .contact-form .input-box textarea::placeholder {
      opacity: 1;
      color: #798795; }
  .contact-area .contact-form .input-box button {
    background-color: transparent;
    margin-top: 30px;
    margin-left: 10px; }
  .contact-area .contact-form .col-lg-12, .contact-area .contact-form .col-lg-6 {
    padding-left: 10px;
    padding-right: 10px; }
    @media (max-width: 767px) {
      .contact-area .contact-form .col-lg-12, .contact-area .contact-form .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px; } }

.contact-us-area {
  padding-bottom: 113px; }
  .contact-us-area .section-title span {
    color: #676767;
    padding-top: 2px; }
  .contact-us-area .contact-us-item i {
    font-size: 50px;
    color: #1abd29; }
  .contact-us-area .contact-us-item p {
    font-size: 24px;
    text-transform: capitalize;
    color: #fff;
    padding-top: 35px;
    padding-bottom: 17px; }
  .contact-us-area .contact-us-item.item-2 i {
    color: #6b77b8; }
  .contact-us-area .contact-us-item.item-3 i {
    color: #fc2274; }

.contact-info-area .blog-form .comment-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff; }

/*===========================
    9.FOOTER css 
===========================*/
.footer-area .footer-copyright {
  background: #030227; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-copyright {
      padding-top: 30px;
      padding-bottom: 70px; } }
  @media (max-width: 767px) {
    .footer-area .footer-copyright {
      padding-top: 30px;
      padding-bottom: 70px; } }
  .footer-area .footer-copyright .footer-copyright-item {
    height: 100px; }
    @media (max-width: 767px) {
      .footer-area .footer-copyright .footer-copyright-item {
        display: block !important;
        text-align: center; } }
    .footer-area .footer-copyright .footer-copyright-item p {
      font-size: 18px;
      color: #fff; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .footer-area .footer-copyright .footer-copyright-item p {
          padding-bottom: 20px; } }
      .footer-area .footer-copyright .footer-copyright-item p span {
        color: #999; }
    .footer-area .footer-copyright .footer-copyright-item ul {
      margin-right: 40px; }
      @media (max-width: 767px) {
        .footer-area .footer-copyright .footer-copyright-item ul {
          margin-right: 0; } }
      .footer-area .footer-copyright .footer-copyright-item ul li {
        display: inline-block; }
        .footer-area .footer-copyright .footer-copyright-item ul li a {
          font-size: 18px;
          color: #fff;
          margin-left: 40px;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -ms-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
          @media (max-width: 767px) {
            .footer-area .footer-copyright .footer-copyright-item ul li a {
              margin: 10px 12px;
              font-size: 14px; } }
          @media only screen and (min-width: 576px) and (max-width: 767px) {
            .footer-area .footer-copyright .footer-copyright-item ul li a {
              margin: 20px 15px 0; } }
          .footer-area .footer-copyright .footer-copyright-item ul li a:hover {
            color: #fc2274; }

/*===========================
    BACK TO TOP CSS
===========================*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  z-index: 99; }
  .back-to-top a {
    color: #fff;
    background: #fc2274;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1); }

/*===========================
    11.BLOG css 
===========================*/
.blog-item-area {
  padding-bottom: 120px;
  margin-top: -8px; }

  .blog-arcive .single-item-blog ul li {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin-right: 60px;
    opacity: .8;
    font-family: "Open Sans", sans-serif; }
    @media (max-width: 767px) {
      .blog-arcive .single-item-blog ul li {
        margin-right: 30px;
        font-size: 15px; } }
    .blog-arcive .single-item-blog ul li:last-child {
      margin-right: 0; }
.blog-arcive .single-item-blog > .title {
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  padding-top: 17px; }
  @media (max-width: 767px) {
    .blog-arcive .single-item-blog > .title {
      font-size: 16px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-arcive .single-item-blog > .title {
      font-size: 22px; } }
.blog-arcive .single-item-blog > span {
  font-size: 18px;
  color: #fc2274;
  text-transform: capitalize;
  font-weight: 500;
  padding-top: 15px; }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-arcive .single-item-blog > span {
      font-size: 16px; } }
.blog-arcive .single-item-blog p {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  opacity: .8;
  font-family: "Open Sans", sans-serif;
  padding-right: 66px;
  padding-bottom: 47px;
  padding-top: 13px; }
  @media (max-width: 767px) {
    .blog-arcive .single-item-blog p {
      font-size: 14px;
      padding-right: 0; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-arcive .single-item-blog p {
      font-size: 18px;
      padding-right: 0; } }
.blog-arcive .single-item-blog a::before {
  background: #fc2274; }
.blog-arcive .single-item-blog a:hover {
  color: #fff; }
  .blog-arcive .single-item-blog a:hover::before {
    background: #000000;
    border-color: #000000; }
.blog-arcive .single-item-blog.blog-border {
  border: 5px solid #fc2274;
  padding: 65px; }
  @media (max-width: 767px) {
    .blog-arcive .single-item-blog.blog-border {
      border: 0;
      padding: 0; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-arcive .single-item-blog.blog-border {
      border: 5px solid #fc2274;
      padding: 65px; } }
  .blog-arcive .single-item-blog.blog-border .blog-quote-item {
    position: relative;
    padding-left: 110px;
    margin-bottom: 27px; }
    .blog-arcive .single-item-blog.blog-border .blog-quote-item i {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 80px;
      width: 80px;
      text-align: center;
      line-height: 80px;
      font-size: 40px;
      color: #fff;
      background: #fc2274; }
    .blog-arcive .single-item-blog.blog-border .blog-quote-item .title {
      font-size: 18px;
      font-weight: 600;
      color: #fff; }
      @media (max-width: 767px) {
        .blog-arcive .single-item-blog.blog-border .blog-quote-item .title {
          font-size: 16px; } }
    .blog-arcive .single-item-blog.blog-border .blog-quote-item span {
      font-size: 18px;
      font-weight: 500;
      color: #999;
      padding-top: 8px; }
.blog-arcive .single-item-blog .video {
  position: relative; }
  .blog-arcive .single-item-blog .video img {
    width: 100%; }
  .blog-arcive .single-item-blog .video a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    background: #fff;
    color: #fc2274;
    text-align: center;
    line-height: 100px;
    font-size: 32px;
    border-radius: 50%; }

.pagenation ul li {
  display: inline-block; }
  .pagenation ul li a, .page-numbers.current, .page-numbers span {
    font-size: 48px;
    color: #999;
    margin-right: 73px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media (max-width: 767px) {
      .pagenation ul li a {
        margin-right: 30px; } }
    .pagenation ul li a:hover {
      color: #fc2274; }
    .pagenation ul li a i {
      font-size: 56px; }

.single-blog {
  padding: 30px 30px 40px;
  background-color: #030227;
  border: 1px solid #11103b;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s; }
  .single-blog .blog-content {
    position: relative;
    z-index: 5; }
    .single-blog .blog-content .blog-title a {
      font-size: 18px;
      color: #fff;
      font-weight: 600;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .single-blog .blog-content p {
      margin-top: 25px;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      color: #fff;
      opacity: .7; }
  .single-blog .blog-meta {
    position: relative;
    z-index: 5; }
    .single-blog .blog-meta .blog-author img {
      border-radius: 50%; }
    .single-blog .blog-meta .meta-title {
      padding-left: 20px; }
      .single-blog .blog-meta .meta-title .title {
        font-weight: 400;
        font-weight: 16;
        color: #fc2274;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .single-blog .blog-meta .meta-title .title a {
          color: #fff;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -ms-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
  .single-blog.active, .single-blog:hover {
    background: url(../images/blog/blog-1.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s; }
    .single-blog.active::before, .single-blog:hover::before {
      position: absolute;
      content: '';
      background-color: rgba(252, 34, 116, 0.8);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .single-blog.active .blog-content .blog-title a, .single-blog:hover .blog-content .blog-title a {
      color: #fff; }
    .single-blog.active .blog-content p, .single-blog:hover .blog-content p {
      color: #fff;
      opacity: 1; }
    .single-blog.active .blog-meta .meta-title .title, .single-blog:hover .blog-meta .meta-title .title {
      color: #fff; }
    .single-blog.active .blog-meta .meta-title a, .single-blog:hover .blog-meta .meta-title a {
      color: #fff; }
  .single-blog.blog-tow .blog-meta .meta-title .title {
    color: #fc2274; }
  .single-blog.blog-tow.active::before, .single-blog.blog-tow:hover::before {
    background-color: rgba(252, 34, 116, 0.8); }
  .single-blog.blog-tow.active .blog-meta .meta-title .title, .single-blog.blog-tow:hover .blog-meta .meta-title .title {
    color: #fff; }

.blog-area .blog-sidebar .blog-box {
  border: 1px solid #17163f; }
  .blog-area .blog-sidebar .blog-box .blog-title {
    border-bottom: 1px solid #17163f; }
    .blog-area .blog-sidebar .blog-box .blog-title .title {
      line-height: 60px;
      font-size: 24px;
      font-weight: 700;
      color: #fff; }
      .blog-area .blog-sidebar .blog-box .blog-title .title i {
        color: #fc2274; }
  .blog-area .blog-sidebar .blog-box .blog-cat-list ul {
    padding-top: 17px;
    padding-bottom: 17px; }
    .blog-area .blog-sidebar .blog-box .blog-cat-list ul li a {
      font-size: 18px;
      color: #fff;
      line-height: 50px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-between;
      align-items: center;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      font-family: "Open Sans", sans-serif; }
      .blog-area .blog-sidebar .blog-box .blog-cat-list ul li a:hover {
        color: #fc2274; }
  .blog-area .blog-sidebar .blog-box .blog-more-cat a {
    padding-left: 45px;
    line-height: 70px;
    border-top: 1px solid #17163f;
    display: block;
    font-weight: 500;
    color: #fff; }
    .blog-area .blog-sidebar .blog-box .blog-more-cat a span {
      color: #fc2274;
      padding-right: 5px; }
  .blog-area .blog-sidebar .blog-box.blog-border {
    border-radius: 0 0 10px 10px; }
  .blog-area .blog-sidebar .blog-box.box-top {
    border-top: 0; }
  .blog-area .blog-sidebar .blog-box .blog-tag {
    padding-top: 20px;
    padding-bottom: 30px; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .blog-area .blog-sidebar .blog-box .blog-tag {
        padding: 20px 10px 30px; } }
    @media (max-width: 767px) {
      .blog-area .blog-sidebar .blog-box .blog-tag {
        padding: 15px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-area .blog-sidebar .blog-box .blog-tag {
        padding: 20px 15px 30px; } }
    .blog-area .blog-sidebar .blog-box .blog-tag ul {
      padding-top: 10px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-between; }
      .blog-area .blog-sidebar .blog-box .blog-tag ul li a {
        padding: 0 7px;
        line-height: 32px;
        color: #999;
        background: #0c0b36;
        font-size: 14px;
        font-weight: 300;
        margin: 0 3px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        font-family: "Open Sans", sans-serif; }
        @media (max-width: 767px) {
          .blog-area .blog-sidebar .blog-box .blog-tag ul li a {
            font-size: 12px; } }
        @media only screen and (min-width: 576px) and (max-width: 767px) {
          .blog-area .blog-sidebar .blog-box .blog-tag ul li a {
            font-size: 14px; } }
        .blog-area .blog-sidebar .blog-box .blog-tag ul li a:hover {
          background: #fc2274;
          color: #fff; }
  .blog-area .blog-sidebar .blog-box .blog-project {
    padding-top: 20px;
    padding-bottom: 20px; }
    .blog-area .blog-sidebar .blog-box .blog-project ul li a {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: #999;
      line-height: 30px;
      font-weight: 300;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      font-family: "Open Sans", sans-serif; }
      .blog-area .blog-sidebar .blog-box .blog-project ul li a:hover {
        color: #fc2274; }
.blog-area .blog-sidebar .blog-add {
  position: relative; }
  .blog-area .blog-sidebar .blog-add img {
    width: 100%; }
  .blog-area .blog-sidebar .blog-add a {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 120px;
    width: 120px;
    background: #fc2274;
    color: #fff;
    text-align: center;
    line-height: 120px;
    font-size: 40px; }
.blog-area .blog-details-items .blog-thumb img {
  width: 100%; }
.blog-area .blog-details-items .blog-details-content .title {
  font-weight: 600;
  font-size: 24px;
  padding-right: 100px;
  line-height: 36px;
  padding-bottom: 30px;
  color: #fff; }
  @media (max-width: 767px) {
    .blog-area .blog-details-items .blog-details-content .title {
      font-size: 20px;
      padding-right: 0; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-area .blog-details-items .blog-details-content .title {
      font-size: 26px; } }
.blog-area .blog-details-items .blog-details-content ul {
  padding-bottom: 33px;
  padding-top: 20px; }
  .blog-area .blog-details-items .blog-details-content ul li {
    display: inline-block;
    font-size: 14px;
    color: #798795;
    font-family: "Playfair Display", serif;
    margin-right: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-area .blog-details-items .blog-details-content ul li {
        font-size: 13px; } }
    .blog-area .blog-details-items .blog-details-content ul li:hover {
      color: #fc2274; }
    .blog-area .blog-details-items .blog-details-content ul li span {
      font-size: 18px;
      color: #000000; }
.blog-area .blog-details-items .blog-details-content p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 32px;
  opacity: .8; }
  @media (max-width: 767px) {
    .blog-area .blog-details-items .blog-details-content p {
      font-size: 16px; } }
  .blog-area .blog-details-items .blog-details-content p.text {
    padding-top: 30px;
    padding-bottom: 38px; }
.blog-area .blog-details-items .blog-quote {
  background-image: url(../images/blog-quote.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 50px;
  border-radius: 5px; }
  @media (max-width: 767px) {
    .blog-area .blog-details-items .blog-quote {
      padding: 20px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-area .blog-details-items .blog-quote {
      padding: 70px 50px; } }
  .blog-area .blog-details-items .blog-quote p {
    font-size: 32px;
    color: #fff;
    line-height: 48px;
    font-weight: 300; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .blog-area .blog-details-items .blog-quote p {
        font-size: 25px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .blog-area .blog-details-items .blog-quote p {
        font-size: 29px; } }
    @media (max-width: 767px) {
      .blog-area .blog-details-items .blog-quote p {
        font-size: 22px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-area .blog-details-items .blog-quote p {
        font-size: 20px; } }
    .blog-area .blog-details-items .blog-quote p i {
      font-size: 14px; }
      .blog-area .blog-details-items .blog-quote p i.item {
        transform: rotate(180deg);
        margin-top: -20px; }
.blog-area .blog-details-items .blog-content-area {
  border-bottom: 1px solid #17163f; }
  .blog-area .blog-details-items .blog-content-area p {
    line-height: 32px;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    opacity: .8;
    font-family: "Open Sans", sans-serif; }
    @media (max-width: 767px) {
      .blog-area .blog-details-items .blog-content-area p {
        font-size: 16px; } }
    .blog-area .blog-details-items .blog-content-area p.item-1 {
      padding-top: 40px;
      padding-bottom: 40px; }
    .blog-area .blog-details-items .blog-content-area p.item-2 {
      padding-top: 40px;
      padding-bottom: 55px; }
  @media (max-width: 767px) {
    .blog-area .blog-details-items .blog-content-area .blog-content-thumb {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-area .blog-details-items .blog-content-area .blog-content-thumb {
      margin-bottom: 0px; } }
  .blog-area .blog-details-items .blog-content-area .blog-content-thumb img {
    width: 100%; }
.blog-area .blog-details-items .blog-social .shop-social {
  padding-top: 25px; }
  .blog-area .blog-details-items .blog-social .shop-social span {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding-right: 18px; }
  .blog-area .blog-details-items .blog-social .shop-social ul li {
    display: inline-block; }
    .blog-area .blog-details-items .blog-social .shop-social ul li a {
      font-size: 18px;
      color: #45619d;
      margin-right: 10px; }
    .blog-area .blog-details-items .blog-social .shop-social ul li:nth-child(2) a {
      color: #cf4539; }
    .blog-area .blog-details-items .blog-social .shop-social ul li:nth-child(3) a {
      color: #42c0fb; }
    .blog-area .blog-details-items .blog-social .shop-social ul li:nth-child(4) a {
      color: #009ee5; }
    .blog-area .blog-details-items .blog-social .shop-social ul li:nth-child(5) a {
      color: #ec9f21; }

.blog-details-comment .comment-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff; }

.blog-comment .comment-replay {
  padding-left: 100px; }
  @media (max-width: 767px) {
    .blog-comment .comment-replay {
      padding-left: 0; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-comment .comment-replay {
      padding-left: 60px; } }

.single-comment {
  padding: 20px 25px;
  padding-left: 0;
  border: 1px solid #17163f;
  margin-left: 40px;
  border-radius: 5px;
  margin-top: 30px;
  display: block !important;  }
  @media (max-width: 767px) {
    .single-comment {
      margin-left: 0;
      padding-top: 0;
      margin-top: 70px;
      padding-right: 20px;
      padding-bottom: 20px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-comment {
      margin-left: 40px;
      padding-top: 0;
      margin-top: 30px;
      padding: 20px 25px;
      padding-left: 0; } }
  .single-comment .comment-author {
    margin-left: -40px; }
    @media (max-width: 767px) {
      .single-comment .comment-author {
        margin-left: 0;
        text-align: center;
        margin-top: -40px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single-comment .comment-author {
        margin-left: -40px;
        margin-top: 0; } }
    .single-comment .comment-author img {
      width: 80px;
      border-radius: 50%; }
  .single-comment .comment-text {
    padding-left: 25px; }
    @media (max-width: 767px) {
      .single-comment .comment-text {
        padding-top: 20px;
        padding-left: 20px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single-comment .comment-text {
        padding-top: 0;
        padding-left: 25px; } }
    .single-comment .comment-text .author-name {
      font-size: 16px;
      font-weight: 700;
      color: #fff; }
    .single-comment .comment-text .text {
      margin-top: 10px;
      font-weight: 300;
      font-size: 14px;
      line-height: 24px;
      color: #fff;
      opacity: .8; }
    .single-comment .comment-text .meta li {
      display: inline-block;
      margin-top: 10px; }
      .single-comment .comment-text .meta li + li {
        margin-left: 30px; }
        @media (max-width: 767px) {
          .single-comment .comment-text .meta li + li {
            margin-left: 15px; } }
        @media only screen and (min-width: 576px) and (max-width: 767px) {
          .single-comment .comment-text .meta li + li {
            margin-left: 25px; } }
      .single-comment .comment-text .meta li a {
        font-size: 14px;
        color: #999;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .single-comment .comment-text .meta li a i {
          padding-right: 8px; }
        .single-comment .comment-text .meta li a:hover {
          color: #fc2274; }

/*===== All Form Style =====*/
.blog-form .comment-title {
  color: #fff; }

.single-form {
  margin-top: 30px; }
  .single-form label {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: .8; }
  .single-form input, .single-form textarea {
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 5px;
    padding: 0 15px;
    background-color: transparent;
    border: 1px solid #171740;
    color: #999;
    font-size: 14px; }
  .single-form textarea {
    height: 200px;
    padding-top: 10px;
    resize: none; }
  .single-form .main-btn {
    line-height: 48px;
    padding: 0 30px;
    font-size: 16px;
    border-radius: 0;
    text-transform: uppercase;
    background-color: #01061f;
    border-color: #01061f;
    font-weight: 700; }
    .single-form .main-btn:hover {
      background-color: transparent;
      color: #01061f; }
   .comment-submit-button {
    background: #fc2274;
    color: #fff;
    line-height: 55px;
    padding: 0 35px;
    border: 0;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 15px;
    margin-top: 15px;
     }

/*# sourceMappingURL=style.css.map */
.footer-copyright-item{
  padding-top: 40px;
}

.post-thumbnail{
  padding-bottom: 30px;
}
a.navbar-brand{
  color: #fff;
}

.single-item-blog ul li a{
  color: #fff;
}

h3.title a, h4.widget-title, .widget p{
  color: #fff;
}

.widget p{
  padding: 0 10px;
}

.widget select {
    max-width: 100%;
    height: 40px;
    padding: 0 15px;
    border-radius: 5px;
}

.widget img{
  margin-top: 10px;
  margin-bottom: 10px;
}

.textwidget select {
    padding: 0 20px;
    width: 60%;
    margin-top: 10px;
}

h4.widget-title{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #17163f;

}

.single-item-blog span a{
  color: #fc2274;
}
.blog-box {
    border: 1px solid #17163f;
    text-align: center;
    padding: 20px 0;
}

.widget ul li a{
  color: #fff;
  line-height: 34px;
}

.navbar-brand{
      line-height: 100px;
}

.navbar-nav .current-menu-item a, .page-numbers.current{
  color: #fc2274 !important;
}

.search-field{
    height: 40px;
    border-radius: 5px;
    padding: 20px;
}
.search-submit{
    height: 44px;
    padding: 0px 10px;
    margin-left: -8px;
}
h1,h2,h3,h4,h5,h6{
  color: #fff;
  padding-bottom: 20px;
}

/* =-=-=-=-=-=-= TABLE STYLE =-=-=-=-=-=-= */
table{
    border: 1px solid #ddd;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

table>tbody>tr>td,
table>tbody>tr>th,
table>tfoot>tr>td,
table>tfoot>tr>th,
table>thead>tr>td,
table>thead>tr>th{
    padding: 8px;
    vertical-align: middle;
    border: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

/* ------------------------------------------- 
 6.3 POST FORMAT QUOTE
------------------------------------------- */
.post blockquote {
    padding: 3em 4em;
    color: #070632;
    border: 0;
    margin: 0;
    position: relative;
    border: 5px solid #fc2274 !important;
    margin: 20px 0;
}
.post blockquote, 
.post blockquote p {
    font-style: italic;
    font-size: 17px;
}
.post blockquote::before {
    position: absolute;
    font-size: 30px;
    color: #ccc;
    left: 25px;
    top: 55px;
}
.post.format-quote .entry-header {
    margin-bottom: 0;
}

pre {
  color: #fff;
}

.rssSummary, .rss-date, .rsswidget, cite{
  color: #fff;
}

.sub-menu li{
  margin-left: 0 !important;
}

.tagcloud a{
  padding: 0 7px;
   margin: 5px 5px !important;
    color: #999;
    background: #0c0b36;
    font-size: 14px !important;
    line-height: 28px;
    font-weight: 300;
    margin: 0 3px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-family: "Open Sans", sans-serif;
}

.widget li{
  color: #fff;
}

.footer-copyright-item{
  color: #fff;
}

.error-area {
  height: 800px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center; }
  .error-area .error-item .title {
    font-size: 200px;
    color: #fff; }
    @media (max-width: 767px) {
      .error-area .error-item .title {
        font-size: 110px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .error-area .error-item .title {
        font-size: 180px; } }
  .error-area .error-item span {
    font-size: 15px;
    font-weight: 500;
    color: #676767;
    padding-bottom: 40px;
    padding-top: 40px; }
