/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  outline: none;
  color: #0d7fb2;
}

a:hover {
  color: #0b486b;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: #0d7fb2;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #0b486b;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0d7fb2;
  border-top-color: #efefef;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: rgba(255, 255, 255, 0.6);
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #0d7fb2;
  padding-right: 4px;
}

#topbar .contact-info i.icofont-phone {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.5);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(52, 58, 64, 0.2);
  transition: all 0.5s;
  z-index: 997;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.9);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #0d7fb2;
}

#header .logo img {
  max-height: 37px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 10px 0;
    background: transparent;
  }
  #header .logo {
    font-size: 28px;
  }
}

.header-inner-pages {
  background: rgba(0, 0, 0, 0.9) !important;
}

sub {
    position: relative;
    font-size: 11px;
    line-height: 0;
    vertical-align: bottom;
    text-transform: none;
    bottom: 8px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 18px 15px;
  margin-left: 5px;
  transition: 0.3s;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li:hover, .nav-menu .active {
  background: #0d7fb2;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #191919;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #0d7fb2;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #0d7fb2;
  /*color: #fff;*/
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #191919;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #0d7fb2;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 0px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 51px;
  font-weight: 700;
  line-height: 56px;
  /*text-transform: uppercase;*/
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 31px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #0d7fb2;
  background: #0d7fb2;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #0b486b;
  border-color: #0b486b;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
	height: 840px !important;
  }
  #hero .container {
    padding-top: 60px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections Buttons
--------------------------------------------------------------*/
.btn-main {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #0d7fb2;
  background: #0d7fb2;
  color: #fff;
}

.btn-content {
  font-family: "Raleway", sans-serif;
  /*text-transform: uppercase;*/
  font-weight: 500;
  font-size: 15px;
  /*letter-spacing: 1px;*/
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  transition: 0.5s;
  margin: 2px 0;
  border: 2px solid #0d7fb2;
  background: #0d7fb2;
  color: #fff;
}

.btn-main:hover, .btn-content:hover {
  background: #0b486b;
  border: 2px solid #0b486b;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0;
  }
  section .btn-center {
    text-align: center;
	margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .section-title {
    padding: 30px 0 0;
  }
  .section-title h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .section-title span {
    font-size: 38px;
  }
}

.text-muted a {
  color: #6c757d !important;
}

/*--------------------------------------------------------------
# Shows
--------------------------------------------------------------*/
.shows .content h1 {
  font-weight: 600;
  font-size: 36px;
}

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

.shows .content ul li {
  padding-bottom: 10px;
}

.shows .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0d7fb2;
}

.shows .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .shows .content h1 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Live Cams
--------------------------------------------------------------*/
.livecams .content h1 {
  font-weight: 600;
  font-size: 36px;
}

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

.livecams .content ul li {
  padding-bottom: 10px;
}

.livecams .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0d7fb2;
}

.livecams .content p:last-child {
  margin-bottom: 0;
}

.livecams-bg {
  padding-top: 20px;
  background: #0b486b;
}

.live-index {
  width: 100%;
  height: 300px;
  border: 5px solid #0d7fb2;
}

.live-inner {
  width: 100%;
  height: 640px;
  border: 5px solid #0d7fb2;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 0;
}

.about .box {
  padding: 20px 30px 10px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.about .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #0d7fb2;
}

.about .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #191919;
}

.about .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.about .box:hover {
  background: #0d7fb2;
  padding: 10px 30px 20px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.about .box:hover span, .about .box:hover h4, .about .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
  background: #f2f2f2;
  padding: 30px 0;
  text-align: center;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
}

.partners a {
  color: #444444;
}

.partners a:hover {
  color: #0d7fb2;
}

.partners a span {
  color: #0d7fb2;
}

.partners a:hover span {
  color: #444444;
}

.partners .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.partners .owl-item img {
  width: 50%;
  opacity: 0.5;
  transition: 0.3s;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  margin: auto;
}

.partners .owl-item img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.partners .owl-nav, .partners .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.partners .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
  outline: none;
}

.partners .owl-dot.active {
  background-color: #0d7fb2 !important;
}

/*.partners img {
  width: 50%;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.partners img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .partners img {
    width: 40%;
  }
}*/

/*.owl-carousel .owl-stage {
  display: flex;
}*/

/*--------------------------------------------------------------
# Story
--------------------------------------------------------------*/
.story .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.story .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #0d7fb2;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.story .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.story .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #e8f3f8;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.story .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.story .icon-box h4 a {
  color: #191919;
}

.story .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.story .icon-box:hover {
  background: #0d7fb2;
  border-color: #0d7fb2;
  padding: 30px 20px 50px 20px;
}

.story .icon-box:hover .icon {
  background: #fff;
}

.story .icon-box:hover .icon i {
  color: #0d7fb2;
}

.story .icon-box:hover .icon::before {
  background: #0b486b;
}

.story .icon-box:hover h4 a, .story .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Promo
--------------------------------------------------------------*/
.promo {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-bg.jpg") fixed center center;
  background-size: cover;
  /*padding: 120px 0;*/
}

.promo h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.promo p {
  color: #fff;
}

.promo .promo-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #0d7fb2;
  background: #0d7fb2;
  color: #fff;
}

.promo .promo-btn:hover {
  background: #0b486b;
  border: 2px solid #0b486b;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #0d7fb2;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #191919;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #333333;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #0d7fb2;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #0d7fb2;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
/*.pricing {
  background: #f2f2f2;
  padding-bottom: 80px;
}

.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}

.pricing .box:hover {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #191919;
}

.pricing .box h4 {
  font-size: 42px;
  color: #0d7fb2;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #191919;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #0d7fb2;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  background: #0d7fb2;
  display: inline-block;
  padding: 10px 40px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #e82d2d;
}

.pricing .featured {
  background: #0d7fb2;
  box-shadow: none;
  color: #fff;
}

.pricing .featured h3, .pricing .featured h4, .pricing .featured ul, .pricing .featured ul li, .pricing .featured ul .na {
  color: #fff;
}

.pricing .featured h4 span {
  color: rgba(255, 255, 255, 0.58);
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  background: rgba(255, 255, 255, 0.2);
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #0d7fb2;
}

.pricing .section-title span {
  color: #e4e4e4;
}*/

/*--------------------------------------------------------------
# Models
--------------------------------------------------------------*/
.models .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
  transition: all ease-in-out 0.3s;
}

.models .member img {
  width: 100%;
  /*max-width: 60%;
  border-radius: 50%;*/
  margin: 0 0 30px 0;
}

.models .member h2 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 24px;
}

.models .member span {
  display: block;
  font-size: 15px;
  font-style: italic;
}

.models .member p {
  padding-top: 10px;
  font-size: 15px;
  font-style: italic;
  color: #888888;
}

.models .member .social {
  margin-top: 15px;
}

.models .member .social a {
  color: #0d7fb2;
  transition: 0.3s;
}

/*.models .member .social a:hover {
  color: #0d7fb2;
}*/

.models .member .social i {
  position: relative;
  top: 2px;
  font-size: 24px;
  margin: 0 5px;
}

.models .member:hover {
  background: #0d7fb2;
  border-color: #0d7fb2;
  padding: 20px 20px 40px 20px;
}

.models .member:hover h2 a, .models .member:hover span, .models .member:hover p, .models .member:hover .social a, .models .member:hover .social a:hover  {
  color: #fff;
}

.models .tags a {
  display: inline-block;
  width: 260px;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-align: center;
  transition: 0.5s;
  font-size: 18px;
  line-height: 40px;
  background: #000;
  color: #fff;
}

.models .tags a:hover {
  background: #0d7fb2;
}

@media (max-width: 575px) {
  .models .tags a {
    width: 150px;
	margin-bottom: 5px;
    padding: 5px 10px;
	font-size: 14px;
    line-height: 20px;
  }
  .models .tags {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Models Details
--------------------------------------------------------------*/
.models-details {
  padding-top: 40px;
}

.models-details .models-details-container {
  position: relative;
}

.models-details .models-details-carousel {
  position: relative;
  z-index: 1;
}

.models-details .models-details-carousel .owl-nav, .models-details .models-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.models-details .models-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.models-details .models-details-carousel .owl-dot.active {
  background-color: #0d7fb2 !important;
}

.models-details .models-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.models-details .models-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.models-details .models-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.models-details .models-info ul li + li {
  margin-top: 10px;
}

.models-details .models-description {
  padding-top: 50px;
}

.models-details .models-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.models-details .models-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .models-details .models-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #0d7fb2;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #e8f3f8;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #0d7fb2;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #0d7fb2;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0d7fb2;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #0d7fb2;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #0d7fb2;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0d7fb2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #efefef;
  margin-top: 98px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  padding: 0 0 0 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #191919;
  color: #fff;
  border-top: 4px solid #0d7fb2;
  text-align: center;
  padding: 30px 20px 20px;
}

#footer .footer-top .footer-info h1 {
  font-size: 32px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
}

#footer .footer-top .footer-info h1 span {
  color: #0d7fb2;
}

#footer .footer-top .footer-info h2 {
  font-size: 20px;
  margin: 0 0 5px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-info a {
  color: #0d7fb2;
  letter-spacing: 1px;
}

#footer .footer-top .footer-info .social-links .bx {
  margin: 1px 0px 0px 3px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #262626;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0d7fb2;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .social-links a.social:before{
    content: '';
    display: block;
    width: 20px;
	height: 20px;
	margin: auto;
	background-size: cover !important;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #0d7fb2;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #0d7fb2;
}

#footer .footer-top .footer-languages {
  text-align: center;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  padding: 15px 0;
}

#footer .footer-top .footer-languages a {
  font-size: 12px;
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .footer-languages a:hover {
  color: #0d7fb2;
}

#footer .footer-top .footer-notice a {
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .footer-notice a:hover {
  color: #0d7fb2;
}

.footer-logos img {
    height: 120px;
}

.footer-logos a {
    margin-right: 40px;
}

#footer .copyright {
  text-align: center;
  padding: 15px 0;
}

#footer .credits {
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #fff;
}

#footer .container-fluid {
  background: #0d7fb2;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Social icons
--------------------------------------------------------------*/

a.twitter:before{
    background: url("../img/social/social_twitter.png");
}

a.instagram:before{
    background: url("../img/social/social_instagram.png");
}

a.tiktok:before{
    background: url("../img/social/social_tiktok.png");
}

a.twuko:before{
    background: url("../img/social/social_twuko.png");
}

a.allmylinks:before{
    background: url("../img/social/social_allmylinks.png");
}

a.mybio:before{
    background: url("../img/social/social_mybio.png");
}

a.bemyfan:before{
    background: url("../img/social/social_bemyfan.png");
}

a.linktree:before{
    background: url("../img/social/social_linktree.png");
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner-desktop {
	visibility: visible;
	display: inline;
}

.banner-mobile {
	visibility: hidden;
	display: none;
}

@media (max-width: 992px) {
	.banner-desktop {
		visibility: hidden;
		display: none;
	}

	.banner-mobile {
		visibility: visible;
		display: inline;
	}
}

/*--------------------------------------------------------------
# Cams
--------------------------------------------------------------*/
/*.cams-desktop {
	visibility: visible;
	display: inline;
}

.cams-mobile {
	visibility: hidden;
	display: none;
}

@media (max-width: 1400px) {
	.cams-desktop img {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.cams-desktop {
		visibility: hidden;
		display: none;
	}

	.cams-mobile {
		visibility: visible;
		display: inline;
	}

	.cams-mobile img {
		width: 100%;
	}
}*/

/*--------------------------------------------------------------
# Audio Controls
--------------------------------------------------------------*/

/*#audioControls {
  position: absolute;
  bottom: 0;
  color: #fff;
  margin: 40px;
}*/

#audioControls {
  display: inline;
}

.btn-volumn:not(.active) .vol-nonmute,
.btn-volumn.active .vol-mute {
  display: none;
}

#audioControls button {
  width: 170px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 20px;
  transition: 0.5s;
  border: 2px solid #0d7fb2;
  background: #0d7fb2;
  color: #fff;
  outline: none;
}

#audioControls button:hover {
  background: #0b486b;
  border-color: #0b486b;
}

#audioControls i {
  font-size: 18px;
  margin-right: 2px;
}