/**
* Template Name: Bootslander - v4.7.2
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Raleway', sans-serif;
  color: #444444;
}

a {
  color: #3d78cb;
  text-decoration: none;
}

a:hover {
  color: #3d78cb;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# 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 #3d78cb;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -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);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3d78cb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3d78cb;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  /*transition: all 0.5s;*/
  z-index: 9997;
  /*transition: all 0.5s;*/
  background: rgba(1, 4, 136, 0.9);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: rgb(23, 23, 23);
  height: 80px;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 40px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/*.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #1acc8d;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}*/
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
  font-weight: 600;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1acc8d;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #121010;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #222;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li > a:before {
  left: 20px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #eee;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul, .navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li, .navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a, .navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i, .navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a, .navbar-mobile .dropdown .dropdown ul a:hover, .navbar-mobile .dropdown .dropdown ul .active:hover, .navbar-mobile .dropdown .dropdown ul li:hover > a {
  color: #1acc8d;
}
.navbar-mobile .dropdown > .dropdown-active, .navbar-mobile .dropdown .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #171717;
  position: relative;
  padding: 170px 0 0 0;
  background-position: 100% 100%;
  background-size: cover;
  min-height: 600px;
}
/*#hero:before {
  content: "";
  background: rgba(2, 5, 161, 0.91);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}*/
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 55px;
  line-height: 75px;
  color: #fff;
  font-weight: 500;
  font-family: 'Yanone Kaffeesatz', sans-serif; 
}
#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #1acc8d;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 300;
}
#hero .btn-get-started {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
}
#hero .btn-get-started:hover {
  background: #17b57d;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


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


@media (max-width: 991px) {
  /*#hero {
    padding-top: 80px;
  }*/
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 50%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Raleway', sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #1acc8d;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  color: #000;
  text-align: center;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {

  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 500;
  color: #010483;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #1acc8d;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #1acc8d;
  border-color: #1acc8d;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #1acc8d;
}
.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box {
  background: url("../img/about.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}
.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.features .icon-box h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}
.features .icon-box h3 a:hover {
  color: #01036f;
}
.features .icon-box:hover {
  background: #ebebff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}
.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #1acc8d;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #010483;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}
.details .content h3 {
  font-weight: 600;
  font-size: 30px;
  color: #000;
}
.details .content p {
  color: #575757;
  font-size: 15px;
  line-height: 25px;
  width: 71%;
  margin: 20px 0;
}
.details .content ul {
  list-style: none;
  padding: 0;
}
.details .content ul li {
  padding-bottom: 10px;
}
.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1acc8d;
}
.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1acc8d;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}
.team .member {
  text-align: left;
  padding: 15px !important;
  padding-bottom: 0px !important;
}
.team .member .pic {
  border-radius: 15px;
  overflow: hidden;
  background: #3D78CB10;
  padding: 15px;
}
.team .member img {
  transition: all ease-in-out 0.4s;
  height: 166px;
  width: 100%;
  object-fit: contain;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .member-info {
  /*position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;*/
  /*background: rgba(255, 255, 255, 0.9);*/
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}
.team .member h4 {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 18px;
  color: #2E2E2E;
  position: relative;
  padding-bottom: 10px;
}
.member-info p {
  font-size: 16px;
  line-height: 28px;
  color: #575757;
  margin: 0;
}
.member-info h5 {
  font-size: 18px;
  line-height: 28px;
  color: #3D78CB;
  font-weight: 500
}

/*.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}*/
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}
.team .member .social {
  margin-top: 10px;
}
.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}
.team .member .social a:hover {
  color: #1acc8d;
}
.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
.pricing h4 {
  font-size: 36px;
  color: #1acc8d;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 20px;
}
.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing ul li {
  padding-bottom: 16px;
}
.pricing ul i {
  color: #1acc8d;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: #1acc8d;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #149f6e;
}
.pricing .featured h3 {
  color: #fff;
  background: #1acc8d;
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1acc8d;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #3d78cb;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #1acc8d;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #3f43fd;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #010483;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0205a1;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #1acc8d;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #18d26e;
  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 #18d26e;
  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 {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #1acc8d;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3d78cb;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #171717;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #fff;
  padding: 0 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Raleway', sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  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: #1acc8d;*/
  color: #fff;
  text-decoration: none;
}
#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: #61ebba;
  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: #e37c03;
}
#hero form {
  margin-top: 30px;
  padding: 0;
  position: relative;
}
/*#hero form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}*/
#contactForm label {
  color: #fff;
}
#hero form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 51px;
  background: #3d78cb;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  margin: 2px;
}
#hero form input[type=submit]:hover {
  /*background: #149f6e;*/
  opacity: 0.8;
}

#newslatter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#newslatter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 51px;
  background: #3d78cb;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  margin: 2px;
}
#newslatter form {
  margin-top: 15px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Subscribe h3 {
  font-size: 16px;
  margin: 0;
}
#newslatter form input[type=submit]:hover {
  /*background: #149f6e;*/
  opacity: 0.8;
}
#newslatter form .btn.btn_theme_color {
  position: absolute;
  right: 0;
  top: 0;
  height: 45px;
  border: ;
  border-radius: 0 50px 50px 0;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #149f6e;
}
#footer .copyright {
  /*border-top: 1px solid #010479;*/
  text-align: center;
  /*padding-top: 30px;*/
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-info img {
  width: 200px;
  margin: 0 0 20px 0;
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*MyCss*/
.nav-link.btn.btn-theme {
  background: #3d78cb;
  text-align: center;
  padding: 5px 10px;
  margin-left: 40px;
}
.member {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}
.owl-carousel .owl-stage-outer { 
overflow: visible;
}
.owl-item {
   opacity: 0;
   transition: opacity 500ms;
}
.owl-item.active {
  opacity: 1;
}

.btn.btn_theme_color {
  background: #3D78CB;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  padding: 5px 25px;
}
#details {
  background: #3D78CB05;
  position: relative;
}
#details::after {
  content: '';
  position: absolute;
  bottom: 0px;
  width: 100%;
  border-top: 0 ;
  border-left: 50vw solid #FBFCFE;
  border-bottom: 50px solid #fff;
  border-right: 50vw solid #FBFCFE;
}
#details::before {
  content: '';
  position: absolute;
  top: 0px;
  width: 100%;
  border-top: 50px solid #fff;
  border-left: 50vw solid #FBFCFE;
  border-bottom: 0px;
  border-right: 50vw solid #FBFCFE;
}
.content.testimonal_sec_content h5 {
  font-size: 16px;
  font-weight: 400;
  color: #000
}
.content.testimonal_sec_content h3 {
  font-size: 30px;
  margin: 20px 0;
  color: #000;
}


.img_user {
  margin-right: 15px;
}
.img_user img {
  height: 60px;
  width: 60px !important;
  margin-right: 0;
  border-radius: 30px;
}
.quote {
  height: 60px;
  width: 60px !important;
  object-fit: contain;
}
.name_rate i.active {
  color: #FF8A00;
}
.name_rate i {
  color: #E6E6E6;
}
.name_rate p {
  margin: 0;
  font-weight: 500;
  color: #000;
}
.testimonial_content {
  padding: 50px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.09);
  border-radius: 40px;
}
.content_text {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 300;
  color: #575757;
  line-height: 30px;
  width: 80%;
}
.owl-prev img, .owl-next img {
  width: 30px;
  margin-right: ;
  padding: 5px;
}
#team .owl-nav {
  text-align: center;
  margin-top: 30px;
}
#testimonal_sec .owl-nav {
  position: absolute;
  left: -75%;
  top: ;
  border: ;
  bottom: 22%;
}
#newslatter {
  background: #F5F8FC;
  padding: 30px 0;
}
.info_news h3 {
  font-size: 20px;
  font-weight: 400;
  color: #3d78cb;
}
.info_news p {
  font-size: 15px;
  width: 75%;
  color: #000;
  font-weight: 300;
}

.body_login{
  width: 100%;
  /*background: url("../img/hero-bg.png");*/
  position: relative;
  padding: 0px 0 0 0;
  background-position: 100% 100%;
  background-size: cover;
}
.btn.btn-theme {
  background: #3d78cb;
  color: #fff;
  font-size: 15px;
}
.Signup_btn{
  color: #fff;
}
.Signup_btn h3{
  color: #fff;
  font-size: 30px;
}
.Signup_btn p{
  color: #ffffff80;
  font-size: 15px;
  font-weight: 300
}
.login_form {
  background: #3d78cb;
  height: 100vh;
  padding: 120px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.Signup_btn {
  color: #fff;
  background: #79a1db;
}
.Signup_btn {
  color: #fff;
  background: #79a1db;
  position: relative;
  padding-top: 120px;
}
.Signup_btn img{
  width: 100%
}

.login_form h3{
  color: #fff;
  font-size: 30px;
}
.login_form p{
  color: #ffffff80;
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}
.form-control, .form-select {
  border: 1px solid #fff !important;
  border-radius: 6px;
  min-height: 45px;
  /*margin-top: 25px;*/
  font-size: 14px;
  padding-left: 20px !important;
  color: #fff !important;
  background: #ffffff80;
}
.pw_signup .form-control {
  margin-top: 15px;
}
.btn.btn-light{
  border-radius: 15px;
  background: #fff;
  opacity: 1;
  height: 40px;
  font-size: 16px;
  color: #3d78cb;
}
.login_form p a {
  color: #fff;
}
.login_form .form-check label{
  color: #fff;
}
.login_form .form-check label {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #00000060;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #00000060;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #00000060;
}
.login_form.pw_signup {
  height: auto;
}

.fix{
  color: #fff;
  background: #79a1db;
  position: fixed;
  padding-top: 120px;
  width: 41.66666667%;
  bottom: 0;
  right: 0;
}

.social-links i {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
}
.text-center.top_heading::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 3px;
  background: #ffffff50;
  left: 0;
  top: 38px;
}
.text-center.top_heading::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 3px;
  background: #ffffff50;
  right: 0;
  top: 38px;
}

html:lang(he) .text-center.top_heading::before, html:lang(he) .text-center.top_heading::after{
  width: 26%;
}

.text-center.top_heading {
  position: fixed;
  top: 80px;
  width: 98%;
  left: 1%
}

.text-center.gallary_heading::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 3px;
  background: #ffffff50;
  left: 0;
  top: 38px;
}
.text-center.gallary_heading::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 3px;
  background: #ffffff50;
  right: 0;
  top: 38px;
}

.text-center.gallary_heading {
  position: relative;
}

.img_div {
  overflow: hidden;
  border-radius: 50%;
  height: 240px;
  width: 200px;
  margin-right: 20px;
  border: 1px solid #ffffff60;
}
.left_text h6 {
  font-size: 35px;
  color: #fff;
  margin: 0 0 0 50px;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}
.left_text p {
  color: #ffffff80;
  font-size: 15px;
  margin: 0;
  font-weight: 300;

}
.left_text h6 {
  font-size: 35px;
  color: #fff;
  margin: 10px 0 20px 50px;
  font-weight: 400;
  text-decoration: underline;
}
.btn-outline {
  box-shadow: none !important;
  color: #fff !important;
  border: 1px solid #ffffff70 !important;
  border-radius: 30px !important;
  padding: 5px 20px !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}
.img_div img {
  object-fit: cover;
  padding: 4px;
  border-radius: 50%;
  height: 240px;
  width: 200px;
}
.art_studio_sec .img_div {
  overflow: hidden;
  border-radius: 20px;
  height: auto;
  width: auto;
  margin-left: 20px;
  border: 1px solid #ffffff60;
  margin-right: 0;
}
.art_studio_sec .img_div img {
  object-fit: cover;
  padding: 4px;
  border-radius: 20px;
  height: 310px;
  width: 250px;
}
.art_studio_sec .left_text {
  text-align: right;
}
.art_studio_sec .left_text h6 {
  font-size: 35px;
  color: #fff;
  margin: 10px 40px 20px 0;
  font-weight: 400;
  text-decoration: underline;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}
.profile_top_bar.art_studio_sec {
  border-left: 1px solid #ffffff20;
}

.profile_image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 150px;
  margin-bottom: 20px;
}
.profile_image h2 {
  font-size: 35px !important;
  color: #fff !important;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}
.profile_image p {
  width: 55%;
  text-align: justify;
  margin: 0 auto;
  color: #ffffff95;
  font-size: 16px;
  margin-bottom: 20px;
}
.profile_image p.says {
  font-size: 20px;
  color: #ffffff;
  font-family: 'Yanone Kaffeesatz', sans-serif;
}

.profile_image p.quote_word{
  font-size: 18px;
  color: #ffffff;
  /*font-weight: 300;*/
  font-style: italic;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  letter-spacing: 1.2px;
}

.gallery_img img {
  display: block;
  width: 100%;
  height: 200px;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}
.col p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 5px;
}
.gallery_img {
  border-radius: 10px;
  width: 100%;
}
.detail_img img {
  width: 100%;
  border-radius: 15px;
  border: 1px solid #ffffff70;
  padding: 3px;
}

.details h3 {
  color: #fff;
  font-size: 30px;
}
.details p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 300;
}
.details h5 {
  color: #ffffff90;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.2px;
}
.shows .col{
   margin-bottom: 15px;
}
.shows .gallery_img img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  object-fit: contain;
}
.btn.btn-outline.btn_back {
  position: fixed;
  right: 50px;
  bottom: 45px;
  background: #171717;
  z-index: +1111;
}
.info_show h3{
  font-size: 20px;
color: #ffffff90;
}
.btn.btn-outline.btn_back:hover,
.btn:hover {
  color: #171717 !important;
  background: #fff !important;
}

.form-control:focus {
  color: #212529;
  background-color: #ffffff70;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}
.flag_dropdown {
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0px 10px 5px;
}
img.flag_img {
    width: 25px;
}
/*MyCss*/

.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/*.slide .slide__img > img {
  max-width: 100%;
  height: 100vh;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  width: 100%;
  object-fit: cover;
}*/

.slide .slide__img > img {
  max-width: 100%;
  height: 100vh;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  width: 100%;
  object-fit: contain;
  backdrop-filter: brightness(75%) blur(30px);
  padding: 100px;
}

.slide__img.position-relative {
  background-size: cover;
  background-repeat: no-repeat;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 22%;
  transform: translate(-15%, -70%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  /* font-family: 'Yanone Kaffeesatz', sans-serif; */
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0;
}
.slide .slide__content--headings .title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

/*.slick-dots {
	position: absolute;
	bottom: 25px;
	list-style: none;
	display: block;
	text-align: left;
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	grid-gap: 20px;
	flex-direction: column;
	left: 50px;
	bottom: 35px;
	z-index: 999;
}*/
/*.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: left;
    padding: 0;
    margin: 0;
    width: 100%;
    padding: 0 50px;
    display: flex;
    grid-gap: 20px;
    flex-direction: column;
    left: 0;
    bottom: 35px;
    z-index: 999;
    align-items: end;
}*/
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: left;
  padding: 0;
  margin: 0;
  width: 10%;
  padding: 0 50px;
  display: flex;
  grid-gap: 20px;
  flex-direction: column;
  left: auto;
  bottom: 50%;
  z-index: 999;
  align-items: end;
  right: -30px;
  transform: translateY(50%);
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slider .slick-dots li.slick-active button {
    color: white;
    opacity: 1;
    height: 20px;
    border-radius: 100px;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 10px;
  width: 10px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.7;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 100%;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
          animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.banner__slider  {
  background-color: #171717;
}

.gallery-section {
  padding: 2rem 0;
  margin: 0rem 0;
  background: url(../../assets/img/portfolio-bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
}

.blog-section .image-content img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

.blog-section .blog-content {
  padding: 0 80px;
}

.blog-section .blog-content h2 {
  font-size: 42px !important;
  letter-spacing: 2px;
}

.blog-section .blog-content p {
  color: #f1f1f1;
  font-weight: 200;
  letter-spacing: 0px;
}

.blog-section .image-content {
  position: relative;
}

.blog-section .image-content:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 25px;
  width: 93%;
  height: 87%;
  border: 1px solid #fff;
}

.blog-section .image-content.right-side:before {
  width: 91%;
}

.blog-section {
  padding-bottom: 10rem;
}

footer {
    background: #171717;
    padding: 4rem 0 4rem;
    border-top: 3px solid #ffffff50;
}

footer .logo-title {
  font-size: 40px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer .nav .nav-item .footer-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 15px;
  display: block;
}

footer .nav .nav-item .nav-link {
  font-size: 16px;
  color: #c5c5c5;
  padding: 0;
  margin-bottom: 8px;
}

/*footer .copyright-wrap {
  margin-top: 50px;
  border-top: 1px solid #fff;
  text-align: center;
}
*/
/*footer .copyright {
  padding: 40px 0;
  color: #c5c5c5;
  font-size: 14px;
  display: block;
}*/
footer .copyright {
    /* padding: 40px 0; */
    color: #c5c5c5;
    font-size: 14px;
    display: block;
}

footer .social-links a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

footer .social-links a img{
      width: 50px;
    height: 50px;
}
#header .social-links a.facebook img{
      width: 25px;
    height: 25px;
    margin-top: -9px;
    margin-right: 9px;
}
footer .social-links  {
  column-gap: 15px;
}

footer .social-links a i {
  font-size: 14px;
}

.about-artist {
  background: #222;
  padding: 20px 15px;
  width: 200px;
  position: absolute;
  bottom: 20px;
  left: 100px;
}

.about-artist img {
  margin: 0 auto;
  width: 150px;
  border-radius: 100%;
}

.about-artist h3 {
  font-size: 14px;
  width: 100%;
  margin: 10px auto 5px;
  color: gold;
}

.about-artist p {
  font-size: 10px;
  margin: 0;
  line-height: 1.2;
  color: gold;
}

#hero .heady-wrap h2 {
  margin: 0 0 20px;
  font-size: 55px;
  font-weight: 600;
  font-style: italic;
  color: #f44336;
}

.heady-wrap h4 {
  font-weight: bold;
  color: #e7e7e7;
  font-style: italic;
  margin-bottom: 40px;
}

.detail_page .details > p {
  font-size: 15px;
  color: #e7e7e7;
  font-style: italic;
}

.detail_page .details h3 {
  font-size: 20px;
  color: #e7e7e7;
}

.detail_page .details h5 {
  font-style: italic;
  color: #e7e7e7;
  letter-spacing: 1px;
}

.detail_page .details .info_show h3 > p,
.detail_page .details .info_show h3 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.text-center.top_heading.sticky {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: +1;
    left: 0;
    background: #171717;
}

main#main {
  min-height: 100vh;
  background: #171717;
}

.gallery-detail-wrapper {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  grid-gap: 20px;
}


@media only screen and (max-width: 600px) {



	.gallery-detail-wrapper { 
		justify-content: space-between;
	}

  #header {
    z-index: 99999;
  }

  .slide .slide__content.slide__content__left {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .about-artist {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  #hero .heady-wrap h2 {
    margin-top: 20px;
    line-height: 1.3;
    font-size: 35px;
  }

  .profile_image p {
    width: 100%;
  }
  
  .gallery-section .col {
    padding: 15px;
  }
}

.slick-nav.next-arrow{
  z-index: 999;
}
/*.overlay {
  position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(00,00,00,0.5);
    left: 0px;
    top: 0;
    z-index: 9;
}*/
.about-artist{
  z-index: 999;
}
.about-artist img{
  border: 5px solid #fff;
}

.gallery-image-detail .detail_img img {
    /*max-height: 350px;
    margin-bottom: 0px;
    object-fit: cover;
    object-position: top;*/
        max-height: 600px;
    margin-bottom: 0px;
    object-fit: contain;
    object-position: top;
}

.detail_img {
	/*text-align: center;*/

}
.detail_img.magnifiedImg iframe{
	height: 70vh;
    min-height: 70vh;
    width: 100%;
    min-width: 100%;
}
.detail_img img{
	  max-height: 600px;   
    margin-bottom: 0px;
    object-fit: contain;
    object-position: top;
}

.show_detail_page .detail_img img {
  width: 100% !important;
    max-height: 720px;
    object-fit: contain;
    width: auto;
    margin: 0 auto;
}

.show_detail_page .detail-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: calc(100vh - 150px);
}

.show_detail_page .detail-wrapper .slider-detail { 
	margin: 50px 0 100px;
}

.show_detail_page .detail-wrap {
	display: flex;
	justify-content: center;
	column-gap: 50px;
	flex-wrap: nowrap;
}

.show_detail_page .detail-wrap .detail-item {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 50%;
}
.show_detail_page .slick-dots {
    flex-direction: row;
    grid-gap: 0;
    justify-content: center;
    left: 0;
}

.news-page .gallery_img iframe,
.news-page .gallery_img img {
	height: 180px;
	object-fit: cover;
}
.btn-group, .btn-group-vertical {
  grid-gap: 15px;
}

.gallery-item a {
  text-decoration: none !important;
}

body {
  background-color: #171717 !important; 
}

#contactForm input, #contactForm textarea {
  color: #121212 !important;
  background-color: #eee !important;
}










@media only screen and (max-width: 2200px) and (min-width: 1600px) {
	.show_detail_page .detail_img img {
	    width: 100%;
        max-height: 100%;
	}

	.show_detail_page .detail-wrapper {
		min-height: calc(100vh - 260px);
	}
}

@media only screen and (max-width: 600px) {
	.show_detail_page .detail-wrap {
		flex-wrap: wrap;
	}
}



.nav-item .bi-youtube::before {
    margin-top: 11px;
}
.nav-item .bi-instagram::before {
    margin-top: 11px;
}
.nav-item .bi-facebook::before {
    margin-top: 11px;
}

.detail_slider .owl-nav button {
  border: 1px solid #00000070 !important;
  border-radius: 20px;
  height: 35px;
  width: 35px;
  filter: invert();
  margin: 0 10px;
}
.owl-carousel.detail_slider .owl-nav {
  position: fixed;
  bottom: 45px;
  right: 0px;
}
.owl-carousel.detail_slider .owl-nav .owl-prev {
  margin-right: 108px !important;
}
.slide__img.position-relative {
  background-size: cover;
  background-repeat: no-repeat;
}
.slick-nav.prev-arrow {
  z-index: 9999999;
}
.slick-nav.next-arrow {
  z-index: 9999999;
}

html:lang(he) .owl-carousel.detail_slider.owl-loaded.owl-drag {
    direction: ltr;
}
/*
html:lang(he) .owl-carousel .owl-item {
  float: right
}*/

html:lang(he) .btn.btn-outline.btn_back {
    right: 65px;
}