/* 
 Theme Name: Adam Przybylski 
 Theme URI: https://rbcode.pl
 Author: Robert Bajorek
 Author URI: https://rbcode.pl 
 Description: 
 */

/***************
FONTS
***************/

@font-face {
    font-family: "OpenSans-Light";
    font-display: swap;
    src: url("../fonts/OpenSans-Light.ttf");
    font-style: "normal";
    font-weight: 400;
}

.font-open-sans-light {
    font-family: "OpenSans-Light"!important;
}

a {
    text-decoration: none;
    color:var(--color-primary);
}
p a:hover {
  color:var(--color-secondary);
  text-decoration: underline;
}
body {
    background-color: #fefefe;
}

button,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
span,
ul {
    font-family: "OpenSans-Light";
}


/***************
SCROLLBAR
***************/
::-webkit-scrollbar {
    width: 5px;
    background: #554665;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: #fff;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background: var(--color-secondary-dark);
}

/***************
PRELOADER
***************/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--color-white);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
  }
  #preloader:before, #preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  #preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  
  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }

  
/***************
Header
***************/
.header {
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  .header.sticked {
    background: var(--color-white);
    box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
  }
  .header .logo p {
  position: relative;
  font-size: 25px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  font-family: var(--font-default);
  display:none;
  }
/****************
Desktop Navigation
****************/

.call-me-button {
  z-index: 3;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  width: 180px;
  /* margin-top: 3px; */
  padding: 18px 0;
  transition: width .4s;
}

.call-me-button a {
  font-family: var(--font-default);
  color: var(--color-secondary-dark);
  font-size: 20px;
  padding: 20px 14px;
}

.call-me-button .bi {
  font-size: 20px;
  margin-left: 10px;
  margin-top: 4px;
  color: var(--color-primary);
}

.call-me-button:hover {
  width: 200px;
}


  @media (min-width: 1200px) {

    .d-mobile {
      display: none;
    }

    .navbar {
      padding: 0;
      position: relative;
    }
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
    .navbar li {
      position: relative;
    }
    .navbar > ul > li {
      white-space: nowrap;
    }

    .navbar a, .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-transform: uppercase;
      padding: 14px 20px;
      font-family: var(--font-default);
      font-size: 20px;
      font-weight: 400;
      color: rgba(var(--color-secondary-dark-rgb), 0.7);
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
    .navbar a i, .navbar a:focus i {
      font-size: 22px;
      line-height: 0;
      margin-left: 5px;
    }
    .navbar > ul > li > a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--color-primary);
      visibility: hidden;
      transition: all 0.3s ease-in-out 0s;
      transform: scaleX(0);
      transition: all 0.3s ease-in-out 0s;
    }
    .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
      visibility: visible;
      transform: scaleX(0.7);
    }
    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
      color: var(--color-primary);
    }
    nav ul li a.nav-link, .navbar > ul > li a i , .call-me-button a {
      color:var(--color-white);
    }
    .sticked nav li a.nav-link, .sticked .navbar > ul > li a i,  .sticked .call-me-button a {
      color: var(--color-secondary-dark);
    }

  }


/****************
Mobile Navigation
****************/
  @media (max-width: 1199.98px) {
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: calc(100% - 70px);
      bottom: 0;
      transition: 0.3s;
      z-index: 9997;
    }
    .navbar ul {
      position: absolute;
      inset: 0;
      padding: 10px 0;
      margin: 0;
      background: rgba(var(--color-secondary-rgb), 0.9);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
    
    .navbar a, .navbar a:focus {
      align-items: center;
      text-transform: uppercase;
      padding: 12px 20px;
      font-size: 25px;
      font-weight: 500;
      color: rgba(var(--color-white-rgb), 0.7);
      white-space: nowrap;
      transition: 0.3s;
    }
    .navbar a i, .navbar a:focus i {
      font-size: 25px;
      line-height: 0;
      margin-left: 5px;
    }
    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
      color: var(--color-white);
    }
    .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
      position: static;
      display: none;
      padding: 10px 0;
      margin: 10px 20px;
      transition: all 0.5s ease-in-out;
      border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
    }
    .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
      display: block;
    }
  
    .mobile-nav-toggle {
      display: block !important;
      color: var(--color-white);
      font-size: 40px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      position: fixed;
      top: 20px;
      z-index: 9999;
      right: 20px;
      top:23px;
    }
    .mobile-nav-toggle.bi-x {
      color: var(--color-white);
    }

    .sticked .mobile-nav-toggle {
      color:var(--color-default);
    }
  
    .mobile-nav-active {
      overflow: hidden;
      z-index: 9995;
      position: relative;
    }
    .mobile-nav-active .navbar {
      left: 0;
    }
    .mobile-nav-active .navbar:before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(var(--color-secondary-rgb), 0.8);
      z-index: 9996;
    }
    .header .call-me-button {
      margin: 0 60px 0 20px;
      
    }
    #navbar li.d-mobile {
      display: block;
      width: 240px!important;
    }
    
    #navbar li.d-mobile a {
      justify-content: left!important;
      color:rgba(var(--color-white-rgb), 0.7)!important;
    }
    #navbar li.d-mobile .bi {
      margin-right:7px;
    }
    .call-me-button a {
      padding: 10px 0;
    }
.navbar > ul > li a i,
nav ul li a.nav-link {
    color: var(--color-white)!important;
}
.call-me-button a {
    color: var(--color-white);
}
.sticked .call-me-button a,
.sticked nav li a.nav-link {
    color: var(--color-secondary-dark);
}
}
 

/******************
# Hero Section
******************/

#hero .btn-get-started, #hero-subpage .btn-get-started, #hero-subpage_logopedics .btn-get-started, #hero-subpage_psychotherapy .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero .btn-get-started:hover, #hero-subpage .btn-get-started:hover, #hero-subpage_logopedics .btn-get-started:hover, #hero-subpage_psychotherapy .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

#hero .btn-more {
height:55px;
width: auto;
padding: 4px 10px;
font-size:25px;
}
#hero .btn-more i {
font-size:16px;
}

#hero .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.owl-carousel {
  position: relative;
}
.owl-carousel .owl-item {
  opacity: 1;
}
.owl-carousel .owl-item.active {
  opacity: 1;
}
.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #e6e6e6;
  position: relative;
}
.owl-carousel .owl-dots .owl-dot:after {
  position: absolute;
  top: -2px;
  left: -2px;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  content: '';
  border: 1px solid #4d4d4d;
  border-radius: 50%;
}
.owl-carousel .owl-dots .owl-dot:focus,
.owl-carousel .owl-dots .owl-dot:hover {
  outline: none !important;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #b3b3b3;
}
.owl-carousel .owl-dots .owl-dot.active:after {
  border-color: #fff;
}
.owl-carousel.home-slider {
  position: relative;
  height: 650px;
  z-index: 0;
}
.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 650px;
  position: relative;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item .overlay, #hero-subpage_logopedics .overlay, #hero-subpage_psychotherapy .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.4;
}
.owl-carousel.home-slider .slider-item .slider-text {
  height: 650px;
  position: relative;
}
.owl-carousel.home-slider .slider-item .slider-text .text {
  z-index: 0;
  color: rgba(255, 255, 255, 0.9);
}
.owl-carousel.home-slider .slider-item .slider-text h1, .owl-carousel.home-slider .slider-item .slider-text h3 {
  font-size: 64px;
  font-family: var(--font-default);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.owl-carousel.home-slider .slider-item .slider-text h2,  .owl-carousel.home-slider .slider-item .slider-text h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: white;
  color: #f5e4c3;
  display: inline-block;
  position: relative;
  letter-spacing: 4px;
  text-shadow: 2px 2px #000;
}
.owl-carousel.home-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
.owl-carousel.home-slider .owl-nav .owl-next,
.owl-carousel.home-slider .owl-nav .owl-prev {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  outline: none !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.owl-carousel.home-slider .owl-nav .owl-next span:before,
.owl-carousel.home-slider .owl-nav .owl-prev span:before {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.owl-carousel.home-slider .owl-nav .owl-next:focus span:before,
.owl-carousel.home-slider .owl-nav .owl-next:hover span:before,
.owl-carousel.home-slider .owl-nav .owl-prev:focus span:before,
.owl-carousel.home-slider .owl-nav .owl-prev:hover span:before {
    color: #fff;
}
.owl-carousel.home-slider .owl-nav .owl-prev {
    left: 0;
    margin-left: 0;
}
.owl-carousel.home-slider .owl-nav .owl-next {
    right: 0;
    margin-right: 0;
}
.owl-carousel.home-slider:hover .owl-nav .owl-next,
.owl-carousel.home-slider:hover .owl-nav .owl-prev {
    opacity: 1;
}
.owl-carousel.home-slider:hover .owl-nav .owl-prev {
    margin-left: 50px;
}
.owl-carousel.home-slider:hover .owl-nav .owl-next {
    margin-right: 50px;
}
.owl-carousel.home-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
}
.owl-carousel.home-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.owl-carousel.home-slider .owl-dots .owl-dot.active {
  background: #fff;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}



/***************
 Breadcrumbs Section
***************/
.breadcrumbs {
  padding: 15px 0;
  min-height: 40px;
  z-index: 1;
  background-color: rgb(var(--color-secondary-dark-rgb), 0.1);
  
}

@media (max-width:575.98px) {
  .breadcrumbs {
    display: block;
  }
}

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

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

.breadcrumbs ul li+li {
  padding-left: 3px;
}
.breadcrumbs ul li a {
  color: var(--color-secondary-dark);
}

.breadcrumbs ul li+li::before {
  display: inline-block;
  padding-right: 3px;
  color: #6c757d;
  content: "/";
}

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

  .breadcrumbs ul {
    display: block;
  }

  .breadcrumbs ul li {
    display: inline-block;
  }
}

/*****************
MAIN PAGE
*****************/

/****************
ABOUT ME
*****************/
.about {
  margin: 90px 0 0 0;
  padding: 30px 0;
}
.services .section-service h2, .about h2, .pricing h2, .offer h2 {
  font-size:48px;
  padding-bottom:30px ;
  position:relative;
}

.services .section-service h2::after, .about h2::after, .pricing h2::after, .offer h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background: var(--color-primary);
  bottom: 30px;
  left: 0;
}

.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
  width:auto;
  height:auto;
}
.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/bg-one.webp") top left;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }
  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}
.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.about .nav-pills li + li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}
.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
  .about .nav-pills li + li {
    margin-left: 10px;
  }
}
.about .about-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.about .about-content i, .pricing i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

/****************
SERVICES
****************/
.services {
  margin: 90px 0 0 0;
  padding:0 0 30px 0;
}
.section-service {
  margin-left:60px;
}
.services .img {
  border-radius: 8px;
  overflow: hidden;
}
.services .img img {
  transition: 0.6s;
}
.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}
.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}
.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .details p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}
.services .service-item:hover .details h3 {
  color: var(--color-primary);
}
.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}
.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}
.services .service-item:hover .img img {
  transform: scale(1.2);
}
.service-item .details ul {
  list-style-type:none;
  text-align:left;
}





/***************
PSYCHOTHERAPY PAGE
***************/
#hero-subpage_psychotherapy {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  background: var(--color-black);
  background: url("../img/psychoterapia-baner.webp") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}
@media (max-width: 640px) {
  #hero-subpage_psychotherapy .container {
    padding: 0 20px;
  }
}

#hero-subpage_psychotherapy h1 {
  font-size: 64px;
  font-family: var(--font-default);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
#hero-subpage_psychotherapy h2 {
font-size: 20px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
color: #f5e4c3;
display: inline-block;
position: relative;
letter-spacing: 4px;
text-shadow: 2px 2px #000;
}

.psychotherapy {
  margin: 0 0 0 0;
}
.psychotherapy .section-service {
margin-left:0;
}
@media (max-width: 768px) {
  #hero-subpage_psychotherapy h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero-subpage_psychotherapy h2 {
    font-size: 18px;
  }
}


/***************
LOGOPAEDICS PAGE
***************/
#hero-subpage_logopedics {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  background: var(--color-black);
  background: url("../img/logopedia-baner.webp") center center;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}
@media (max-width: 640px) {
  #hero-subpage_logopedics .container {
    padding: 0 60px;
  }
}

#hero-subpage_logopedics h1 {
  font-size: 64px;
  font-family: var(--font-default);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
#hero-subpage_logopedics h2 {
font-size: 20px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
color: #f5e4c3;
display: inline-block;
position: relative;
letter-spacing: 4px;
text-shadow: 2px 2px #000;
}
@media (max-width: 768px) {
  #hero-subpage_logopedics h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero-subpage_logopedics h2 {
    font-size: 18px;
  }
}

.about-logopedics {
  margin: 0;
  padding: 30px 0;
}

.offer h2 {
  padding-left:0;
}



/*******************
PRICING 
********************/

.pricing .pricing-item {
  padding: 60px 40px 0px 40px;
  box-shadow: 0 3px 20px -2px rgba(var(--color-gray-rgb), 0.15);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  border: 4px solid var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}
.pricing .pricing-header {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9)), url("../img/pricing-bg.webp") center center;
  background-size: cover;
  text-align: center;
  padding: 20px;
  margin: -60px -40px 0;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-white);
}
.pricing h4 {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 0;
}

.pricing-item p.price {
  text-align: center;
  font-size:30px;
}
.pricing ul {
  padding: 30px 0;
  list-style: none;
  color: var(--color-gray);
  text-align: center;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0;
  display: inline-block;

  text-align: center;
}
.pricing ul i {
  color: var(--color-primary);
  font-size: 20px;
  padding-right: 3px;
  line-height: 0;
}
.pricing ul .na {
  color: rgba(var(--color-gray-rgb), 0.5);
}
.pricing ul .na i {
  color: rgba(var(--color-gray-rgb), 0.5);
  font-size: 24px;
  padding-left: 4px;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}
.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.pricing .featured {
  border-color: var(--color-primary);
}
.pricing .featured .pricing-header {
  background: linear-gradient(rgba(var(--color-primary-rgb), 0.9), rgba(var(--color-primary-rgb), 0.9)), url("../img/pricing-bg.webp") center center;
}
.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: var(--color-white);
}


/*******************
Counts
********************/
.counts {
  padding-bottom: 30px;
  background-color: rgb(var(--color-secondary-dark-rgb), 0.1);
}
.counts .count-box {
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 44px;
  color: var(--color-primary);
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 50px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: var(--color-secondary);
  margin-left: 60px;
}
.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  color: var(--color-secondary);
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: var(--color-secondary);
  font-size: 15px;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: var(--color-secondary);
}
/*******************
CTA
********************/
.cta {
  background: linear-gradient(rgba(0,0,0, 0.4), rgba(0,0,0, 0.4)), url("../img/logopedia-baner.webp") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.cta-psychotherapy {
  background: linear-gradient(rgba(0,0,0, 0.4), rgba(0,0,0, 0.4)), url("../img/psychoterapia-baner.webp") fixed center center;
}
.cta h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  text-transform: uppercase;
  position:relative;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 8px 10px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  width:350px;
  transition: width .4s;
}

.cta .cta-btn:hover {
  width:380px;
}

/***************
FOOTER
***************/
.footer {
  background-image: url('../img/about-bg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
  font-size: 14px;
}
.footer .footer-content {
  background: rgba(var(--color-secondary-rgb), 0.85);
  padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 30px;
  position: relative;
}

.footer .footer-info .call-me-button a {
  color:var(--color-white)!important;
}
.footer .footer-info a.footer-localization {
  font-size:20px;
  color:var(--color-white);
}
.footer .footer-info a.footer-localization i.bi-geo-alt {
  font-size:26px;
  color: var(--color-primary);
  animation:fade 3s infinite;
}
.footer .footer-content .footer-info h2 {
  position: relative;
  font-size: 38px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info h3 {
  position: relative;
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content h2::after, .footer .footer-content h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background: var(--color-primary);
  bottom: -3px;
  left: 0;
}
.footer .footer-content .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}
.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul a {
  font-size:16px;
  color: rgba(var(--color-white), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .realization {
  padding: 10px 0;
  background: var(--color-secondary-dark);
}
.footer .realization .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}
.footer .realization .credits a {
  color: var(--color-primary);
}

/***************
SCROLL TOP
***************/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}
.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/***************
MEDIA QUERIES
***************/

@media (max-width:1399.98px) {
}

@media (max-width:1199.98px) {

  .header .logo p {
    display:block;
  }
  .section-service {
    margin-left:0px;
  }

.services {
    margin: 0 0 0 0;
}
.owl-carousel.home-slider .slider-item {
  background-position: center center !important;
}
  
}
@media (max-width:991.98px) {
  .owl-carousel.home-slider .slider-item .slider-text h1, .owl-carousel.home-slider .slider-item .slider-text h3 {
    font-size: 50px;
}
}

@media (max-width: 767.98px) {
  .owl-carousel.home-slider .slider-item .slider-text h1, .owl-carousel.home-slider .slider-item .slider-text h3 {
    font-size: 30px;
    line-height: 36px;
}
.owl-carousel.home-slider .slider-item .slider-text h2, .owl-carousel.home-slider .slider-item .slider-text h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
}
    .owl-carousel.home-slider .owl-dots {
        bottom: 5px;
    }
}

@media (max-width:575.98px) {

}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel.home-slider .owl-nav .owl-next,
  .owl-carousel.home-slider .owl-nav .owl-prev {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel.home-slider .owl-nav .owl-next span:before,
  .owl-carousel.home-slider .owl-nav .owl-prev span:before {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
  }
}



/************************
ANIMATION
************************/

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


