/*
Theme Name: Orchidbox
Author: Sergei Ermilov
Author URI: https://uzabila.com/
Description: Bootstrap v.5 minimalistic one-column theme. This theme allows you to apply the styles of the Bootstrap 5 frontend framework. It can be used as a basic theme for creating sites on Bootstrap version 5. Moreover, you will be able to add Bootstrap 5 CSS classes in the additional properties of Gutenberg blocks. The minimalistic style and lack of unnecessary functionality makes this theme very fast.
Requires at least: 5.9
Tested up to: 6.0
Requires PHP: 7.0
Version: 1.0.0
License: GNU General Public License v2 or later 
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: orchidbox
Domain Path: /languages/
Tags: blog, news, one-column, custom-background, custom-logo, custom-menu, sticky-post, translation-ready

Orchidbox Wordpress Theme, (C) 2024 Uzabila.com
*/

/*
* orchidbox BASIC STYLE
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --main-green: #00beb2;
    --dark-green: #009087;
    --main-violet: #B200BE;
    --dark-grey: #4A535B;
    --grey-color: #121212;
}

body {
    color: #ddd!important;
    background-color: #000000;
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

body::before {
    content: ''; 
    background-image: url('./img/insights-top.svg');
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;  
    z-index: -1;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
}

body::after { 
    content: ''; 
    background: url('./img/insights-bottom.svg')    no-repeat; 
    position: absolute;  
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1000px;
    z-index: -1; 
}

.title-section__text {
    position: relative;
    padding: 3em 0;
}

.title-section__text::before {
    content: ''; 
    background-image: url('./img/insights-line.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;  
    z-index: -1;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
}

body.error404::before {
    background-image: url('./img/insights-top.svg'), none;
}

body.single-body::before {
    content: ''; 
    background: url('./img/single-top.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100% 2365px;
    position: absolute;  
    z-index: -1;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
}

body.single-body::after { 
    content: ''; 
    background: url('./img/single-bottom.png') no-repeat; 
    position: absolute;  
    left:0;
    bottom: 0;
    width: 100%;
    z-index: -1; 
}


body.search::before {
    background-image: url(./img/bg-top.svg), none!important;
}

.main-color {
    color: var(--main-green);
}

a {
    color: #bababa;
}

a:hover {
    color: #efefef;
}

h1 {
    font-size: 130px;
    font-weight: 700;
    line-height: 130px;
    letter-spacing: 0em;
    text-align: left;
}

h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -0.25px;
    text-align: left;
}

h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -0.25px;
    text-align: left;
}

.bg-black {
    background-color: rgb(0,0,0);
}

.noborder a {
    text-decoration: none;
}

a.main-link {
    text-decoration: underline;
    color: var(--main-green);
}

a.main-link:hover {
    text-decoration: none;
    color: var(--main-green);
}

a.archive-posts  {
    text-decoration: none;
    font-weight: 500;
    color: rgba(255,255,255,.75);
}

a.archive-posts:hover {
    text-decoration: none;
    font-weight: 500;
    color: rgba(255,255,255,.95);
}

.bg-main-dark {
    background-color: rgba(0,0,0,.5);
}

.title-section h1 {
    max-width: 1150px;
}

.title-section__description {
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: left;
}

.title-section__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
    margin-top: -30px;
}

.title-text {
    max-width: 700px;
}

span.main-gradient-top {
    background: linear-gradient(to right, #00BEB2 50%, #6b4cb9);
    background: -webkit-linear-gradient(to right, #00BEB2 50%, #6b4cb9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span.main-gradient-bottom {
    background: linear-gradient(to right, #00BEB2 30%, #B200BE);
    background: -webkit-linear-gradient(to right, #00BEB2 30%, #B200BE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-button,
input[type=button], input[type=submit], input[type=reset] {
    background-color: var(--main-green);
    border: none;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px 40px;
    transition: all 0.7s;
}

.main-button-outline {
    background-color: transparent;
    border: 1px solid var(--main-green);
    color: var(--main-green);
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px 40px;
    transition: all 0.7s;
}

.main-button:hover,
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background-color: var(--dark-green);
    color: white;
}

.main-button-outline:hover {
    background-color: var(--dark-green);
    color: white;
}


/*
 * Navigation
 */

 .hamburger {
    width: 50px;
    margin-left: auto;
    text-align: right;
 }

 .hamburger .line{
    width: 50px;
    height: 5px;
    background-color: var(--main-green);
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }

  .hamburger:hover .line:nth-child(1) {
    transform: translate(0, -5px);
  }

  .hamburger:hover .line:nth-child(2) {
    transform: translate(0, 10px);
  }

 .navigation-section {
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
 }

 .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    animation: fadeIn 1s;
    overflow-y: scroll;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  .overlay-content {
    position: relative;
    top: 15%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: 0.3s;
    font-size: 110px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0em;
    text-align: center;
    padding-bottom: 100px;

  }
  
  .overlay a:hover, .overlay a:focus {
    color: var(--main-green);
    text-decoration: none;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    left: 45px;
    font-size: 60px;
  }

  .overlay-logotype {
    transform: rotate(-90deg);
    position: absolute;
    top: 150px;
    right: 45px;
  }
  
  /* @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  } */

/*
 * END Navigation
 */

.partners-section {
    position: relative;
    height: 100%;
}

.carousel-block {
    padding: 80px 0;
    margin: 200px 0 300px;
}

 .carousel-block:before {
    content: "";
    background-color: rgba(255, 255, 255,.5);
    mix-blend-mode: soft-light;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
 }

 /*
  * Slider
  */

 .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots li button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: rgba(0, 190, 178, .25);
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: var(--main-green);
}
  
.slick-slide {
    margin: 0px 20px;
  }

 
  .logo-carousel {
        overflow: inherit;
      }
  .slide {
        text-align: center;
  }

  .logo-carousel:hover {
    cursor: pointer;
  }
  
  .logo-carousel .slick-slide img {
    max-width: 100%;
    max-height: 50px;
    margin: auto;
  }
  
  .slick-track::before,
  .slick-track::after {
    display: table;
    content: '';
  }
  
  .slick-track::after {
    clear: both;
  }

  .slider-section {
    overflow: hidden!important;
    padding-bottom: 30px;
  }
  
  .slider-section .slick-track {
    padding: 1rem 0;
    margin-bottom: 3em;
  }
  
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-slide.dragging img {
    pointer-events: none;
  }
  
  .slick-loading .slick-slide {
    visibility: hidden;
  }

  /*
 * ABOUT
 */

  .about-section {
/*    margin-bottom: 280px;*/
  }
  
.about-section__block {
    border-radius: 15px!important;
    border: 1px solid var(--main-green);    
    text-align: center;
    margin: auto;
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.0025em;
    text-align: center;
    transition: all 1s;
}

.about-section__block:hover {
    border-color: var(--main-violet);
    cursor: pointer;
    background-color: #000;
    transform: scale(1.05);
}

.about-section__block svg {
    width: 82px;
    height: 70px;
    fill: var(--main-green);
}

.about-section__block:hover svg {
    fill: var(--main-violet);
}

.about-section__block:hover svg path {
    fill: var(--main-violet);
}

.about-section__block:hover svg plygon {
    fill: var(--main-violet);
}

.about-section__block:hover svg circle {
    fill: var(--main-violet);
}

.about-section__description {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0.5px;
    text-align: left;

}

.green-text,
.original-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.5px;
    text-align: left;

}

.green-text {
    color: var(--main-green);
}

.original-text {
    color: white;
}

/*
 * CASES
 */

.cases-section__description {
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0.5px;
    text-align: left;
    color: var(--main-green);
}

.cases-section__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.5px;
    text-align: left;
}

.contact-section__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.5px;
    text-align: left;
}

.contact-section {
    margin-bottom:150px;
}

.bg-transparent-black {
    background-color: rgba(0,0,0,.5);
}

.footer-menu img {
    width: 40px;
    height: 40px;
}

.footer-menu {
    font-size: 12px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 1px;
    text-align: left;
    color: white;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    display: inline-block;
    margin-right: 4em;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu a {
    text-decoration: none;
    color: white;
    transition: all .5s;
}

.footer-menu a:hover {
    text-decoration: none;
    color: var(--main-green);
}

.footer-menu a.grey-link {
    text-decoration: none;
    color: var(--dark-grey);
    transition: all .5s;
}

.footer-menu a.grey-link:hover {
    text-decoration: none;
    color: var(--main-green);
}

.footer-menu ul li.grey-link a {
    text-decoration: none;
    color: var(--dark-grey);
    transition: all .5s;
}

.footer-menu ul li.grey-link a:hover {
    text-decoration: none;
    color: var(--main-green);
}

.footer-icons img {
    width: 20px;
    height: 20px;
}

.footer-icons svg {
    fill: var(--dark-grey)
}

.footer-icons svg:hover {
    fill: var(--main-green)
}

.copyright-section {
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
}

/*
 * CAROUSEL
 */

 .slider-single {
    position: relative;
}

.slider-single .slick-slide {
    margin: 0;
}

.slider-single .slick-prev {
    position:absolute;
    top:45%;    
    left:-40px;
}
.slider-single .slick-next {
    position:absolute;
    top:45%;    
    right:-40px;
}
.slick-initialized .slick-slide {
    display:flex;
}

.slick-prev:before {
    content: url(./img/cta-previous.svg);
    color: var(--main-green);
    font-size: 30px;
  }
  
  .slick-next:before {
    content: url(./img/cta-next.svg);
    color: var(--main-green);
    font-size: 30px;
  }

  /*
   * SERVICES
   */

.services-title {
    position: relative;
    margin-bottom: 100px;
}

.sevices-about .about-section__block {
    width: 100%;
    text-align: left;
}

.sevices-about .about-section__block span {
    font-size: 25px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.0025em;
    text-align: left;
    color: var(--main-green);
}

.sevices-about .about-section__block:hover span {
    color: var(--main-violet);
}

.sevices-about__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: white
}

.about-section__block svg.svg-stroke {
    fill: none!important;
    stroke-width: 2;
    stroke: var(--main-green);
  }
  
  .about-section__block:hover svg.svg-stroke {
    fill: none!important;
    stroke-width: 2;
    stroke: var(--main-violet);
  }

  .accordion-body p {
    color: #dddddd;
  }

  .accordeon-section {
    margin-bottom: 150px;
  }

  .accordion-button::after {
    background-image: url(./img/plus.png);
  }

  .accordion-button:not(.collapsed)::after{
    background-image: url(./img/minus.png);
  }

  .accordion-item {
    background-color: transparent;
    border: 1px solid var(--main-violet);
}

.accordion-button:not(.collapsed) {
    color: var(--main-violet);
    background-color: transparent;
    box-shadow: none;
    font-weight: bold;
}

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--main-violet);
    border-radius: 10px;
}

.accordion-button {
    color: var(--main-violet);
    background-color: transparent;
    font-weight: bold;
    padding: 0px 20px;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--main-violet);
    border-radius: 10px;
}

.accordion-item:first-of-type {
    border-radius: 10px;
}

.numbers-section {
    margin-bottom: 150px;
    background-color: var(--grey-color);
    padding: 100px 0;
}
.insights-title,
.archive-section {
    margin-bottom: 100px;
}

.archive-item {
    height: 350px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
}
.archive-item:hover { 
  background-size: auto 115%;
}

.article-thumb {
    height: 320px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    margin-bottom: 3em;
}

.archive-item__meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 90%;
    z-index: 909;
}

.archive-item__meta h4 {
    font-size: 21px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0.5px;
    text-align: left;
    color: white;
}

.archive-item__meta span {
    font-size: 13px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0.25px;
    text-align: left;
    color: var(--main-green);
}

.archive-meta span {
    font-size: 13px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0.25px;
    text-align: left;
    color: var(--main-green);
}

.archive-item:before {
    content: "";
    background-color: #000000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .5;
    z-index: 1;
}

.archive-item:hover:before {
    opacity: .75;
}

.pagination-pages img {
    width: 40px;
    height: 40px;
}

/*
 * SINGLE
 */

 .single-title {
    margin-bottom: 80px;
 }

.single-title h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: 0em;
    text-align: left;
}

.single-date {
    color:var(--main-green);
    font-size: 13px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0.25px;
    text-align: left;
}

.article-box {
    position: relative;
}

.article-box::before {
    content: ''; 
    background: url('./img/single-line-post.svg');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 346px 1626px;
    position: absolute;  
    z-index: -1;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.article-section p,
.privacy-text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: left;
}

.article-section ul {
    padding-left: 10px;
    margin-bottom: 100px;
}

.privacy-text ul {
    margin-bottom: 40px;
}

.article-section ul li,
.privacy-text ul li {
    margin-bottom: 20px;
    list-style-type: "■";
    padding-left: 10px;
}
.article-section ul li::marker,
.privacy-text ul li::marker {
    color: var(--main-green);
}

.contacts-title {
    margin-bottom: 50px;
}

.contacts-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-align: left;
}

.privacy-title {
    margin-bottom: 30px;
}

.privacy-text {
    margin-bottom: 150px;
}

.sm-hidden {
    display: none;
}

.wpb_page_list {
    list-style: none;
    padding: 0;
    margin: 0 0 3em;
}

.wpb_page_list li {
    margin: 1em 0 2em;
}


.wpb_page_list li a {
    background-color: rgba(255,255,255,.2);
    text-decoration: none;
    color: #FFFFFF;
    border-radius: 15px;
    padding: 10px 15px;
}

.wpb_page_list li a:hover {
    background-color: rgba(255,255,255,.4);
    text-decoration: none;
    color: #FFFFFF;
}

.privacy-content p:first-child {
    color: var(--main-green);
}

.input-group-lg>.form-control {
    border-radius: 0!important;
}

.page-title {
    font-weight: 500;
}

.form-control {
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border-bottom: 1px solid var(--main-green);
    padding: 15px 20px;
    color: var(--main-green)!important;
    width: 100%;
 }

 .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.25px;
    text-align: left;
    color: var(--main-green);
 }

 .form-control:focus {
    background: #4A535B!important;

 }

 .form-select {
    padding: 15px 20px;
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border: 1px solid var(--main-green);
    color: var(--main-green)!important;
    background-image: url('./img/arrow.svg');
 }

 .form-select::placeholder {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.25px;
    text-align: left;
    color: var(--main-green);
 }

/*
 * CONTACT FORM
 */

 .wpcf7-form-control {
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border-bottom: 1px solid var(--main-green);
    padding: 15px 20px;
    color: var(--main-green)!important;
    width: 100%;
    margin-bottom: 1em;
 }

 .wpcf7-form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.25px;
    text-align: left;
    color: var(--main-green);
 }

 .wpcf7-form-control:focus {
    background: #4A535B!important;

 }

 .wpcf7-form-select {
    padding: 15px 20px;
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border: 1px solid var(--main-green);
    color: var(--main-green)!important;
    background-image: url('./img/arrow.svg');
 }

 .wpcf7-form-select::placeholder {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.25px;
    text-align: left;
    color: var(--main-green);
 }

 .wpcf7-acceptance,
 .wpcf7-checkbox {
    padding: 0;
    background: none;
    border: none!important;
 }
 .wpcf7-list-item {
    padding: 0;
    margin: 0 0 1em;
 }

.dropdown-select {
    padding: 15px 20px;
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border: 1px solid var(--main-green);
    color: var(--main-green)!important;
    background-image: url('./img/arrow.svg');
    background-repeat: no-repeat;
    background-position: top 20px right 15px;
    width: 100%;
    text-align: left;
}

.categories-dropdown {
    position: relative;
    width: 100%!important;
    border-radius: none;
    background-color: transparent;
    padding: 0!important;
    margin: -1px 0 0!important;
}

.categories-dropdown li {
    width: 100%!important;
    padding: 15px 20px;
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border: 1px solid var(--main-green);
    color: var(--main-green)!important;
}

.categories-dropdown a.dropdown-item {
    padding: 0;
    background: transparent;
    color: white;
}

option {
    width: 100%!important;
    padding: 15px 20px;
    background-color: #121212!important;
    border-radius: 0;
    border:none;
    border: 1px solid var(--main-green);
    color: var(--main-green)!important;
}

.checkbox-inline {
    margin: 0;
}

.checkbox-style {
    border: var(--main-green) solid 1px;
    display: inline-block;
    height: 20px;
    margin-right: 5px;
    position: relative;
    vertical-align: top;
    width: 20px;
}
.checkbox-style:after {
    background: var(--main-green);
    content: '';
    left: 15%;
    top: 15%;
    bottom: 15%;
    right: 10%;
    position: absolute;
    opacity: 0;
}

input[type="radio"]:checked ~ .radio-style:after,
input[type="checkbox"]:checked ~ .checkbox-style:after {
  opacity: 100;
}

input[type=button], input[type=submit], input[type=reset] {
    background-color: var(--main-green)!important;
    border: none;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px 40px;
    transition: all 0.7s;
    text-transform: uppercase;
    width: 50%;
    color: white!important;
    border-radius: 5px;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background-color: var(--dark-green)!important;
    color: white!important;
}

.wpcf7-list-item-label {
    color: white;
}

/*input[type=checkbox] {
    border: var(--main-green) solid 1px;
    background: var(--main-green);
    display: inline-block;
    height: 20px;
    margin-right: 5px;
    position: relative;
    vertical-align: top;
    width: 20px;
}

input[type=checkbox]:checked {
    background: var(--main-green);
}

input[type=checkbox]:hover {
    box-shadow: 0px 0px 10px var(--dark-green);
}
*/

/* custom checkbox styling for contact form 7 checkbox */

.wpcf7-list-item-label {
    margin-left: 33px;
    display: inline-block;
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}
.wpcf7 .wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
}
.wpcf7-checkbox label {
    position: relative;
    cursor: pointer;
}
.wpcf7-checkbox input[type=checkbox] {
    /*position: relative;*/
    position: absolute;
    visibility: hidden;
    width: 23px;
    height: 23px;
    top: 0;
    left: 0;
}
.wpcf7-checkbox input[type=checkbox] + span {
/* border: 3px solid red; */
}
.wpcf7-checkbox input[type=checkbox] + span:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 0;
    height: 23px;
    width: 23px;
    top: 0px;
    left: 0px;
    border: 2px solid black;
    background-color: white;
    box-shadow: 0 0 0 2px var(--main-green);
}
.wpcf7-checkbox input[type=checkbox] + span:after {
    display: block;
    position: absolute;
    content: "" /*"\2713"*/;
    height: 23px;
    width: 23px;
    top: 0;
    left: 0;
    visibility: hidden;
    font-size: 18px;
    text-align: center;
    line-height: 23px;
    background: var(--main-green);
    color: #fff;
    border: 2px solid black;
    box-shadow: 0 0 0 2px var(--main-green);
}
.wpcf7-checkbox input[type=checkbox]:checked + span:before {
    background: transparent;
}
.wpcf7-checkbox input[type=checkbox]:checked + span:after {
    visibility: visible;
}

/* Acceptence */

.wpcf7-acceptance label {
    position: relative;
    cursor: pointer;
}
.wpcf7-acceptance input[type=checkbox] {
    /*position: relative;*/
    position: absolute;
    visibility: hidden;
    width: 23px;
    height: 23px;
    top: 0;
    left: 0;
}
.wpcf7-acceptance input[type=checkbox] + span {
/* border: 3px solid red; */
}
.wpcf7-acceptance input[type=checkbox] + span:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 0;
    height: 23px;
    width: 23px;
    top: 0px;
    left: 0px;
    border: 2px solid black;
    background-color: white;
    box-shadow: 0 0 0 2px var(--main-green);
}
.wpcf7-acceptance input[type=checkbox] + span:after {
    display: block;
    position: absolute;
    content: "" /*"\2713"*/;
    height: 23px;
    width: 23px;
    top: 0;
    left: 0;
    visibility: hidden;
    font-size: 18px;
    text-align: center;
    line-height: 23px;
    background: var(--main-green);
    color: #fff;
    border: 2px solid black;
    box-shadow: 0 0 0 2px var(--main-green);
}
.wpcf7-acceptance input[type=checkbox]:checked + span:before {
    background: transparent;
}
.wpcf7-acceptance input[type=checkbox]:checked + span:after {
    visibility: visible;
}

label {
    width: 100%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(./img/arrow.svg);
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 22px;
}


/*
 * END CONTACT FORM
 */

/*
 * PAGINATION
 */

.pagination {
    float: right;
    margin-left: auto;
}

.pagination li {
    display: inline;
}

.pagination li {
    margin: 0 1em;
    background-color: black;
    border: 2px solid var(--main-green);
    color: var(--main-green);
    border-radius: 0;
}

.pagination li.active {
    margin: 0 1em;
    background-color: var(--main-green);
    border: 2px solid var(--main-green);
    color: white;
    border-radius: 0;
}

.pagination li.active>.page-link {
    color: white!important;
    text-decoration: none;
}

.pagination li>.page-link {
    color: white;
    padding: 0.45rem 1rem;
}

.pagination li>.page-link,
.pagination li.active>.page-link {
    background: none!important;
    border: none!important;
}

.pagination li:last-child {
    margin: 0 0 0 1em;
}

.pagination li.nopage {
    padding: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, .5);
}

/*
 * MOBILE AND MEDIA
 */

@media (min-width: 992px) {
    .slick-dots {
        display: none!important;
    }
    .about-section__block {
        width: 240px;
        height: 240px;
    }

    .title-section__text {
        margin-top: -5em;
    }
}

@media (max-width: 991.98px) {


    body::before {
        background-image: url('./img/insights-top.svg'), none;
    }

    body::before {
        background-image: url('./img/contacts-top.svg'), none;
        background-position: top -50% center;
    }

    body.single-body::after {
        background-size: 100% auto;
        width: 100%;
        height: auto;
    }

    .article-box:before {
        background: none!important;
    }

    .title-section__text {
        position: relative;
        padding: 3em 5em 3em 0;
    }

    .carousel-block {
        padding: 80px 0;
        margin: 80px 0 100px;
    }
    .partners-section:before {
        position: relative;
        background-image: url('./img/partners-line.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        background-size: cover;
    }

    h1 {
        font-size: 55px;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: 0em;
        text-align: left;
    }

    h2 {
        font-size: 40px;
        font-weight: 700;
        line-height: 65px;
        letter-spacing: -0.25px;
        text-align: left;
    }

    h3 {
        font-size: 30px;
        font-weight: 700;
        line-height: 35px;
        letter-spacing: -0.25px;
        text-align: left;
    }

    .cases-section__description {
        font-size: 17px;
        font-weight: 500;
        line-height: 35px;
        letter-spacing: 0.5px;
        text-align: left;
        margin-bottom: 0;
    }

    .overlay .closebtn {
        position: absolute;
        top: 0;
        right: 10px!important;
        left: 90%;
        font-size: 60px;
      }
    
    .overlay-logotype {
        transform: none;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .overlay a {
        font-size: 45px;
        font-weight: 700;
        line-height: 55px;
        letter-spacing: 0em;
        text-align: center;
        padding: 0 0 30px;
        margin: 0;
    }

    a.closebtn {
        padding: 0;
        width: 30px;
        height: 30px;
    }

    .footer-menu a,
    .footer-menu a.grey-link {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    .slider-single .slick-prev {
        position:absolute;
        top: 100%;
        bottom: -40px;  
        left:40px;
        z-index: 99;
    }
    .slider-single .slick-next {
        position:absolute;
        top: 100%;
        bottom: -40px;  
        right: 40px;
        z-index: 99;
    }

    a.full-width {
        width: 100%;  
    }
}

@media (max-width: 767.98px) {



    .accordeon-section__background {
        position: relative;
        padding-bottom: 100px;
    }

    .accordeon-section__background:after {
        position: absolute;
        content: "";
        background-image: url(./img/service-line-description.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: top center;
        top: 0;
        right: 5%;
        left: 5%;
        width: 90%;
        height: 100%;
    }

    .service-background:after {
        position: absolute;
        content: "";
        background-image: url(./img/service-line-description.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: top center;
        top: 170px;
        right: 5%;
        left: 5%;
        width: 90%;
        height: 75%;
    }

    .footer-menu ul li {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-section__background {
        position: relative;
    }

    .contact-section__background:after {
        position: absolute;
        content: "";
        background-image: url(./img/service-line-description.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: top center;
        top: 0;
        right: 5%;
        left: 5%;
        width: 90%;
        height: 120%;
    }

    .privacy-text__background {
        position: relative;
        padding: 50px 50px 50px 0;
    }

    .privacy-text__background:after {
        position: absolute;
        content: "";
        background-image: url(./img/service-line-description.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: top center;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 110%;
    }

    .partners-carousel {
        position: relative;
        padding: 100px 0;
    }
    .partners-carousel:before {
        position: absolute;
        content: "";
        background-image: url(./img/service-line-description.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: top center;
        top: 50px;
        right: 8%;
        left: 8%;
        width: 84%;
        height: 84%;
    }

    .sm-hidden {
        display: block;
    }

    .services-title {
        margin-bottom: 50px;
    }

    .numbers-section h3 {
        font-size: 45px;
        font-weight: 700;
        line-height: 50px;
        letter-spacing: -0.25px;
        text-align: left;
    }

    .numbers-section {
        margin-bottom: 20px;
    }

    .privacy-text {
        margin-bottom: 0;
    }

}

@media (max-width: 525px) {

    .title-section__text {
        position: relative;
        padding: 3em 5em 7em 0;
    }

    .title-section__text:before {
        position: absolute;
        content: "";
        background-image: url(./img/single-line.svg);
        background-repeat: no-repeat;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }


    .single-line {
        position: relative;
        padding: 3em 0 5em 0;
        margin-bottom: 3em;
    }

    .single-line:before {
        position: absolute;
        content: "";
        background-image: url(./img/single-line.svg);
        background-repeat: no-repeat;
        background-size: 88% 100%;
        top: 0;
        right: 0;
        left: 12%;
        bottom: 0;
        height: 100%;
        z-index: -1;
    }
}
