/*
Theme Name: WP_Ogitive
Theme URI: http://ww.ogitive.com
Author: Ogitive
Author URI: http://www.ogitive.com
Description: Blank template
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpog
Tags:
*/

* {
  margin: 0;
  padding: 0;
   -webkit-locale: "en";
}
:root{
    /*boje*/
  --black:rgba(0, 0, 0, 0.8);
  --white:#fff;
  --yellow:#fcf112;
  /*font*/
  --p-main:clamp(16px,0.94vw, 18px);
  --p-second:clamp(18px,1.04vw, 20px);
  --p-third:clamp(14px,0.83vw, 16px);
  --h1-:clamp(50px,3.12vw, 60px);
  --h2-:clamp(42px,2.6vw,50px);
  --h3-:clamp(28px,1.82vw, 30px);
  --h3-alter:clamp(22px,1.3vw, 25px);
  --link-mid-font:clamp(30px,1.56vw, 18px);
  /*margine*/
  --h-margin-bottom:clamp(20px,2.6vw, 50px);
  --h-margin-bottom-second:clamp(15px,1.56vw, 30px);
  --margin100:clamp(40px,5.2vw, 100px);
  --margin50:clamp(20px,2.6vw, 50px);
  --margin60:clamp(20px,3.1vw, 60px);
  --margin150:clamp(35px,7.8vw,150px);
  /*pading*/
  --padding50:clamp(20px,2.6vw,50px);
  --padding100:clamp(40px,5.2vw,100px);
  --padding150:clamp(75px,7.8vw,150px);
}
body{
  font-family: 'Galano', sans-serif;
    overflow-x: hidden;
    color: var(--black);
}
@font-face {
  font-family: 'Galano';
  src: url('assets/fonts/font-regular.woff');
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Galano';
  src: url('assets/fonts/font-medium.woff');
  font-style: normal;
  font-weight: 500;
}
strong{
    font-weight: 700;
}
em{
    font-style: italic;
}
p{
  font-family: 'Galano', sans-serif;
  font-size:var(--p-main);
  margin-bottom: 20px;
  line-height: 1.75;
  font-weight: 400;
}
h1{
  font-size: var(--h1-);
  font-family: 'Galano', sans-serif;
  margin-bottom: var(--h-margin-bottom);
  color:var(--black);
  line-height: 1.2;
  font-weight: 500;
}
h2{
  font-size: var(--h2-);
  font-family: 'Galano', sans-serif;
  margin-bottom: var(--h-margin-bottom);
  color:var(--black);
  line-height: 1.2;
  font-weight: 500;
}
h3{
    font-size:var(--h3-);
    font-family: 'Galano', sans-serif;
    margin-bottom: var(--h-margin-bottom);
    color:var(--black);
    line-height: 1.2;
    font-weight: 500;
}
a{
  font-family: 'Galano', sans-serif;
}
::-moz-selection {
        background: #4BBFF9;
    color: #000;
}
::selection {
    background: #4BBFF9;
    color: #000;
}
.page-content ul{
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: var(--h-margin-bottom-second);
}
.page-content ul li{
    font-family: 'Galano', sans-serif;
    font-size: var(--p-main);
    line-height: 1.75;
}
.page-content ol li{
    font-family: 'Galano', sans-serif;
    font-size: var(--p-main);
    line-height: 1.75;
}
.page-beez.page-content{
    padding-bottom:50px;
}
.page-beez.page-content p{
    font-size: 16px;
}
.page-beez.page-content ul li{
    font-family: 'Galano', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
.page-beez.page-content ol li{
    font-family: 'Galano', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}
.page-beez.page-content h3{
    margin-bottom: 20px;
}
.top-services.top-pagebeez{
    border-bottom: none;
    padding-bottom: 0;
}
.page-content.page-legacy{
    max-width: 820px;
    margin: auto;
}
.yellow-link{
    color: var(--black);
    background-image: linear-gradient(180deg,transparent 53%,#4BBFF9 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .4s ease;
    cursor: pointer;
    font-family: 'Galano', sans-serif;
}
.yellow-link:hover{
    background-size: 100% 100%;
    text-decoration: none;
}

.uk-container {
    max-width: 1678px;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.flex.flex-wide{
  justify-content: space-between;
}
.flex.flex-center{
    justify-content: center;
}
.grid{
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid.grid-four{
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid.grid-two{
    grid-template-columns: 1fr 1fr;
}
.btn{
    font-family: 'Galano', sans-serif;
    overflow: hidden;
    padding: 0;
    width: 200px;
    display: inline-block;
    padding: 20px;
    border:1px solid var(--black);
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 17px;
    background:var(--black);
    font-weight: 500;
}

.btn::before {
    /*font-family: 'Galano', sans-serif;*/
    content: attr(data-text);
    position: absolute;
    padding: 8px 0 8px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.btn:hover::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.btn > span{
    /*font-family: 'Galano', sans-serif;*/
    vertical-align: middle;
    position: absolute;
    width: 200px;
    left: 0;
    top: 0;
    padding: 8px 0 8px;
    color: #fff;
}
.btn::before, .btn > span {
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn:hover span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.btn:hover:active span {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.btn.btn-white{
    background:var(--white);
    color: var(--black);
}
.btn.btn-white > span{
    color: var(--black);
}
.btn.btn-white:before{
    background: var(--black);
    color: var(--white);
}
.btn.btn-wide,.btn.btn-wide > span{
    width: 300px;
}
.btn > span > input {
    background: transparent;
    border: none;
    width: 100%;
    font-size: 17px;
    color: #fff;
    line-height: 1;
}

/*HEADER*/
header{
  margin-bottom: var(--margin150);
  position: relative;
}
.top-header{
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background: #fff;
    transition: .1s all ease-in-out;
}
.header-logo{
  width: 30%;
}
.header-logo img{
    width: 140px;
}
.header-msg{
  width: 30%;
  padding-top: 25px;
  text-align: center;
}
.header-msg p{
  font-size: 15px;
  text-transform: uppercase;
}
.nav-holder{
  width: 30%;
  position: relative;
  text-align: right;
  padding-top: 25px;
}
.hc-nav-trigger.hc-nav-1 {
    display: block;
    right: 0;
}
.hc-nav-trigger {
    width: 34px;
}
.hc-nav-trigger span, .hc-nav-trigger span::before, .hc-nav-trigger span::after {
    height: 2px;
    background: rgba(0, 0, 0, 0.8);
    width: 34px;
}

/*TOP SECTION*/
.section{
  border-bottom: 1px dashed rgba(0, 0, 0, 0.8);
  padding:var(--padding50) 0 var(--padding100);
  margin: var(--margin50) 0;
}
.top-home .top-left h1{
    margin-bottom: var(--margin60);
}
.top-left{
  width: 44%;
}
.top-left a{
    text-decoration: none;
}
.top-left p{
  width: 72%;
  margin-bottom: var(--margin60);
  font-size:var(--p-second);
}
.top-left .link-works{
    font-size: 17px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Galano', sans-serif;
    margin-left: var(--margin50);
    position: relative;
    top: 3px;
    display: inline;
    cursor: pointer;
}
.top-left .link-works img{
position: relative;
    width: 40px;
    top: 14px;
    margin-right: 12px;
}
.top-right{
  width: 50%;
}

/*HOME ACC*/

.home-acc-left{
  width: 47%;
}
.home-acc-left p{
  width: 55%;
  font-size: 20px;
  font-size:var(--p-second);
}
.home-acc-right{
  width: 50%;
  margin-top: 230px;
}
.home-acc-right li{
  position: relative;
}
.home-acc-right .uk-accordion-title{
    padding-top: 15px;
}
.home-acc-right .uk-accordion-title h3 {
    margin-bottom: 20px;
    margin-left: 100px;
    font-size: 28px;
}
.home-acc-right .uk-accordion-title h3 > span{
    font-family: 'Galano', sans-serif;
    color: var(--black);
    background-image: linear-gradient(180deg,transparent 50%,#4BBFF9 0);

    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: background-size .4s ease;
}


.acc-off{
    position: relative;
    padding-top: 15px;
}
.acc-off img {
    width: 60px;
    position: absolute;
    top: 2px;
}
.home-acc-right .link-off-acc{
  display: block;
  margin-top: 20px;
  text-decoration: none;
}
.home-acc-right .link-off-acc h3{
        margin-bottom: 20px;
    margin-left: 100px;
    font-size: 28px;
}
.home-acc-right .link-off-acc h3 > span{
    font-family: 'Galano', sans-serif;
    color: var(--black);
    background-image: linear-gradient(180deg,transparent 50%,#4BBFF9 0);

    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: background-size .4s ease;
}
.home-acc-right .uk-accordion-title:hover span,.home-acc-right .link-off-acc:hover span{
    background-size: 100% 100%;
    cursor: pointer;
}
.home-acc-right .uk-accordion-title::before {

display: none;
}
.home-acc-right .acc-btn {
    left: 0;
    top: 2px;
}
.home-acc-right .uk-open>.uk-accordion-title::before {

    display: none;
}
.home-acc-right .uk-accordion-content {
    padding-left: 120px;
}

/*SOLUTIONS*/
.solutions h2{
    margin-bottom: 20px;
}
.solution-box{
    text-align: center;
    border: 1px solid var(--black);
    /*padding: 70px 50px 50px;*/
    padding: var(--padding50) var(--padding50);
}
.solution-box:nth-child(2){
    border-right: none;
    border-left: none;
}
.solution-box h3{
    margin-bottom: 20px;
}
.solution-box .yellow-link{
    font-size: var(--h3-);
    width: fit-content;
    margin: 0 auto 0px;
}
.solution-box p{
    font-size: var(--p-third);
    min-height: 200px;
    padding: 0px 34px;
    line-height: 1.55;
}
.solution-box .img-holder{
    min-height: 240px;
    margin-bottom: 10px;
}
.solution-comp{
    margin-top: var(--margin150);
}
.solution-text{
    width: 28%;
}
.solution-text h2{
    margin-bottom: var(--h-margin-bottom);
}
.solution-text p{
    font-size: var(--p-main);
}
.comp-icons{
    width: 60%;
    justify-content: space-around;
}
.comp-icons a{
    display: flex;
}
.comp-icons img{
    margin: auto;
}

/*TEAM/SERVICES*/
.team-services-left {
    margin: auto 0;
    width: 47%;
}
.team-services-left a{
    text-decoration: none;
}
.team-services h2{
    font-size: var(--h1-);
    margin-bottom: clamp(20px,2.6vw, 50px);
}
.team-services-img{
    width: 53%;
    text-align: right;
}
.team-services-left p{
    margin-bottom: clamp(20px,3.1vw, 60px);
}
.team-services-left .btn-white{
    margin-left: clamp(20px,2.6vw, 50px);
}

/*FOOTER*/
footer{
    padding: var(--padding50) 0 var(--padding150);
}
.footer-logo {
    margin-bottom: 70px;
}
.footer-logo img{
    display: inline-block;
    margin-bottom: -2px;
}
.footer-logo p{
    display: inline-block;
    font-size: 14px;
    margin-left: 28px;
}
.footer-grid{
    width: 100%;
}
.footer-links h3{
        font-size: var(--link-mid-font);
        line-height: 1;
    margin-bottom: 20px;
}
.footer-links h3 a{
border-bottom: 1px solid var(--black);
    width: fit-content;
    background-image: linear-gradient(180deg,transparent 50%,#4BBFF9 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: background-size .4s ease;
    cursor: pointer;
    font-family: 'Galano', sans-serif;
}

.footer-links a:hover{
    background-size: 100% 100%;
    text-decoration: none;
}
.footer-links a:hover:active{
    background-size: 100% 100%;
    text-decoration: none;
}
.footer-copyright{
    width: 20%;
    margin-top: 100px;
    margin-left: auto;
    margin-right: calc(12% + 20px);
}
.footer-copyright p{
    font-size: 14px;
}
.footer-copyright a{
    font-size: 14px;
    text-decoration: underline;
    margin-right: 5px;
}


/*BEEZ OFFICE PAGE*/

.top-office {
    padding: 10px 0 100px;
}
.top-office.top-business {
    margin-bottom: 0;
}
.top-office .top-left {
    width: 32%;
    margin: auto 50px;
}
.top-left .intro-text{
    width: 100%;
    font-size: 20px;
    font-weight: 400;
}
.top-office .top-right {
    width: 35%;
    text-align: center;
}
.text-four p{
    padding-right: 45px;
    font-weight: 500;
}
.main-office {
    padding:0 0 100px;
}
.layout-img{
    margin: 20px 0 100px !important;
}

.office-service .team-services-left {
    margin: auto 0;
    width: 50%;
}
.office-service .team-services-img {
    width: 50%;
    text-align: center;
}
.grid.modules{
    width: 100%;
    margin-top: 50px;
    column-gap: 150px;
    row-gap: 100px;
}

.module-img{
    width: 45%;
}
.title-half{
    width: 55%;
}

.module-logo h3{
    text-transform: uppercase;
    width: 50%;
    margin: auto 0;
    font-size: var(--p-main);
    font-weight: 500;
}
.module-line {
    min-height: 100px;
}
.module-line p{
    text-transform: uppercase;
    font-size: var(--p-third);
    font-weight: 500;
    margin:auto 0;
    width: 75%;
}

.explore-text{
    width: 20%;
}
.explore-boxes.grid{
    grid-template-columns: 1fr 1fr;
    width: 53%;
    column-gap: clamp(40px,5.2vw,100px);
}
.explore-box{
    border: 1px solid var(--black);
    padding: 50px 50px 80px;
    text-align: center;
}
.explore-img{
    min-height: 240px;
}
.explore-box .yellow-link{
    font-size: var(--h3-);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--h-margin-bottom-second);

}

/*COMPANY*/
.top-company-content{
    text-align: center;
}
.top-company-content .company-lottie{
    max-width: 880px;
    margin: auto;
}
.top-company-content lottie-player{
    margin-top:var(--margin100);
    margin-bottom:max(5.2vw, 45px); ;
}
.top-company-text{
    max-width: 820px;
    margin:auto;
}
.quality-left{
    width: 20%;
}
.quality-right{
    width: 60%;
    padding-right: 70px;
}
.iso-box{
    text-align: center;
}
.iso-box p{
    padding: 0 var(--padding50);
}
.our-team-text{
    width: 40%;
    margin: auto 0;
}
.our-team-text p{
    padding-right: 100px;
}
.our-team-text .btn{
    margin-top: var(--h-margin-bottom);
}

/*SERVICES*/
.top-services-content{
    max-width: 820px;
    margin:auto;
    text-align: center;
}
.top-services-content p{
    padding: 0 80px;
}
.service-option-right h3{
    font-size: var(--p-main);
    margin-bottom: var(--h-margin-bottom-second);
    text-transform: uppercase;
}
.service-option-left h3{
    font-size: var(--h3-alter);
    margin-bottom: 20px;
    width: 75%;
}
.service-option-left{
    width: 50%;
}
.service-option-right{
    width: 50%;
    margin-top: var(--margin100);
}
.service-option-right p{
    margin-bottom: 15px;
}
.service-option-left img{
    margin-top: var(--h-margin-bottom);
}

/*RESOURCES*/
.resources-top,.top-contact-content{
    max-width: 820px;
    margin:auto;
    text-align: center;
}
.resources-top h2{
    font-size: var(--h1-);
}
.resources-top p{
    font-size: var(--h3-alter);
    padding: 0 40px;
}
.resources-boxes {
    width: 100%;
    width: 100%;
    column-gap: 10px;
    row-gap:var(--margin100);
}
.resource-box {
    text-align: center;
}

.resource-box p{
    font-size: var(--p-second);
    margin-bottom: var(--h-margin-bottom-second);
}

/*WHY BEEZ*/
.why-beez-top{
    max-width: 820px;
    margin:auto auto var(--margin100);
    text-align: center;
}
.why-video{
    margin-bottom: var(--margin100);
    position: relative;
}
.video-cover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 10;
    background: #ececec;
}
#whyVideo{
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    cursor: pointer;
}
.why-video video{
    width: 100%;
}
.why-boxes{
    column-gap: 150px;
    row-gap:var(--margin100);
}
.why-box{
    padding-right: 50px;
}
/*.why-box h2 {
    min-height: 120px;
}*/
.why-box h2.big-h2{
    font-size: max(13vw, 40px);
    line-height: unset;
    min-height: unset;
    margin-bottom: 10px;
}

/*CONTACT US*/
.top-contact {
    border-bottom: none;
    padding: var(--padding50) 0 0;
}
.contact-form {
    width: 55%;
    text-align: right;
}
.contact-img{
    width: 40%;
    text-align: center;
    margin: auto 0;
}
.input-form{
    margin-bottom: 15px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    position: relative;
}
.input-form label{
    display: block;
    font-family: 'Galano', sans-serif;
    color: var(--black);
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 500;
}
.input-form input{
    border: 1px solid #979797;
    width: calc(100% - 20px);
    height: 40px;
    padding: 0 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}
.input-form select{
    border: 1px solid #979797;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    background: #fff;
}
.input-form.input-select::after{
    content: "\f078";
    font-family: 'FontAwesome';
    position: absolute;
    top: 45px;
    right: 15px;
    /*transform: rotate(180deg);*/
    transition: .2s all ease-in-out;
    color: var(--black);
}
.input-form.input-select select:focus{
    outline: none;
}
.input-form.input-select.opened-select::after{
        content: "\f077";
    font-family: 'FontAwesome';
    position: absolute;
    top: 45px;
    right: 15px;
    /*transform: rotate(0deg);*/
    transition: .2s all ease-in-out;
    color: var(--black);
}
.input-form textarea{
    border: 1px solid #979797;
    width: calc(100% - 22px);
    height: 160px;
    padding: 0 10px;
    resize: vertical;
}
p.small-text{
    font-size: 8px;
    margin-top: 20px;
}

/*BUSINESS*/
.top-business{
    margin-bottom: 0;
}
.business-acc{
    margin: 0;
    padding: 0;
    margin-bottom: var(--margin50);
    border-bottom: none;
}
.business-acc .uk-accordion>:nth-child(n+2) {
    margin-top: 0px;
}
.business-acc .accordion-head{
   background: #fff;
   position: sticky;
   top: 121px;
   padding: 20px 0;
   overflow: visible;
   z-index: 10;
   cursor: pointer;
}
.business-acc .accordion-head h3{
    margin-bottom: 0;
}
.open .accordion-head{
    border-top: 1px dashed var(--black);
}
.business-acc .accordion-tab{
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.8);
}
.business-acc .accordion-tab:after{
        content: '';
    border-bottom: 1px dashed rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 1px;
    height: 1px;
    z-index: 50;
}

.business-acc span.yellow-link{
    font-size: var(--h2-);
    width: fit-content;
    line-height: 1;
    display: inline-block;
    font-weight: 500;
    position: relative;
    top: 5px;
}
.business-acc .accordion-content {
    /*padding-bottom: var(--padding100);*/
}

span.acc-btn{
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    background: var(--black);
    position: absolute;
    right: 0;
    top: 14px;
}
.accordion-head span.acc-btn{
position: relative;
    display: block;
    float: right;
    top: unset;
    margin: auto 0;
}
span.acc-btn::before{
    content: '';
    width: 20px;
    height: 4px;
    background: #fff;
    top: 28px;
    position: absolute;
    left: 20px;
    transform: rotate(0deg);
    transition: .4s all ease-in-out;
}
span.acc-btn::after{
    content: '';
    width: 20px;
    height: 4px;
    background: #fff;
    top: 28px;
    position: absolute;
    left: 20px;
    transform: rotate(90deg);
    transition: .4s all ease-in-out;
    opacity: 1;
}

.acc-btn2{
    width: clamp(36px,3.12vw, 58px) !important;
    height: clamp(36px,3.12vw, 58px);
    border-radius: 50%;
    border: 1px solid #fff;
    background: var(--white);
    position: absolute;
    right: 0;
    top: clamp(10px,1.6vw, 20px);
    cursor: pointer;
}
.acc-btn2:hover{
    background: transparent;
}
.acc-btn2::before{
    content: '';
    width: clamp(16px,1.04vw, 20px);
    height: 4px;
    background: var(--black);
    top: clamp(15px,1.44vw, 28px);
    position: absolute;
    left: clamp(10px,1vw, 19px);
    transform: rotate(0deg);
    transition: .4s all ease-in-out;
}
.acc-btn2::after{
    content: '';
    width: clamp(16px,1.04vw, 20px);
    height: 4px;
    background: var(--black);
    top: clamp(15px,1.44vw, 28px);
    position: absolute;
    left: clamp(10px,1vw, 19px);
    transform: rotate(90deg);
    transition: .4s all ease-in-out;
    opacity: 1;
}
.acc-btn2:hover::after{
    background: #fff;
}
.acc-btn2:hover::before{
    background: #fff;
}
.uk-open span.acc-btn::before{
    transform: rotate(180deg);
    transition: .4s all ease-in-out;
    opacity: 0;
}
.open span.acc-btn::before{
    transform: rotate(180deg);
    transition: .4s all ease-in-out;
    opacity: 0;
}
.acc-btn2.act-btn::before{
    transform: rotate(180deg);
    transition: .4s all ease-in-out;
    opacity: 0;
}

.uk-open span.acc-btn::after{
    transform: rotate(180deg);
    transition: .4s all ease-in-out;
}
.open span.acc-btn::after{
    transform: rotate(180deg);
    transition: .4s all ease-in-out;
}
.acc-btn2.act-btn::after{
    transform: rotate(180deg);
    transition: .4s all ease-in-out;
}
.business-acc .uk-accordion-title::before {
    width: unset;
    height: unset;
    background-image: none;
}


.module-line i{
    width: 28px;
    height: 28px;
    padding: 14px 8px 0px;
    background: var(--black);
    border: 1px solid var(--black);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    margin: auto 0;
    position: relative;
}
.module-line i:hover{
    background: var(--white);
    color: var(--black);
}
.module-line i:hover img {
  filter: invert(1);
}

.module-line i:hover > span {
  opacity: 1;
  transform: translate(-50%, 0);
  display: block;
  transition: .4s all ease-in-out;
}
.module-line i span {
  position: absolute;
  left: 50%;
  bottom: 100%;
  opacity: 0;
  margin-bottom: 1em;
  padding: 1em;
  background-color: var(--black);
  color: var(--white);
  font-size: 12px;
  line-height: 1.6;
  width: 210px;
  text-align: center;
  transform: translate(-50%, 1em);
  transition: all 0.15s ease-in-out;
  font-family: 'Galano', sans-serif;
  display: none;
  transition: .4s all ease-in-out;
}
.module-line i span::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  border-top-color: #000;
  transform: translate(-50%, 0);
}



.menu-holder{
    position: fixed;
    width: 100%;
    z-index: -1;
    background: #232323;
    transition: .7s all ease-in-out;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    clip-path: circle(0% at 94% 60px);

}
.menu-holder::-webkit-scrollbar {
  display: none;
}
.menu-holder.active{
    transition: .7s all ease-in-out;
    clip-path: circle(100% at 50% 50%);
    z-index: 999;
}
 .top-header.nonactive {
    z-index: 0;
    transition: .1s all ease-in-out;
}
.menu-holder-top{
  padding: 25px 0;
  margin-bottom: clamp(60px,4.2vw, 80px);
}
.menu-holder-top .header-msg,.menu-holder-top .nav-holder{
  padding-top: 25px;
}
.menu-holder .header-msg p{
  color: var(--white);
}
.main-nav{
  width: 55%;
  padding-bottom: 100px;
}
.lang-div{
  width: 30%;
  text-align: right;
  padding-top: 25px;
}
.lang-div img{
  margin-left: 20px;
  width: clamp(36px,3.12vw, 60px);
}
.main-nav ul > li{
  position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.8) ;
}
.main-nav ul > li > a{
    padding-top:clamp(15px,0.52vw, 28px);
    padding-bottom: clamp(15px,0.52vw, 28px);
    display: block;
    font-size: clamp(30px,3.9vw, 75px);
    font-family: 'Galano', sans-serif;
    color: var(--white);
    text-decoration: none;
}
.main-nav ul > li{
  position: relative;
}
.main-nav ul > li > ul{
  display: none;
  margin-bottom: 20px;
}
/*.main-nav ul > li > ul.opened{
  display: block;
}*/
.main-nav ul > li > ul > li{
  border-bottom: none;
}
.main-nav ul > li > ul > li > a {
    font-size: var(--p-main);
    padding: 5px 0;
}
#menu-button{
  cursor: pointer;
  transition: 0.4s all ease;
}
#menu-button:hover{
  transform: scale(1.1);
  transition: 0.4s all ease;
}
#close-cover{
  cursor: pointer;
  transition: 0.4s all ease;
}
#close-cover:hover{
  transform: rotate(90deg);
  transition: 0.4s all ease;
}
.mob-div{
    display: none;
}

.solution-slider{
    padding-bottom: 120px;
    display: none;
}
.solution-slider .swiper-button-next,.solution-slider .swiper-button-prev {
    top: unset;
    bottom: 40px;
    width: 50px;
}
.solution-slider .swiper-button-next{
    right: 35%;
}
.solution-slider .swiper-button-prev{
    left: 35%;
}
.solution-slider .swiper-button-next:after,.solution-slider .swiper-button-prev:after{
    display: none;
}


.icon-div{
    text-align: center;
    display: flex;
    min-height: 210px;
}
.icon-div a {
    margin: auto;
}
.icon-slider{
    display: none;
}
.icon-slider .swiper-button-next{
    top: 42%;
    width: 38px;
    height: unset;
}
.icon-slider .swiper-button-prev{
    top: 42%;
    width: 38px;
    height: unset;
}
.icon-slider .swiper-button-next:after,.icon-slider .swiper-button-prev:after{
    display: none;
}
.quality-slider .swiper-button-next:after,.quality-slider .swiper-button-prev:after{
    display: none;
}
.resources-slider .swiper-button-next:after,.resources-slider .swiper-button-prev:after{
    display: none;
}
.quality-slider .swiper-button-next{
    right: 2%;
    width: 50px;
}
.quality-slider .swiper-button-next:focus{
    outline: none;
}
.quality-slider .swiper-button-prev{
    left: 2%;
    width: 50px;
}
.quality-slider .swiper-button-prev:focus{
    outline: none;
}
.resources-slider .swiper-button-next{
    right: 2%;
    width: 50px;
}
.resources-slider .swiper-button-next:focus{
    outline: none;
}
.resources-slider .swiper-button-prev{
    left: 2%;
    width: 50px;
}
.resources-slider .swiper-button-prev:fous{
    outline: none;
}
.modules-slider{
    display: none;
    padding-bottom: 90px;
}
.swiper-slide .module-box .module-line {
    min-height: 100px;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
}
.swiper-slide .module-box .module-line p {
    text-transform: uppercase;
    font-size: var(--p-third);
    font-weight: 500;
    margin: 0 0 10px;
    width: 100%;
    min-height: 50px;
}
.swiper-slide .module-box .flex.module-logo{
    flex-direction: column;
    text-align: center;

}
.swiper-slide .module-box .module-img {
    width: 100%;
    text-align: center;
}
.swiper-slide .module-box .flex.module-logo h3{
    width: 100%;
    margin-bottom: 30px;
}
.swiper-slide .module-box .module-line i {
    margin: 0 auto;
}
.modules-slider .swiper-button-next:after,.modules-slider .swiper-button-prev:after{
    display: none;
}
.modules-slider .swiper-button-next,.modules-slider .swiper-button-prev {
    top: unset;
    bottom: 0px;
    width: 50px;
}
.modules-slider .swiper-button-next{
    right: 35%;
}
.modules-slider .swiper-button-prev{
    left: 35%;
}


.accordion-content{
    max-height: 0;
    overflow: hidden;
  transition: all 0.8s ease;
  margin-top: 0;
  padding-bottom: 0;
}
.open .accordion-content{
    margin-top: 10px;
        max-height: 10000px;
    transition: all 0.8s ease-in;
    padding-bottom: var(--padding100);
}
/*.open .accordion-head{
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}*/
.last-acc-text{
    width: 50%;
    margin: 80px 0;
}

.contact-form .flex {
    max-width: 500px;
    margin-left: auto;
}
.contact-form p{
    max-width: 500px;
    margin-left: auto;
    text-align: left;
}
.contact-form .flex .input-form{
    width: 48%;
    margin-left: 0;
}
.contact-form .input-form input[type="file"] {
    cursor: pointer;
    border: none;
    padding: 0;
}
.quality-slider{
    display: none;
}
.resources-slider{
    display: none;
}

.act{
    display: none;
}
.div404{
    text-align: center;
    margin-bottom: 150px !important;
}
.div404 img{
    margin-bottom: 50px;
}
.div404 .btn{
    width: 320px;
}
.div404 p{
    max-width: 500px;
    margin:auto auto 50px;

}
.div404 .btn > span{
    width: 320px;
}
.top404{
    margin-top: 0;
    padding-top: 0;
}
.top404 h1{
    margin-bottom: 30px;
}
form .btn{
    margin-top: 30px;
}
.up-btn{
background: #fff;
    padding: 10px;
    border: 2px solid #fcf112;
    display: block;
    width: 100px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    z-index: 10;
    cursor: pointer;
}
.up-btn:after{
    top: 0;
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    right: -32px;
}
.contact-form .input-form.upload input[type="file"]{
    padding-left: 60px;
    width: 200px;
}
p.disclaimer{
    font-size: 8px;
}
p.disclaimer a{
text-decoration: underline;
}

.changelang img.hidden{
    display:none;
    transition: all 0.4s ease;
}
.changelang:hover img:first-child{
    display:none;
    transition: all 0.4s ease;
}
.changelang:hover img.hidden{
    display:inline-block;
    transition: all 0.4s ease;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    text-align: left;
    font-size: 14px;
}
#popup-modal{
    display: none;
    position: fixed;
    z-index: 200;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
    transition: 0.3s all;
}
#popup-modal.openedModal{
    display: block;
}
.popup-body{
    max-width: 1085px;
    margin: auto;
    position: relative;
}
#popupClose{
    position: absolute;
    right: -30px;
    top: -30px;
    cursor: pointer;
}
