/*
Theme Name: Advokatska kancelarija Andrić
Theme URI: https://advokatandric.com/
Author: Digitality
Author URI: https://digitality.ba/
Version: 1.0

* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

/******** FONTS *******/
/* poppins - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/poppins-v24-latin_latin-ext-300.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v24-latin_latin-ext-regular.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/poppins-v24-latin_latin-ext-italic.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/poppins-v24-latin_latin-ext-500.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v24-latin_latin-ext-600.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v24-latin_latin-ext-700.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/poppins-v24-latin_latin-ext-800.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/poppins-v24-latin_latin-ext-900.woff2') format('woff2'); 
}
/* sansation - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Sansation';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/sansation-v1-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap; 
  font-family: 'Sansation';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/sansation-v1-latin_latin-ext-700.woff2') format('woff2'); 
}
/*************** ROOT ***************/
:root {
    --primary-font: 'Poppins';
    --secondary-font: 'Sansation';

    --primary-color: #B19B84;
    --secondary-color: #372d1f;
    --dark-color: #333333;
    --text-color: #665d52;

    --filter-primary: brightness(0) saturate(100%) invert(78%) sepia(21%) saturate(357%) hue-rotate(353deg) brightness(81%) contrast(89%);
    --filter-secondary: brightness(0) saturate(100%) invert(12%) sepia(24%) saturate(956%) hue-rotate(356deg) brightness(94%) contrast(84%);
    --filter-white: brightness(0) saturate(100%) invert(98%) sepia(13%) saturate(172%) hue-rotate(220deg) brightness(116%) contrast(100%);
}

/*************** PREDEFINED ***************/
body {
    color: var(--secondary-color);
    font-family: var(--primary-font);
}
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    border-width: 2px;
    border-style: solid;
    min-width: 150px;
}
.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background: var(--secondary-color) !important;
    color: #FFFFFF !important;
    border-color: var(--secondary-color) !important;
}
.btn-secondary {
    border-color: rgba(255,255,255,0.25) !important;
    border-color: var(--primary-color);
    background:  rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(3px) saturate(120%);
    -webkit-backdrop-filter: blur(3px) saturate(120%);
    color: #FFFFFF;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background: #FFFFFF!important;
    color: var(--secondary-color) !important;
    border-color: #FFFFFF !important;
}
.btn-dark {
    background: var(--dark-color);
    color: #FFFFFF;
    border-color:var(--dark-color);
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
    background: var(--primary-color) !important;
    color: #FFFFFF !important;
    border-color: var(--primary-color) !important;
}
.section-padding {
    padding: 50px 0;
}
.section-padding-sm {
    padding: 40px 0;
}
.form-select,
.form-control {
    border-radius: 5px;
    padding: 8.5px 12px;
}
.form-select:focus,
.form-control:focus {
   box-shadow: none;
   border-color: var(--primary-color);
}
.section-title h1,
.section-title h2 {
    font-weight: 700;
    font-family: var(--secondary-font);
}
.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5 {
    margin-bottom: 16px;
    font-weight: 600;
}
.content-editor img {
    max-width: 100%;
    height: auto;
	width: 100%;
	margin-bottom: 10px;
}
.content-editor img.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
	width: 100%;
}
.content-editor img.alignright {
    float: right;
	width: 100%;
    margin-left: 15px;
    margin-bottom: 10px;
}
.content-editor img.aligncenter {
    display: block;
	width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.content-editor blockquote {
    background-color: #b19b843b;
    padding: 10px;
}
.content-editor blockquote p:last-child {
    margin-bottom: 0;
}
.admin-bar .offcanvas,
.admin-bar header.fixed-top {
    top: 46px;
}
#wpadminbar {
    position: fixed;
}
/********** HEADER ************/
.header-contact-icon {
    width: 16px;
    height: 16px;
}
.social-networks a img,
.header-contact-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: var(--filter-white);
}
.header-contact-item {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 15px;
    transition: all .2s;
    font-weight: 300;
}
.header-contacts a:hover {
    color: var(--primary-color);
}
.social-networks a {
    display: flex;
    width: 20px;
    height: 20px;
}
.social-networks a img {
    filter: var(--filter-white);
}
.header-contacts a:hover img {
    filter: var(--filter-primary);
}
.offcanvas .header-contact-item {
    color: var(--secondary-color);
}
.offcanvas .header-contact-icon img {
    filter: var(--filter-secondary);
}
.offcanvas .social-networks a {
    display: flex;
    width: 30px;
    height: 30px;
}
.offcanvas .social-networks a img {
    filter: var(--filter-secondary);
}
.top-header-btn {
    padding: 15px 30px;
    min-width: 200px;
}
.top-header .container{
    border-bottom: 1px solid #FFFFFF4D;
}
.navbar-brand img {
    width: 180px;
}

.btn-close:focus,
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar {
    padding: 10px 0;
}
.navbar-toggler {
    width: 48px;
}
.navbar-toggler img {
    filter: var(--filter-white);
}
.scrolled .navbar-toggler img {
    filter:  var(--filter-secondary);
}
.btn-close {
    filter: var(--filter-secondary);
    opacity: 1;
}
.offcanvas-header {
    padding: 12px 30px 10px 12px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-size: 18px;
}
.navbar-nav .nav-link.show,
.navbar-nav .nav-link.active {
    color: var(--dark-color);
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}
.hero-block {
    min-height: 100svh;
}
.hero-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:  rgba(55,45,31,.3) !important;
    backdrop-filter: blur(2px) saturate(120%);
    -webkit-backdrop-filter: blur(2px) saturate(120%);
}
.hero-top-title {
    font-size: 18px;
    text-shadow: 1px 1px 1px #0000004D;
}
.hero-block h1 {
    font-size: 28px;
    font-weight: 700;
    text-shadow: 1px 1px 1px #0000004D;
    font-family: var(--secondary-font);
}
.hero-block {
    padding: 50px 0;
}
.hero-scroll {
    position: absolute;
    width: 90px;
    height: 40px;
    animation: MoveUpDown 1.2s linear infinite;
    bottom: 50px;
}
.hero-scroll img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: var(--filter-white);
}
.object {
    animation: MoveUpDown 1s linear infinite;
    position: absolute;
    left: 0;
    bottom: 0;
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 50px;
  }
  50% {
    bottom: 65px;
  }
}
.top-header.scrolled {
    height: 0;
    opacity: 0;
    visibility: hidden;
}
.about-block {
    border-radius: 5px;
    background-color: var(--secondary-color);
}

.about-text {
    padding: 30px 20px;
}
.about-text  h3 {
    font-family: var(--secondary-font);
    font-size: 26px;
    font-weight: 700;
}
.about-text p {
    font-size: 15px;
}
.about-text p:last-of-type {
    margin-bottom: 0;
}
header::after {
    position: absolute;
    width: 100%;
    height: 150%;
    content: "";
    background: linear-gradient(180deg,#333333 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    left: 0;
    transition: all .3s;
}
header.scrolled::after {
    height: 0;
}
.navbar.scrolled {
    background-color: #FFFFFF;
}
footer {
    background-image: url('img/footer-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.social-networks-footer a {
    width: 45px;
    height: 45px;
    background-color: #FFFFFF;
    padding: 8px;
    transition: all .2s;
}
.social-networks-footer a img {
    max-height: 100%;
    max-width: 100%;
    filter: var(--filter-secondary);
}
.social-networks-footer a:hover {
    background-color: var(--text-color);
}
.social-networks-footer a:hover img {
    filter: var(--filter-white) !important; 
}
.footer-logo img {
    width: 200px;
}
.footer-bottom a,
.footer-menu a {
    text-decoration: none;
    color: #FFFFFF;
}
.footer-bottom a:hover,
.footer-menu a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    border-top: 1px solid #FFFFFF4D;
}
.footer-newsletter {
    max-width: 350px;
}
.footer-menu a {
    font-weight: 300;
}
.about-img  {
    position: absolute;
    width: 50%;
    opacity: .05;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.services-section {
    background-color: var(--secondary-color);
    padding: 35px 0;
}
.service-box-icon {
    width: 60px;
    height: 60px;
    transition: all .3s;
}
.service-box-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: var(--filter-white);
}
.service-title {
    font-size: 15px;
}
.box-desc {
    font-weight: 300;
    font-size: 15px;
}
.box-hidden-icon {
    width:0;
    height:0;
    background-image: url('img/send.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--filter-white);
    transition: all .2s;
}
.box-line {
    height: 3px;
    transition: all .3s;
    width: 0;
    background-color: var(--primary-color);
}
.service-box-hidden {
    opacity: 0;
    width: 100%;
    position: absolute;
    visibility: hidden;
    bottom: 0;
    left: 0;
}

.services-block .col-6:nth-child(odd)::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 110px;
    width: 1px;
    background-color: #FFFFFF4D;
}
.news-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:  rgba(55,45,31,.5);
    backdrop-filter: blur(3px) saturate(120%);
    -webkit-backdrop-filter: blur(3px) saturate(120%);
}
.news-date-box {
    width: 60px;
    height: 80px;
}
.news-date-box span {
    background-color: var(--primary-color);
}
.date-box {
    background-color: var(--dark-color);
    font-size: 30px;
}
.date-box-content {
    transition: all .3s;
}
.date-box-content h4{
    color: var(--secondary-color);
    font-size: 18px;
    transition: all .2s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 43.19px;
}
.news-date-box  {
    transform: translateX(30px);
}
.news-box-cat span {
    color: var(--primary-color);
    font-size: 14px;
}
.news-box:hover .date-box-content {
    background: #e6e5e5 !important;
}
.partner-logo img {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
}
.partnersSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    max-width: 120px;
    min-width: 80px;
}
.partner-name,
.partner-logo {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner-name {
    font-size: 16px;
    line-height: 1;
    text-align: center;
    font-family: var(--secondary-font);
}

.partners-swiper-container .swiper-wrapper {
  -webkit-transition-timing-function:linear!important; 
  -o-transition-timing-function:linear!important;
  transition-timing-function:linear!important; 
}
.partners-swiper-container::after,
.partners-swiper-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    z-index: 3;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.partners-swiper-container::after {
    left: auto;
    right: 0;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.testi-stars img {
    width: 12px;
    filter: var(--filter-primary);
}
.testi-img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
}
.testimonial-wrap {
    border-radius: 5px;
    background-color: var(--secondary-color);
    padding: 24px 16px;
    transition: all .5s;
}
.testi-name {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 22px;
}
.testimonialsSwiper .swiper-slide {
    opacity: 1;
    height: auto;
}
.testimonialsSwiper .swiper-slide-active {
    opacity: 1;
}
.testi-text,
.testi-name {
    color: #FFFFFF;
}
.testi-text {
    font-size: 15px;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}
.testimonialsSwiper .swiper-slide-active .testi-stars img {
    filter: var(--filter-white);
}
/*************ANIMATIONS**************/
.animation{
    opacity:0;
    filter: blur(0);
    transform:translateX(-50%);
    transition: all .9s ease-in-out;
}
.animation[animation="true"]{
    opacity: 1;
    transform: translateX(0);
}
.animation-2{
    opacity:0;
    filter: blur(0);
    transform:translateX(50%);
    transition: all .9s ease-in-out;
}
.animation-2[animation="true"]{
    opacity: 1;
    transform: translateX(0);
}
.animation-3 {
    opacity:0;
    filter: blur(0);
    transform:translateY(50%);
    transition: all .9s ease-in-out;
}
.animation-3[animation="true"]{
    opacity: 1;
    transform: translateY(0);
}
.animation-4 {
    opacity:0;
    filter: blur(0);
    transform:translateY(-50%);
    transition: all .9s ease-in-out;
}
.animation-4[animation="true"]{
    opacity: 1;
    transform: translateY(0);
}

.region-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:  #000000;
    opacity: .6;
}
.office-item {
    border-bottom: 1px solid #FFFFFF80;
}
.office-item:last-child {
    border-bottom: none;
}
.region-block .section-title h4 {
    font-size: 20px;
}
.offices-list-title {
    font-size: 18px;
    margin-bottom: 6px;
}
.office-item:not(:first-of-type) {
    padding-top: 16px;
}
.office-item ul {
    list-style-type: none;
    padding-left: 0;
}
.office-item ul li {
    position: relative;
    padding-left: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 300;
}
.office-item ul li:last-child {
    margin-bottom: 0;
}
.office-item ul li::before {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
    content: "";
    background-image: url('img/auction.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--filter-primary);
    transform: rotate(360deg);
}

footer {
    border-top: 1px solid #FFFFFF;
}
.podrska-item {
    background-color: #B19B8466;
    border-radius: 5px;
    padding: 20px;
    height: 100%;
    text-align: center;
    color: var(--dark-color);
}
.page-cover-block {
    min-height: 200px;
    padding: 80px 0 30px 0;
}
.page-cover-block h2,
.page-cover-block h1 {
    font-size: 32px;
    font-family: var(--secondary-font);
    font-weight: 700;
}
.page-cover-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(55, 45, 31, .3) !important;
    backdrop-filter: blur(2px) saturate(120%);
    -webkit-backdrop-filter: blur(2px) saturate(120%);
}
.map-section {
    height: 280px;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}
.contact-links-section {
    background-color: var(--dark-color);
}
.cl-icon {
    width: 40px;
    height: 40px;
}
.cl-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: var(--filter-white);
}
.cl-title {
    font-size: 26px;
}
.cl-link {
    text-decoration: none;
    color: var(--primary-color);
}
.cl-link:hover {
    color: #FFFFFF;
}
.contact-links-block {
    max-width: 400px;
}
.cl-text {
    font-weight: 300;
    font-size: 15px;
}
.contact-social-networks a {
    width: 30px;
    height: 30px;
}
.contact-social-networks a img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    filter: var(--filter-white);
}
.contact-social-networks a:hover img {
    filter: var(--filter-primary);
}
.contact-social-networks {
    border-top: 1px solid #FFFFFF4D;
    padding-top: 30px;
    margin-top: 30px;
}
.contact-form-section {
    background-color: #e1d8cb;
}
.form-select,
.form-control {
    border-radius: 0;
    border-color: var(--primary-color);
}
.form-control:focus {
    border-color: var(--dark-color);
}
.cf-container {
    max-width: 800px;
}
.news-archive .news-box {
    border: 1px solid var(--primary-color);
    transition: all .3s;
}
.news-archive .news-box:hover  {
    background-color: #e6e5e5 !important;
}
.pagination {
    justify-content: center;
    padding-top: 30px;
}
.pagination .page-link {
    border-color: var(--primary-color);
    color: var(--secondary-color);
}
.pagination .page-link:focus {
    box-shadow: none;
}
.pagination .page-link.active {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}
.usluge-konsultacije-section .header-contact-item {
    color: var(--secondary-color);
}
.usluge-konsultacije-section .header-contact-icon img {
    filter: var(--filter-secondary);
}
.usluge-konsultacije-inner {
    border-top: 1px solid var(--primary-color);
}
.usluge-sidebar-items {
    list-style-type: none;
}
.usluge-sidebar-items a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 17px;
    padding: 6px 0;
    display: block;
    position: relative;
    line-height: 1.3;
    transition: .3s;
}
.single-sidebar-items a {
    font-size: 15px;
}

.usluge-sidebar-items li {
    padding: 6px 0;
    border-top: 1px solid #b19b8469;
}
.usluge-sidebar-title {
    font-size: 26px;
    font-family: var(--secondary-font);
}
.usluge-sidebar-items a::before {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    content: "";
    background-image: url(img/auction.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--filter-primary);
    transform: rotate(360deg) translateY(-50%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.usluge-sidebar-items a:hover {
    color: var(--primary-color);
    padding-left: 22px;
}
.usluge-sidebar-items a:hover::before {
    visibility: visible;
    opacity: 1;
}
.single-sidebar-items a::before {
    display: none;
}
.single-sidebar-items a:hover {
    padding-left: 0;
}
.sidebar-contact-info::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:  rgba(55,45,31,.3) !important;
    backdrop-filter: blur(2px) saturate(120%);
    -webkit-backdrop-filter: blur(2px) saturate(120%);
}
.category-single-box a {
    color: var(--primary-color);
    text-decoration: none;
}
.category-single-box a:hover {
    color: var(--secondary-color);
}
.page404-block  {
    min-height: 70svh;
}
.page404-section {
    background-image: url('img/heroimg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.page404-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:  rgba(55,45,31,.3) !important;
    backdrop-filter: blur(2px) saturate(120%);
    -webkit-backdrop-filter: blur(2px) saturate(120%);
}
.navbar-nav .dropdown-menu {
    border: none;
}
.navbar-nav .dropdown-item.active, 
.navbar-nav .dropdown-item:active {
    background-color: var(--primary-color);
}
.grecaptcha-badge {
    visibility: hidden;
}
/* Bosanski jezik - custom ikona */
a[data-gt-lang="bs"] img {
    content: url("/novisajt/wp-content/plugins/gtranslate/flags/svg/sr.svg");
}
.gtranslate_wrapper {
	display: flex;
    align-items: center;
    gap: 5px;
}
.gtranslate_wrapper .gt-current-lang {
	display: none
}
.services-block .col-6:last-child::after {
	display: none;
}
/********* RESPONSIVE SM *************/
@media (min-width: 576px) {
    .map-section {
        height: 350px;
    }
}

/******** RESPONSIVE MD ***********/
@media (min-width: 783px) {
    .admin-bar .offcanvas,
    .admin-bar header.fixed-top {
        top: 32px;
    }
}

/******** RESPONSIVE LG ***********/
@media (min-width: 992px) {
    .service-box:hover .service-box-icon  {
        width: 0;
        height: 0;
    }
    .service-box:hover .service-box-hidden {
        opacity: 1;
        visibility: visible;
        bottom: auto;
        top: 60px;
    }
    .service-box:hover .box-line {
        width: 40px;
    }
    .services-block {
        min-height: 700px;
    }
    .services-block .row {
        --bs-gutter-y: 75px;
    }
    .service-box:hover .box-hidden-icon {
        width: 15px;
        height: 15px;
    }
    .services-block .col-6::after {
        position: absolute;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        height: 110px;
        width: 1px;
        background-color: #FFFFFF4D;
    }
    .services-block .col-6:nth-child(11n)::after,
    .services-block .col-6:nth-child(4n)::after {
        display: none;
    }
    .partners-swiper-container::after,
    .partners-swiper-container::before {
        width: 80px;
    }
    .map-section {
        height: 450px;
    }
    .contact-links-block {
        max-width: 100%;
    }
    .page-cover-block {
        min-height: 280px;
    }
    .content-editor {
        max-width: 85%;
        padding-top: 30px;
    }
}

/******** RESPONSIVE XL ***********/
@media (min-width: 1200px) {
    .form-control {
        padding: 10px 12px;
    }
    .navbar.fixed-top {
        top: 38.5px;
    }
    .navbar-brand img {
        width: 220px;
        transition: all .3s;
    }
    .navbar-nav .nav-link {
        font-size: 16px;
        color: #FFFFFF;
        position: relative;

    }
    .navbar-nav .nav-link.show,
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #FFFFFF;
    }
    .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background-color: #FFFFFF;
        left: 50%;
        transform: translateX(-50%);
        bottom: 3px;
        transition: all .2s;
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: calc(100% - 16px);
    }
    .navbar {
        padding: 16px 0;
        position: static;
        transition: all .3s;
    }
    .navbar.scrolled {
        position: fixed;
        top: 0;
    }
    .navbar.scrolled .navbar-brand img {
        width: 180px;
    }
    .social-networks a:hover img {
        filter: var(--filter-primary);
    }
    .scrolled .navbar-nav .nav-link {
        color: var(--secondary-color);
    }
    .scrolled .navbar-nav .nav-link:hover,
    .scrolled .navbar-nav .nav-link.active {
        color: var(--secondary-color);
    }
    .scrolled .navbar-nav .nav-link::before {
        background-color: var(--secondary-color);
    }
    .hero-top-title {
        font-size: 20px;
    }
    .hero-block h1 {
        font-size: 60px;
        font-weight: 700;
    }
    .hero-block {
        padding: 100px 0;
    }
    .btn {
        padding: 10px 26px;
        font-size: 18px;
        border-style: solid;
        min-width: 200px;
    }
    .section-padding {
        padding: 100px 0;
    }
    .section-padding-sm {
        padding: 70px 0;
    }
    .about-text p{
        font-size: 18px;
    }
    .about-text h3{
        font-size: 36px;
        margin-bottom: 16px;
    }
    .services-block .col-6:nth-child(3n)::after {
        display: block;
    }
    .section-title h2 {
        font-size: 42px;
    }
    .partner-logo img {
        max-height: 80px;
    }
    .partnersSwiper .swiper-slide {
        max-width: 140px;
        min-width: 100px;
    }
    .services-block {
        min-height: 500px;
    }
    .services-block .row {
        --bs-gutter-y: 75px;
 
    }
    .services-block .col-6:nth-child(4n)::after,
    .services-block .col-6:nth-child(8n)::after {
        display: block;
    }
    .services-block .col-6:nth-child(11n)::after,
    .services-block .col-6:nth-child(6n)::after {
        display: none;
    }
    .map-section {
        height: 550px;
    }
    .cl-link {
        font-size: 18px;
    }
    .cl-text {
        max-width: 80%;
    }
    .page-cover-block h2,
    .page-cover-block h1 {
        font-size: 46px;
    }
    .pagination {
        justify-content: center;
        padding-top: 40px;
    }
    .pagination .page-link {
        padding: 8px 16px;
    }
    .usluge-sidebar-title {
        font-size: 30px;
    }
    .content-editor p,
    .content-editor li {
        font-size: 18px;
    }
    .navbar-nav .dropdown-menu {
        box-shadow:  0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);;
    }
}
/******** RESPONSIVE XXL ***********/
@media (min-width: 1400px) {
    .container-large {
        max-width: 1320px;
    }
    .testimonial-wrap {
        padding: 30px;
    }
    .testi-text {
        font-size: 17px;
    }
}