@charset "UTF-8";

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  background: #fff;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: #77adb7;
}

a {
    text-decoration: none !important;
}

.single-select {
  position: relative;
}
.single-select input[type="checkbox"] {
  visibility: hidden;
}
.single-select > label {
  background: #FAFAFA;
  cursor: pointer;
  height: 18px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 18px;
  border: 1px solid #D8D8D8;
  margin-bottom: 0;
}
.single-select > label:before {
  content: "";
  color: #686868;
  font-family: fontawesome;
  font-size: 12px;
  left: 2px;
  position: absolute;
  top: -5px;
}
.single-select input[type="checkbox"]:checked + label::before {
  opacity: 1;
  content: "\f00c";
  color: #73adb8;
}
.single-select > span {
  display: inline-block;
  padding-left: 5px;
}

option {
  background: #fff;
  border: none;
  padding: 5px 15px 5px 15px;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

*::-moz-selection {
  background: #73adb8;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #73adb8;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #73adb8;
  color: #fff;
  text-shadow: none;
}

span.tooltip-content {
  color: #333333;
  cursor: help;
  font-weight: 600;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* Back-to-top */
#scrollUp {
  z-index: 999;
  position: fixed;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin: 0px;
  color: #fff !important;
  position: fixed;
  bottom: 0px;
  right: 30px;
  border-radius: 4px 4px 0px 0px;
  background: #73adb8;
  font-size: 18px;
  width: 45px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

#scrollUp:hover {
  height: 40px;
  line-height: 40px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.ptb-125 {
  padding-top: 125px;
  padding-bottom: 125px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mtb-110 {
  margin: 110px 0;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-70 {
  margin-top: 70px;
}

/* Helper Class*/
.pos-absolute {
  position: absolute;
}

.pos-relative {
  position: relative;
}

.text-white {
  color: #fff;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
  color: #fff;
}

.text-primary {
  color: #73adb8;
}
.text-primary h1, .text-primary h2, .text-primary h3, .text-primary h4, .text-primary h5, .text-primary h6 {
  color: #73adb8;
}

.text-black {
  color: #000;
}

/*Colored background*/
.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-gray {
  background: #FBFBFB;
}

.bg-yellow {
  background-color: #FF7200;
}

.bg-dark {
  background: #171717;
}

.bg-transparent {
  background: transparent !important;
}

/*image background*/
.bg-image {
  background-clip: initial;
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: initial;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.bg-img-fixed {
  background-attachment: fixed;
}

/* Custom class */
.contaienr {
  padding: 0 5px;
}

.row {
  margin: 0 -5px;
}

div[class^=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

.space_pd_15 {
  margin: 0 -15px;
}
.space_pd_15 > div[class^=col-] {
  padding: 0 15px;
}

.shadow__black {
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.shadow--theme {
  -webkit-box-shadow: 0px 10px 15px rgba(255, 90, 96, 0.4);
  -moz-box-shadow: 0px 10px 15px rgba(255, 90, 96, 0.4);
  -ms-box-shadow: 0px 10px 15px rgba(255, 90, 96, 0.4);
  -o-box-shadow: 0px 10px 15px rgba(255, 90, 96, 0.4);
  box-shadow: 0px 10px 15px rgba(255, 90, 96, 0.4);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.shadow--yellow {
  -webkit-box-shadow: 0px 12px 15px rgba(248, 199, 5, 0.2);
  -moz-box-shadow: 0px 12px 15px rgba(248, 199, 5, 0.2);
  -ms-box-shadow: 0px 12px 15px rgba(248, 199, 5, 0.2);
  -o-box-shadow: 0px 12px 15px rgba(248, 199, 5, 0.2);
  box-shadow: 0px 12px 15px rgba(248, 199, 5, 0.2);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.bg_gradient {
  position: relative;
}
.bg_gradient:before {
  background: linear-gradient(to top, #37a000, #37a000, #37a000, rgba(55, 160, 0, 0.9), rgba(55, 160, 0, 0.75), rgba(55, 160, 0, 0.6), rgba(55, 160, 0, 0.4), rgba(55, 160, 0, 0.2), rgba(55, 160, 0, 0)) repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 55%;
  left: 0;
  position: absolute;
  width: 100%;
}

.pos-vertical-middle {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.tb {
  display: table;
  height: 100%;
  width: 100%;
}
.tb > .tb-cell {
  display: table-cell;
  vertical-align: middle;
}

.col-full-width {
  margin: 0 auto;
  float: none;
}

.bg_overlay {
  position: relative;
}
.bg_overlay:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.area_bottom_button > .btn-default {
  margin-top: 60px;
}

.image_effect {
  overflow: hidden;
}
.image_effect > img {
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -ms-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}

@media only screen and (max-width: 1199px) {
  .ptb-110 {
    padding-bottom: 85px;
    padding-top: 85px;
  }

  .mtb-110 {
    margin-top: 85px;
    margin-bottom: 85px;
  }

  .mb-100 {
    margin-bottom: 70px;
  }

  .mb-110 {
    margin-bottom: 70px;
  }

  .pt-110 {
    padding-top: 85px;
  }
}
@media only screen and (max-width: 991px) {
  .ptb-110 {
    padding-bottom: 75px;
    padding-top: 75px;
  }

  .mtb-110 {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .pt-110 {
    padding-top: 75px;
  }

  .area_bottom_button > .btn-default {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 24px;
  }

  p {
    margin-bottom: 20px;
  }
}
/* Section title*/
.section_title {
  padding-bottom: 55px;
}
.section_title .title__heading {
  font-size: 45px;
  position: relative;
  margin: 0;
}
.section_title .title__subtitle {
  font-size: 18px;
  font-weight: 500;
  padding: 0 60px;
}
.section_title .title__subtitle.subtitle--smfont {
  font-size: 14px;
}

/* Page Header Area */
.page_heading_area {
  background-attachment: fixed;
}
.page_heading_area:after {
  background-color: rgba(255, 48, 0, 0.9);
}
.page_heading_area .page_title {
  padding: 80px 0;
}
.page_heading_area .page_title > h1 {
  color: #fff;
  display: inline-block;
  font-size: 45px;
  font-weight: normal;
  position: relative;
}
.page_heading_area .page_title > h1:before {
  background-color: #fff;
  content: "";
  height: 5px;
  position: absolute;
  right: -100px;
  top: 54%;
  width: 75px;
}

/* Headline */
.headline {
  font-size: 45px;
  line-height: 60px;
  margin-bottom: 20px;
  margin-top: -10px;
  text-transform: capitalize;
}

@media only screen and (max-width: 1199px) {
  .page_heading_area .page_title {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 991px) {
  .section_title {
    padding-bottom: 40px;
  }

  .page_heading_area .page_title {
    padding: 20px 0;
  }
  .page_heading_area .page_title > h1 {
    font-size: 40px;
  }
  .page_heading_area .page_title > h1:before {
    right: -65px;
    width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section_title {
    padding-bottom: 30px;
  }
  .section_title .title__heading {
    font-size: 32px;
  }

  .page_heading_area .page_title {
    padding: 0px;
  }
  .page_heading_area .page_title > h1 {
    font-size: 32px;
    margin: 0;
  }
}
@media only screen and (max-width: 479px) {
  .section_title {
    padding-bottom: 20px;
  }
  .section_title .title__heading {
    font-size: 30px;
  }
}
/*Button styles*/
.btn-default {
  background-color: #555;
  border: 0px solid !important;
  border-radius: 0;
  color: #fff !important;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 50px;
  line-height: 46px;
  opacity: 1;
  overflow: hidden;
  padding: 0 30px;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  display: -webkit- inline-flex;
  display: -moz- inline-flex;
  display: -ms- inline-flex;
  display: -o- inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  z-index: 1;
}
.btn-default > i.fa {
  margin-left: 5px;
  font-size: 12px;
  margin-top: 2px;
}
.btn-default > span {
  font-size: 30px;
  padding-right: 8px;
}
.btn-default:before, .btn-default:after {
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #73adb8;
  content: "";
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -ms-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
  z-index: -1;
}
.btn-default:after {
  left: 0;
}
.btn-default:before {
  right: 0;
}

.btn-transparent {
  background-color: transparent;
  border: 2px solid #fff !important;
}

.btn-primary {
  background-color: #73adb8;
  border-color: #73adb8 !important;
}

.btn-subcribe {
  height: inherit;
}

.btn-loadmore {
  padding: 15px 45px;
  -webkit-box-shadow: 0px 10px 8px rgba(255, 48, 0, 0.4);
  -moz-box-shadow: 0px 10px 8px rgba(255, 48, 0, 0.4);
  -ms-box-shadow: 0px 10px 8px rgba(255, 48, 0, 0.4);
  -o-box-shadow: 0px 10px 8px rgba(255, 48, 0, 0.4);
  box-shadow: 0px 10px 8px rgba(255, 48, 0, 0.4);
  font-family: "Patua One", cursive;
  color: #fff !important;
}
.btn-loadmore i {
  padding-right: 8px;
}

.readmore {
  color: #73adb8 !important;
  text-transform: uppercase;
  font-family: "Patua One", cursive;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.readmore:hover {
  color: #000 !important;
}

.btn-default:hover, .btn-default:focus {
  color: #fff !important;
}
.btn-default:hover:before, .btn-default:hover:after, .btn-default:focus:before, .btn-default:focus:after {
  width: 51%;
}

.btn-transparent:hover, .btn-transparent:focus {
  color: #73adb8 !important;
}
.btn-transparent:hover:before, .btn-transparent:hover:after, .btn-transparent:focus:before, .btn-transparent:focus:after {
  background-color: #fff !important;
}

.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
}
.btn-primary:hover:before, .btn-primary:hover:after, .btn-primary:focus:before, .btn-primary:focus:after {
  background-color: #333 !important;
}

.bg-dark .area_bottom_button .btn-default {
  background-color: #73adb8;
  border-color: #73adb8 !important;
}
.bg-dark .area_bottom_button > .btn-default:hover {
  color: #73adb8 !important;
}
.bg-dark .area_bottom_button > .btn-default:hover:before, .bg-dark .area_bottom_button > .btn-default:hover:after {
  background-color: #fff !important;
  border-color: #fff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .down-button-group {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .down-button-group .btn-default {
    margin: 0 5px;
    padding: 12px 35px;
  }
}
@media only screen and (max-width: 479px) {
  .down-button-group {
    text-align: center;
  }
  .down-button-group a {
    padding: 0px;
  }
  .down-button-group a:last-child {
    padding-top: 15px;
  }
}
/*Header styles*/
header {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-box-shadow: 21px 21px 21px rgba(242, 108, 79, 0.05);
  -moz-box-shadow: 21px 21px 21px rgba(242, 108, 79, 0.05);
  -ms-box-shadow: 21px 21px 21px rgba(242, 108, 79, 0.05);
  -o-box-shadow: 21px 21px 21px rgba(242, 108, 79, 0.05);
  box-shadow: 21px 21px 21px rgba(242, 108, 79, 0.05);
  position: relative;
  z-index: 5;
  background-color: #fff;
}
header .logo-menu-wrap {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
}
header .logo-menu-wrap .logo {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
header .logo-menu-wrap .menu {
  margin-right: -15px;
}
header .logo-menu-wrap .menu > ul {
  margin: 0;
}
header .logo-menu-wrap .menu > ul > li {
  display: inline-block;
  padding: 42px 22px;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  margin: 0 -2px -1px;
}
header .logo-menu-wrap .menu > ul > li:hover {
  background-color: #73adb8;
}

.active {
  background-color: #73adb8;
}

.active > a {
  color: #fff !important;
}

header .logo-menu-wrap .menu > ul > li:hover a {
  color: #fff;
}

header .logo-menu-wrap .menu > ul > li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #73adb8;
}
header .logo-menu-wrap .menu > ul > li.current {
  background-color: #73adb8;
}
header .logo-menu-wrap .menu > ul > li.current > a {
  color: #fff !important;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content {
  position: absolute;
  width: 200px;
  left: 0;
  top: 100%;
  z-index: 999999;
  border-top: 5px solid #73adb8;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  transform-origin: 0 0 0;
  margin-left: 0;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content li {
  padding: 0;
  display: block;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content li a {
  background: #fff;
  display: block;
  padding: 7px 15px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 400;
  color: #333333;
  font-size: 14px;
  letter-spacing: 0.05em;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content li:hover > a {
  color: #73adb8;
  padding-left: 20px;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content li:last-child a {
  border-bottom: none;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content .dropdown-trigger {
  position: relative;
}
header .logo-menu-wrap .menu > ul > li .dropdown-content .dropdown-trigger > .dropdown-content {
  position: absolute;
  top: 0;
  border-top: 0 solid;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
header .logo-menu-wrap .menu > ul > li.dropdown-trigger:hover > .dropdown-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
header .logo-menu-wrap .menu > ul > li.dropdown-trigger:hover > .dropdown-content > .dropdown-trigger:hover ul.dropdown-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
header .logo-menu-wrap .menu > ul > li.dropdown-trigger > a:after {
  content: "\f107";
  font-family: fontAwesome;
  padding-left: 5px;
}

.mega-menu-content {
  background-color: #fff;
  padding: 20px 5px;
  width: 580px !important;
}
.mega-menu-content > li {
  border-right: 1px solid #e5e5e5;
  float: left;
  width: 33.33%;
}
.mega-menu-content > li:nth-child(3n) {
  border-right: 0px solid;
}
.mega-menu-content > li > a {
  border-bottom: 0 solid !important;
  padding: 5px 15px !important;
}
.mega-menu-content > li > a:hover {
  padding-left: 20px !important;
}

#sticky-header {
  background-color: #fff;
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
}
#sticky-header .logo-menu-wrap {
  min-height: 80px;
}
#sticky-header .logo-menu-wrap .menu > ul > li {
  padding: 27px 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .logo-menu-wrap {
    min-height: 90px;
  }
  header .logo-menu-wrap .menu ul li {
    padding: 33px 15px;
  }
  header .logo-menu-wrap .menu ul li ul.dropdown-content {
    top: 100% !important;
  }
  header .logo-menu-wrap .menu ul li ul.dropdown-content li {
    padding: 0;
  }
  header .logo-menu-wrap .menu ul li ul.dropdown-content .dropdown-trigger > .dropdown-content {
    top: 0 !important;
  }

  #sticky-header .logo-menu-wrap .menu > ul > li {
    padding: 27px 15px;
  }

  .mega-menu-content {
    width: 550px !important;
  }
  .mega-menu-content > li > a {
    padding: 5px 10px !important;
  }
  .mega-menu-content > li > a:hover {
    padding-left: 15px !important;
  }
}
@media only screen and (max-width: 991px) {
  header {
    background: #fff !important;
  }
  header .container {
    width: 100%;
    padding: 0 15px;
  }
  header .mean-container .mean-bar {
    min-height: 75px;
  }
  header .mean-container .mean-bar:nth-child(2) {
    display: none;
  }
  header .mean-container a.meanmenu-reveal {
    padding: 37px 0 10px;
  }
  header .mean-container .mean-nav {
    margin-top: 90px;
  }

  .mega-menu-content {
    width: 100% !important;
  }
  .mega-menu-content li {
    border-right: 0px solid;
  }
  .mega-menu-content li > a {
    width: 85% !important;
    padding: 10px 40px !important;
  }
  .mega-menu-content li > a:hover {
    padding-left: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .mean-container .mean-nav ul li a {
    width: 92%;
  }
  .mean-container .mean-nav ul li li a {
    padding: 10px 30px;
    width: 85%;
  }
  .mean-container .mean-nav ul li li li a {
    padding: 10px 60px;
    width: 75%;
  }

  .mega-menu-content li > a {
    padding: 10px 30px !important;
  }
  .mega-menu-content li > a:hover {
    padding-left: 30px !important;
  }
}
@media only screen and (max-width: 350px) {
  header .mean-container .mean-bar {
    min-height: 50px;
  }
  header .mean-container a.meanmenu-reveal {
    padding: 25px 0 10px;
  }
  header .mean-container .mean-nav {
    margin-top: 65px;
  }
}
/*Slider styles*/
.slider {
  position: relative;
}
.slider .slider_inner .slider_item {
  height: 870px;
  position: relative;
}
.slider .slider_inner .slider_item .slider_bg_thumb {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 1.5s;
  -moz-transition: transform 1.5s;
  -ms-transition: transform 1.5s;
  -o-transition: transform 1.5s;
  transition: transform 1.5s;
}
.slider .slider_inner .slider_item .slider_bg_thumb.bg_gradient:before {
  height: 90%;
  background: transparent linear-gradient(to top, rgba(55, 160, 0, 0.9), rgba(55, 160, 0, 0.75), rgba(55, 160, 0, 0.6), rgba(55, 160, 0, 0.4), rgba(55, 160, 0, 0.2), rgba(55, 160, 0, 0)) repeat scroll 0 0;
}
.slider .slider_inner .slider_item:after {
  background-color: rgba(0, 0, 0, 0.4);
}
.slider .slider_inner .slider_item .container {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  align-items: center;
  height: 100%;
}
.slider .slider_inner .slider_item .container .row {
  width: 100%;
}
.slider .slider_inner .slider_item .slider_content {
  padding: 0 5px;
}
.slider .slider_inner .slider_item .slider_content .slider_title {
  color: #fff;
  font-size: 70px;
  margin: 200px 0 25px;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.slider .slider_inner .slider_item .slider_content p {
  font-size: 18px;
  margin-bottom: 35px;
  margin-top: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.slider .slider_inner .slider_item .slider_content .btn-default {
  margin-top: 30px;
  color: #73adb8 !important;
  background-color: #fff;
  font-size: 18px;
  padding: 0 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.slider .slider_inner .slider_item .slider_content .btn-default:hover, .slider .slider_inner .slider_item .slider_content .btn-default:focus {
  color: #fff !important;
}
.slider .slider_inner .slider_item .slider_content.freelencer_info {
  border: 3px solid #fff;
  padding: 50px 0 60px;
}
.slider .slider_inner .slider_item .slider_content.freelencer_info .slider_title {
  line-height: 75px;
  margin-bottom: 14px;
}
.slider .slider_inner .slider_item .slider_content.freelencer_info .slider_subtitle {
  letter-spacing: 0.16em;
  margin-bottom: 27px;
}
.slider .slider_inner .slider_item .slider_content.freelencer_info .slider_social_share {
  left: auto;
  margin-bottom: 0;
  position: relative;
  top: auto;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.slider .slider_inner .slider_item .slider_content.freelencer_info .slider_social_share > li {
  display: inline-block;
  margin: 0 7px;
}
.slider .slider_inner .slider_item .slider_content.freelencer_info .slider_social_share > li > a {
  color: #333333;
  margin: 0;
}
.slider .slider_inner .slider_item .slider_content.freelencer_info .slider_social_share > li > a:hover {
  color: #fff;
}
.slider .slider_inner.theme_blue .slider_item:after {
  background-color: rgba(27, 20, 100, 0.8);
}
.slider .slider_inner.theme_primary .slider_item:after {
  background-color: rgba(255, 48, 0, 0.8);
}

.slider .slider_inner .owl-dots,
.slider .slider_inner .slick-dots,
.slider .center-slider .owl-dots,
.slider .center-slider .slick-dots {
  right: 160px;
  position: absolute;
  top: 50%;
  width: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider .slider_inner .owl-dots > .owl-dot,
.slider .slider_inner .slick-dots > li > button,
.slider .center-slider .owl-dots > .owl-dot,
.slider .center-slider .slick-dots > li > button {
  background-color: transparent;
  border: 3px solid #fff;
  display: block;
  height: 24px;
  margin: 25px auto;
  width: 24px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.slider .slider_inner .owl-dots > .owl-dot.active,
.slider .slider_inner .slick-dots > li.slick-active > button,
.slider .center-slider .owl-dots > .owl-dot.active,
.slider .center-slider .slick-dots > li.slick-active > button {
  background-color: #73adb8;
}
.slider .slider_inner .owl-item.active .slider_item .slider_bg_thumb,
.slider .center-slider .owl-item.active .slider_item .slider_bg_thumb {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.slider .slider_inner .owl-item.active .slider_item .slider_title,
.slider .slider_inner .owl-item.active .slider_item .slider_subtitle,
.slider .slider_inner .owl-item.active .slider_item .btn-default,
.slider .center-slider .owl-item.active .slider_item .slider_title,
.slider .center-slider .owl-item.active .slider_item .slider_subtitle,
.slider .center-slider .owl-item.active .slider_item .btn-default {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

/*Slider Social Share*/
.slider_social_share {
  left: 160px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  list-style: outside none none;
}
.slider_social_share > li {
  display: block;
}
.slider_social_share > li > a {
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #73adb8;
  display: block;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  margin: 20px 0;
  text-align: center;
  width: 50px;
  -webkit-box-shadow: 0 0 27px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0 0 27px rgba(0, 0, 0, 0.26);
  -ms-box-shadow: 0 0 27px rgba(0, 0, 0, 0.26);
  -o-box-shadow: 0 0 27px rgba(0, 0, 0, 0.26);
  box-shadow: 0 0 27px rgba(0, 0, 0, 0.26);
}
.slider_social_share > li > a:hover {
  background-color: #73adb8;
  color: #fff;
}
.slider_social_share.shadow_blue > li > a {
  -webkit-box-shadow: 0 0 21px rgba(64, 199, 255, 0.26);
  -moz-box-shadow: 0 0 21px rgba(64, 199, 255, 0.26);
  -ms-box-shadow: 0 0 21px rgba(64, 199, 255, 0.26);
  -o-box-shadow: 0 0 21px rgba(64, 199, 255, 0.26);
  box-shadow: 0 0 21px rgba(64, 199, 255, 0.26);
}

/*Slider Style Two*/
.slider.slider-style-two > .slider_inner {
  width: calc(100% - 290px);
  margin: 0 auto;
}
.slider.slider-style-two > .slider_inner .slider_item .container {
  width: 100%;
}
.slider.slider-style-two > .slider_inner .slider_item .container .row {
  display: flex;
  align-items: center;
}
.slider.slider-style-two > .slider_inner .slider_item .slider_content .slider_title {
  text-transform: uppercase;
  line-height: 1.22em;
}
.slider.slider-style-two > .slider_inner .slider_item .slider_content .slider_title span {
  color: #fecb00;
}
.slider.slider-style-two > .slider_inner .owl-dots {
  right: -82px;
}
.slider.slider-style-two > .slider_inner .owl-dots > .owl-dot {
  border-color: #F1F1F1;
}
.slider.slider-style-two > .slider_inner .owl-dots > .owl-dot.active {
  border-color: #73adb8;
}
.slider.slider-style-two .slider_social_share {
  left: 50%;
  margin-left: calc(-50% + 52px);
}
.slider.slider-style-two .slider_social_share > li > a {
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  margin: 15px 0;
  width: 40px;
}

/*Slider Style Three*/
.slider.slider-style-three > .slider_inner {
  background-color: #73adb8;
}
.slider.slider-style-three > .slider_inner .slider_item .slider_content .slider_title {
  padding-left: 30px;
}

/*Center Slider Style*/
.center-slider .slick-track {
  margin: 50px 0;
}

.slider .center-slider .slick-dots {
  padding: 0px;
  list-style: none;
  right: -82px;
}
.slider .center-slider .slick-dots > li > button {
  font-size: 0;
  border: 2px solid #f1f1f1;
}
.slider .center-slider .slick-dots > li.slick-active > button {
  border-color: #73adb8;
}

.center-slider {
  padding-top: 30px;
  margin: 0 auto -20px;
  width: calc(100% - 290px);
}
.center-slider .single-item img {
  width: 100%;
}
.center-slider .single-item.slick-slide.slick-cloned.slick-active, .center-slider .single-item.slick-slide.slick-active {
  transform: scale(1);
  transition: ease-in-out 0.3s;
}
.center-slider .single-item.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.15);
  transition: ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}
.center-slider .single-item.slick-slide {
  transform: scale(0.95);
  transition: ease-in-out 0.3s;
}
.center-slider + .slider_social_share {
  top: 53%;
}

@media only screen and (max-width: 1599px) {
  .slider .slider_inner .slider_item {
    height: 450px;
  }
  .slider .slider_inner .owl-dots {
    right: 30px;
  }
  .slider .slider_inner .slider_content.freelencer_info .slider_title {
    line-height: 1.1em;
  }

  .slider_social_share {
    left: 30px;
  }

  .slider.slider-style-two > .slider_inner {
    width: calc(100% - 150px);
  }
  .slider.slider-style-two > .slider_inner .slider_item .container {
    width: 100%;
  }
  .slider.slider-style-two > .slider_inner .owl-dots {
    right: -50px;
  }
  .slider.slider-style-two .slider_social_share {
    margin-left: calc(-50% + 17px);
  }
  .slider.slider-style-two .center-slider {
    width: calc(100% - 150px);
  }
  .slider.slider-style-two .center-slider .slick-dots {
    right: -50px;
  }

  .slider.slider-style-three > .slider_inner .slider_item .slider_content .slider_title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .slider .slider_inner .slider_item {
    height: 600px;
  }
  .slider .slider_inner .slider_item .slider_content .slider_title {
    font-size: 56px;
    margin-bottom: 20px;
  }

  .slider.slider-style-three > .slider_inner .slider_item .slider_content .slider_title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .slider .slider_inner .slider_item {
    height: 520px;
  }
  .slider .slider_inner .slider_item .slider_content .slider_title {
    font-size: 52px;
    margin-bottom: 15px;
  }
  .slider .slider_inner .slider_item .slider_content p {
    margin-bottom: 30px;
  }
  .slider .slider_inner .slider_item .slider_content.freelencer_info {
    padding: 35px 0 45px;
  }
  .slider .slider_inner .slider_item .slider_content.freelencer_info .slider_title {
    margin-bottom: 0;
  }
  .slider .slider_inner .slider_item .slider_content.freelencer_info .slider_social_share > li {
    margin: 0 4px;
  }
  .slider .slider_inner .owl-dots {
    right: 15px;
  }
  .slider .slider_inner .owl-dots > .owl-dot {
    border: 2px solid #fff;
    height: 20px;
    margin: 15px auto;
    width: 20px;
  }

  .slider_social_share {
    left: 15px;
  }
  .slider_social_share > li > a {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    margin: 10px 0;
    width: 40px;
  }

  .slider-style-two > .slider_inner .owl-dots {
    right: -50px;
  }
  .slider-style-two > .slider_inner .owl-dots > .owl-dot {
    border: 3px solid #f1f1f1;
  }

  .slider.slider-style-three > .slider_inner .slider_item .slider_content .slider_title {
    font-size: 35px;
    padding-left: 0;
  }

  .slider.slider-style-two .center-slider {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slider_social_share {
    display: none;
  }

  .slider .slider_inner .slider_item {
    height: 450px;
  }
  .slider .slider_inner .slider_item .slider_content .slider_title {
    font-size: 44px;
  }
  .slider .slider_inner .slider_item .slider_content p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .slider .slider_inner .slider_item .slider_content.freelencer_info {
    border: 0px solid;
  }
  .slider .slider_inner .slider_item .slider_content.freelencer_info .slider_social_share {
    display: block;
  }

  .slider .slider_inner .owl-dots,
  .slider .slider_inner .slick-dots,
  .slider .center-slider .owl-dots,
  .slider .center-slider .slick-dots {
    bottom: 15px;
    position: absolute;
    right: 0;
    top: auto;
    text-align: center;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    width: 100%;
  }
  .slider .slider_inner .owl-dots > .owl-dot,
  .slider .slider_inner .slick-dots > li,
  .slider .center-slider .owl-dots > .owl-dot,
  .slider .center-slider .slick-dots > li {
    display: inline-block;
    margin: 0 5px;
  }

  .slider.slider-style-two > .slider_inner {
    width: 100%;
  }
  .slider.slider-style-two > .slider_inner .owl-dots {
    right: 0px;
  }

  .slider.slider-style-two > .center-slider {
    width: 100%;
  }

  .slider.slider-style-three > .slider_inner .slider_item .slider_content {
    text-align: center;
  }
  .slider.slider-style-three > .slider_inner .slider_item .slide-thumb {
    display: none;
  }
  .slider.slider-style-three > .slider_inner .owl-dots > .owl-dot {
    border-color: #F1F1F1;
  }
  .slider.slider-style-three > .slider_inner .owl-dots > .owl-dot.active {
    border-color: #fff;
    background-color: #fff;
  }

  .slider.slider-style-two .center-slider .slick-dots {
    position: relative;
    margin-top: 15px;
    right: 0;
  }
  .slider.slider-style-two .center-slider .slick-dots li > button {
    margin: 0;
  }
}
@media only screen and (max-width: 600px) {
  .slider .slider_inner .slider_item .slider_content .slider_title {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .slider .slider_inner .slider_item .slider_content .slider_title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .slider.slider-style-three > .slider_inner .slider_item .slider_content .slider_title {
    font-size: 28px;
  }
}
/*Video styles*/
.video:after {
  background-color: rgba(0, 0, 0, 0.5);
}
.video.bg-image .video__inner {
  min-height: 600px;
}
.video .video__inner {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video .video__inner a {
  line-height: 80px;
  height: 92px;
  width: 92px;
  font-size: 36px;
  color: #fff;
  background: #73adb8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  border: 6px solid #fff;
  z-index: 2;
}
.video .video__inner a:hover:after, .video .video__inner a:hover:before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  opacity: 0;
  visibility: visible;
  z-index: 1;
}
.video .video__inner a i {
  padding-left: 7px;
}
.video .video__inner a:before, .video .video__inner a:after {
  content: "";
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
  left: 0;
  opacity: 1;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  position: absolute;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
  border-radius: 100%;
  z-index: 1;
  visibility: hidden;
}
.video .video__inner a:after {
  -webkit-transition: all 1s ease-out 0.3s;
  -moz-transition: all 1s ease-out 0.3s;
  -ms-transition: all 1s ease-out 0.3s;
  -o-transition: all 1s ease-out 0.3s;
  transition: all 1s ease-out 0.3s;
}

/*Video style Two*/
.video_style_two {
  position: relative;
}
.video_style_two .video_area_inner {
  height: inherit;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video_style_two .video_area_inner .container > .row {
  display: flex;
  align-items: center;
  min-height: 770px;
}
.video_style_two .video_text_content > h2 {
  font-size: 45px;
  line-height: 60px;
  margin: 0;
}
.video_style_two .video_bg {
  min-height: 770px;
  width: calc(50% + 190px);
  overflow: hidden;
}
.video_style_two .video_bg:after {
  background-color: rgba(0, 0, 0, 0.5);
}
.video_style_two .video_bg:before {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: -140px;
  top: 0;
  -webkit-transform: rotate(15deg) scale(1.5);
  -moz-transform: rotate(15deg) scale(1.5);
  -ms-transform: rotate(15deg) scale(1.5);
  -o-transform: rotate(15deg) scale(1.5);
  transform: rotate(15deg) scale(1.5);
  width: 235px;
  z-index: 1;
}
.video_style_two.theme_blue .video_bg:after {
  background-color: rgba(46, 49, 146, 0.8);
}
.video_style_two.theme_blue .video_text_content > h2 {
  text-transform: uppercase;
  font-size: 43px;
}

/*Video style Three*/
.video_style_three:after {
  background-color: rgba(0, 0, 0, 0.5);
}
.video_style_three .video__inner {
  min-height: 800px;
}

@media only screen and (max-width: 1199px) {
  .video.bg-image .video__inner,
  .video_style_two .video_bg,
  .video_style_two .video_area_inner .container > .row {
    min-height: 500px;
  }

  .video_style_two .video_text_content > h2 {
    font-size: 38px;
    line-height: 50px;
  }
  .video_style_two.theme_blue .video_text_content > h2 {
    font-size: 34px;
  }

  .video_style_three .video__inner {
    min-height: 600px;
  }
}
@media only screen and (max-width: 991px) {
  .video.bg-image .video__inner,
  .video_style_two .video_bg,
  .video_style_two .video_area_inner .container > .row {
    min-height: 450px;
  }

  .video_style_two .video_text_content > h2 {
    font-size: 30px;
    line-height: 45px;
  }
  .video_style_two.theme_blue .video_text_content > h2 {
    font-size: 26px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .video .video__inner {
    min-height: 380px;
  }
  .video .video__inner > a {
    border: 4px solid #fff;
    font-size: 30px;
    height: 70px;
    line-height: 65px;
    width: 70px;
  }

  .video_style_two .video_bg {
    width: 100%;
  }
  .video_style_two .video_bg:before {
    width: 0;
  }
  .video_style_two .video_text_content {
    display: none;
  }

  .video_style_two .video_bg,
  .video_style_two .video_area_inner .container > .row {
    min-height: 400px;
  }
}
@media only screen and (max-width: 479px) {
  .video.bg-image .video__inner {
    min-height: 300px;
  }

  .video_style_two .video_bg,
  .video_style_two .video_area_inner .container > .row {
    min-height: 350px;
  }
}
/*Layouts styles*/
.page-section {
  margin-bottom: 200px;
}

.full_width > .container {
  width: calc(100% - 260px);
}

.working_area,
.services_content,
.skill_and_inquiry_area > .container {
  overflow: hidden;
}

.services-style-four {
  overflow: visible;
}

/*List Stule Circle*/
ul.list_style_circle {
  margin-bottom: 20px;
  list-style: none;
}
ul.list_style_circle > li {
  font-weight: bold;
  margin-bottom: 7px;
  padding-left: 25px;
  position: relative;
}
ul.list_style_circle > li:before {
  border: 3px solid red;
  border-radius: 50%;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 15px;
}

/*List Style Check*/
.list_style_check {
  list-style: outside none none;
  margin-top: 50px;
}
.list_style_check > li {
  border: 1px solid #f2f2f2;
  font-weight: 500;
  line-height: 24px;
  margin: 10px 0;
  padding: 10px 20px 14px 63px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.list_style_check > li:before {
  color: #73adb8;
  content: "";
  font-family: Flaticon;
  font-size: 30px;
  left: 20px;
  position: absolute;
  top: 20px;
}
.list_style_check > li:hover {
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.09);
}

/*Avalabile Area */
.avalabile_area:after {
  background-color: rgba(0, 0, 0, 0.7);
}
.avalabile_area.theme_blue:after {
  background-color: rgba(46, 49, 146, 0.9);
}
.avalabile_area .avalabile_content {
  padding: 55px 0;
}
.avalabile_area .avalabile_content > h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 0 0 15px;
}
.avalabile_area .avalabile_content .headline {
  margin-top: 0;
}
.avalabile_area .avalabile_content > .btn-primary {
  margin-top: 5px;
}

/*Professional Skill Area */
.skill_and_inquiry_area > .container {
  margin-bottom: -30px;
  margin-top: -20px;
}

.professional_skill_area {
  padding: 40px 50px 25px;
  margin-top: 20px;
}
.professional_skill_area .section_title {
  padding-bottom: 12px;
}

.single_skill {
  margin-bottom: 23px;
}
.single_skill h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.single_skill h3 > span {
  color: #73adb8;
  float: right;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
  margin-top: 4px;
}
.single_skill .progress {
  background-color: #E6E6E6;
  border-radius: 0px;
  box-shadow: 0 1px 2px transparent inset;
  height: 10px;
  overflow: visible;
}
.single_skill .progress .progress-bar {
  background-color: #73adb8;
  border-radius: inherit;
  position: relative;
  transition: width 0.5s ease-in-out 0s;
  z-index: 0;
}

/* Project Inquiry & Get Touch area */
.project_inquiry_area {
  padding: 40px 50px 50px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.project_inquiry_area .section_title {
  padding-bottom: 35px;
}
.project_inquiry_area .default_form .form-group {
  margin-bottom: 12px;
  overflow: hidden;
}
.project_inquiry_area .default_form .form-group > .single-select {
  float: left;
  margin: 5px 0;
  width: 33.33%;
}
.project_inquiry_area .default_form .form-group > .single-select > span {
  font-size: 14px;
}
.project_inquiry_area .default_form .form-group textarea {
  min-height: 160px;
}
.project_inquiry_area .form-group-btn > .btn-default {
  margin-top: 17px;
}

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  font-family: fontawesome;
  position: absolute;
  text-align: center;
  width: 100%;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: "";
}

.ui-datepicker .ui-datepicker-next:before {
  content: "";
}

.get_touch_area .default_form .form-group textarea {
  min-height: 125px !important;
}

.booking_area > .container {
  margin-bottom: -30px;
}

.top_right_owl_bots {
  position: relative;
}
.top_right_owl_bots .owl-dots {
  margin: 0 -4px;
  position: absolute;
  right: 0;
  top: -75px;
}
.top_right_owl_bots .owl-dots > div {
  background-color: #e7e7e7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 13px;
  margin: 0 4px;
  width: 13px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.top_right_owl_bots .owl-dots > div.active {
  background-color: #73adb8;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* Brand area */
.brand_clients_area .section_title {
  padding-bottom: 35px;
}

.brand_carousel {
  margin-bottom: -15px;
}
.brand_carousel .owl-item {
  padding: 25px 0px;
  display: table;
  width: 100%;
  height: 200px;
}
.brand_carousel .owl-item .single_brand {
  padding: 35px 0;
  display: table-cell;
  vertical-align: middle;
}
.brand_carousel .owl-item .single_brand img {
  width: auto !important;
  margin: 0 auto;
  opacity: 0.5;
  -webkit-transition: linear 0.2s;
  -moz-transition: linear 0.2s;
  -ms-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  transition: linear 0.2s;
}
.brand_carousel .owl-item .single_brand:hover img {
  opacity: 1;
}

/* Fashion Photography area */
.fashion_photography_area {
  position: relative;
}
.fashion_photography_area .fashion_photography_thumb {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 48%;
}

.f_photography_carousel {
  min-height: 500px;
}
.f_photography_carousel.top_right_owl_bots .owl-dots {
  top: auto;
  bottom: 10px;
}
.f_photography_carousel.top_right_owl_bots .owl-dots > div {
  background-color: #333333;
}
.f_photography_carousel.top_right_owl_bots .owl-dots > div.active {
  background-color: #fff;
}

.photography_block > .btn {
  margin-top: 25px;
}

/* Wrok Process area */
.work_process_area:after {
  background-color: rgba(27, 20, 100, 0.9);
}
.work_process_area .title__heading {
  margin-bottom: 15px;
  font-size: 60px;
}
.work_process_area .process_list {
  position: relative;
}
.work_process_area .process_list:before {
  background-color: #FF7200;
  bottom: 35px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: calc(100% - 10px);
}

.single_process .icon::before {
  font-size: 50px;
}
.single_process > h3 {
  font-size: 22px;
  margin: 25px 0 45px;
}
.single_process .number {
  background-color: #FF7200;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: block;
  font-size: 30px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  width: 70px;
  font-weight: bold;
  font-family: "Fira Sans", sans-serif;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
}
.single_process:hover .number {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* Pricint Table area */
.pricing_table_area .container {
  margin-bottom: -30px;
}

.single_pricing {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.single_pricing:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 7px;
  background-color: #333;
  width: 70%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.single_pricing .pricing_title {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #333333;
  font-size: 22px;
  font-weight: bold;
  line-height: 45px;
  margin: 0;
  padding: 0 75px 0 165px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 45px;
  -webkit-transform: rotate(-33deg) translateX(-50%);
  -moz-transform: rotate(-33deg) translateX(-50%);
  -ms-transform: rotate(-33deg) translateX(-50%);
  -o-transform: rotate(-33deg) translateX(-50%);
  transform: rotate(-33deg) translateX(-50%);
  transform-origin: left top 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.single_pricing .pricing_body {
  padding: 80px 25px 20px;
}
.single_pricing .pricing_body > ul {
  list-style: outside none none;
}
.single_pricing .pricing_body > ul > li {
  line-height: 27px;
}
.single_pricing .pricing_body > ul > li:before {
  color: #73adb8;
  content: "";
  font-family: fontawesome;
  font-size: 14px;
  padding: 0 8px;
}
.single_pricing .pricing_footer {
  background-color: #333333;
  padding: 35px 0 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.single_pricing .pricing_footer > h2 {
  color: #fff;
  font-size: 73px;
  font-weight: 400;
  margin: 0 0 20px;
}
.single_pricing .pricing_footer > h2 > span {
  font-size: 18px;
}
.single_pricing .pricing_footer .btn-default {
  background-color: #fff;
  border-color: #fff !important;
  color: #333 !important;
  font-size: 18px;
  padding: 0 43px;
}
.single_pricing .pricing_footer .btn-default:focus, .single_pricing .pricing_footer .btn-default:hover {
  color: #fff !important;
}
.single_pricing:hover:before, .single_pricing.active:before {
  background-color: #73adb8;
}
.single_pricing:hover .pricing_title,
.single_pricing:hover .pricing_footer, .single_pricing.active .pricing_title,
.single_pricing.active .pricing_footer {
  background-color: #73adb8;
}
.single_pricing:hover .btn-default:hover:before, .single_pricing:hover .btn-default:hover:after,
.single_pricing:hover .btn-default:focus:before,
.single_pricing:hover .btn-default:focus:after, .single_pricing.active .btn-default:hover:before, .single_pricing.active .btn-default:hover:after,
.single_pricing.active .btn-default:focus:before,
.single_pricing.active .btn-default:focus:after {
  background-color: #333;
}

/* Fan Fact area */
.fanfact_area_inner {
  margin-top: -255px;
  z-index: 9;
  position: relative;
}

.single_fan_fact {
  background-color: #73adb8;
  color: #fff;
  padding: 25px 15px 35px;
}
.single_fan_fact > p {
  font-size: 22px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.single_fan_fact > h2 {
  color: #fff;
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.fanfact_area .row {
  margin: 0;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.fanfact_area .row > .col-md-4 {
  padding: 0;
}
.fanfact_area .row > .col-md-4:nth-child(2) .single_fan_fact {
  background-color: #FF7200;
  padding: 75px 15px;
}
.fanfact_area .row > .col-md-4:nth-child(3) .single_fan_fact {
  background-color: #FFB000;
}

/* Appointment Area */
.appointment_area .section_title {
  padding-bottom: 35px;
}
.appointment_area .default_form .form-group textarea {
  min-height: 150px;
}
.appointment_area .project_inquiry_area {
  padding-bottom: 40px;
}
.appointment_area .about_thumbnil {
  position: relative;
  margin-top: 20px;
  display: inline-block;
  text-align: center;
}
.appointment_area .about_thumbnil .info {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  background-color: #333333;
  padding: 50px 15px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.appointment_area .about_thumbnil .info > h3 {
  font-size: 24px;
  margin-bottom: 12px;
  margin-top: 0;
}
.appointment_area .about_thumbnil .info > p {
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.appointment_area .about_thumbnil:hover img {
  opacity: 0.8;
}
.appointment_area .about_thumbnil:hover .info {
  background-color: #73adb8;
}

/* Design area */
.good-design-area {
  position: relative;
  min-height: 640px;
}
.good-design-area .title__subtitle {
  padding-left: 0px;
  color: #191b32;
  padding-right: 90px;
}
.good-design-area .design-image-group {
  bottom: 0;
  position: absolute;
  right: 0;
  width: 50%;
}
.good-design-area .design-image-group > img {
  float: left;
}
.good-design-area .design-image-group > img:nth-child(1) {
  width: 40%;
}
.good-design-area .design-image-group > img:nth-child(2) {
  margin-top: 120px;
  width: 60%;
}
.good-design-area .design-area-content {
  padding-right: 40px;
  margin-top: -10px;
}
.good-design-area .design-area-content > .btn-default {
  margin-top: 45px;
}

/* home about area */
.home-about-area .home-about-content .single-work {
  margin-bottom: 30px;
}
.home-about-area .home-about-content .single-work > img {
  width: 100%;
}
.home-about-area .home-about-content .single-work > .work-overlay {
  background-color: transparent;
}
.home-about-area .home-about-content .single-work:hover > .work-overlay {
  background-color: rgba(34, 36, 144, 0.7);
}

/* Choose Area */
.choose-area-content {
  margin-top: 20px;
}

.single-choose-one {
  font-family: "Patua One", cursive;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 45px 40px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.single-choose-one > .icon {
  background-color: #f2e4ea;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  height: 60px;
  line-height: 63px;
  text-align: center;
  width: 60px;
}
.single-choose-one > h3 {
  color: #494754;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin: 30px 0 13px;
}
.single-choose-one:hover {
  -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}

/* Contact page */
.contact_form {
  padding: 45px;
  margin-top: -15px;
}
.contact_form .form-group {
  overflow: hidden;
}
.contact_form .form-controllar {
  border: 1px solid #eeeeee !important;
}
.contact_form .single-select {
  float: left;
  width: 25%;
  margin: 5px 0;
}
.contact_form .form-group-btn {
  margin-top: 30px;
}

/* Client Carousel */
#client-carousel .single-logo > img {
  margin: 0 auto;
  width: auto;
}

.left-nav-container + .wrapper .slider.slider--style-2.bg-image {
  background-position: center center;
}
.left-nav-container + .wrapper .header-area {
  display: none;
}

/* analysis Area */
.analysis-box {
  padding: 0px 30px;
}
.analysis-box h2 {
  font-size: 80px;
  font-weight: 300;
  margin-top: 0;
  color: #181b31;
  margin-bottom: 10px;
}
.analysis-box h4 {
  font-size: 18px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  color: #333;
}
.analysis-box h4:before {
  background-color: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 35px;
}
.analysis-box p {
  font-weight: lighter;
}

/* Skill Area */
.single-skill {
  padding-bottom: 40px;
}
.single-skill:last-child {
  padding-bottom: 0px;
}
.single-skill > h3 {
  color: #353535;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
  position: relative;
  text-transform: uppercase;
}
.single-skill > h3 > span {
  position: absolute;
  right: 0;
  top: 0;
}
.single-skill .progress-bar {
  background: #ccc none repeat scroll 0 0;
  box-shadow: 0 0 0;
  height: 2px;
  margin: 0 0 20px;
  position: relative;
  width: 100%;
}
.single-skill .progress-bar > span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 100%;
  width: 0;
}

/* Video player styles */
.yu2fvl-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}

.yu2fvl {
  z-index: 9999;
}
.yu2fvl iframe.yu2fvl-iframe {
  border: none !important;
  outline: none;
}
.yu2fvl .yu2fvl-close {
  background: #FF7200 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  cursor: pointer;
  height: 40px;
  left: 100%;
  position: absolute;
  right: auto;
  top: 0;
  width: 40px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  padding: 0;
}
.yu2fvl .yu2fvl-close:hover {
  opacity: .8;
}

/* Google Map */
#gmaps {
  height: 650px;
}

/* Error Page Styles */
.error_content > h2 {
  color: #73adb8;
  font-size: 100px;
  margin: 0 0 5px;
}
.error_content > h3 {
  color: #ff7200;
  font-size: 45px;
  margin: 0 0 25px;
}
.error_content > p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1599px) {
  .full_width > .container {
    width: calc(100% - 120px);
  }

  .list_style_check {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .full_width > .container {
    width: calc(100% - 120px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .professional_skill_area {
    padding: 40px 25px 25px;
  }

  .project_inquiry_area {
    padding: 40px 25px;
  }
  .project_inquiry_area .default_form .form-group textarea {
    min-height: 130px;
  }
  .project_inquiry_area .default_form .form-group > .single-select {
    width: 50%;
  }

  .single_pricing .pricing_body {
    padding: 85px 15px 15px;
  }
  .single_pricing .pricing_body > ul > li {
    font-size: 14px;
  }
  .single_pricing .pricing_footer {
    padding: 25px 0 30px;
  }
  .single_pricing .pricing_footer > h2 {
    font-size: 60px;
    margin: 0 0 15px;
  }

  .full_width .portfolio_thumb_list > div.col-md-3 {
    width: 33.33%;
  }
  .full_width .portfolio_thumb_list > div.col-md-3:nth-child(16) {
    display: none;
  }

  .contact_form .single-select {
    width: 33%;
  }
  .contact_form .single-select > span {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 1599px) {
  .professional_skill_area {
    padding: 35px 25px 10px;
  }

  .project_inquiry_area {
    padding: 35px 25px;
  }

  .booking_form_area {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .top_right_owl_bots .owl-dots {
    top: -73px;
  }

  .page-section {
    margin-bottom: 175px;
  }

  .fanfact_area .row > .col-md-4:nth-child(2) .single_fan_fact {
    padding: 55px 15px;
  }

  .fanfact_area_inner {
    margin-top: -190px;
  }

  .single_fan_fact {
    padding: 20px 15px;
  }
  .single_fan_fact > h2 {
    font-size: 40px;
  }
  .single_fan_fact > p {
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .work_process_area .title__heading {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .work_process_area .process_list::before {
    bottom: 30px;
  }

  .single_process > h3 {
    font-size: 22px;
    margin: 15px 0 35px;
  }
  .single_process .number {
    font-size: 24px;
    height: 60px;
    line-height: 60px;
    width: 60px;
  }

  .fashion_photography_area .fashion_photography_thumb {
    display: none;
  }
  .fashion_photography_area .f_photography_carousel {
    min-height: auto;
  }
  .fashion_photography_area .photography_block > .btn {
    margin-top: 10px;
  }

  .avalabile_area .avalabile_content {
    padding: 25px 0;
  }

  .full_width > .container {
    width: calc(100% - 120px);
  }

  .error_content > h2 {
    font-size: 70px;
  }
  .error_content > h3 {
    font-size: 32px;
    margin: 0 0 10px;
  }
  .error_content > p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .contact_form {
    padding: 30px;
  }
  .contact_form .single-select > span {
    font-size: 14px;
    padding-left: 0px;
  }

  #gmaps {
    height: 500px;
  }

  .list_style_check {
    margin-bottom: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 570px;
  }

  .top_right_owl_bots .owl-dots {
    top: -52px;
  }

  ul.list_style_circle > li {
    margin-bottom: 5px;
  }

  .single_skill h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .single_skill h3 > span {
    font-size: 14px;
  }
  .single_skill .progress {
    height: 6px;
  }

  .project_inquiry_area .section_title {
    padding-bottom: 25px;
  }

  .project_inquiry_area .default_form .form-group > .single-select {
    width: 50%;
  }
  .project_inquiry_area .default_form .form-group > .single-select > span {
    font-size: 15px;
  }
  .project_inquiry_area .default_form .form-group textarea {
    min-height: 130px;
  }

  .fanfact_area .row > .col-md-4:nth-child(2) .single_fan_fact {
    padding: 35px 15px;
  }

  .fanfact_area_inner {
    margin-top: -165px;
  }

  .single_fan_fact {
    padding: 5px 15px;
  }
  .single_fan_fact > h2 {
    font-size: 30px;
  }
  .single_fan_fact > p {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .work_process_area {
    padding-bottom: 40px;
  }
  .work_process_area .title__heading {
    font-size: 32px;
  }
  .work_process_area .process_list::before {
    height: 0;
  }

  .single_process {
    padding: 10px 0 15px;
  }
  .single_process .number {
    display: none;
  }

  .brand_clients_area .section_title {
    padding-bottom: 25px;
  }

  .headline {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  .appointment_area .about_thumbnil .info {
    padding: 30px 15px;
  }

  .full_width > .container {
    width: 570px;
  }
  .full_width > .container .work_thumb > img {
    width: 100%;
  }

  .contact_form {
    margin-top: 0;
  }
  .contact_form .single-select {
    width: 50%;
    margin: 3px 0;
  }
  .contact_form .form-group-btn {
    margin-top: 20px;
  }

  #gmaps {
    height: 450px;
  }
}
@media only screen and (max-width: 600px) {
  .container,
  .full_width > .container {
    width: 480px;
  }

  .single_fan_fact {
    padding: 5px 15px;
  }
  .single_fan_fact > h2 {
    font-size: 24px;
  }
  .single_fan_fact > p {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .top_right_owl_bots .owl-dots {
    position: static;
    text-align: center;
  }
  .top_right_owl_bots .owl-dots > div {
    margin: 0 3px;
  }

  .brand_clients_area .section_title {
    padding-bottom: 15px;
  }

  .headline {
    font-size: 30px;
  }

  .pricing_table_area .row > .col-md-3 {
    width: 100%;
  }

  .single_pricing {
    width: 70%;
    margin: 0 auto 30px;
  }

  .list_style_check > li {
    margin: 7px 0;
    padding: 10px 15px 14px 50px;
  }

  .list_style_check > li::before {
    font-size: 22px;
    left: 15px;
    top: 15px;
  }

  .skill_and_inquiry_area > .container {
    margin-top: 0;
  }
}
@media only screen and (max-width: 479px) {
  .container,
  .full_width > .container {
    width: 100% !important;
  }

  .professional_skill_area,
  .project_inquiry_area {
    padding: 25px 15px;
  }

  .project_inquiry_area .default_form .form-group > .single-select {
    width: 100%;
  }

  .fanfact_area {
    display: none;
  }

  .work_process_area .title__heading {
    font-size: 28px;
  }
  .work_process_area .process_list > div {
    width: 100%;
  }

  .single_pricing {
    width: 100%;
  }
  .single_pricing .pricing_footer {
    padding: 25px 0 30px;
  }
  .single_pricing .pricing_footer > h2 {
    font-size: 60px;
    margin: 0 0 15px;
  }

  .avalabile_area .avalabile_content {
    padding: 0;
  }

  .error_content > h2 {
    font-size: 60px;
  }
  .error_content > h3 {
    font-size: 28px;
  }

  .contact_form {
    padding: 15px;
  }
  .contact_form .single-select {
    width: 100%;
  }
  .contact_form .single-select > span {
    font-size: 16px;
    padding-left: 3px;
  }
}
/*Biography Area styles*/
.biography_area_inner {
  margin: -110px auto 0;
  width: 1545px;
  z-index: 9;
  position: relative;
}

.biography-area.mtb-110 .biography_area_inner {
  margin: 0 auto;
}

.biography-area .biography_content .biography_title {
  font-size: 45px;
  font-weight: normal;
  margin-bottom: 25px;
  margin-top: -10px;
}
.biography-area .biography_content .biography_title > span {
  background-color: #73adb8;
  color: #fff;
  display: inline-block;
  padding: 0 5px;
}
.biography-area .biography_content > p {
  line-height: 25px;
}
.biography-area .biography_content .btn {
  margin-top: 15px;
}
.biography-area .biography_midea {
  overflow: hidden;
  text-align: right;
  display: inline-block;
}
.biography-area .biography_midea:hover 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);
  opacity: 0.9;
}
.biography-area .biography_midea.bg_gradient:before {
  height: 50%;
  z-index: 1;
}
.biography-area .biography_midea .about_info {
  border: 3px solid #fff;
  bottom: 65px;
  left: 70px;
  padding: 25px 15px;
  position: absolute;
  text-align: center;
  width: calc(100% - 140px);
  z-index: 2;
}
.biography-area .biography_midea .about_info > h3 {
  margin: 0 0 10px;
}
.biography-area .biography_midea .about_info > p {
  margin-bottom: 0;
}

/*Profile List*/
.profile_list {
  margin: 40px 0;
}
.profile_list .porfile_block {
  color: #73adb8;
  padding: 28px 15px 20px;
  text-align: center;
}
.profile_list .porfile_block > h3 {
  color: #73adb8;
  font-size: 45px;
  margin-bottom: 6px;
}
.profile_list .porfile_block > p {
  font-size: 18px;
  font-weight: bold;
}

/*Biography Area styles Two*/
.biography_style_two {
  margin-bottom: -30px;
}
.biography_style_two .biography_content .biography_title {
  margin-bottom: 30px;
}
.biography_style_two .profile_list {
  margin-top: 45px;
}
.biography_style_two .profile_list .porfile_block {
  background-color: #fff;
  padding: 28px 15px 17px;
}
.biography_style_two .biography_video > .video__inner {
  border: 5px solid #fff;
  height: calc(100% - 80px);
  left: 40px;
  top: 40px;
  width: calc(100% - 80px);
}
.biography_style_two .biography_video > .video__inner .video__trigger {
  border: 0 solid;
  height: 80px;
  line-height: 80px;
  width: 80px;
}

/*Biography Video*/
.biography_video {
  position: relative;
  min-height: 100px;
  display: inline-block;
}
.biography_video .video__inner {
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  min-height: 100px !important;
}
.biography_video .video__inner .video__trigger {
  text-align: center;
}

/*Biography Event CountDown*/
.event_countdown .timer-body-block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.event_countdown .timer-body-block > .table-cell {
  margin: 0 15px;
  flex: 0 0 calc(25% - 30px);
  text-align: center;
  padding: 45px 0 40px;
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.04);
}
.event_countdown .timer-body-block > .table-cell > .tab-val {
  color: #73adb8;
  font-size: 50px;
  font-weight: 400;
  font-family: "Patua One", cursive;
  margin-bottom: 23px;
}
.event_countdown .timer-body-block > .table-cell > .tab-metr {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #73adb8;
}

/*Biography Area styles Three*/
.biography_style_three .biography_midea {
  margin-bottom: 50px;
}
.biography_style_three .event_countdown {
  margin-top: 40px;
}

@media only screen and (max-width: 1599px) {
  .biography_area_inner {
    width: 1200px;
  }
}
@media only screen and (max-width: 1199px) {
  .biography_area_inner {
    width: 970px;
  }
  .biography_area_inner > .container {
    padding: 0 30px;
  }
  .biography_area_inner.pt-110 {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .biography-area .biography_content .biography_title {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .biography-area .biography_content .list_style_circle > li {
    margin-bottom: 3px;
  }
  .biography-area .biography_content > p {
    margin-bottom: 15px;
    font-size: 15px;
  }
  .biography-area .biography_content .btn {
    margin-top: 10px;
  }

  .profile_list .porfile_block {
    padding: 20px 10px 13px;
  }
  .profile_list .porfile_block > h3 {
    font-size: 36px;
    margin-bottom: 3px;
  }
  .profile_list .porfile_block > p {
    font-size: 15px;
  }

  .event_countdown .timer-body-block > .table-cell {
    padding: 40px 0 30px;
  }
  .event_countdown .timer-body-block > .table-cell > .tab-val {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .biography_area_inner {
    width: 750px;
    margin: -80px auto 0;
  }

  .biography-area > .container,
  .biography-area .biography_area_inner > .container {
    margin: -40px auto;
  }
  .biography-area .biography_content,
  .biography-area .biography_midea {
    margin: 40px 0;
  }
  .biography-area .biography_midea {
    text-align: left;
  }

  .col-md-7.col-full-width > .biography_content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .biography_area_inner {
    width: 570px;
  }
  .biography_area_inner > .container {
    padding: 0 15px;
  }

  .biography-area .biography_content .biography_title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .biography-area .biography_content .btn {
    margin-top: 5px;
  }

  .profile_list {
    margin-top: 30px;
  }
  .profile_list .porfile_block {
    padding: 20px 10px 13px;
  }
  .profile_list .porfile_block > h3 {
    font-size: 36px;
    margin-bottom: 3px;
  }
  .profile_list .porfile_block > p {
    font-size: 16px;
  }

  .biography_style_two .biography_video > .video__inner {
    border: 5px solid #fff;
    height: calc(100% - 40px);
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
  }

  .event_countdown .timer-body-block > .table-cell {
    padding: 30px 0 25px;
    flex: 0 0 calc(25% - 16px);
    margin: 0 8px;
  }
  .event_countdown .timer-body-block > .table-cell > .tab-val {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .event_countdown .timer-body-block > .table-cell > .tab-metr {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .biography_area_inner {
    width: 480px;
  }

  .profile_list .porfile_block {
    margin-bottom: 30px;
  }
  .profile_list .col-md-4:last-child .porfile_block {
    margin-bottom: 0px;
  }

  .profile_list .col-md-4 {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .biography_area_inner {
    width: calc(100% - 30px) !important;
  }

  .event_countdown .timer-body-block {
    margin-bottom: -30px;
  }
  .event_countdown .timer-body-block > .table-cell {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
/*Single Work Default*/
.single_work {
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}
.single_work:hover > .image_effect > 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);
}

.work_info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
  padding: 15px 30px 25px;
}
.work_info p {
  margin-bottom: 0;
}
.work_info .info {
  width: calc(100% - 50px);
}
.work_info .info > h4 {
  font-size: 20px;
  margin-bottom: 14px;
}
.work_info .info > h4:hover a {
  color: #73adb8;
}
.work_info > .icon_link {
  background-color: #333333;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  -webkit-transition: ease-in-out 0.25s;
  -moz-transition: ease-in-out 0.25s;
  -ms-transition: ease-in-out 0.25s;
  -o-transition: ease-in-out 0.25s;
  transition: ease-in-out 0.25s;
}
.work_info > .icon_link:hover {
  background-color: #73adb8;
}
.work_info > .icon_link > span {
  line-height: 50px;
}
.work_info > .icon_link > span:before {
  color: #fff;
  margin-left: 15px;
}

/*Portfolio Style One*/
.portfolio_style_one .single_work {
  min-height: 200px;
  background-color: #e9e9e9;
}
.portfolio_style_one .single_work .work_overlay {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background-color: transparent;
  color: #fbfbfb;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  height: 100%;
  left: 0;
  min-height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
}
.portfolio_style_one .single_work .work_overlay .work_overlay_inner {
  padding: 0 85px;
  position: relative;
  z-index: 3;
}
.portfolio_style_one .single_work .work_overlay .work_overlay_inner > h4,
.portfolio_style_one .single_work .work_overlay .work_overlay_inner > p,
.portfolio_style_one .single_work .work_overlay .work_overlay_inner > .btn-transparent {
  opacity: 0;
  visibility: hidden;
}
.portfolio_style_one .single_work .work_overlay .work_overlay_inner > h4 {
  color: #fff;
  font-size: 24px;
  margin: 100px 0 13px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.portfolio_style_one .single_work .work_overlay .work_overlay_inner > p {
  margin-bottom: 20px;
  margin-top: 50px;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.portfolio_style_one .single_work .work_overlay .work_overlay_inner > .btn-transparent {
  margin-top: 30px;
  -webkit-transition: all 0.8s ease 0s;
  -moz-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:before, .portfolio_style_one .single_work .work_overlay .angle_div > span:after {
  position: absolute;
  background-color: #fff;
  content: "";
  -webkit-transform: scale(1.75);
  -moz-transform: scale(1.75);
  -ms-transform: scale(1.75);
  -o-transform: scale(1.75);
  transform: scale(1.75);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:before {
  height: 2px;
  width: 70px;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:after {
  height: 70px;
  width: 2px;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):after {
  top: 50px;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):after {
  bottom: 50px;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):after {
  left: 50px;
}
.portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):after {
  right: 50px;
}
.portfolio_style_one .single_work:hover .work_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.portfolio_style_one .single_work:hover .work_overlay .angle_div > span:before, .portfolio_style_one .single_work:hover .work_overlay .angle_div > span:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.portfolio_style_one .single_work:hover .work_overlay .work_overlay_inner > h4,
.portfolio_style_one .single_work:hover .work_overlay .work_overlay_inner > p,
.portfolio_style_one .single_work:hover .work_overlay .work_overlay_inner > .btn-transparent {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}
.portfolio_style_one .single_work:hover .work_overlay .work_overlay_inner > h4:hover {
  color: #73adb8;
}

/*Portfolio Style Two*/
.portfolio_style_two {
  position: relative;
}
.portfolio_style_two.isotop_portfolio .section_title {
  padding-bottom: 65px;
}
.portfolio_style_two .single_work {
  -webkit-box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.03);
  -ms-box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.03);
  -o-box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.03);
  box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.portfolio_style_two .single_work .work_thumb {
  position: relative;
  display: block;
}
.portfolio_style_two .single_work .work_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.portfolio_style_two .single_work .work_overlay > i {
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  display: block;
  height: 50px;
  left: calc(50% - 22px);
  line-height: 50px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0%;
  -webkit-transition: all 0.35s ease 0.1s;
  -moz-transition: all 0.35s ease 0.1s;
  -ms-transition: all 0.35s ease 0.1s;
  -o-transition: all 0.35s ease 0.1s;
  transition: all 0.35s ease 0.1s;
  width: 50px;
}
.portfolio_style_two .single_work:hover .work_overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.portfolio_style_two .single_work:hover .work_overlay > i {
  top: calc(50% - 22px);
  opacity: 1;
}
.portfolio_style_two .single_work:hover .work_overlay > i:hover {
  color: #73adb8;
}

/*Recent Work nav*/
.recent_work_nav {
  position: absolute;
  right: 7px;
  text-align: right;
  top: -102px;
  width: 100%;
  z-index: 1;
}
.recent_work_nav > li {
  display: inline-block;
  margin: 0 -2px;
}
.recent_work_nav > li > a {
  display: block;
  padding: 12px 20px;
  font-weight: bold;
}
.recent_work_nav > li > a.active, .recent_work_nav > li > a:hover, .recent_work_nav > li > a:focus {
  background-color: #73adb8;
  color: #fff;
}

/*Portfolio Style Three*/
.portfolio_style_three .work_info {
  background-color: transparent;
  bottom: -15%;
  left: 0;
  position: absolute;
  width: 100%;
  color: #fff;
  padding: 28px 30px 38px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0.1s;
  -moz-transition: all 0.4s ease-in-out 0.1s;
  -ms-transition: all 0.4s ease-in-out 0.1s;
  -o-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
}
.portfolio_style_three .work_info .info > h4 {
  color: #fff;
  margin-bottom: 8px;
}
.portfolio_style_three .work_info .icon_link {
  background-color: rgba(0, 0, 0, 0.7);
}
.portfolio_style_three .work_info .icon_link:hover {
  background-color: #73adb8;
}
.portfolio_style_three .work_info .icon_link:hover > span:before {
  color: #fff;
}
.portfolio_style_three .work_info .icon_link.portfolio_popup > img {
  display: none;
}
.portfolio_style_three .single_work {
  overflow: hidden;
}
.portfolio_style_three .single_work:hover .work_info {
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

/*Portfolio Model Style*/
.single_model {
  position: relative;
  margin-bottom: 10px;
}
.single_model .model_info {
  -webkit-transition: all 0.4s ease-in-out 0.1s;
  -moz-transition: all 0.4s ease-in-out 0.1s;
  -ms-transition: all 0.4s ease-in-out 0.1s;
  -o-transition: all 0.4s ease-in-out 0.1s;
  transition: all 0.4s ease-in-out 0.1s;
  opacity: 0;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  background-color: transparent;
  color: #fbfbfb;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  height: 100%;
  left: 0;
  min-height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  visibility: hidden;
}
.single_model .model_info .model_info_inner {
  padding: 0 40px;
  width: 100%;
}
.single_model .model_info .model_info_inner > h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 15px;
  text-transform: capitalize;
}
.single_model .model_info .model_info_inner > p {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
}
.single_model .model_info .model_table {
  border: 2px solid #fff;
}
.single_model .model_info .model_table .table {
  display: table;
  margin-bottom: 0;
  padding: 15px 0;
  border-bottom: 2px solid #fff;
}
.single_model .model_info .model_table .table:last-child {
  border-bottom: 0 solid;
}
.single_model .model_info .model_table .table > p {
  display: table-cell;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.single_model .model_info .model_table .table > p > span {
  display: block;
}
.single_model:hover .model_info {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: visible;
}

/*Portfolio video Style*/
.single_video {
  margin-bottom: 10px;
}
.single_video.bg_overlay:after {

  z-index: 0;
}
.single_video .video__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  min-height: 200px;
}
.single_video .work_info {
  opacity: 1;
  padding: 15px 30px 40px;
  visibility: visible;
  width: 100%;
  z-index: 1;
  display: block;
  bottom: 0;
}
.single_video .work_info > h4 {
  color: #fff;
  margin: 0 0 13px;
  font-size: 20px;
}

.portfolio_filtar_area .portfolio_filter_content {
  margin-top: 70px;
}

.post_filter_nav .blog_post_nav,
.portfolio_filter_nav .recent_work_nav {
  margin: 0 2px;
  position: relative;
  right: 0;
  text-align: left;
  top: 0;
}
.post_filter_nav .blog_post_nav li > a,
.portfolio_filter_nav .recent_work_nav li > a {
  padding: 40px 30px;
}
.post_filter_nav .blog_post_nav li > a.active,
.portfolio_filter_nav .recent_work_nav li > a.active {
  background-color: #FF7200;
  color: #fff;
}
.post_filter_nav .blog_post_nav li > a:focus, .post_filter_nav .blog_post_nav li > a:hover,
.portfolio_filter_nav .recent_work_nav li > a:focus,
.portfolio_filter_nav .recent_work_nav li > a:hover {
  background-color: #FF7200;
  color: #fff;
}

/*Project Slide Style*/
.project_slide .carousel-indicators li {
  border: 0px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  margin: 0 3px;
  background-color: #fff;
}
.project_slide .carousel-indicators li.active {
  background-color: #73adb8;
  height: 16px;
  margin: 0;
  width: 16px;
}

.project_details_area .headline {
  border-bottom: 1px solid #f2f2f2;
  font-size: 30px;
  margin: 20px 0;
  padding-bottom: 10px;
}
.project_details_area .single_project_description .blockquote {
  border-color: #73adb8;
  margin-bottom: 20px;
  padding: 7px 0 7px 25px;
}
.project_details_area .project_details h3 {
  font-size: 20px;
  margin: 0 0 18px;
}
.project_details_area .project_details ul {
  list-style: outside none none;
  margin-bottom: 20px;
}
.project_details_area .project_details .info_tag {
  color: #ff6b49;
}
.project_details_area .project_details .info_tag > li {
  font-weight: 500;
  line-height: 24px;
  padding: 7px 0;
}
.project_details_area .project_details .info_tag > li:before {
  color: #73adb8;
  content: "";
  font-family: "flaticon";
  font-size: 22px;
  margin-right: 7px;
}
.project_details_area .project_details ul > li {
  padding-bottom: 10px;
}
.project_details_area .project_details ul > li > strong {
  display: inline-block;
  font-weight: lighter;
  width: 90px;
}
.project_details_area .project_details ul > li > span {
  display: inline-block;
  padding-left: 7px;
}
.project_details_area .project_details .btn-default {
  margin-top: 10px;
}

.project_details_area_two .project_details > .headline {
  margin-top: -15px;
}

.socila_share {
  margin-top: 55px;
}
.socila_share .share > li {
  display: inline-block;
  margin: 8px;
}
.socila_share .share > li > a {
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 21px rgba(64, 199, 255, 0.27);
  -moz-box-shadow: 0 0 21px rgba(64, 199, 255, 0.27);
  -ms-box-shadow: 0 0 21px rgba(64, 199, 255, 0.27);
  -o-box-shadow: 0 0 21px rgba(64, 199, 255, 0.27);
  box-shadow: 0 0 21px rgba(64, 199, 255, 0.27);
  -webkit-transition: all 0.25s ease-in-out 0.05s;
  -moz-transition: all 0.25s ease-in-out 0.05s;
  -ms-transition: all 0.25s ease-in-out 0.05s;
  -o-transition: all 0.25s ease-in-out 0.05s;
  transition: all 0.25s ease-in-out 0.05s;
  display: block;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
}
.socila_share .share > li > a:hover {
  -webkit-box-shadow: 0 0 21px rgba(64, 199, 255, 0);
  -moz-box-shadow: 0 0 21px rgba(64, 199, 255, 0);
  -ms-box-shadow: 0 0 21px rgba(64, 199, 255, 0);
  -o-box-shadow: 0 0 21px rgba(64, 199, 255, 0);
  box-shadow: 0 0 21px rgba(64, 199, 255, 0);
  background-color: #73adb8;
  color: #fff;
}

.project-nav {
  list-style: outside none none;
  margin: 25px 0 0;
}
.project-nav > li {
  display: inline-block;
}
.project-nav > li.project-next {
  float: right;
}

.video_filter_area {
  margin-top: -1px;
}

.video_filter_menu {
  margin-bottom: 0;
  margin: 0 2px;
}
.video_filter_menu > li {
  display: inline-block;
  margin: 0 -2px;
}
.video_filter_menu > li > a {
  display: block;
  font-weight: 700;
  padding: 35px 30px;
  text-transform: uppercase;
}
.video_filter_menu > li > a.active, .video_filter_menu > li > a:hover, .video_filter_menu > li > a:focus {
  background-color: #73adb8;
  color: #fff;
}

@media only screen and (max-width: 1599px) {
  .single_video .work_info {
    padding: 15px 15px 25px;
  }

  .single_video .work_thumb .video__inner a {
    border: 4px solid #fff;
    font-size: 28px;
    height: 60px;
    line-height: 55px;
    width: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner {
    padding: 0 55px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:before, .portfolio_style_one .single_work .work_overlay .angle_div > span:after {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):after {
    top: 25px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):after {
    bottom: 25px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):after {
    left: 25px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):after {
    right: 25px;
  }

  .recent_work_nav > li > a {
    padding: 10px 15px;
  }

  .single_video .video__inner a {
    border: 3px solid #fff;
    font-size: 28px;
    height: 65px;
    line-height: 60px;
    width: 65px;
    margin-top: -20px;
  }
  .single_video .video__inner a:hover:before, .single_video .video__inner a:hover:after {
    -webkit-transform: scale(1.75);
    -moz-transform: scale(1.75);
    -ms-transform: scale(1.75);
    -o-transform: scale(1.75);
    transform: scale(1.75);
  }
  .single_video .work_info {
    padding: 15px;
    text-align: left;
  }
  .single_video .work_info > h4 {
    margin: 0 0 10px;
  }
  .single_video .work_info > h4:hover a {
    color: #73adb8;
  }

  .post_filter_nav .blog_post_nav > li > a,
  .portfolio_filter_nav .recent_work_nav li > a {
    padding: 30px 25px;
  }

  .video_filter_menu > li > a {
    font-weight: normal;
    padding: 20px;
  }

  .portfolio_style_three .recent_work_list > .col-md-3 .work_info {
    padding: 15px 15px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work_info {
    padding: 10px 15px 20px;
  }
  .work_info .info > h4 {
    margin-bottom: 8px;
  }

  .project_details_area .project_details ul > li > strong {
    width: 80px;
  }

  .socila_share .share > li {
    margin: 5px;
  }
  .socila_share .share > li > a {
    font-size: 22px;
    height: 45px;
    line-height: 45px;
    width: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio_style_two.isotop_portfolio .section_title {
    padding-bottom: 40px;
  }

  .recent_work_nav {
    margin-bottom: 30px;
    position: relative;
    text-align: left;
    top: 0;
    right: auto;
  }

  .portfolio_filter_nav .recent_work_nav li > a,
  .post_filter_nav .blog_post_nav li > a {
    padding: 25px 20px;
  }

  .project_details_area_two .project_details > .headline {
    margin-top: 15px;
  }

  .video_filter_menu > li > a {
    font-size: 14px;
    padding: 15px;
  }

  .single_video .work_info {
    padding: 15px 15px 12px !important;
  }
  .single_video .work_info > h4 {
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner {
    padding: 0 35px;
  }
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner > .btn-transparent {
    display: none;
  }
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner > p {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner {
    padding: 0 30px;
  }

  .portfolio_style_two.isotop_portfolio .section_title {
    padding-bottom: 25px;
  }

  .recent_work_nav {
    margin-bottom: 20px;
  }

  .working_area .row .col-md-4,
  .latest_model_area .row .col-md-4,
  .portfolio_filter_content .row .col-md-4,
  .portfolio_style_three .recent_work_list .col-md-3 {
    text-align: center;
  }
  .working_area .row .col-md-4 .single_model,
  .working_area .row .col-md-4 .single_work,
  .latest_model_area .row .col-md-4 .single_model,
  .latest_model_area .row .col-md-4 .single_work,
  .portfolio_filter_content .row .col-md-4 .single_model,
  .portfolio_filter_content .row .col-md-4 .single_work,
  .portfolio_style_three .recent_work_list .col-md-3 .single_model,
  .portfolio_style_three .recent_work_list .col-md-3 .single_work {
    display: inline-block;
  }
  .working_area .row .col-md-4 .single_work,
  .latest_model_area .row .col-md-4 .single_work,
  .portfolio_filter_content .row .col-md-4 .single_work,
  .portfolio_style_three .recent_work_list .col-md-3 .single_work {
    text-align: left;
  }

  .portfolio_filter_content .row .col-md-4 {
    width: 100%;
  }

  .single_video .video__inner a {
    margin-top: 0px;
  }

  .portfolio_filter_nav .recent_work_nav li > a,
  .post_filter_nav .blog_post_nav li > a {
    padding: 18px 15px;
  }

  .project_details_area .headline {
    font-size: 24px;
    margin: 15px 0;
  }
  .project_details_area .single_project_description .blockquote {
    border-width: 3px;
    margin-bottom: 17px;
    padding: 5px 0 5px 15px;
  }
  .project_details_area .project_details .info_tag > li {
    padding: 5px 0;
  }
  .project_details_area .project_details .btn-default {
    margin-top: 5px;
  }

  .project_slide .carousel-indicators li {
    height: 12px;
    margin: 0 1px;
    width: 12px;
  }
  .project_slide .carousel-indicators li.active {
    height: 12px;
    width: 12px;
  }

  .socila_share {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .work_info {
    padding: 10px 15px 20px;
  }
  .work_info .info > h4 {
    margin-bottom: 8px;
  }

  .portfolio_style_one .single_work .work_overlay .angle_div > span:before {
    height: 1px;
    width: 40px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:after {
    height: 40px;
    width: 1px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):after {
    top: 15px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):after {
    bottom: 15px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(1):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(3):after {
    left: 15px;
  }
  .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):before, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(2):after, .portfolio_style_one .single_work .work_overlay .angle_div > span:nth-child(4):after {
    right: 15px;
  }
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner > h4 {
    font-size: 22px;
  }
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner > p {
    margin-bottom: 0px;
  }
  .portfolio_style_one .single_work .work_overlay .work_overlay_inner > .btn-transparent {
    display: none;
  }

  .single_model .model_info .model_info_inner {
    padding: 0 15px;
  }

  .portfolio_style_three .work_info {
    padding: 18px 15px 20px;
  }

  .single_video .video__inner {
    min-height: 80px;
  }

  .project_details_area .project_details ul > li {
    padding-bottom: 5px;
  }

  .socila_share .share > li {
    margin: 4px;
  }
  .socila_share .share > li > a {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    width: 40px;
  }

  .project-nav > li {
    margin-bottom: 5px;
  }
  .project-nav > li > a.btn-default {
    font-size: 14px;
    padding: 0 20px;
  }
}
/*Event styles*/
.event_tabs {
  border: 0 solid;
  height: 100%;
  position: absolute;
  width: 100px;
}
.event_tabs > li {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  float: none;
  height: 25%;
}
.event_tabs > li:last-child {
  border: 0 solid;
}
.event_tabs > li > a {
  padding: 17px 0 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #73adb8;
  display: block;
  font-family: "Patua One", cursive;
  font-size: 40px;
  line-height: 32px;
  margin: 0;
  position: relative;
  text-align: center;
  border: 0px solid;
}
.event_tabs > li > a > span {
  display: block;
  font-size: 20px;
}
.event_tabs > li.active > a:before {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 8px 10px;
  content: "";
  margin-top: -8px;
  position: absolute;
  right: -20px;
  top: 50%;
  z-index: 1;
}
.event_tabs > li.active > a, .event_tabs > li.active > a:focus, .event_tabs > li.active > a:hover {
  border: 0px solid;
  color: #73adb8;
}
.event_tabs > li > a:focus,
.event_tabs > li > a:hover {
  background-color: transparent;
  border: 0px solid;
}

.event_tabs_content {
  padding-left: 100px;
  padding-right: 15px;
  min-height: 370px;
}

.event_slide .carousel-inner {
  width: calc(100% - 20px);
}

.event_slide .carousel-inner .item,
.project_slide .carousel-inner .item {
  transition-property: opacity;
}
.event_slide .carousel-inner .item,
.event_slide .carousel-inner .active.left,
.event_slide .carousel-inner .active.right,
.project_slide .carousel-inner .item,
.project_slide .carousel-inner .active.left,
.project_slide .carousel-inner .active.right {
  opacity: 0;
}
.event_slide .carousel-inner .active,
.event_slide .carousel-inner .next.left,
.event_slide .carousel-inner .prev.right,
.project_slide .carousel-inner .active,
.project_slide .carousel-inner .next.left,
.project_slide .carousel-inner .prev.right {
  opacity: 1;
}
.event_slide .carousel-inner .next,
.event_slide .carousel-inner .prev,
.event_slide .carousel-inner .active.left,
.event_slide .carousel-inner .active.right,
.project_slide .carousel-inner .next,
.project_slide .carousel-inner .prev,
.project_slide .carousel-inner .active.left,
.project_slide .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.event_slide .carousel-indicators {
  bottom: 22px;
  left: 0;
  margin: 0;
  text-align: right;
  width: calc(100% - 50px);
}
.event_slide .carousel-indicators li {
  border: 3px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  margin: 0;
}
.event_slide .carousel-indicators li.active {
  background-color: #73adb8;
  height: 16px;
  margin: 0;
  width: 16px;
}

.event_info {
  padding: 30px 0 20px;
}
.event_info > h3 {
  font-size: 30px;
  margin: 0 0 14px;
  color: #73adb8;
}
.event_info .btn-default {
  font-size: 18px;
  letter-spacing: 0.05em;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event_tabs_content {
    min-height: 320px;
    padding-left: 80px;
  }

  .event_tabs {
    width: 80px;
  }
  .event_tabs > li > a {
    font-size: 30px;
    line-height: 25px;
  }

  .event_info {
    padding: 15px 0 0;
  }
  .event_info > h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .event_info > p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .event_schedule_content {
    padding: 0px 30px 15px;
  }

  .event_tabs_content {
    padding: 0px;
  }

  .event_slide .carousel-inner {
    width: 100%;
  }
  .event_slide .carousel-indicators {
    width: calc(100% - 35px);
  }

  .event_tabs {
    height: auto;
    position: relative;
    width: 100%;
  }
  .event_tabs > li {
    border-bottom: 0px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    display: inline-block;
    height: auto;
    width: calc(25% - 3px);
    margin-bottom: 0px;
  }
  .event_tabs > li > a {
    padding: 15px 0;
  }
  .event_tabs > li.active > a:before {
    border-color: #fff transparent transparent transparent;
    border-style: solid;
    border-width: 10px 8px;
    margin-top: 0px;
    right: auto;
    top: auto;
    left: 50%;
    bottom: -20px;
    margin-left: -8px;
  }
}
@media only screen and (max-width: 767px) {
  .event_schedule_content {
    padding: 0 15px 30px;
  }

  .event_info {
    padding: 20px 0 0;
  }
  .event_info > h3 {
    font-size: 25px;
  }
  .event_info .btn-default {
    font-size: 16px;
    letter-spacing: 0;
  }

  .event_tabs > li > a {
    font-size: 30px;
    line-height: 25px;
  }
  .event_tabs > li > a > span {
    font-size: 16px;
  }
}
/*Movie styles*/
.rated_movie_area > .container {
  margin-bottom: -30px;
}

.single_movie {
  margin-bottom: 30px;
}
.single_movie .video .video__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
.single_movie .video .video__inner > a {
  border: 4px solid #fff;
  font-size: 26px;
  height: 70px;
  line-height: 63px;
  width: 70px;
}
.single_movie .video .video__inner > a:hover:after, .single_movie .video .video__inner > a:hover:before {
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -ms-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
}
.single_movie .movie_info {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  padding: 16px 20px 20px;
}
.single_movie .movie_info > div {
  flex: 1 0 50%;
}
.single_movie .movie_info .info > h2 {
  color: #73adb8;
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 10px;
}
.single_movie .movie_info .info > span {
  display: block;
  font-weight: 500;
}
.single_movie .movie_info .rating > p {
  font-weight: 700;
  margin-bottom: 5px;
}
.single_movie .movie_info .rating > ul {
  list-style: outside none none;
  margin-bottom: 0px;
}
.single_movie .movie_info .rating > ul > li {
  color: #ed8a19;
  display: inline-block;
  font-size: 24px;
  margin: 0 1.5px;
}

/*Upcoming Movie styles*/
.upcoming_movie_area {
  position: relative;
}
.upcoming_movie_area .upcoming_movie_slider.top_right_owl_bots .owl-dots {
  margin: 0 -4px;
  text-align: center;
  position: relative;
  width: 100%;
  top: auto;
  padding-top: 30px;
}
.upcoming_movie_area.upcoming_movie_style_two:after {
  position: absolute;
  content: "";
  background-color: #282828;
  height: 50%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.upcoming_movie_slider .video.bg_gradient:before,
.video_filter_content .video.bg_gradient:before {
  height: 70%;
}
.upcoming_movie_slider .single_movie,
.video_filter_content .single_movie {
  margin-bottom: 10px;
}
.upcoming_movie_slider .col-md-8 .video .video__inner > a,
.video_filter_content .col-md-8 .video .video__inner > a {
  border: 6px solid #fff;
  font-size: 36px;
  height: 80px;
  line-height: 70px;
  width: 80px;
}
.upcoming_movie_slider .col-md-4 .video .video__inner > a,
.video_filter_content .col-md-4 .video .video__inner > a {
  border: 4px solid #fff;
  font-size: 26px;
  height: 60px;
  line-height: 50px;
  width: 60px;
}

/*Video Filter styles*/
.video_filter_content {
  margin-top: 70px;
}
.video_filter_content .single_movie {
  position: relative;
}
.video_filter_content .single_movie .movie_info {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
}
.video_filter_content .single_movie .movie_info .info > h2 {
  margin: 0 0 2px;
  color: #fff;
}
.video_filter_content .single_movie .movie_info .info > h2:hover a {
  color: #73adb8;
}

/*Movie Search styles*/
.search-wrap {
  position: relative;
}
.search-wrap .search-btn {
  color: #73adb8;
  cursor: pointer;
  font-size: 22px;
  height: 95px;
  line-height: 95px;
  position: relative;
  text-align: right;
  width: 70px;
  z-index: 1;
}
.search-wrap .search-btn:after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.12;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: -1;
}
.search-wrap .search-form {
  background: #fff none repeat scroll 0 0;
  display: none;
  height: 100px;
  padding: 20px;
  position: absolute;
  right: 20px;
  text-align: right;
  top: 1px;
  width: 1120px;
  z-index: 99;
}
.search-wrap .search-form input[type="search"] {
  border: 1px solid #e6e6e6;
  float: left;
  height: 50px;
  line-height: 50px;
  padding: 0 25px;
  width: calc(100% - 70px);
}
.search-wrap .search-form button {
  background: #73adb8;
  border: 0 solid;
  float: left;
  height: 50px;
  width: 70px;
  padding: 0 20px;
}
.search-wrap .search-form button:hover {
  background-color: #333;
}

@media only screen and (max-width: 1199px) {
  .search-wrap .search-form {
    width: 920px;
    top: 1px;
  }

  .search-wrap .search-btn {
    height: 66px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .upcoming_movie_slider .col-md-4 .video .video__inner > a,
  .video_filter_content .col-md-4 .video .video__inner > a {
    border: 3px solid #fff;
    font-size: 18px;
    height: 45px;
    line-height: 40px;
    width: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .search-wrap .search-form {
    width: 700px;
  }

  .single_movie .movie_info {
    padding: 10px 15px;
  }
  .single_movie .movie_info .info > h2 {
    font-size: 20px;
  }
  .single_movie .video .video__inner {
    min-height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap .search-form {
    width: 520px;
  }

  .video_filter_content .row.recent_video_list > div[class^="col-"] {
    text-align: center;
  }
  .video_filter_content .row.recent_video_list > div[class^="col-"] .single_movie {
    text-align: left;
    display: inline-block;
  }
}
@media only screen and (max-width: 600px) {
  .search-wrap .search-form {
    width: 430px;
  }
}
@media only screen and (max-width: 479px) {
  .search-wrap .search-form {
    width: 300px;
  }

  .single_movie .movie_info .rating > ul > li {
    font-size: 18px;
    margin: 0 1px;
  }
}
/*Team Area styles*/
.smart_team_area > .container {
  margin-bottom: -30px;
}

.single_team {
  padding-bottom: 15px;
  margin-bottom: 30px;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.single_team .team_thumb {
  margin-bottom: 38px;
}
.single_team .team_thumb > img {
  width: 100%;
}
.single_team .team_thumb.bg_gradient:before {
  height: 70%;
  background: transparent linear-gradient(to top, rgba(55, 160, 0, 0), rgba(55, 160, 0, 0), rgba(55, 160, 0, 0), rgba(55, 160, 0, 0), rgba(55, 160, 0, 0), rgba(55, 160, 0, 0));
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  z-index: 9;
}
.single_team h3 {
  font-size: 20px;
  margin-bottom: 13px;
}
.single_team.shadow__black:hover {
  -webkit-box-shadow: 0 0 0px transparent;
  -moz-box-shadow: 0 0 0px transparent;
  -ms-box-shadow: 0 0 0px transparent;
  -o-box-shadow: 0 0 0px transparent;
  box-shadow: 0 0 0px transparent;
}
.single_team:hover > .image_effect > 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);
  z-index: 1;
}

.team_carousel .owl-item {
  padding: 12px 0;
}
.team_carousel .owl-item.center .single_team {
  -webkit-box-shadow: 0 0 22px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 0 22px rgba(0, 0, 0, 0.03);
  -ms-box-shadow: 0 0 22px rgba(0, 0, 0, 0.03);
  -o-box-shadow: 0 0 22px rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.03);
}
.team_carousel .owl-item.center .single_team .team_thumb.bg_gradient:before {
  background: transparent linear-gradient(to top, #37a000, rgba(55, 160, 0, 0.9), rgba(55, 160, 0, 0.6), rgba(55, 160, 0, 0.3), rgba(55, 160, 0, 0.1), rgba(55, 160, 0, 0));
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.team_carousel .owl-item.center .single_team h3 {
  color: #73adb8;
}
.team_carousel .owl-item.center .single_team p {
  color: #5b5b5b;
}

@media only screen and (max-width: 767px) {
  .single_team .team_thumb {
    margin-bottom: 25px;
  }
  .single_team h3 {
    margin-bottom: 7px;
  }
}
/*Footer styles*/
.footer {
  background-color: #77adb7;
  padding-bottom: 25px;
}
.footer .clearfix {
  display: none;
}

/*Footer Newsletter*/
.footer__newsletter {
  align-items: center;
  background-color: #fff;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  padding: 35px 40px 20px;
  min-height: 200px;
  margin-top: -100px;
}
.footer__newsletter .section_title {
  padding-bottom: 0;
}
.footer__newsletter .section_title > .title__heading {
  font-size: 36px;
  margin-bottom: 5px;
  margin-top: -14px;
  color: #77adb7;
}
.footer__newsletter .section_title > p {
  color: #5b5b5b;
  margin-bottom: 0px;
}
.footer__newsletter .subcribe-form {
  width: 50%;
}
.footer__newsletter .subcribe-form .footer__input {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  height: 60px;
  position: relative;
}
.footer__newsletter .subcribe-form .footer__input > span {
  position: absolute;
  top: 18px;
  left: 15px;
}
.footer__newsletter .subcribe-form .footer__input > span:before {
  color: #878787;
}
.footer__newsletter .subcribe-form .footer__input input {
  width: calc(100% - 150px);
  height: 100%;
  color: #5d5d5d;
  font-size: 14px;
  padding-left: 48px;
  border: 1px solid #F1F1F1;
}

.footer-widgets-area {
  color: #fff;
  padding: 70px 0 30px;
}

.copyright {
  padding: 16px 0px;
  color: #fff;
}
.copyright a {
    color: #fff;
    text-decoration: underline;
}
.copyright a:hover {
}

.footer__description {
  margin-bottom: 25px;
  padding: 0 70px;
}
.footer__description > a {
  display: block;
  margin-bottom: 25px;
}
.footer__description > p {
  line-height: 24px;
}

.footer_contact_info > .row {
  margin: 0 -10px;
}
.footer_contact_info > .row > .col-md-4 {
  padding: 0 10px;
}

.single_contact_info {
  background-color: #77adb7;
  padding: 15px 22px;
  margin-bottom: 20px;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  align-items: center;
}
.single_contact_info > .icon {
  background-color: #555;
  border-radius: 50%;
  display: block;
  float: left;
  height: 40px;
  margin-right: 12px;
  margin-top: 2px;
  width: 40px;
  text-align: center;
}
.single_contact_info > .icon:before {
  font-size: 16px;
  line-height: 40px;
}
.single_contact_info .info {
  width: calc(100% - 40px);
}
.single_contact_info .info > p {
  line-height: 24px;
  margin-bottom: 0;
}
.single_contact_info .info > p a {
  color: #fff;
}
.single_contact_info .info > p a:hover {
  color: #fff;
  text-decoration: underline !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widgets-area .row > .col-md-9 {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .footer__newsletter {
    display: block;
    padding: 50px 15px;
    text-align: center;
    min-height: auto;
  }
  .footer__newsletter .subcribe-form {
    margin: 30px auto 0;
    width: 70%;
  }

  .footer__description {
    padding: 0px;
  }

  .footer_contact_info > div {
    display: -webkit- flex;
    display: -moz- flex;
    display: -ms- flex;
    display: -o- flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .copyright {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__newsletter {
    padding: 40px 15px 25px;
  }
  .footer__newsletter .subcribe-form {
    margin: 20px auto 0;
    width: 100%;
  }

  .single_contact_info {
    display: block;
    margin-bottom: 15px;
    padding: 25px 15px;
    text-align: center;
  }
  .single_contact_info > .icon {
    float: none;
    margin: 0 auto 15px;
  }
  .single_contact_info > .info {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .footer__newsletter .section_title > .title__heading {
    font-size: 28px;
  }
  .footer__newsletter .subcribe-form .footer__input {
    display: block;
    height: auto;
  }
  .footer__newsletter .subcribe-form .footer__input input {
    height: 54px;
    margin-bottom: 10px;
    padding-left: 43px;
    width: 100%;
  }
  .footer__newsletter .subcribe-form .footer__input > span {
    top: 15px;
  }

  .footer {
    padding-bottom: 0px;
  }

  .footer-widgets-area .row > .col-full-width {
    width: 100%;
  }

  .footer__description > a {
    margin-bottom: 15px;
  }
}
/* Testimonial styles*/
.client_testimonail_carousel {
  margin-bottom: -25px;
}
.client_testimonail_carousel .owl-item {
  padding: 50px 0 25px;
}

.client_testimonial_block {
  padding: 60px 15px 5px;
  position: relative;
}
.client_testimonial_block > .icon {
  background-color: #73adb8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  height: 75px;
  left: 50%;
  line-height: 75px;
  margin: 0 auto 0 -37px;
  position: absolute;
  top: -37px;
  width: 75px;
}
.client_testimonial_block > .icon > span::before {
  color: #fff;
  font-size: 35px;
}
.client_testimonial_block > p {
  margin-bottom: 15px;
}
.client_testimonial_block .client_info > h5 {
  font-size: 20px;
  margin: -3px 0 3px;
}
.client_testimonial_block .client_info p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
  .client_testimonial_block {
    padding: 45px 15px 5px;
  }
  .client_testimonial_block > .icon {
    height: 60px;
    line-height: 60px;
    margin: 0 auto 0 -30px;
    top: -31px;
    width: 60px;
  }
  .client_testimonial_block > .icon > span::before {
    font-size: 30px;
  }

  .client_testimonail_carousel .owl-item {
    padding: 33px 0 25px;
  }
}
/*Services styles*/
.services_content > .btn-default {
  font-size: 18px;
}

.single_service {
  margin-bottom: 30px;
  padding: 47px 25px 38px;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
.single_service .service_icon {
  display: inline-block;
  margin-bottom: 5px;
  height: 70px;
  line-height: 70px;
}
.single_service .service_icon:before {
  font-size: 70px;
}
.single_service h3 {
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  font-size: 20px;
  margin-bottom: 13px;
  text-transform: capitalize;
}
.single_service.text-primary h3 {
  margin-top: 13px;
}
.single_service > p {
  margin-bottom: 17px;
}
.single_service .service-readmore {
  padding-right: 15px;
}
.single_service .service-readmore > i::before {
  font-size: 25px;
}
.single_service:hover {
  background-color: #73adb8;
  color: #fff;
}
.single_service:hover > h3,
.single_service:hover .service-readmore {
  color: #fff;
}

.services_list {
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  min-height: 230px;
}
.services_list > .single_service {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 20%;
  flex: 1 0 20%;
  margin-bottom: 0;
  padding: 15px 15px 0;
}
.services_list > .single_service .service_icon {
  height: 60px;
  line-height: 60px;
}
.services_list > .single_service .service_icon:before {
  font-size: 60px;
}

/*Services Style One*/
.services-style-one .container {
  margin-bottom: -30px;
}
.services-style-one .section_title {
  padding-bottom: 22px;
  margin-top: -10px;
}
.services-style-one .services_content {
  padding-right: 10px;
}
.services-style-one .services_content > .btn-default {
  margin-top: 25px;
}
.services-style-one .single_service > h3 {
  color: #73adb8;
}
.services-style-one .single_service:hover > h3 {
  color: #fff;
}

/*Services Style Two*/
.services-style-two .section_title {
  margin-top: -10px;
}
.services-style-two .services_content {
  padding-top: 5px;
}
.services-style-two .services_content > .btn-default {
  margin-top: 13px;
  float: right;
}

/*Services Style Three*/
.services-style-three {
  margin-bottom: -30px;
}
.services-style-three .single_service {
  margin: 30px 30px 60px;
  padding: 0;
}
.services-style-three .single_service h3 {
  margin-bottom: 0;
}
.services-style-three .single_service .single_service_inner {
  position: relative;
  min-height: 275px;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: center;
}
.services-style-three .single_service .single_service_inner .line_div > span {
  position: absolute;
  background-color: #F1F1F1;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(1), .services-style-three .single_service .single_service_inner .line_div > span:nth-child(3) {
  height: 1px;
  width: calc(100% + 60px);
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(2), .services-style-three .single_service .single_service_inner .line_div > span:nth-child(4) {
  height: calc(100% + 60px);
  width: 1px;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(1) {
  top: 0px;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(2) {
  right: 0px;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(3) {
  bottom: 0px;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(4) {
  left: 0px;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(1), .services-style-three .single_service .single_service_inner .line_div > span:nth-child(3) {
  left: -30px;
}
.services-style-three .single_service .single_service_inner .line_div > span:nth-child(2), .services-style-three .single_service .single_service_inner .line_div > span:nth-child(4) {
  top: -30px;
}
.services-style-three .single_service:hover .single_service_inner .line_div > span {
  background-color: #73adb8;
}
.services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(1), .services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(3) {
  width: calc(100% + 80px);
}
.services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(2), .services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(4) {
  height: calc(100% + 80px);
}
.services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(1), .services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(3) {
  left: -40px;
}
.services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(2), .services-style-three .single_service:hover .single_service_inner .line_div > span:nth-child(4) {
  top: -40px;
}
.services-style-three .single_service:hover h3 {
  color: #fff;
}
.services-style-three .single_service .service_icon:before {
  font-size: 60px;
}
.services-style-three .service_icon {
  height: 60px;
  line-height: 60px;
}

/*Services Style Four*/
.services-style-four .services_area_inner {
  margin: -115px auto 0;
  z-index: 9;
  position: relative;
  min-height: 230px;
  width: 1545px;
}
.services-style-four .services_area_inner .services_list > .single_service:hover {
  background-color: #fff;
  color: #73adb8;
}
.services-style-four .services_area_inner .services_list > .single_service:hover > h3 {
  color: #73adb8;
}

.services_carousel.top_right_owl_bots .owl-dots {
  margin: 0 -4px;
  text-align: center;
  position: relative;
  width: 100%;
  top: auto;
  padding-top: 30px;
}

/*Services Style Five*/
.services-style-five .single_service {
  padding: 0;
  min-height: 400px;
  position: relative;
}
.services-style-five .single_service .single_service_inner {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  color: #fff;
  display: -webkit- flex;
  display: -moz- flex;
  display: -ms- flex;
  display: -o- flex;
  display: flex;
  height: 100%;
  left: 0;
  min-height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  padding: 35px;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
.services-style-five .single_service .service_text {
  opacity: 0;
  margin-top: 150px;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.services-style-five .single_service .service_text > h3 {
  font-size: 24px;
  color: #fff;
  margin: 100px 0 22px;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
}
.services-style-five .single_service .service_text > .service_price {
  margin-bottom: 15px;
  margin-top: 50px;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
}
.services-style-five .single_service .service_text > .service_price > span {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 0 20px 4px;
  border-bottom: 1px solid #fff;
}
.services-style-five .single_service .service_text > p {
  margin-top: 50px;
  line-height: 24px;
  margin-bottom: 28px;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
}
.services-style-five .single_service .service_text > .btn {
  margin-top: 50px;
}
.services-style-five .single_service:hover .single_service_inner {
  background-color: #73adb8;
}
.services-style-five .single_service:hover .single_service_inner .service_text {
  opacity: 1;
  margin-top: 0;
}
.services-style-five .single_service:hover .single_service_inner .service_text > h3,
.services-style-five .single_service:hover .single_service_inner .service_text > .service_price,
.services-style-five .single_service:hover .single_service_inner .service_text > p,
.services-style-five .single_service:hover .single_service_inner .service_text > .btn {
  margin-top: 0;
}

/*Services Style Six*/
.services-style-six .container {
  margin-bottom: -30px;
}
.services-style-six .single_service {
  overflow: hidden;
  min-height: 190px;
  padding: 0;
  position: relative;
}
.services-style-six .single_service img {
  min-height: 190px;
}
.services-style-six .single_service .service_text {
  background-color: #fff;
  -webkit-transition: ease-in 0.3s;
  -moz-transition: ease-in 0.3s;
  -ms-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 40px 50px 35px;
}
.services-style-six .single_service .service_text > h3 {
  font-size: 20px;
  color: #ff7200;
  margin: 0 0 15px;
}
.services-style-six .single_service .service_text > p {
  margin-bottom: 0;
}
.services-style-six .single_service:hover .service_text {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/*Services Style Seven*/
.services-style-seven .services_list {
  margin: 0 -8px;
  min-height: 100px;
}
.services-style-seven .services_list > .single_service {
  flex: 1 0 calc(20% - 16px);
  margin: 0 8px;
  padding: 85px 15px 75px;
}

@media only screen and (max-width: 1599px) {
  .services-style-four .services_area_inner {
    width: 1200px;
  }

  .services-style-seven .services_list > .single_service {
    padding: 55px 15px 45px;
  }
}
@media only screen and (max-width: 1199px) {
  .single_service {
    padding: 40px 15px 30px;
  }

  .services-style-one .services_content {
    padding-right: 0px;
    margin-bottom: 50px;
  }
  .services-style-one .services_content > .btn-default {
    margin-top: 15px;
  }

  .services-style-four .services_area_inner {
    width: 970px;
  }

  .services_list .single_service h3 {
    font-size: 18px;
  }

  .services-style-six .single_service img {
    min-height: 205px;
  }
  .services-style-six .single_service .service_text {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-style-three .single_service .single_service_inner {
    min-height: 230px;
  }

  .services-style-seven .services_list > .single_service {
    padding: 35px 15px 25px;
  }
  .services-style-seven .services_list > .single_service .service_icon::before {
    font-size: 50px;
    line-height: 50px;
  }
  .services-style-seven .services_list > .single_service h3 {
    font-size: 16px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .services_list {
    flex-wrap: wrap;
    padding: 25px 0;
  }
  .services_list > .single_service {
    flex: 1 0 50%;
    padding: 20px 15px 15px;
  }
  .services_list > .single_service:nth-child(5) {
    display: none;
  }
  .services_list > .single_service > h3 {
    margin-top: 12px;
  }

  .services-style-four .services_area_inner {
    width: 750px;
    min-height: auto;
    margin: 85px auto 0;
  }

  .services-style-six .single_service {
    min-height: auto;
  }
  .services-style-six .single_service img {
    min-height: auto;
    display: none;
  }
  .services-style-six .single_service .service_text {
    padding: 30px;
    position: relative;
  }
  .services-style-six .single_service:hover .service_text {
    background-color: black;
    color: #fff;
  }

  .services-style-seven .container {
    margin-bottom: -15px;
  }
  .services-style-seven .services_list {
    padding: 0 !important;
  }
  .services-style-seven .services_list > .single_service {
    flex: 1 0 calc(50% - 16px);
    margin: 0 8px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .services_list > .single_service {
    flex: 1 0 100%;
  }

  .single_service {
    padding: 40px 15px 30px;
  }
  .single_service h3 {
    margin-bottom: 12px;
    margin-top: 13px;
  }

  .services_content > .btn-default {
    font-size: 16px;
  }

  .services-style-one .services_content {
    margin-bottom: 40px;
  }
  .services-style-one .services_content > .btn-default {
    margin-top: 5px;
  }
  .services-style-one .section_title {
    margin-top: -5px;
    padding-bottom: 15px;
  }

  .services-style-four .services_area_inner {
    width: 540px;
    margin: 75px auto 0;
  }

  .services_carousel.top_right_owl_bots .owl-dots {
    padding-top: 0;
  }
}
@media only screen and (max-width: 600px) {
  .services-style-four .services_area_inner {
    width: 440px;
  }

  .services-style-six .single_service .service_text {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 479px) {
  .services-style-four .services_area_inner {
    width: calc(100% - 30px) !important;
  }

  .services-style-three .single_service .single_service_inner {
    min-height: 230px;
  }

  .services-style-five .single_service .single_service_inner {
    padding: 30px 15px;
  }

  .services-style-seven .services_list > .single_service {
    flex: 1 0 calc(100% - 16px);
  }
}
/*Blog styles*/
.post_filtar_area .post_filter_content {
  margin-top: 70px;
}

.blog_post_nav {
  list-style: outside none none;
}
.blog_post_nav > li {
  display: inline-block;
  margin: 0 -2px;
}
.blog_post_nav > li > a {
  display: block;
}

.post {
  position: relative;
  margin-bottom: 30px;
}
.post.post-format-video .video__inner {
  position: absolute;
  top: 25px;
  right: 30px;
}
.post.post-format-video .video__inner > a {
  text-align: center;
  border: 3px solid #fff;
  font-size: 24px;
  height: 60px;
  line-height: 55px;
  width: 60px;
}

.entry-meta {
  background-color: #73adb8;
  -webkit-border-radius: 0 0 45px 45px;
  -moz-border-radius: 0 0 45px 45px;
  -ms-border-radius: 0 0 45px 45px;
  -o-border-radius: 0 0 45px 45px;
  border-radius: 0 0 45px 45px;
  left: 30px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 85px;
  z-index: 1;
}
.entry-meta > a {
  -webkit-box-shadow: 0 0 0 white;
  -moz-box-shadow: 0 0 0 white;
  -ms-box-shadow: 0 0 0 white;
  -o-box-shadow: 0 0 0 white;
  box-shadow: 0 0 0 white;
  display: block;
}
.entry-meta .entry-date {
  color: #fff;
  display: block;
  font-family: "Patua One", cursive;
  font-size: 30px;
  line-height: 26px;
  padding: 23px 0;
  text-transform: uppercase;
}
.entry-meta .entry-date > b {
  display: block;
  font-size: 20px;
  font-weight: normal;
}

.entry-footer {
  padding: 0 30px 22px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
}
.entry-footer .entry-info {
  width: calc(100% - 50px);
  padding-right: 15px;
}
.entry-footer .entry-info > .entry-title {
  font-size: 20px;
  margin: 0 0 10px;
  color: #73adb8;
}
.entry-footer .entry-info p:last-child {
  margin-bottom: 0;
}
.entry-footer > .post-link {
  background-color: #333333;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  -webkit-transition: ease-in-out 0.25s;
  -moz-transition: ease-in-out 0.25s;
  -ms-transition: ease-in-out 0.25s;
  -o-transition: ease-in-out 0.25s;
  transition: ease-in-out 0.25s;
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.entry-footer > .post-link:hover, .entry-footer > .post-link:focus {
  background-color: #73adb8;
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.entry-footer > .post-link > span {
  line-height: 50px;
}
.entry-footer > .post-link > span:before {
  color: #fff;
  margin-left: 15px;
}

/*Single Blog Page*/
.single-post .post {
  margin-top: 80px;
}
.single-post .post.post-format-video .video__inner {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.single-post .post.post-format-video .video__inner a {
  border: 6px solid #fff;
  font-size: 36px;
  height: 92px;
  line-height: 80px;
  width: 92px;
}
.single-post .entry-thumb {
  position: relative;
}
.single-post .entry-header .entry-title {
  color: #73adb8;
  font-size: 32px;
  margin: 25px 0;
}
.single-post .entry-meta {
  overflow: hidden;
  font-size: 14px;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  position: static;
  text-align: left;
  width: 100%;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  text-transform: capitalize;
  padding: 10px 0 8px;
  margin-bottom: 10px;
}
.single-post .entry-meta a:hover {
  color: #73adb8;
}
.single-post .entry-meta > span {
  margin-right: 15px;
}
.single-post .entry-meta i.fa {
  margin-right: 5px;
}
.single-post .entry-meta .entry-date {
  font-size: 14px;
  font-weight: normal;
  float: right;
  font-family: "Roboto", sans-serif;
  padding: 0;
  color: #333;
}
.single-post .entry-content {
  margin-bottom: 40px;
}
.single-post .entry-content blockquote {
  border-left: 3px solid #73adb8;
  padding: 8px 0 8px 25px;
  margin-bottom: 22px;
  color: #73adb8;
}
.single-post .entry-content > ul {
  color: #73adb8;
  font-weight: 500;
  padding-left: 16px;
}
.single-post .entry-content > ul > li {
  margin-bottom: 5px;
}
.single-post .entry-footer {
  background-color: #333333;
  display: block;
  padding: 30px;
  overflow: hidden;
}
.single-post .entry-footer .socila_share {
  margin: 0;
  width: 50%;
  float: left;
}
.single-post .entry-footer .socila_share > .share {
  margin-bottom: 0;
  margin-top: 4px;
}
.single-post .entry-footer .socila_share > .share > li {
  margin: 0 5px 0 0;
}
.single-post .entry-footer .socila_share > .share > li > a {
  background-color: transparent;
  color: #fff;
  font-size: 15px;
  height: 35px;
  line-height: 35px;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  width: 35px;
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.single-post .entry-footer .socila_share > .share > li > a:hover {
  background-color: #73adb8;
}

/*Post Navigation*/
.post-navigation {
  float: right;
  width: 49%;
}
.post-navigation .nav-links {
  text-align: right;
}
.post-navigation .nav-links > div {
  display: inline-block;
  margin-left: 10px;
}
.post-navigation .nav-links > div > a {
  background-color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: capitalize;
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -webkit-transition: all 0.25s ease 0.05s;
  -moz-transition: all 0.25s ease 0.05s;
  -ms-transition: all 0.25s ease 0.05s;
  -o-transition: all 0.25s ease 0.05s;
  transition: all 0.25s ease 0.05s;
}
.post-navigation .nav-links > div.nav-next > a {
  color: #fff;
  background-color: #73adb8;
}
.post-navigation .nav-links > div.nav-next > a:after {
  content: "";
  font-family: Flaticon;
  padding-left: 3px;
}
.post-navigation .nav-links > div.nav-next > a:hover {
  color: #73adb8;
  background-color: #fff;
}
.post-navigation .nav-links > div.nav-previous > a:before {
  content: "";
  font-family: Flaticon;
  padding-right: 3px;
}
.post-navigation .nav-links > div.nav-previous > a:hover {
  color: #fff;
  background-color: #73adb8;
}

/*Comment Serpond*/
.comment-form .form-submit {
  margin-bottom: 0;
}

.comment-respond {
  width: 70%;
}
.comment-respond .comment-reply-title {
  border-bottom: 1px solid #EFEFEF;
  font-size: 20px;
  padding-bottom: 12px;
  text-transform: capitalize;
}
.comment-respond > p {
  margin: 22px 0 25px;
}
.comment-respond p {
  margin-bottom: 35px;
}
.comment-respond p > textarea,
.comment-respond p > input {
  background-color: transparent;
  border: 1px solid #efefef;
}
.comment-respond p .submit {
  background-color: #333333;
  border: 1px solid #333333;
  font-weight: bold;
}
.comment-respond p .submit:hover {
  background-color: #73adb8;
  border: 1px solid #73adb8;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post.post-format-video .video__inner {
    top: 20px;
    right: 20px;
  }

  .entry-meta {
    left: 20px;
    width: 75px;
  }
  .entry-meta .entry-date {
    font-size: 26px;
    line-height: 23px;
    padding: 20px 0;
  }
  .entry-meta .entry-date > b {
    font-size: 18px;
  }

  .entry-footer {
    padding: 0 20px 22px;
  }
}
@media only screen and (max-width: 991px) {
  #comments,
  .comment-respond {
    width: 100%;
  }

  .single-post .post.post-format-video .video__inner > a {
    border: 3px solid #fff;
    font-size: 24px;
    height: 60px;
    line-height: 55px;
    width: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .post_filtar_area .post_filter_content {
    margin-top: 50px;
  }

  .post {
    margin-bottom: 20px;
  }
  .post.post-format-video .video__inner {
    min-height: auto;
  }

  .blog_posts_list > .col-md-4 {
    text-align: center;
    width: 100%;
  }
  .blog_posts_list > .col-md-4 .post {
    display: inline-block;
  }
  .blog_posts_list > .col-md-4 .post .entry-footer .entry-info {
    text-align: left;
  }
  .blog_posts_list > .col-md-4 .post .entry-footer > .post-link > span:before {
    margin-left: 0;
  }

  .single-post .post {
    margin-top: 60px;
  }
  .single-post .entry-header .entry-title {
    font-size: 26px;
    margin: 20px 0;
  }
  .single-post .entry-meta .entry-date {
    float: none;
    display: inline-block;
  }
  .single-post .entry-meta > span {
    display: inline-block;
    margin-bottom: 5px;
  }
  .single-post .entry-content {
    margin-bottom: 25px;
  }
  .single-post .entry-content > ul > li {
    margin-bottom: 10px;
  }
  .single-post .entry-footer .socila_share,
  .single-post .post-navigation {
    float: none;
    width: 100%;
  }
  .single-post .entry-footer .socila_share > .share {
    text-align: center;
    margin-bottom: 20px;
  }

  .post-navigation .nav-links > div.nav-previous {
    float: left;
    margin-left: 0;
  }

  .comments-title {
    font-size: 20px;
  }

  .comment-respond p {
    margin-bottom: 20px;
  }

  .comment-info b > a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .single-post .entry-header .entry-title {
    font-size: 24px;
  }
  .single-post .entry-footer {
    padding: 20px;
  }
  .single-post .entry-content blockquote {
    margin-bottom: 20px;
    padding: 5px 0 5px 15px;
  }

  .comment-info b,
  .comment-meta {
    width: 100%;
  }

  .comment-info b {
    margin-bottom: 5px;
  }

  .comment-meta .comment-metadata {
    float: left;
  }
}
@media only screen and (max-width: 479px) {
  .entry-meta {
    left: 20px;
    width: 75px;
  }
  .entry-meta .entry-date {
    font-size: 26px;
    line-height: 23px;
    padding: 20px 0;
  }
  .entry-meta .entry-date > b {
    font-size: 18px;
  }

  .entry-footer {
    padding: 0 20px 22px;
  }

  .post.post-format-video .video__inner {
    top: 20px;
    right: 20px;
  }

  .post-navigation .nav-links > div > a {
    font-size: 14px;
    padding: 0 15px;
  }
}
