
/*===========================
      01.COMMON css
===========================*/



@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap");
body {
  background: #f2f2f2;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #6D7588;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


  .provider-search-card
  {
    border:none;
    border-radius:10px;
    box-shadow: none
  }

  .header_area
  {
    min-height:84px;
  }

  .login-submit-form p
  {
    margin-bottom:12px;
  }


  #footer-widget-area div ul li .widget-title
  {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }

  #footer-widget-area div ul li .widget-title::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 1px;
    background-color: #7cd694;
    bottom: 0;
    left: 0;
}

#footer .sidebar-ul li {
    background: none;
    margin-top:10px;
}

#footer .sidebar-ul li a
{
  -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;
}

#footer .sidebar-ul li a:hover {
    color: #FF4367;
    padding-left: 10px;
}

* {
  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; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #3C4559;
  margin: 0px; }

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: 24px;
  color: #6D7588;
  margin: 0px; }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
/*height: 100%;*/
 }

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  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 25px;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  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;
  background-color: #FF4367; }
  .main-btn:hover {
    background-color: rgba(255, 67, 103, 0.7);
    color: #fff; }
  .main-btn.main-btn-2 {
    background-color: #fff;
    color: #FF4367; }
    .main-btn.main-btn-2:hover {
      background-color: rgba(255, 255, 255, 0.6); }

/*===== All Section Title Style =====*/
.section_title .title {
  font-size: 50px;
  font-weight: 700;
  padding-top: 3px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .section_title .title {
      font-size: 36px; } }
  @media (max-width: 767px) {
    .section_title .title {
      font-size: 26px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .section_title .title {
      font-size: 30px; } }

/*===== All Section Title Style =====*/
.pagination_wrapper .pagination li {
  margin: 0 10px; }
  @media (max-width: 767px) {
    .pagination_wrapper .pagination li {
      margin: 0 6px; } }
  .pagination_wrapper .pagination li a {
    font-size: 16px;
    color: #6D7588; }
  .pagination_wrapper .pagination li .Previous, .pagination_wrapper .pagination li .next {
    line-height: 50px;
    text-align: center;
    padding: 0 10px;
    font-size: 24px;
    -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) {
      .pagination_wrapper .pagination li .Previous, .pagination_wrapper .pagination li .next {
        line-height: 38px; } }
    .pagination_wrapper .pagination li .Previous:hover, .pagination_wrapper .pagination li .next:hover {
      color: #463CE5; }
  .pagination_wrapper .pagination li .number {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(210, 210, 210, 0.7);
    border-radius: 50%;
    line-height: 48px;
    text-align: 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; }
    @media (max-width: 767px) {
      .pagination_wrapper .pagination li .number {
        height: 40px;
        line-height: 38px;
        width: 40px; } }
    .pagination_wrapper .pagination li .number.active, .pagination_wrapper .pagination li .number:hover {
      background-color: #463CE5;
      border-color: #463CE5;
      color: #fff; }

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0; }

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999; }
  .preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    .preloader .loader .ytp-spinner {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 64px;
      margin-left: -32px;
      z-index: 18;
      pointer-events: none; }
      .preloader .loader .ytp-spinner .ytp-spinner-container {
        pointer-events: none;
        position: absolute;
        width: 100%;
        padding-bottom: 100%;
        top: 50%;
        left: 50%;
        margin-top: -50%;
        margin-left: -50%;
        -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
        animation: ytp-spinner-linspin 1568.23529647ms linear infinite; }
        .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
          position: absolute;
          width: 100%;
          height: 100%;
          -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
          animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
          .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            overflow: hidden;
            right: 50%; }
          .preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            left: 50%; }
    .preloader .loader .ytp-spinner-circle {
      box-sizing: border-box;
      position: absolute;
      width: 200%;
      height: 100%;
      border-style: solid;
      /* Spinner Color */
      border-color: #FF4367 #FF4367 #F4F5F7;
      border-radius: 50%;
      border-width: 6px; }
    .preloader .loader .ytp-spinner-left .ytp-spinner-circle {
      left: 0;
      right: -100%;
      border-right-color: #F4F5F7;
      -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
    .preloader .loader .ytp-spinner-right .ytp-spinner-circle {
      left: -100%;
      right: 0;
      border-left-color: #F4F5F7;
      -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
      animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes ytp-spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg); }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg); }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg); }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg); }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg); }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg); }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }
@keyframes ytp-spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
  25% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg); }
  37.5% {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg); }
  50% {
    -webkit-transform: rotate(540deg);
    -moz-transform: rotate(540deg);
    -ms-transform: rotate(540deg);
    -o-transform: rotate(540deg);
    transform: rotate(540deg); }
  62.5% {
    -webkit-transform: rotate(675deg);
    -moz-transform: rotate(675deg);
    -ms-transform: rotate(675deg);
    -o-transform: rotate(675deg);
    transform: rotate(675deg); }
  75% {
    -webkit-transform: rotate(810deg);
    -moz-transform: rotate(810deg);
    -ms-transform: rotate(810deg);
    -o-transform: rotate(810deg);
    transform: rotate(810deg); }
  87.5% {
    -webkit-transform: rotate(945deg);
    -moz-transform: rotate(945deg);
    -ms-transform: rotate(945deg);
    -o-transform: rotate(945deg);
    transform: rotate(945deg); }
  to {
    -webkit-transform: rotate(1080deg);
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -o-transform: rotate(1080deg);
    transform: rotate(1080deg); } }
@-webkit-keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); } }
@keyframes ytp-spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
    transform: rotate(130deg); } }
@-webkit-keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); } }
@keyframes ytp-right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg); } }
/*===========================
       02.HEADER css
===========================*/
/*===== Header Navbar =====*/
.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff; }
  .header_navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
    -moz-box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
    box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
    z-index: 99;
    -webkit-animation: sticky 1.5s;
    -moz-animation: sticky 1.5s;
    -o-animation: sticky 1.5s;
    animation: sticky 1.5s; }
    .header_navbar.sticky::before {
      display: none; }

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }
.navbar {
  padding: 0;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar {
      padding: 15px 0; } }
  @media (max-width: 767px) {
    .navbar {
      padding: 15px 0; } }

.navbar-brand img {
  max-width: 50%; }
@media (max-width: 767px) {
  .navbar-brand {
    width: 130px; } }

.navbar-toggler {
  padding: 0; }
  .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #222;
    display: block;
    margin: 5px 0;
    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; }
  .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; }
  .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0; }
  .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) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px; } }
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px; } }

.navbar-nav li {
  position: relative;
  margin: 0 20px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav li {
      margin: 0 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav li {
      margin: 0; } }
  @media (max-width: 767px) {
    .navbar-nav li {
      margin: 0; } }
  .navbar-nav li a {
    font-size: 16px;
    font-weight: 400;
    padding: 30px 0;
    color: #222;
    -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: 1199px) {
      .navbar-nav li a {
        padding: 30px 0; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav li a {
        display: block;
        padding: 6px 0; } }
    @media (max-width: 767px) {
      .navbar-nav li a {
        display: block;
        padding: 6px 0; } }
    .navbar-nav li a i {
      font-size: 16px;
      margin-left: 5px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar-nav li a i {
          display: none; } }
      @media (max-width: 767px) {
        .navbar-nav li a i {
          display: none; } }
    .navbar-nav li a .line {
      position: absolute;
      width: 80%;
      height: 2px;
      background-color: #FF4367;
      left: 0;
      bottom: 25px;
      opacity: 0; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar-nav li a .line {
          display: none; } }
      @media (max-width: 767px) {
        .navbar-nav li a .line {
          display: none; } }
      .navbar-nav li a .line::before, .navbar-nav li a .line::after {
        position: absolute;
        content: '';
        width: 3px;
        height: 2px;
        background-color: #FF4367;
        right: -5px; }
      .navbar-nav li a .line::after {
        right: -10px; }
    .navbar-nav li a.active {
      color: #FF4367; }
      .navbar-nav li a.active span {
        opacity: 1; }
    .navbar-nav li a .sub-nav-toggler {
      display: none; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar-nav li a .sub-nav-toggler {
          display: block;
          position: absolute;
          right: 0;
          top: 0;
          background: none;
          color: #6D7588;
          font-size: 16px;
          border: 0;
          width: 35px;
          height: 35px; } }
      @media (max-width: 767px) {
        .navbar-nav li a .sub-nav-toggler {
          display: block;
          position: absolute;
          right: 0;
          top: 0;
          background: none;
          color: #6D7588;
          font-size: 16px;
          border: 0;
          width: 35px;
          height: 35px; } }
      .navbar-nav li a .sub-nav-toggler span {
        width: 8px;
        height: 8px;
        border-left: 1px solid #222;
        border-bottom: 1px solid #222;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        position: relative;
        top: -5px; }
  .navbar-nav li:hover > a {
    color: #FF4367; }
  .navbar-nav li .sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 160px;
    background-color: #fff;
    border-top: 2px solid #FF4367;
    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;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
    -moz-box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
    box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15); }


  @media only screen and (min-width: 1900px )   {

        .container
        {
          min-width: 1340px
        }

  }


    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav li .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transition: all 0s ease-out 0s;
        -moz-transition: all 0s ease-out 0s;
        -ms-transition: all 0s ease-out 0s;
        -o-transition: all 0s ease-out 0s;
        transition: all 0s ease-out 0s; } }
    @media (max-width: 767px) {
      .navbar-nav li .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transition: all 0s ease-out 0s;
        -moz-transition: all 0s ease-out 0s;
        -ms-transition: all 0s ease-out 0s;
        -o-transition: all 0s ease-out 0s;
        transition: all 0s ease-out 0s; } }
    .navbar-nav li .sub-menu li {
      position: relative;
      margin: 0; }
      .navbar-nav li .sub-menu li a {
        padding: 8px 15px;
        -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;
        display: block;
        color: #3C4559;
        -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-size: 15px;
        font-weight: 400; }
        .navbar-nav li .sub-menu li a i {
          float: right; }
        .navbar-nav li .sub-menu li a.active {
          color: #fff;
          background-color: #FF4367; }
      .navbar-nav li .sub-menu li:hover > a {
        color: #fff;
        background-color: #FF4367; }
        .navbar-nav li .sub-menu li:hover > a .sub-nav-toggler span {
          border-left-color: #fff;
          border-bottom-color: #fff; }
      .navbar-nav li .sub-menu li .sub-menu {
        top: -2px;
        left: 100%; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navbar-nav li .sub-menu li .sub-menu {
            top: 0;
            left: 0;
            padding-left: 20px; } }
        @media (max-width: 767px) {
          .navbar-nav li .sub-menu li .sub-menu {
            top: 0;
            left: 0;
            padding-left: 20px; } }
  .navbar-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav li:hover > .sub-menu {
        top: 0; } }
    @media (max-width: 767px) {
      .navbar-nav li:hover > .sub-menu {
        top: 0; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar_btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); } }
@media (max-width: 767px) {
  .navbar_btn {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); } }
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .navbar_btn {
    right: 50px; } }
.navbar_btn ul li {
  display: inline-block; }
  .navbar_btn ul li + li {
    margin-left: 30px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .navbar_btn ul li + li {
        margin-left: 20px; } }
  .navbar_btn ul li .sign-up {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    background-color: #FF4367;
    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;
    font-size: 16px; }
    @media (max-width: 767px) {
      .navbar_btn ul li .sign-up {
        display: none; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .navbar_btn ul li .sign-up {
        display: block; } }
    .navbar_btn ul li .sign-up:hover {
      background-color: rgba(255, 67, 103, 0.7); }
.navbar_btn .dropdown a {
  padding: 28px 0;
  color: #222;
  font-size: 16px; }
  @media (max-width: 767px) {
    .navbar_btn .dropdown a {
      font-size: 14px;
      padding: 26px 0; } }
  .navbar_btn .dropdown a.dropdown-toggle {
    padding-right: 10px; }
    .navbar_btn .dropdown a.dropdown-toggle::after {
      width: 8px;
      height: 8px;
      border-left: 2px solid #222;
      border-bottom: 2px solid #222;
      border-top: 0;
      border-right: 0;
      right: -9px;
      position: relative;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
.navbar_btn .dropdown .dropdown-menu {
  padding: 0;
  border-radius: 0;
  border: 0;
  width: 190px;
  background-color: #fff;
  border-top: 2px solid #FF4367;
  -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;
  -webkit-box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
  -moz-box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
  box-shadow: 0px 10px 25px 0px rgba(34, 34, 34, 0.15);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%; }
  .navbar_btn .dropdown .dropdown-menu ul li {
    display: block; }
    .navbar_btn .dropdown .dropdown-menu ul li + li {
      margin-left: 0; }
    .navbar_btn .dropdown .dropdown-menu ul li a {
      padding: 8px 15px;
      -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;
      display: block;
      color: #3C4559;
      -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-size: 15px;
      font-weight: 400; }
      .navbar_btn .dropdown .dropdown-menu ul li a i {
        margin-right: 5px; }
      .navbar_btn .dropdown .dropdown-menu ul li a.active {
        color: #fff;
        background-color: #FF4367; }
    .navbar_btn .dropdown .dropdown-menu ul li:hover > a {
      color: #fff;
      background-color: #FF4367; }

/*===== Header Navbar transparent =====*/
.navbar_transparent::before {
  display: none; }
.navbar_transparent .navbar {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0; }
.navbar_transparent .navbar-toggler .toggler-icon {
  background-color: #fff; }
.navbar_transparent .navbar-nav {
  margin-right: 10px; }
  .navbar_transparent .navbar-nav li a {
    color: #fff; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar_transparent .navbar-nav li a {
        color: #3C4559; } }
    @media (max-width: 767px) {
      .navbar_transparent .navbar-nav li a {
        color: #3C4559; } }
    .navbar_transparent .navbar-nav li a.active {
      color: #FF4367; }
  .navbar_transparent .navbar-nav li:hover > a {
    color: #FF4367; }
  .navbar_transparent .navbar-nav li:last-child .sub-menu li .sub-menu {
    left: auto;
    right: 100%; }
.navbar_transparent.sticky .navbar-toggler .toggler-icon {
  background-color: #222; }
.navbar_transparent.sticky .navbar-nav li a {
  color: #3C4559; }
  .navbar_transparent.sticky .navbar-nav li a.active {
    color: #FF4367; }
.navbar_transparent.sticky .navbar-nav li:hover > a {
  color: #FF4367; }
.navbar_transparent.sticky .navbar-nav li .sub-menu li > a.active {
  color: #fff;
  background-color: #FF4367; }
.navbar_transparent.sticky .navbar-nav li .sub-menu li:hover > a {
  color: #fff;
  background-color: #FF4367; }

/*===== Header Navbar transparent =====*/
.navbar_transparent_2::before {
  display: none; }
.navbar_transparent_2 .navbar {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0; }

/*===== Header Content =====*/
.header_content {
  position: relative;
  z-index: 5;
  }
  .header_content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: -webkit-linear-gradient(left, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
    background: -o-linear-gradient(left, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%); }

.content_wrapper .title {
  font-size: 3.2em;
  line-height: 1em;
  font-weight: 400;
  color: #fff; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .content_wrapper .title {
      font-size: 50px; } }
  @media (max-width: 767px) {
    .content_wrapper .title {
      font-size: 30px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .content_wrapper .title {
      font-size: 40px; } }
.content_wrapper p {
  color: #fff;
  margin-top: 25px;
font-size: 1.4em;
line-height: 1.4em }
.content_wrapper .header_btn {
  margin-top: 45px; }
  .content_wrapper .header_btn li {
    display: inline-block; }
    .content_wrapper .header_btn li + li {
      margin-left: 15px; }

.header_search {
  background-color: #fff;
  background-color: #463CE5;
  padding: 5px 10px 20px;
  border-radius: 5px;
  margin-top: 70px; }
  .header_search .search_column {
    width: 50%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header_search .search_column {
        width: 100%; } }
    @media (max-width: 767px) {
      .header_search .search_column {
        width: 100%; } }
  .header_search .search_select {
    width: 100%;
    padding: 0 10px;
    position: relative; }
    @media (max-width: 767px) {
      .header_search .search_select {
        width: 100%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header_search .search_select {
        width: 50%; } }
    .header_search .search_select i {
      position: absolute;
      top: 50%;
      left: 25px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      color: #3C4559; }
    .header_search .search_select .nice-select {
      float: none;
      height: 50px;
      line-height: 50px;
      padding-left: 40px; }
      .header_search .search_select .nice-select::after {
        display: none; }
      .header_search .search_select .nice-select .current {
        line-height: 50px;
        font-size: 16px;
        color: #222; }
      .header_search .search_select .nice-select .list {
        width: 100%;
        border-radius: 3px; }
        .header_search .search_select .nice-select .list .option {
          min-height: 30px;
          line-height: 30px;
          font-size: 14px; }
  .header_search .search_form {
    padding: 0 10px;
    position: relative;
    width: 70%; }
    @media (max-width: 767px) {
      .header_search .search_form {
        width: 100%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header_search .search_form {
        width: 70%; } }
    .header_search .search_form input {
      width: 100%;
      height: 50px;
      padding: 25px;
      padding-left: 35px;
      border-radius: 5px;
      border: 0; }
      .header_search .search_form input::placeholder {
        opacity: 1;
        color: #222; }
      .header_search .search_form input::-moz-placeholder {
        opacity: 1;
        color: #222; }
      .header_search .search_form input::-moz-placeholder {
        opacity: 1;
        color: #222; }
      .header_search .search_form input::-webkit-input-placeholder {
        opacity: 1;
        color: #222; }
    .header_search .search_form i {
      position: absolute;
      top: 50%;
      left: 25px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
  .header_search .search_btn {
    width: 30%;
    padding: 0 10px;
    position: relative; }
    @media (max-width: 767px) {
      .header_search .search_btn {
        width: 100%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header_search .search_btn {
        width: 30%; } }
    .header_search .search_btn .main-btn {
      width: 100%; }

.header_keyword {
  padding: 5px 10px 0; }
  .header_keyword .title {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px; }
  @media (max-width: 767px) {
    .header_keyword .tags {
      margin-left: -15px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .header_keyword .tags {
      margin-left: 0; } }
  .header_keyword .tags li {
    margin-left: 18px;
    display: inline-block;
    margin-top: 10px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header_keyword .tags li {
        margin-left: 16px; } }
    @media (max-width: 767px) {
      .header_keyword .tags li {
        margin-left: 15px; } }
    .header_keyword .tags li a {
      font-size: 16px;
      color: #fff; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header_keyword .tags li a {
          font-size: 14px; } }
      @media (max-width: 767px) {
        .header_keyword .tags li a {
          font-size: 14px; } }

/*===== Page Banner =====*/
.page_banner {
  position: relative;
  z-index: 5;
  padding-top: 200px;
  padding-bottom: 125px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .page_banner {
      padding-top: 175px;
      padding-bottom: 95px; } }
  @media (max-width: 767px) {
    .page_banner {
      padding-top: 175px;
      padding-bottom: 95px; } }
  .page_banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: -webkit-linear-gradient(left, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
    background: -o-linear-gradient(left, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(103, 92, 255, 0.9) 40%, rgba(103, 92, 255, 0.3) 100%); }

.page_banner_content .title {
  font-size: 60px;
  font-weight: 700;
  color: #fff; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .page_banner_content .title {
      font-size: 44px; } }
  @media (max-width: 767px) {
    .page_banner_content .title {
      font-size: 32px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .page_banner_content .title {
      font-size: 38px; } }
.page_banner_content .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
  background: none;
  margin-top: 30px; }
  .page_banner_content .breadcrumb li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #fff; }
    @media (max-width: 767px) {
      .page_banner_content .breadcrumb li {
        font-size: 14px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .page_banner_content .breadcrumb li {
        font-size: 16px; } }
    .page_banner_content .breadcrumb li + li {
      margin-left: 50px; }
      @media (max-width: 767px) {
        .page_banner_content .breadcrumb li + li {
          margin-left: 20px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .page_banner_content .breadcrumb li + li {
          margin-left: 30px; } }
      .page_banner_content .breadcrumb li + li::before {
        position: absolute;
        content: '-';
        top: 0;
        left: -28px;
        color: #fff;
        line-height: 1;
        font-size: 24px; }
        @media (max-width: 767px) {
          .page_banner_content .breadcrumb li + li::before {
            left: -14px;
            font-size: 20px; } }
        @media only screen and (min-width: 576px) and (max-width: 767px) {
          .page_banner_content .breadcrumb li + li::before {
            left: -19px;
            font-size: 22px; } }
    .page_banner_content .breadcrumb li a {
      color: #fff; }

/*===========================
    03.CATeGORY css
===========================*/
.category_wrapper {
  margin-left: -15px;
  margin-right: -15px;
  position: relative; }

.category_btn {
  position: absolute;
  top: -60px;
  right: 0; }
  @media (max-width: 767px) {
    .category_btn {
      position: relative;
      top: 0;
      margin-top: 50px; } }

.category-column {
  padding-left: 15px;
  padding-right: 15px;
  width: 20%; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-column {
      width: 25%; } }
  @media (max-width: 767px) {
    .category-column {
      width: 50%; } }

.single_category {
  padding: 40px 30px;
  -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;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 9; }
  @media (max-width: 767px) {
    .single_category {
      padding: 20px 10px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_category {
      padding: 40px 30px; } }
  .single_category::before {
    position: absolute;
    z-index: -1;
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background-color: #FF4367;
    opacity: 0;
    filter: blur(10px);
    -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_category .icon i {
    font-size: 70px;
    color: #222;
    -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_category .content .title {
    color: #6D7588;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    -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) {
      .single_category .content .title {
        font-size: 14px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single_category .content .title {
        font-size: 16px; } }
  .single_category a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5; }
  .single_category:hover {
    background-color: #FF4367; }
    .single_category:hover::before {
      opacity: 0.5; }
    .single_category:hover .icon i {
      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_category:hover .content .title {
      color: #fff; }

/*===========================
    04.ADS CARD css
===========================*/
.tabs_menu .nav {
  background-color: #FF4367;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  border-radius: 5px;
  padding: 10px; }
  .tabs_menu .nav li {
    display: inline-block; }
    .tabs_menu .nav li a {
      padding: 0 25px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      border-radius: 5px;
      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;
      font-size: 16px; }
      @media (max-width: 767px) {
        .tabs_menu .nav li a {
          font-size: 14px;
          padding: 0 20px;
          height: 40px;
          line-height: 40px; } }
      .tabs_menu .nav li a.active {
        background-color: #fff;
        color: #3C4559; }

.single_ads_card {
  overflow: hidden;
  border-radius: 10px; }
  .single_ads_card .ads_card_image {
    position: relative;
    overflow: hidden; }
    .single_ads_card .ads_card_image .sticker {
      font-size: 12px;
      color: #fff;
      height: 30px;
      line-height: 30px;
      padding: 0 15px;
      border-radius: 3px;
      background-color: #00D1C1;
      position: absolute;
      top: 20px;
      left: 20px; }
      .single_ads_card .ads_card_image .sticker.sticker_color-1 {
        background-color: #463CE5; }
      .single_ads_card .ads_card_image .sticker.sticker_color-2 {
        background-color: #FF4367; }
    .single_ads_card .ads_card_image img {
      -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;
      width: 100%; }
  .single_ads_card .ads_card_content {
    background-color: #fff;
    padding: 10px 20px 20px; }
    .single_ads_card .ads_card_content .meta {
      border-bottom: 1px solid rgba(210, 210, 210, 0.8);
      padding-bottom: 10px;
      position: relative; }
      .single_ads_card .ads_card_content .meta::before {
        position: absolute;
        content: '';
        width: 50px;
        height: 1px;
        background-color: #FF4367;
        bottom: -1px;
        left: 0; }
      .single_ads_card .ads_card_content .meta p {
        margin-top: 10px; }
      .single_ads_card .ads_card_content .meta .like {
        font-size: 16px;
        color: #D2D2D2;
        margin-top: 10px; }
    .single_ads_card .ads_card_content .title a {
      font-size: 16px;
      font-weight: 500;
      color: #463CE5;
      margin-top: 20px;
      -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_ads_card .ads_card_content .title a:hover {
        color: #FF4367; }
    .single_ads_card .ads_card_content p {
      margin-top: 5px; }
      .single_ads_card .ads_card_content p i {
        margin-right: 8px; }
    .single_ads_card .ads_card_content .ads_price_date {
      padding-top: 10px; }
      .single_ads_card .ads_card_content .ads_price_date .price {
        font-size: 20px;
        font-weight: 700;
        color: #FF4367;
        margin-top: 10px; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .single_ads_card .ads_card_content .ads_price_date .price {
            font-size: 18px; } }
      .single_ads_card .ads_card_content .ads_price_date .date {
        margin-top: 10px;
        font-size: 16px;
        color: #D2D2D2; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .single_ads_card .ads_card_content .ads_price_date .date {
            font-size: 15px; } }
  .single_ads_card:hover .ads_card_image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  .single_ads_card.ads_list .ads_card_image img {
    height: 100%;
    object-fit: cover;
    object-position: center; }
    @media (max-width: 767px) {
      .single_ads_card.ads_list .ads_card_image img {
        width: 100%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single_ads_card.ads_list .ads_card_image img {
        width: 200px; } }
  .single_ads_card.ads_list .ads_card_content {
    padding: 10px 30px 20px; }

.published_wrapper {
  position: relative; }

.published_btn {
  position: absolute;
  top: -80px;
  right: 0; }
  @media (max-width: 767px) {
    .published_btn {
      position: relative;
      top: 0;
      margin-top: 50px; } }



/*===========================
      05.CHOOSE css
===========================*/
.choose_area {
  background-color: #fff;
  position: relative;
  padding-top: 80px;
  padding-bottom: 130px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose_area {
      padding-bottom: 0; } }
  @media (max-width: 767px) {
    .choose_area {
      padding-bottom: 0; } }

.choose_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: table; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .choose_image {
      position: relative;
      width: 720px;
      margin: 0 auto;
      padding-top: 50px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media (max-width: 767px) {
    .choose_image {
      position: relative;
      width: 100%;
      margin: 0 auto;
      padding-top: 50px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .choose_image {
      width: 540px; } }
  .choose_image .image {
    display: table-cell;
    vertical-align: bottom;
    padding-left: 50px; }

.choose_content .list {
  padding-top: 30px; }
  .choose_content .list li {
    margin-top: 15px;
    position: relative;
    padding-left: 35px; }
    .choose_content .list li i {
      width: 25px;
      height: 25px;
      line-height: 25px;
      border-radius: 4px;
      font-size: 14px;
      color: #fff;
      text-align: center;
      margin-right: 5px;
      position: absolute;
      top: 3px;
      left: 0; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .choose_content .list li i {
          width: 20px;
          height: 20px;
          line-height: 20px; } }
      @media (max-width: 767px) {
        .choose_content .list li i {
          width: 20px;
          height: 20px;
          line-height: 20px; } }
    .choose_content .list li:nth-child(3n+1) i {
      background-color: #463CE5; }
    .choose_content .list li:nth-child(3n+2) i {
      background-color: #FF4367; }
    .choose_content .list li:nth-child(3n+3) i {
      background-color: #00D1C1; }
.choose_content .main-btn {
  margin-top: 45px; }

/*===========================
      06.LOCATIONS css
===========================*/
.locations_wrapper {
  position: relative; }

.single_locations {
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  -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_locations .locations_image {
    overflow: hidden;
    border-radius: 10px; }
    .single_locations .locations_image img {
      -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;
      width: 100%; }
  .single_locations .locations_content {
    padding: 20px 25px;
    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; }
    .single_locations .locations_content .title a {
      font-size: 22px;
      font-weight: 700;
      color: #463CE5; }
      .single_locations .locations_content .title a i {
        margin-right: 5px; }
    .single_locations .locations_content p {
      margin-top: 10px;
      font-size: 14px; }
    .single_locations .locations_content .view {
      color: #FF4367;
      font-size: 14px;
      position: absolute;
      bottom: -20px;
      -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_locations .locations_content .view i {
        font-size: 16px;
        margin-left: 5px; }
  .single_locations:hover {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    -moz-box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8); }
    .single_locations:hover .locations_image img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
    .single_locations:hover .locations_content {
      padding-bottom: 60px; }
      .single_locations:hover .locations_content .view {
        bottom: 20px; }

.locations_btn {
  position: absolute;
  top: -80px;
  right: 0; }
  @media (max-width: 767px) {
    .locations_btn {
      position: relative;
      top: 0;
      margin-top: 50px; } }

/*===========================
      07.COUNTER css
===========================*/
.counter_area {
  padding-top: 400px; }

.counter_wrapper {
  background-color: #463CE5;
  padding: 25px;
  padding-top: 0;
  border-radius: 5px; }

.single_counter {
  padding-top: 25px; }
  @media (max-width: 767px) {
    .single_counter {
      width: 100%; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_counter {
      width: 33.33%; } }
  .single_counter .counter_items .counter_icon {
    padding-right: 10px; }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single_counter .counter_items .counter_icon img {
        width: 30px; } }
  .single_counter .counter_items .counter_count .count {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 50px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single_counter .counter_items .counter_count .count {
        font-size: 44px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .single_counter .counter_items .counter_count .count {
        font-size: 44px; } }
    @media (max-width: 767px) {
      .single_counter .counter_items .counter_count .count {
        font-size: 44px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single_counter .counter_items .counter_count .count {
        font-size: 32px;
        line-height: 32px; } }
  .single_counter p {
    font-size: 24px;
    color: #fff;
    margin-top: 10px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single_counter p {
        font-size: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .single_counter p {
        font-size: 20px; } }
    @media (max-width: 767px) {
      .single_counter p {
        font-size: 20px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single_counter p {
        font-size: 16px; } }

/*===========================
      08.SERVICES css
===========================*/
.single_services {
  -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;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 10px; }
  .single_services::before {
    position: absolute;
    z-index: -1;
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background-color: #FF4367;
    opacity: 0;
    filter: blur(10px);
    -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_services .services_icon i {
    color: #FF4367;
    -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-size: 46px; }
  .single_services .services_content {
    padding-left: 20px; }
    .single_services .services_content .title a {
      font-size: 24px;
      font-weight: 500;
      color: #3C4559;
      -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: 1199px) {
        .single_services .services_content .title a {
          font-size: 18px; } }
    .single_services .services_content p {
      margin-top: 10px;
      -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_services .services_content .more {
      font-size: 16px;
      font-weight: 500;
      color: #3C4559;
      -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-top: 10px; }
      .single_services .services_content .more i {
        margin-left: 5px;
        font-size: 18px; }
  .single_services:hover {
    background-color: #FF4367; }
    .single_services:hover::before {
      opacity: 0.5; }
    .single_services:hover .services_icon i {
      color: #fff; }
    .single_services:hover .services_content .title a {
      color: #fff; }
    .single_services:hover .services_content p {
      color: #fff; }
    .single_services:hover .services_content .more {
      color: #fff; }

/*===========================
      10.PRICIE css
===========================*/
.single_pricing {
  background-color: #fff;
  padding: 50px 70px;
  border-radius: 10px;
  margin-top: 30px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single_pricing {
      padding: 50px 40px; } }
  @media (max-width: 767px) {
    .single_pricing {
      padding: 50px 40px; } }
  .single_pricing .pricing_title {
    margin-top: 25px; }
    .single_pricing .pricing_title .title {
      font-size: 24px;
      font-weight: 700;
      color: #FF4367; }
    .single_pricing .pricing_title p {
      margin-top: 10px; }
  .single_pricing .pricing_content {
    margin-top: 20px; }
    .single_pricing .pricing_content p {
      line-height: 34px; }
    .single_pricing .pricing_content .price {
      font-size: 24px;
      font-weight: 500;
      color: #3C4559;
      margin-top: 15px; }
  .single_pricing .pricing_btn {
    margin-top: 30px; }
  .single_pricing.pricing_active {
    background-color: #FF4367;
    padding: 100px 70px;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    -moz-box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    position: relative; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single_pricing.pricing_active {
        padding: 80px 40px; } }
    @media (max-width: 767px) {
      .single_pricing.pricing_active {
        padding: 50px 40px; } }
    .single_pricing.pricing_active::before {
      position: absolute;
      z-index: -1;
      content: '';
      bottom: -10px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 80%;
      height: 90%;
      background-color: #FF4367;
      opacity: 0.8;
      filter: blur(10px);
      -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_pricing.pricing_active .pricing_title {
      margin-top: 25px; }
      .single_pricing.pricing_active .pricing_title .title {
        color: #fff; }
      .single_pricing.pricing_active .pricing_title p {
        color: #fff; }
    .single_pricing.pricing_active .pricing_content {
      margin-top: 20px; }
      .single_pricing.pricing_active .pricing_content p {
        color: #fff; }
      .single_pricing.pricing_active .pricing_content .price {
        color: #fff; }
    .single_pricing.pricing_active .pricing_btn {
      margin-top: 30px; }

/*===========================
      11.BLOG css
===========================*/
.single_blog {
  background-color: #fff;
  border-radius: 10px;
  overflow: 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; }
  .single_blog .blog_image {
    overflow: hidden;
    border-radius: 10px; }
    .single_blog .blog_image img {
      -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;
      width: 100%; }
  .single_blog .blog_content {
    padding: 25px; }
    .single_blog .blog_content .title a {
      font-size: 16px;
      font-weight: 500;
      color: #463CE5;
      -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 .title a:hover {
        color: #FF4367; }
    .single_blog .blog_content .meta {
      margin-top: 20px; }
      .single_blog .blog_content .meta li {
        display: inline-block;
        font-size: 16px;
        color: #6D7588; }
        .single_blog .blog_content .meta li + li {
          margin-left: 20px; }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .single_blog .blog_content .meta li + li {
              margin-left: 15px; } }
          @media (max-width: 767px) {
            .single_blog .blog_content .meta li + li {
              margin-left: 15px; } }
        .single_blog .blog_content .meta li a {
          color: #6D7588;
          margin-left: 5px; }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .single_blog .blog_content .meta li a {
              font-size: 14px; } }
          @media (max-width: 767px) {
            .single_blog .blog_content .meta li a {
              font-size: 14px; } }
  .single_blog:hover {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    -moz-box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8);
    box-shadow: 0px 10px 30px 0px rgba(210, 210, 210, 0.8); }
    .single_blog:hover .blog_image img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }

/*===========================
    12.CALL TO ACTION css
===========================*/
.call_to_action_area {
  background-color: #fff; }

.call_to_action_content .title {
  font-size: 40px;
  font-weight: 600; }
  @media (max-width: 767px) {
    .call_to_action_content .title {
      font-size: 28px; } }

.call_to_action_form {
  padding-right: 200px;
  position: relative; }
  @media (max-width: 767px) {
    .call_to_action_form {
      padding-right: 0; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .call_to_action_form {
      padding-right: 200px; } }
  .call_to_action_form i {
    position: absolute;
    top: 30px;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .call_to_action_form input {
    width: 100%;
    height: 60px;
    border: 1px solid #D2D2D2;
    border-radius: 5px;
    padding: 0 45px; }
  .call_to_action_form .main-btn {
    width: 170px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: 0;
    right: 0; }
    @media (max-width: 767px) {
      .call_to_action_form .main-btn {
        position: relative;
        margin-top: 10px;
        width: 100%; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .call_to_action_form .main-btn {
        position: absolute;
        margin-top: 0;
        width: 170px; } }

/*===========================
    13.FOOTER css
===========================*/
.footer_link .link {
  padding-top: 10px; }
  .footer_link .link li {
    margin-top: 10px; }
    .footer_link .link li a {
      font-size: 16px;
      font-weight: 400;
      color: #6D7588;
      -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; }
      .footer_link .link li a:hover {
        color: #FF4367;
        padding-left: 10px; }

.footer_title {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer_title {
      font-size: 24px; } }
  @media (max-width: 767px) {
    .footer_title {
      font-size: 24px; } }
  .footer_title::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 1px;
    background-color: #FF4367;
    bottom: 0;
    left: 0; }

.footer_copyright {
  background-color: #222; }

.copyright p, .copyright a {
  color: #fff; }

.payment ul li {
  display: inline-block;
font-size:22px }

.payment ul li a
{
  color: white;
}

  .payment ul li + li {
    margin-left: 10px; }

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 24px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 35px;
  border-radius: 5px;
  background-color: #FF4367;
  text-align: center;
  z-index: 99;
  -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;
  display: none; }
  .back-to-top:hover {
    color: #fff;
    background-color: #FF4367; }

/*===========================
       14.ABOUT css
===========================*/
.about_area {
  background-color: #fff; }

.about_image {
  height: 550px;
  width: 100%;
  border-radius: 10px; }
  @media (max-width: 767px) {
    .about_image {
      height: 450px; } }

.about_content {
  padding-left: 30px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_content {
      padding-left: 0; } }
  @media (max-width: 767px) {
    .about_content {
      padding-left: 0; } }
  .about_content .title {
    font-size: 50px;
    font-weight: 400; }
    @media (max-width: 767px) {
      .about_content .title {
        font-size: 34px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about_content .title {
        font-size: 40px; } }
    .about_content .title span {
      font-weight: 700; }
  .about_content p {
    margin-top: 25px; }
  .about_content .signechar {
    padding-left: 70px;
    margin-top: 40px; }
    .about_content .signechar .name {
      font-size: 18px;
      font-weight: 500;
      color: #FF4367;
      position: relative; }
      .about_content .signechar .name::before {
        position: absolute;
        content: '';
        width: 50px;
        height: 1px;
        background-color: #FF4367;
        left: -70px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%); }
    .about_content .signechar img {
      margin-top: 15px; }

/*===== About 2 =====*/
.about_area_2 {
  background-color: #fff; }

.about_content_2 .title {
  font-size: 46px;
  font-weight: 400; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_content_2 .title {
      font-size: 40px; } }
  @media (max-width: 767px) {
    .about_content_2 .title {
      font-size: 32px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .about_content_2 .title {
      font-size: 38px; } }
  .about_content_2 .title span {
    font-weight: 700; }
.about_content_2 p {
  margin-top: 25px; }
.about_content_2 .about_items {
  margin-top: 25px; }
  .about_content_2 .about_items .items_title {
    font-size: 30px;
    font-weight: 400; }
    @media (max-width: 767px) {
      .about_content_2 .about_items .items_title {
        font-size: 24px; } }
  .about_content_2 .about_items p {
    margin-top: 10px; }

.about_image_2 {
  position: relative; }
  .about_image_2 .image_1 {
    padding-left: 70px; }
    @media (max-width: 767px) {
      .about_image_2 .image_1 {
        padding-left: 0; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about_image_2 .image_1 {
        padding-left: 50px; } }
    .about_image_2 .image_1 img {
      width: 100%;
      border-radius: 10px; }
  .about_image_2 .image_2 {
    position: relative;
    margin-top: -20px;
    padding-right: 120px; }
    @media (max-width: 767px) {
      .about_image_2 .image_2 {
        padding-right: 0;
        margin-top: 0; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about_image_2 .image_2 {
        padding-right: 70px;
        margin-top: -20px; } }
    .about_image_2 .image_2 .about_counter {
      background-color: #FF4367;
      padding: 20px;
      border-radius: 10px;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      text-align: center; }
      .about_image_2 .image_2 .about_counter .count {
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        line-height: 45px; }
      .about_image_2 .image_2 .about_counter p {
        color: #fff;
        margin-top: 5px; }
    .about_image_2 .image_2 img {
      width: 100%;
      border-radius: 10px; }


/*===========================
      25.CONTACT PAGE css
===========================*/
.contact_map {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff; }
  .contact_map .gmap_canvas iframe {
    width: 100%;
    height: 400px; }

.contact_form {
  padding: 20px;
  padding-top: 0;
  border-radius: 10px;
  background-color: #fff; }

.contact_title {
  padding-top: 10px; }
  .contact_title .title {
    font-size: 18px;
    font-weight: 700;
    color: #3C4559;
    border-bottom: 1px solid rgba(210, 210, 210, 0.4);
    position: relative;
    padding: 10px 0; }
    .contact_title .title::before {
      position: absolute;
      content: '';
      width: 3px;
      height: 15px;
      background-color: #FF4367;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      top: 50%;
      left: -20px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .contact_title .title::before {
          left: -15px; } }

.form-message {
  margin-left: 15px; }
  .form-message.error, .form-message.success {
    font-size: 16px;
    color: #222;
    background-color: #fff;
    padding: 10px 15px;
    margin-top: 15px;
    background-color: #F4F5F7; }
  .form-message.error {
    color: #f00; }

.contact_form_wrapper .single_form {
  margin-top: 20px;
  position: relative; }
  .contact_form_wrapper .single_form textarea, .contact_form_wrapper .single_form input {
    width: 100%;
    height: 50px;
    padding: 0 25px;
    padding-left: 40px;
    border-radius: 5px;
    border: 1px solid #BCC1CE;
    -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; }
    .contact_form_wrapper .single_form textarea:focus, .contact_form_wrapper .single_form input:focus {
      border-color: #FF4367; }
  .contact_form_wrapper .single_form i {
    position: absolute;
    top: 17px;
    left: 15px;
    font-size: 16px;
    color: #6D7588; }
  .contact_form_wrapper .single_form textarea {
    resize: none;
    padding-top: 10px;
    height: 175px; }

.contact_info {
  padding: 20px;
  padding-top: 0;
  border-radius: 10px;
  background-color: #fff; }

.contact_info p {
  padding-top: 20px; }

.single_info {
  margin-top: 20px; }
  .single_info .info_icon i {
    font-size: 18px;
    color: #FF4367;
    padding-top: 4px; }
  .single_info .info_content {
    padding-left: 15px; }
    .single_info .info_content p {
      padding-top: 0; }

/*# sourceMappingURL=style.css.map */
