/**
* Template Name: CYBERA - v1.0.0
* Author: Maryam-Hajireza.ir

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

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

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

.rtl-direction{
  direction:rtl;
}

.text-to-right{
  text-align: right;
}

.justified-text{
  text-align: justify;
}
.number-direction{
  display:inline-block;
  direction:ltr;
}

.gdesc-inner{
  direction:rtl;
  text-align: center;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  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: #2eafec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Helper nav buttons
--------------------------------------------------------------*/
.helper-nav-buttons-wrapper{
  position: fixed;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 1000;
}

.helper-nav-buttons-wrapper .btn{
  border-radius: 50%;
  background-color: #149ddd;
  color: #fff;
  opacity: 0.5;
}

.helper-nav-buttons-wrapper .btn:hover{
  opacity: 1;
}

.helper-nav-buttons-wrapper .dropdown-item.active{
  background-color: #149ddd;
  color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}

#header .profile h1, #header .profile .h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a, #header .profile h1 a:hover ,
#header .profile .h1 a, #header .profile .h1 a:hover{
  color: #fff;
  text-decoration: none;
}

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

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-right: 300px;
}

@media (max-width: 1199px) {
  #header {
    right: -300px;
  }
  #main {
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

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

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i {
  font-size: 24px;
  padding-left: 8px;
  color: #6f7180;
}

.nav-menu a:hover, .nav-menu .active, .nav-menu li:hover > a {
  text-decoration: none;
  color: #fff;
}

.nav-menu a:hover i, .nav-menu .active i, .nav-menu li:hover > a i {
  color: #149ddd;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  left: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

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

.mobile-nav-active #header {
  right: 0;
}

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

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 , #hero .h1{
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #149ddd;
}

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


@media (max-width: 768px) {
  #hero h1 ,#hero .h1{
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 ,#hero .h2{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero {
    background: url("../../../../img/about-me/hero-small-bg.jpg")top center;
    background-size: cover;
    max-height: 100vh !important;
  }
  #hero:before {
    min-height: 100vh;
    max-height: 100vh;
    height:100vh;
  }
}

@media (max-width: 300px) {
  #hero .hero-container{
    right: 10%;
  }
  #hero .hero-container h1,
  #hero .hero-container .h1{
    font-size: 20px;
  } 
  #hero .hero-container p{
    font-size: 15px;
  }
}

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

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2,
.section-title .h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after,
.section-title .h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  right: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3,
.about .content .h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #149ddd;
  float: right;
  line-height: 0;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-right: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 60px 0 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.skills .progress .skill .val {
  float: left;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 20px 20px 0;
  margin-top: -2px;
  border-right: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4, 
.resume .resume-item .h4{
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5,
.resume .resume-item .h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  right: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #37b3ed;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

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

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

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

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 ,
.portfolio-details .portfolio-description .h2{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #149ddd;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #149ddd;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

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

.services .icon-box:hover .icon i {
  color: #149ddd;
}

.services .title {
  margin-right: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #149ddd;
}

.services .description {
  margin-right: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3,
.testimonials .testimonial-item .h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4,
.testimonials .testimonial-item .h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.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 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width:1200px) {
  .testimonials .testimonial-item p {
    height:280px;
  }

  .testimonial-text-wrapper{
    overflow: hidden;
    width:80%;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
  }
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: right;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4,
.contact .info .h4 {
  padding: 0 60px 0 0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 60px 10px 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-right: 60px;
}

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

.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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: #ed3c0d;
  padding: 15px;
  font-weight: 600;
  text-align: right;
}

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

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

.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;
}

.show_contactform_message{
  display: block !important;
}

.contact .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.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 15px;
}

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

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

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

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

.maps{
  border:0; width: 100%; height: 450px;
}
.captha-reload{
  height: 53px;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

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

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
/*Card header color style*/
#blog-main .card .card-header{
  background-color: rgba(0,0,0,.03);
  border-color: rgba(146, 115, 115,0.2);
  color:#272829;
}

/*Header*/
#blog-header .navbar{
  background: #040b14;
}
#blog-header .navbar .navbar-toggler,#blog-header .navbar .navbar-toggler:focus{
  border:none;
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

#blog-header .navbar-brand img{
  width:70px;
  height:70px;
  display: block;
  border: 4px solid #2c2f3f;
}

#blog-header .navbar-brand-text{
  color: #fff;
  font-size:16px;
  margin-right: 5px;
  font-weight: bold;
}

#blog-header .navbar-brand-text:hover{
  color: #a8a9b4;
}

#blog-header .search-form .btn{
  background: #149ddd;
  color: #fff;
}
#blog-header .search-form .btn:hover{
  background: #2eafec;
}
#blog-header .search-form .btn:focus{
  box-shadow: none !important;
}

#blog-header input.form-control,#blog-header input.form-control:focus {
  border:none;
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

#blog-header .nav-link{
  color: #a8a9b4;
}

#blog-header .nav-link:hover,#blog-header .nav-bar .active,#blog-header .nav-bar li:hover > .nav-link {
  text-decoration: none;
  color: #fff;
}

#blog-header .nav-bar .nav-link:hover i, #blog-header .nav-bar .active i,#blog-header .nav-bar li:hover > .nav-link i {
  color: #149ddd;
}

#blog-header .navbar .nav-link.active{
  color: #ffff;
}

#blog-header .navbar .nav-link.active i{
  color: #2eafec;
}

#blog-header .navbar .nav-link:hover i{
  color: #149ddd;
}

#blog-header .navbar .nav-link{
  white-space: nowrap;
}

@media (min-width: 1000px){
  #blog-header .navbar-nav{
    max-width: 614px;
    overflow-x: scroll;
  } 
}

#blog-header .sub-navbar{
  background: #212431;
}

#blog-header .sub-navbar .nav-link{
  padding-top:5px;
  padding-bottom: 7px;
}

#blog-header .sub-navbar .nav-link.active{
  background:#2eafec;
  color: #ffff;
}

#blog-header .sub-navbar .dropdown-item.active{
  background:#2eafec;
  color: #ffff;
}

.fixed-sub-navbar{
  position: static;
}

@media(min-width:992px){
  .fixed-sub-navbar{
    position: fixed;
    top:0; left:0;
    width: 100%; 
    z-index: 10;
  }
}

/*Posts*/
#blog-posts{
  min-height: 100vh;
}

#blog-posts .post{
  border-color: rgba(146, 115, 115,0.2);
  overflow: hidden;
}

#blog-posts .post .post-image{
  min-height: 100%;
  height: auto;
}

#blog-posts .post .post-info{
  border-bottom: 1px solid  rgba(146, 115, 115,0.2);
  padding-bottom: 5px;
}
#blog-posts .post .post-info div{
  cursor: default;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
}

#blog-posts .post .post-info .has-border{
  border-left: 1px solid  rgba(146, 115, 115,0.2);
  
}

@media (max-width:575px){
  #blog-posts .post .post-info .has-border.small-screen, .hide-info-border{
    border-left: none!important;
    
  }
}

#blog-posts .post .card-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
}

#blog-posts .post .more-btn{
  background: #149ddd;
  color: #fff;
  width:140px;
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
}

#blog-posts .post .more-btn:hover{
  animation-name: winking-background;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@-webkit-keyframes winking-background {
  0% { background: #149ddd;}
  50%{ background: #2eafec;}
  100%{ background: #149ddd;}
}

#blog-posts .post .more-btn .btn-arrow{
  margin-left: 10px;
}
#blog-posts .post .more-btn:hover .btn-arrow{
  animation-name: move-back-and-forth;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes move-back-and-forth {
  0% { margin-right: 0;margin-left: 10px;}
  50%{ margin-right : 10px;margin-left: 0px;}
  100%{ margin-right: 0;margin-left: 10px;}
}

/*Side bar*/

#blog-posts .side-bar .card-header,#blog-posts .side-bar .card{
  border-color: rgba(146, 115, 115,0.2);
  cursor: default;
}

#blog-posts .side-bar .card.newest .list-group-item{
  border-left: transparent;
  border-right: transparent;
  border-radius: 0;
}

#blog-posts .side-bar .card.newest .list-group-item .newest-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
}

/*Filter*/ 
#blog-posts .filter-results .filter-form .btn{
  background: #149ddd;
  color: #fff;
}
#blog-posts .filter-results .filter-form .btn:hover{
  background: #2eafec;
}
#blog-posts .filter-results .filter-form.btn:focus{
  box-shadow: none !important;
}

#blog-posts .filter-results .filter-form .form-control,
#blog-posts .filter-results .filter-form .form-control:focus {
  border-color:rgba(146, 115, 115,0.2);
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

/*Footer*/
#blog-footer{
  color: #f4f6fd;
  background: #040b14;
}

#blog-footer .footer-top{
  padding-top:40px  ;
  padding-bottom:40px  ;
}

#blog-footer .footer-top .footer-contact p,#blog-footer .footer-top .footer-links p{
  margin-top: 20px;
}

#blog-footer .footer-top .footer-links ul{
  margin-top: 20px;
  list-style: none;
}

#blog-footer .footer-top .footer-links ul li{
  padding: 5px 0;
}

#blog-footer .footer-top .footer-links a{
  color: #a8a9b4;
  text-decoration: none;
}

#blog-footer .footer-top .footer-links a:hover{
  color: #149ddd;
}

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

#blog-footer .footer-top .footer-links .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px){
  #blog-footer .footer-top .footer-contact, #blog-footer .footer-top .footer-links{
    text-align:center;
  }
  
}

#blog-footer .footer-devider  {
  border-bottom: 1px solid #a8a9b4;
}

#blog-footer .credits {
  color: #eaebf0;
}

#blog-footer .credits-text{
  direction:rtl;
}

@media (min-width: 768px){
  #blog-footer .credits {
    direction:ltr;
  }
  
  #blog-footer .credits-text{
    direction:rtl;
    width: fit-content;
  }
}

@media (max-width: 767px){
  #blog-footer .credits , #blog-footer .copyright{
    text-align:center;
  }
  
}

/*--------------------------------------------------------------
# Blog post details
--------------------------------------------------------------*/
#blog-posts .post-details .card-text{
  text-align: justify;
}

#blog-posts .post-details .post-info{
  border-bottom: 1px solid  rgba(146, 115, 115,0.2);
  padding-bottom: 5px;
}
#blog-posts .post-details .post-info div{
  cursor: default;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
}

#blog-posts .post-details .post-info .has-border{
  border-left: 1px solid  rgba(146, 115, 115,0.2);
  
}

#blog-posts .post-details .badge{
  text-decoration: none;
  background: #149ddd!important;
  color:#ffff;
}

#blog-posts .post-details .badge:hover{
  text-decoration: none;
  background: #2eafec!important;
  color:#ffff;
}

#blog-posts .post-details .post-download-links,
#blog-posts .post-details .post-refrences{
  border: 1px solid  rgba(146, 115, 115,0.2);
  cursor: default;
}

#blog-posts .post-details .post-download-links h5, #blog-posts .post-details .post-download-links .h5{
  border-bottom: 1px solid  rgba(146, 115, 115,0.2);
}

#blog-posts .post-author{
  overflow: hidden;
  max-height: 200px;
}

#blog-posts .post-author img{
  min-height: 100%;
  height: auto;
  max-height: 200px;
}

#blog-posts .post-author .card-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
}

@media (max-width: 767px){
  .post-author-image-wrapper{
    display:flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575px){
  #blog-posts .post-author{
    overflow: hidden;
    max-height: 410px;
  }
}

#blog-posts  .post-btn, #blog-posts .post-btn-disabled{
  background: #149ddd;
  color: #fff;
  width:130px;
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
}
#blog-posts .post-btn-disabled{
  background-color: rgba(0,0,0,.03);
  color:rgba(146, 115, 115, 0.4);
  border-color: rgba(146, 115, 115, 0.4);
}

#blog-posts  .post-btn:hover{
  background: #2eafec;
}

#blog-posts .post-btn .btn-arrow{
  margin-left: 10px;
}
#blog-posts .post-btn:hover .btn-arrow{
  animation-name: move-back-and-forth;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#blog-posts .post-btn .btn-arrow-reverce{
  margin-right: 10px;
}

#blog-posts .post-btn:hover .btn-arrow-reverce{
  animation-name: move-back-and-forth-reverce;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#blog-posts .post-btn:hover{
  animation-name: winking-background;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes move-back-and-forth-reverce {
  0% { margin-left: 0;margin-right: 10px;}
  50%{ margin-left : 10px;margin-right: 0px;}
  100%{ margin-left: 0;margin-right: 10px;}
}

#blog-posts .post-btn-disabled:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

#blog-posts .comments-wraper-card .comment-image{
  max-width: 100%;max-height: 200px;
}

#blog-posts .comments-wraper-card .comment-respond{
  margin-right: 10px;
  border: 1px solid  rgba(146, 115, 115,0.2);
  cursor: default;
}

#blog-posts .comments-wraper-card .comment-respond .respond-header{
  border-bottom: 1px solid  rgba(146, 115, 115,0.2);
}
/*--------------------------------------------------------------
# Box hover effect
--------------------------------------------------------------*/
.box-hover-shadow{
  transition: box-shadow 500ms;
}
.box-hover-shadow:hover{
  -webkit-box-shadow: 1px 1px 18px 1px rgba(0,0,0,0.4); 
box-shadow: 1px 1px 18px 1px rgba(146, 115, 115, 0.4);
}

/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
/*Card header color style*/
#gallery-main .card .card-header{
  background-color: rgba(0,0,0,.03);
  border-color: rgba(146, 115, 115,0.2);
  color:#272829;
}

/*Header*/
#gallery-header .navbar{
  background: #040b14;
}
#gallery-header .navbar .navbar-toggler,#gallery-header .navbar .navbar-toggler:focus{
  border:none;
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

#gallery-header .navbar-brand img{
  width:70px;
  height:70px;
  display: block;
  border: 4px solid #2c2f3f;
}

#gallery-header .navbar-brand-text{
  color: #fff;
  font-size:16px;
  margin-right: 5px;
  font-weight: bold;
}

#gallery-header .navbar-brand-text:hover{
  color: #a8a9b4;
}

#gallery-header .search-form .btn{
  background: #149ddd;
  color: #fff;
}
#gallery-header .search-form .btn:hover{
  background: #2eafec;
}
#gallery-header .search-form .btn:focus{
  box-shadow: none !important;
}

#gallery-header input.form-control,#gallery-header input.form-control:focus {
  border:none;
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

#gallery-header .nav-link{
  color: #a8a9b4;
}

#gallery-header .nav-link:hover,#gallery-header .nav-bar .active,#gallery-header .nav-bar li:hover > .nav-link {
  text-decoration: none;
  color: #fff;
}

#gallery-header .nav-bar .nav-link:hover i, #gallery-header .nav-bar .active i,#gallery-header .nav-bar li:hover > .nav-link i {
  color: #149ddd;
}

#gallery-header .navbar .nav-link.active{
  color: #ffff;
}

#gallery-header .navbar .nav-link.active i{
  color: #2eafec;
}

#gallery-header .navbar .nav-link:hover i{
  color: #149ddd;
}

#gallery-header .navbar .nav-link{
  white-space: nowrap;
}

@media (min-width: 1000px){
  #gallery-header .navbar-nav{
    max-width: 614px;
    overflow-x: scroll;
  } 
}

#gallery-header .sub-navbar{
  background: #212431;
}

#gallery-header .sub-navbar .nav-link{
  padding-top:5px;
  padding-bottom: 7px;
}

#gallery-header .sub-navbar .nav-link.active{
  background:#2eafec;
  color: #ffff;
}

#gallery-header .sub-navbar .dropdown-item.active{
  background:#2eafec;
  color: #ffff;
}

@media(min-width:992px){
  .fixed-sub-navbar{
    position: fixed;
    top:0; left:0;
    width: 100%; 
    z-index: 10;
  }
}

/*Photos*/
#gallery-photos{
  min-height: 100vh;
}

.gallery-photo-wrapper .card-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
}

.gallery-photo-wrapper .card{
  border:none;
}

.gallery-photo-wrapper .card .photo-top-badge-wrapper{
  position:absolute;
  top: 10px;
  left:0;
  right:0;
  min-width: 100%;
  padding:0 10px;
}

.gallery-photo-wrapper .card .photo-bottom-badge-wrapper{
  position:absolute;
  bottom: 10px;
  left:0;
  right:0;
  min-width: 100%;
  padding:0 10px;
}

.gallery-photo-wrapper .card .photo-badge-wrapper .badge{
  font-size: clamp(8px,2vw,15px);
  text-decoration: none;
  color:#fff;
  background: #149ddd;
}

.gallery-photo-wrapper .card .photo-badge-wrapper .badge:hover{
  background: #2eafec;
}

.gallery-photo-wrapper .card .photo-badge-wrapper .photographer-name{
  font-size: clamp(8px,2vw,12px);
  text-decoration: none;
  color:#fff;
  background: rgba(4, 43, 61,.7);
}

.gallery-photo-wrapper .card .photo-badge-wrapper .history-badge,
.gallery-photo-wrapper .card .photo-badge-wrapper .history-badge:hover{
  text-decoration: none;
  color:#fff;
  background: rgba(4, 43, 61,.7);
  cursor: default;
}

/*Filter*/ 
#gallery-photos .filter-results .filter-form .btn{
  background: #149ddd;
  color: #fff;
}
#gallery-photos .filter-results .filter-form .btn:hover{
  background: #2eafec;
}
#gallery-photos .filter-results .filter-form.btn:focus{
  box-shadow: none !important;
}

#gallery-photos .filter-results .filter-form .form-control,
#gallery-photos .filter-results .filter-form .form-control:focus {
  border-color:rgba(146, 115, 115,0.2);
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

/*Footer*/
#gallery-footer{
  color: #f4f6fd;
  background: #040b14;
}

#gallery-footer .footer-top{
  padding-top:40px  ;
  padding-bottom:40px  ;
}

#gallery-footer .footer-top .footer-contact p,#gallery-footer .footer-top .footer-links p{
  margin-top: 20px;
}

#gallery-footer .footer-top .footer-links ul{
  margin-top: 20px;
  list-style: none;
}

#gallery-footer .footer-top .footer-links ul li{
  padding: 5px 0;
}

#gallery-footer .footer-top .footer-links a{
  color: #a8a9b4;
  text-decoration: none;
}

#gallery-footer .footer-top .footer-links a:hover{
  color: #149ddd;
}

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

#gallery-footer .footer-top .footer-links .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px){
  #gallery-footer .footer-top .footer-contact, #gallery-footer .footer-top .footer-links{
    text-align:center;
  }
  
}

#gallery-footer .footer-devider  {
  border-bottom: 1px solid #a8a9b4;
}

#gallery-footer .credits {
  color: #eaebf0;
}

#gallery-footer .credits-text{
  direction:rtl;
}

@media (min-width: 768px){
  #gallery-footer .credits {
    direction:ltr;
  }
  
  #gallery-footer .credits-text{
    direction:rtl;
    width: fit-content;
  }
}

@media (max-width: 767px){
  #gallery-footer .credits , #gallery-footer .copyright{
    text-align:center;
  }
  
}

/*--------------------------------------------------------------
# Box hover effect
--------------------------------------------------------------*/
.box-hover-shadow{
  transition: box-shadow 500ms;
}
.box-hover-shadow:hover{
  -webkit-box-shadow: 1px 1px 18px 1px rgba(0,0,0,0.4); 
box-shadow: 1px 1px 18px 1px rgba(146, 115, 115, 0.4);
}

/*--------------------------------------------------------------
# Bootstrap 5 accordian customised
--------------------------------------------------------------*/
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  margin-left:0;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
  background: #149ddd;
  color: #fff;
}

.accordion-button:active, .accordion-button:not(.collapsed) {
  background: #149ddd;
  color: #fff;
}

.accordion-button:not(.collapsed)::after, .accordion-button:focus::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#gallery-posts .side-bar .card.side-caregories .accordion-button:hover{
  background-color: rgba(0,0,0,.03);
}

#gallery-posts .side-bar .card.side-caregories .accordion-button.has-bottom-border{
  border-bottom: 1px solid rgba(146, 115, 115,0.2);
}

.accordion-button:focus:hover,
#gallery-posts .side-bar .card.side-caregories .accordion-button:not(.collapsed):hover {
  background: #2eafec !important;
}

/*--------------------------------------------------------------
# Image zoom effect
--------------------------------------------------------------*/
/* [1] The container */
.img-hover-zoom,.img-hover-zoom-2 {
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img,.img-hover-zoom-2 img {
  transition: all .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.5) rotate(25deg);
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom-2:hover img {
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
  transform: scale(1.5) rotate(10deg);
}

/*--------------------------------------------------------------
#Comment form
--------------------------------------------------------------*/

.comment-form .btn{
  background: #149ddd;
  color: #fff;
}
.comment-form .btn:hover{
  background: #2eafec;
}
.comment-form .btn:focus{
  box-shadow: none !important;
}

.comment-form .form-control,
.comment-form .form-control:focus {
  border-color:rgba(146, 115, 115,0.2);
  box-shadow: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 -moz-transition: none;
 -webkit-transition: none;
}

/*--------------------------------------------------------------
#Owl carousel
--------------------------------------------------------------*/
.page-carousel-slider .owl-card-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
  min-height: 75px;
  max-height: 75px;
}

.owl-card-title{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  text-align: justify;
  min-height: 48px;
}

.page-carousel-slider .more-btn{
  background: #149ddd;
  color: #fff;
  width:130px;
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
}

.page-carousel-slider .more-btn .btn-arrow{
  margin-left: 10px;
}

.page-carousel-slider .more-btn:hover{
  animation-name: winking-background;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.page-carousel-slider .more-btn:hover .btn-arrow{
  animation-name: move-back-and-forth;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.page-carousel-slider .owl-page-slider-nav{
  background:transparent;
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  
}

.page-carousel-slider:hover .owl-page-slider-nav{
  z-index: 2;
  opacity: 1;
}

.page-carousel-slider .owl-page-slider-nav .btn{
  background-color: rgba(0,0,0,.1);
  color:rgba(146, 115, 115, 0.6);
  border-color: rgba(146, 115, 115, 0.6);
  font-size: 30px;
  opacity: .5;
}

.page-carousel-slider .owl-page-slider-nav .btn:hover{
  background-color: rgba(0,0,0,.2);
  color:rgba(255, 255, 255, 0.8);
  border-color: rgba(0,0,0,.1);
  opacity: 1;
}

.page-carousel-slider .owl-page-slider-nav-next{
  right: 1.5%;
  transform: translateX(-1.5%);
}

.page-carousel-slider .owl-page-slider-nav-prev{
  left: 1.5%;
  transform: translateX(-1.5%);
}


.owl-page-side-slider .owl-slide-text{
  background-color: rgba(0,0,0,.4);
  width:100%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  width:100%;
  text-align: center;
  font-size:clamp(18px, 2vw , 25px);
  padding:5px 5px 8px 5px;
  position:absolute;
  bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# nav scrollbar style
--------------------------------------------------------------*/
/*----------------general----------------*/
.style-nav-vertical-scrollbar, .style-nav-horizontal-scrollbar{
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  transition: all .5s ease;
}

.style-nav-vertical-scrollbar:hover, .style-nav-horizontal-scrollbar:hover{
  scrollbar-color: rgba(20, 157, 221,.8) transparent;
}
/*----------------vertical----------------*/
.style-nav-vertical-scrollbar::-webkit-scrollbar {
  height: 4px;              
  width: 8px;               
  border: 8px;
}

/* Track */
.style-nav-vertical-scrollbar::-webkit-scrollbar-track {
  background: transparent; 
}

/* Handle */
.style-nav-vertical-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgba(255,255,255,0.1); 
}


/* Handle on hover */
.style-nav-vertical-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 157, 221,.8);
  
}
.style-nav-vertical-scrollbar-hover-effect::-webkit-scrollbar-thumb {
  background: rgba(20, 157, 221,.5); 
  
}

/*----------------horizontal----------------*/
.style-nav-horizontal-scrollbar::-webkit-scrollbar {
  height: 4px;              
  width: 4px;               
  border: 1px;
}

/* Track */
.style-nav-horizontal-scrollbar::-webkit-scrollbar-track {
  
  background: transparent; 
}

/* Handle */
.style-nav-horizontal-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 50%;
  background: transparent; 
}


/* Handle on hover */
.navbar-scroll-parent:hover .style-nav-horizontal-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(20, 157, 221,.1); 
  
}

/*--------------------------------------------------------------
# pageination
--------------------------------------------------------------*/
.pagination .page-link{
  color:#149ddd;
}

.pagination .page-item.active .page-link{
  background-color: #2eafec;
  border-color: #2eafec;
}

.page-link:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

/*----------------------------------------------------------------
#Button shadow
*---------------------------------------------------------------*/
.btn:active,
.btn:focus,
.btn.active,
.btn:active:focus {
   background-image: none;
   outline: 0;
   -webkit-box-shadow: none;
   box-shadow: none;
}

/*----------------------------------------------------------------
#Share button Style
*---------------------------------------------------------------*/
.share-btn-wrapper .btn{
  font-size: 18px;
  margin: 1px 4px;
  width: 37px;
  color: #ffffff;
  transition: all .5s ease;
}

.share-btn-wrapper .share-twitter{
  background-color: #1DA1F2;
}

.share-btn-wrapper .share-telegram{
  background-color: #0088cc;
}
.share-btn-wrapper .share-linkedin{
  background-color: #0077b5;
}
.share-btn-wrapper .share-facebook{
  background-color: #4267B2;
}
.share-btn-wrapper .share-email{
  background-color: #949494;
}
.share-btn-wrapper .share-whatsapp{
  background-color: #25D366;
}

.share-btn-wrapper .btn:hover {
  filter: brightness(120%);
}
/*----------------------------------------------------------------
#Badge Style
*---------------------------------------------------------------*/
.badge-style{
  background-color: #2eafec;
  color:#fff;
  cursor: default;
}