:root {
    /*używane*/
    --homepage-bg-color:#161616;
    --bg-color:#E8E8E8;
    --max-width:1920px;
    --body-font_color:#1A1A1A;
    --homepage-body-font_color:#FFFFFF;
    --body-font_size:18px;
    --first-lvl-menu-color:#202020;
    --homepage-first-lvl-menu-color:#FFFFFF;
    --homepage-header-font_color:#FFFFFF;
    --header-font_color:#000000;

    --primary_btn:#FFFFFF;
    --primary_btn-hover:#e5e5e5;
    --primary_btn-color:#161616;
    --primary_btn-hover-color:#131313;

    --secondary_btn-color:#fff;
    --secondary_btn-border:#fff;
    --secondary_btn-hover-border:#e5e5e5;
    --secondary_btn:#161616;
    --secondary_btn-hover:#131313;
    /*koniec używane*/


    --medium-cont:1126px;
    --small-cont:900px;
    --blue:#322CDD;
    --purple:#8480EB;
    --green:#90D02F;


    --blue-header-font_color:#1E1A85;

    --clean-white-header-font_color:#F8F8F8;
    --header-gry-color:#545454;
    --header-color:#071024;

    --second-lvl-menu-color:#0D1F48;
    --dropdown-color: #FDFDFD;

    --grey-border:#D3DCF0;

    --basic-del:0.7s;
}

/*my-reset*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--body-font_color);
    cursor:url('../img/icons/circle-solid.svg'), auto;
    scroll-behavior: smooth;
}
.home-page *{
    color: var(--homepage-body-font_color);

}
.dark *{
    cursor:url('../img/icons/circle-solid_white.svg'), auto;
}
a *,a,.dark a{
    cursor: pointer !important;
}
/*basic*/
body{
    background: var(--bg-color);
    overflow-x: hidden;
    max-width: 100%;
}
.home-page{
    background: var(--homepage-bg-color);
}
html{
    overflow-x: hidden;
    scroll-padding-top: 96px;
}
a,p,span,div,li,ul,ol{
    font-size:var(--body-font_size);
}
a{
    text-decoration: none;
    cursor: pointer;
}
h1, h1 div{
    font-size: 125px;
    font-style: normal;
    font-weight: 400;
    line-height: 130px;
    color: var(--header-font_color);
}
.home-page h1, .home-page h1 div{
    color: var(--homepage-header-font_color);
}
.home-page h1 div{
    position: relative;
    top: 70px;
}
.homepage_title_text{
    padding-top:140px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1187px;
    padding-bottom:133px;
    position: relative;
}
.socials_container{
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: var(--max-width);
    transform: translateX(-50%);
    box-sizing: border-box;
    padding: 0 40px;
    visibility: hidden;
}
.homepage_title_text .video-container{
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 105px;
}
.homepage_title_text div:first-of-type, .homepage_title_text div:last-of-type{
    text-align: right;
}
.homepage_title_text .video-container video{
    position: relative;
    top: calc(50% - 52.5px);
    transform: translateY(-50%);
}
h1.small-main-header{
    color: #214EB5;
    text-shadow: 0px 4px 32px rgba(72, 97, 163, 0.10);
    font-size: 71px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -3.55px;
}
h2{
    font-size: 60px;
    line-height: 83px;
    font-weight: 400;
}
h4,h5,h6{
    font-weight: 400;

}
img {
    max-width: 100%;
}
.ty-btn{
    padding: 8px 20px;
    transition: 0.4s linear;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border: none;
    border-radius: 19px;
    font-size: 17px;
}
.arrow-btn{
    border-radius: 50%;
    display: inline-flex;
    border: 3px solid #040404;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    padding: 0;
    min-width: 78px;
}
.arrow-btn.white{
    border: 3px solid #fff;
}
.rotate-up img{
    transform: rotate(-45deg);
}
.rotate-left img{
    transform: rotate(-180deg);
}
.rotate-down img{
    transform: rotate(45deg);
}
.arrow-btn img{
    width: 44px;
    object-fit: contain;
    cursor: pointer;
}
.navi-porject {
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px;
    padding: 0 30px;
}
.navi-porject div {
    display: flex;
    align-items: center;
}
.navi-porject span {
    margin: 0 26px;
}
/*primary*/
html.open-menu {
    overflow: hidden;
}
.primary-btn{
    background: var(--primary_btn);
    color:  var(--primary_btn-color);
}
.primary-btn:hover{
    background: var(--primary_btn-hover);
    color: var(--primary_btn-hover-color);
    box-shadow: 0px 2px 16px 0px rgba(20, 46, 104, 0.20);
}
.btn-secondary{
    background: var(--bg-color);
    border: 1px solid var(--secondary_btn);
    color:  1px solid var(--secondary_btn);
}
.home-page .btn-secondary{
    background: var(--secondary_btn);
    border: 1px solid var(--secondary_btn-border);
    color:  var( --secondary_btn-color);
}
.btn-secondary:hover{
    background: var(--primary_btn);
    border: 1px solid var(--secondary_btn-hover-border);
    color:  var(--primary_btn-color);
}
.home-page .btn-secondary:hover{
    color:  1px solid var(--secondary_btn);
    background: var(--secondary_btn-hover);
}
.btns-cont {
    margin-top: 32px;
}
.body-container{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
    min-height: calc(100vh - 270px - 158px);
}
.header-cont{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
    background: var(--bg-color);
    position: relative;
    z-index: 5;
}
.home-page .header-cont{
    background: var(--homepage-bg-color);

}
.small-cont{
    max-width:var(--small-cont);
    margin: 0 auto;
}
.medium-cont{
    max-width:var(--medium-cont);
    margin: 0 auto;
}
.blue-header{
    color: var(--blue-header-font_color);
}
.full-width-bg{
    position: relative;
}
.full-width-bg:before{
    content: "";
    position: absolute;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw;
    display: block;
    height: 100%;
    content: "";
    top: 0;
    z-index: -1;
}
.only-mobile{
    display: none;
}
html.scroll-locked{
    height: 100%;
}
html.scroll-locked body{
    height: 100%;
}
/*header*/
.mobile-menu-cont{
    display: none;
}
header{
    top: 0;
    width: 100%;
    background: var(--bg-color);
    z-index: 10;
}
.home-page header{
    background: var(--homepage-bg-color);
}
.header-cont{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
}
.header-cont:before{
    position: absolute;
    width: 101vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background: background: var(--bg-color);
}
@media (max-width:1200px){
    .header-cont:before{
        display: none;
    }
}
.home-page .header-cont:before{
    background: var(--homepage-bg-color);
}
div.flex-cont{
    display: flex;
}
.project-tab-section .ty-btn{
    margin-right:40px;
}
.project-tab-section .primary-btn{
    border:1px solid var(--secondary_btn-border);
}
.home-page .project-tab-section .ty-btn{
    border:1px solid var(--secondary_btn-border);
}
.header-cont .flex-cont{
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    position: relative;
    z-index: 10;
}
.header-section__logo, header-section__logo >a{
    display: block;
    max-height: 40px;
    transition: max-height 0.4s;
}
.normal-logo{
    display: inline-block;
}
.homepage-logo{
    display: none;
}
.home-page .homepage-logo{
    display: inline-block;
}
.home-page .normal-logo{
    display: none;
}
.lang-changer{
    margin-left: 47px;
    color:#878787;
}
.lang-changer a{
    font-size: 17px;
    color:#878787;
    cursor: pointer;
}
.lang-changer a.active_lang{
    color: #fff;
}
.header-section__logo img{
    max-height: 40px;
    object-fit: contain;
    transition: max-height 0.4s;
    cursor: pointer;
}
.first-lvl-menu{
    display: flex;
    align-content: center;
    list-style-type: none;
    padding:  0;
    justify-content: flex-start;
}
.first-lvl-item{
    position: relative;
    padding:  7px 32px;
    transition: padding 0.4s;
}
.first-lvl-item img{
    margin-left: 16px;
}
.first-lvl-item, .first-lvl-item > a{
    color:var(--first-lvl-menu-color);
    transition: 0.4s;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}
.home-page .first-lvl-item, .home-page .first-lvl-item > a{
    color: var(--homepage-first-lvl-menu-color);
}
.first-lvl-item:hover >a{
    color:#000;
}
.homepage .first-lvl-item:hover >a{
  color: #e5e5e5;
}
.first-lvl-menu .first-lvl-item:first-of-type{
    padding-left: 0;
}
.first-lvl-item:hover .second-lvl-menu{
    display: block;
}
.header-section-login .fb-btn{
    padding: 18px 0px 18px 20px;
    display: inline-block;
    transition: padding 0.4s;
}
.header-section-login{
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.header-section-login a:not(.ty-btn){
    font-size: 34px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: -0.68px;
}
.header-section-login a:not(.ty-btn) img{
    margin-left:12px;
}
.header-section-login .ty-btn{
    display: inline-block;
    transition: margin 0.4s;
}
.header-section-login:before{
    display: none;
}

.inner-header-contact{
    max-width:1360px;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
}

.header-video-cont video,.video-poster{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
.header-video-cont:before{
    content: "";
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.4;
}
.video-header-cont{
    height: 100%;
    max-width:var(--max-width);
    padding: 120px 40px 0;
    margin: 0 auto;
    position: relative;
    z-index:1;
}
body{
    scroll-behavior: smooth;
}
.header-video-cont{
    max-height: 100vh; position: fixed;
    opacity: 1;
}
.video-header-cont h1{
    color: #F7F9FD;
}
.header-video-text{
    margin-top: 100vh;
}
.header-video-text h3{
    color: #0D1F48;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.68px;
}
.header-video-text{
    height:calc(100vh - 120px);
    padding-top: 0px;
    max-height:calc(100vh - 120px);
}
.header-video-text-fixed{
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 2;
    background: #F7F9FD;
    margin-top: 0 !important;
    opacity: 1;
    padding-top: 50px;
    max-height: 415px;
}
.video-end .header-video-text-fixed{
    display: none;
}
.header-video-text-static{
    transition: max-height 0.8s;
}
/*.video-end .header-video-text-static{
    max-height:317px !important;
}*/
.video-end .header-video-text-static {
visibility: visible;
}
.header-video-text-static{
    max-height:317px !important;
    visibility: hidden;
}
.homepage-banner .owl-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-top: 0;
}
.banner-desc-cont{
    position: absolute;
    left: 50%;
    height: 100%;
    width: 100%;
    top: 0;
    transform: translateX(-50%);
    max-width: var(--max-width);
    padding:0 40px;
}
.banner-desc{
    position: absolute;
    left: 40px;
    top: 0;
    width: 50%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.banner-desc h2{
    color:#FBFBFF;
    margin-bottom: 20px;
}
.banner-desc h6{
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 115%;
    color:  #EAEAFC;;
}

.single-banner{
    position: relative;
}
.personel-inner-section{
    display: flex;
    position: relative;
}
.small-header-carousel{
    width: 83%;
}
div.personel-carousel-cont .owl-nav{
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    visibility: hidden;
    padding: 0 20px;
}
div.personel-carousel-cont .owl-nav button{
    visibility: visible;
}
.personel-single{
    position: relative;
    margin-right: 20px;
    top: 160px;
}
.personel-single .personel-img-cont:after{
    background: rgba(0, 0, 0, 0.5);
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    position: absolute;
    opacity: 1;
    transition: 0.7s;
}
.personel-img-cont img{
    filter: grayscale(1);
    transition: 0.7s;
}
.personel-img-cont{
    position: relative;
    transform: scale(0.90);
    transition: 0.7s;
}
.animated .personel-img-cont{
    transform: scale(1);
}
.personel-single:hover .personel-img-cont:after{
    opacity: 0;
}
.personel-single:hover .personel-img-cont img{
    filter: grayscale(0);
}
.personel-single:hover img.sun-icon{
    opacity: 1;
}

div.personel-single img.sun-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -39px;
    width: 233px;
    object-fit: contain;
    z-index: 2;
    display: block;
    transition: 0.7s;
    transform-origin: center;
    opacity: 0;
    animation:spinz 4s linear infinite;
}

.personel-single img{
    height: 100%;
    object-fit: cover;
}
.personel-carousel.owl-carousel .owl-stage-outer{
    overflow: visible;
    clip-path: inset(-100vw -100vw -100vw 0);
}
.perso-info{
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 28px 0px 0px;
}
.perso-info h5{
    color: #FFFFFF;
    font-size: 20px;
    line-height: 26px;
}
.perso-info p{
    color: #B7B7B7;
    font-size: 20px;
    line-height: 26px;
}
/*footer-cont*/
.footer-cont{
    padding:45px 40px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}
.footer-cont:before{
    background: #E8E8E8;
}
.footer-cont .flex-cont{
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.footer-cont *{
    color: #000000;
}
.footer-cont h4{
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
}
.footer-cont h3{
    font-size: 37px;
    max-width: 353px;
    text-align: left;
    font-weight: 400;
}
.footer-lets-talk{
    display:flex;
}
.footer-lets-talk h3{
    margin-right:72px;
}
.lets-talk-section{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 85px;
    margin-top: 54px;
}
.lets-talk-section h1{
    position: relative;
    top: 70px;
}
.lets-talk-btn-cont{
    text-align: center;
    flex:1;
}
.lets-talk-btn-cont .ty-btn{
    font-size: 30px;
    padding: 14px 36px;
    border-radius: 34px;
}
.lets-talk-btn-cont .ty-btn .rotate-up{
    display: flex;
    align-items: center;
}
.lets-talk-btn-cont .ty-btn .rotate-up img{
    margin-left:32px;
    width: 26px;
}
.lets-talk-section >.flex-cont{
    width: 100%;
}
.lets-talk-section .small-header-section__text{
    width: 28%;
}
.lets-talk-section small-header-carousel{
    width: 72%;
}
.lets-talk-section h2{
    font-size:125px;
    max-width: 1192px;
    line-height: 163px;
}
.copyright.lets-talk-copyright{
    display: flex;
    justify-content: space-between;
    margin-top:69px;
    width: 100%;
}
.lets-talk-link{
    display: flex;
    flex:1;
}
.lets-talk-link > a{
    width: 50%;
}
.footer-menu-elem{
    margin-bottom: 7px;
}
.footer-menu-elem a{
    font-weight: 700;
}
.footer-cont ul{
    list-style-type: none;
}
.fa-angle-left,.fa-angle-right{
    width: 40px;
    height: 40px;
    background-image: url('../img/icons/owl-chevron-left.svg');
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    display: block;
}
.fa-angle-right{
    background-image: url('../img/icons/owl-chevron-right.svg');
}
.owl-theme .owl-nav{
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright{
    display: flex;
    justify-content: space-between;
    padding: 0px;
    color: #A8A8A8;
    margin-top: 16px;
}
.copyright span,.copyright a{
    color:#8E8E8E;
    font-size: 14px;
}
.footer-cont .fb-btn{
    margin-top:144px;
    display: flex;
    color: #141258;
}
.footer-cont .fb-btn span{
    color: #141258;
    display: block;
    margin-right: 16px;
    font-size: 19px;
    line-height: 115%;
    text-align: right;
    max-width: 171px;
}
/*standard page*/

.small-text-section{
    padding-top: 96px;
    padding-bottom: 96px;
}
.small-text-section .flex-cont{
    display: flex;
    align-items: center;
}
.small-text-section__text h3{
   color: #0D1F48;
    font-size: 34px;
    margin-bottom: 12px;
}
.small-text-section p{
    font-weight: 500;
    line-height: 145%;
}
.small-text-section p:last-child{
    margin-bottom: 0;
}
.small-text-section .flex-cont{
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid var(--grey-border);
    background: #F7F9FD;
    box-shadow: 0px 4px 32px 0px rgba(72, 97, 163, 0.10);
    gap: 80px;
}
.small-text-section__text{
    max-width: 621px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0px 40px 40px;
    box-sizing: border-box;
}
.small-img-section__img img{
    width: 100%;
    display: block;
}
.kor-section{
    padding-top: 133.5px;
    padding-bottom: 133.5px;
}
.kor-section .flex-cont{
    justify-content: flex-start;
}
.kor-section h4{
    margin-bottom: 32px;
    color:var(--header-gry-color);
    font-size: 39px;
    line-height: 108%;
}
.kor-section p{
    margin-bottom: 24px;
    color: #0D1F48;
}
.kor-section .gain-img{
    padding-left: 0;
    padding-right: 139px;
    width: auto;
}
.gallery-section {
    padding-top: 40px;
    padding-bottom: 80px;
}
.gallery-section h3{
    font-size: 52px;
    color: #142F6D;
}
.gallery-cont{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.personel-carousel.owl-carousel{
    position: static;
}
.personel-carousel .owl-theme .owl-nav{

}
.gallery-cont .owl-stage-outer{
    overflow: visible !important;
    clip-path: inset( -100vw -100vw -100vw 0 );
}
.gallery-single {
    width: 100%;
}
.gallery-single img {
    max-width: 100%;
}
.big-text-section{
    padding-top: 131px;
    padding-bottom: 131px;
}
.big-text-section .gain-text{
    width: 555px;
}
.big-text-section .gain-img{
    width: calc(100% - 555px);
    text-align: right;
}
.big-text-section p{
    margin-bottom: 20px;
}
/*form*/

/*o nas*/
.about-us-personnel{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.about-us-single-person{
    width: 100%;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 1010px;
    border-top:1px solid #A6B8E1;
}
.single-person-header{
    display: flex;
    flex-wrap: wrap;

}
.single-person-header h4{
    font-size: 34px;
    font-weight: 500;
    line-height: 125%; /* 42.5px */
    letter-spacing: -0.68px;
    margin-bottom: 0px;
}
.single-person-header span{
    color:#142F6D;
    font-size: 16px;
    display: block;
    margin-bottom:20px;
}
.single-person-info{
    margin-left:80px;
    width: calc(77% - 80px);
}
single-person-info span{
    color: #545454;
    font-size: 14px;
    line-height: 140%;
}
.single-person-header > img{
    width:23%;
    object-fit: contain;
}
.about-us-single-person p{
    margin-top: 20px;
    font-size: 16px;
}
.about-us-section{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.about-us-section .about-us-text{
    position: absolute;
    top: 0;
}
.about-us-section .about-us-text h6{
    font-weight: 700;
    font-size: 200px;
    line-height: 240px;
    color: #FFFFFF;
    opacity: 2%;
}
.about-us-banner{
    padding-top:80px;
    padding-bottom: 82px;
}
.about-us-banner:before{
    background:#1E1A85;
}
.about-us-banner h1{
    margin-bottom: 24px;
}
.about-us-banner p{
    max-width: 555px;
}

/*prices*/
.prices-banner:before{
    background: #EAEAFC;
}
.prices-banner{
    padding-top: 48px;
    padding-bottom: 40px;
}
.prices-banner li{
    width: 50%;
    max-width:440px;
    color:#141258;
    display: flex;
    align-items: center;
}
.prices-banner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1012px;
}
.prices-banner h1{
    color: var(--blue);
}
.prices-banner h5{
    color: var(--blue-header-font_color);
    font-size: 29px;
    margin-bottom: 53px;
}
.prices-section > h5{
    margin-top: 64px;
    font-size: 29px;
    line-height: 110%;
    margin-bottom: 24px;
}
table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 32px;
    border: 1px solid #A6B8E1;
}
thead th{
    border-bottom:1px solid #B9B9B9;
    padding:12px 10px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    vertical-align: top;
}
tbody th{
    border-bottom:1px solid #B9B9B9;
    padding:16px 10px 16px 0px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
}
tbody td{
    border-bottom:1px solid #B9B9B9;
    padding:16px 10px;
}
tbody tr td:last-of-type{
    white-space: nowrap;
}
tbody td h6{
    font-size:19px;
    color: #545454;
}

tbody td span{
    color: #0D1F48;
    font-size: 14px;
}
thead th:last-child,tbody th:last-child{
    padding-right:0 ;
}
thead th:first-child,tbody th:first-child{
    padding-left:0 ;
}
.table-info{
    color: #8C8C8C;
    font-size: 14px;
}
.price-row{
    font-size: 19px;
    line-height: 115%;
}
.price-row:not(:last-of-type) {
    margin-bottom: 8px;
}
.matplanet-table-cont table{
    max-width: 784px;
}
.edusfera-deals ul{
    list-style-type: none;
}
.edusfera-deals li{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: #8C8C8C;
}
.edusfera-deals ul{
    margin-bottom: 80px;
}
.edusfera-deals h6{
    font-size: 22px;
    line-height: 115%;
    margin-bottom: 16px;
    color: #545454;
}
.harmonogram-cont{
    text-align: center;
    padding-top: 48px;
    padding-bottom: 56px;
}
.harmonogram-cont img{
    margin-left: 11px;
}
/*Kontakt*/
.full-contact-section{
    padding-top: 40px;
    padding-bottom: 80px;
}
.full-contact-section h1{
    margin-bottom: 40px;
}
section.uslugi-section h1{
    margin-bottom: 32px;
}
.uslugi-section .flex-cont{
    display: flex;
    gap: 64px;
}
.uslugi-section .flex-cont >div{
    width: 50%;
}
.uslugi-section{
    padding-top: 40px;
    padding-bottom: 80px;
}
.full-contact-section .flex-cont{
    display: flex;
    gap: 20px;
}
.full-contact-section .flex-cont >div{
    width: 50%;
}
.full-contact-section h4{
    color: #071024;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 42.5px */
    letter-spacing: -0.68px;
    margin-bottom: 40px;
}
.full-contact-section h5{
    font-size: 25px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #071024;
}

.full-contact-section  span{
    color: #0D1F48;
    display: block;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: -0.19px;
    font-size: 19px;
}
.full-contact-section ul{
    list-style-type: none;
}
.full-contact-section ul:first-of-type{
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.16px;
}
.full-contact-section ul:last-of-type{
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.16px;
}
.full-contact-section ul:last-of-type li:first-of-type{
    color: #142F6D;
    font-weight: 500;
}
.full-contact-section a{
    margin-bottom:8px;
    color:#214EB5;
    font-size: 34px;
    font-style: normal;
    line-height: 125%;
    letter-spacing: -0.68px;
    display: block;
}
.google-map-desc p{
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.16px;
}
.banner-bg img{
  max-height: 900px;
  object-fit: cover;
}
tbody td .price{
    display: none;
}
.page-banner{
    padding-top: 32px;
}
.cennik-naglowek {
  background: #EAEAFC;
}
.naglowek-td {
  font-size: 25px;
  font-weight: 500;
  color: var(--blue);
}
.progres-bar{
    width: calc(100% - 140px);
    box-sizing: border-box;
    padding: 0;
    height: 4px;
    background: #D3DCF0;
    position: relative;
}
.aktualnosci-homepage .small-img-section__img img{
    height:320px;
    width: 420px;
    object-fit: cover;
}
.small-header-section__text{
    width: 17%;
}
.small-header-section__text h3{
    font-size: 18px;
    font-weight: 400;
}
/*FAQ*/
.faq-question .fa-angle-right {
    transform: rotate(90deg);
}

.faq-question .fa-angle-right.active {
    transform: rotate(-90deg);
}

.faq-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-question {
    padding: 16.5px 0 14.5px;
    cursor: pointer;
    font-size: 20px;
}
.why-us-section{
    padding-bottom:27px;
    padding-top: 100px;
}
.faq-elem{
    border-bottom: 1px solid #585858;
    position: relative;
    top: 100px;
}
.faq-answer {
    display: none;
    margin-bottom: 52px;
    margin-left: 207px;
    margin-top: 20px;
}
.faq-answer p{
    font-size: 20px;
}
.faq-question{
    display: flex;
    justify-content: space-between;
}
.faq-toggle {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.faq-toggle img{
    width:16px;
    transform: rotate(-45deg);
}
.faq-toggle.active img {
    transform: rotate(45deg);
}

.faq-icon {
    position: relative;
    top: -18px;
    float: right;
    transition: transform 0.3s ease;
}
.faq_list{
    margin-left: auto;
    max-width: 1208px;
}
/*galeria*/
.trust-us-section{
    padding-bottom: 108px;
    padding-top: 100px;
}
.trust-us-section .small-header-section__text{
    padding-bottom: 208px;
}
.gallery-single__slider{
    padding:0 75px;
}
.gallery-single__slider img{
    max-height: 70px;
    object-fit: contain;
}
.gallery-section__slider .owl-stage{
    display: flex;
    align-items: center;
}
.gallery-section__slider div.owl-stage-outer{
    overflow: visible;
    clip-path: inset(-100vw -100vw -100vw -100vw);
}
/*events section*/
.project-tab-section .flex-cont{
    align-items: center;
}
.projects-section{
    margin-bottom: 34px;
}
.project-tab-section{
    margin-bottom:45px;
    padding-top: 100px;
}
.event-elem h3{
    margin-bottom: 32px;
    font-size: 60px;
    line-height: 70px;
    color: #242424;
    font-weight: 400;
}
.events-section{
    padding-top: 109px;
    padding-bottom: 109px;
}
.event-elem{
    flex: 1;
    position: relative;
    top: 70px;
}
.event-elem p{
    font-size: 20px;
    color: #000000;
}
.events-section .flex-cont{
    gap: 40px;
}
.events-section ul{
    list-style-type: none;
    position: relative;
    top: 200px;
}
.tabs-cont .single-tab:not(.active-tab){
    display: none;
}
.events-section ul li{
    padding: 23px 0;
    border-bottom: 1px solid #585858;
    position: relative;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}
.events-section ul li a{
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
}
.events-section ul li span{
    transition: color 0.7s, font-size 0.3s;
}
.events-section ul li:before {
    background: #fff;
    transition: 0.7s;
    position: absolute;
    width: 0%;
    content: "";
    height: 100%;
    left: -40px;
    top: 0;
    z-index: -1;
}
.events-section ul li.video_show:before{
    width: calc(100% + 80px);
}
.events-section ul li span:first-of-type{
    width: 16.85%;
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.events-section ul li span:nth-of-type(2){
    width: 58.69%;
    font-size: 24px;
    font-weight: 700;
}
.events-section ul li span:nth-of-type(3){
    width: 12.23%;
    text-align: center;
    font-size: 20px;
}
.events-section ul li span:nth-of-type(4){
    width: 12.23%;
    text-align: right;
    font-size: 20px;
}
.events-section ul li span:nth-of-type(5){
    width: 12.23%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.events-section ul li.hovered_row .portfolio_video{
    display: block;
}
.events-section ul li.video_show span{
    color:#000000;
}
.portfolio_video{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    opacity: 0;
    transition: all 0.7s;
    width: 661px;
    z-index: 1;
}
.portfolio_video.fa-right{
    transform: translateY(-50%) rotateZ(15deg);
}
.portfolio_video.fa-left{
    transform: translateY(-50%) rotateZ(-15deg);
}
.video_show .portfolio_video.fa-right{
    transform: translateY(-50%) rotateZ(0deg);
}
.video_show .portfolio_video.fa-left{
    transform: translateY(-50%) rotateZ(0deg);
}
.portfolio_video img{
    display: block;
    width: 661px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 586.67 / 409.86;
}
.video_show{
    z-index: 2;
}
.video_show .portfolio_video{
    opacity: 1;
}
.reel-section{
    text-align: center;
    padding-top: 100px;
}
.personnel-section{
    padding-top:100px;
    padding-bottom: 100px;
}
.see-all-projects{
    margin-top: 32px;
}
/*form*/
.form-cont form{
    display:flex;
    justify-content: space-between;
    margin-top: 16px;
    align-items: flex-end;
}
.form-cont form .left-column{
    flex:1;
    padding-right: 32px;
    max-width: 740px;
}
.lets-talk-info{
    justify-content: space-between;
}
.form-cont input{
    display: block;
    width: 100%;
    padding: 16px 0;
    border: none;
    background: transparent;
    margin-top:60px;
    outline: none;
    border-bottom: 1px solid #707070;
    font-size: 24px;
    color: #AAAAAA;
}
.form-btn{
    background: none;
    border: none;
    font-size: 24px;
    color:#FFFFFF;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.form-btn .arrow-btn{
    margin-left:38px;
}
.offer-section{
    padding-bottom:74px;
    padding-top:137px;
}
.offer-section .flex-cont{
    justify-content: space-between;
    align-items: center;
    top: -70px;
    transition: 0.7s;
    position: relative;
}
.offer-section p{
    font-size: 60px;
    line-height: 83px;
    margin-top: 328px;
    top: 70px;
    position: relative;
    transition: 0.7s;
}
.offer-section p img{
    height: 79px;
    display: inline-block;
    position: relative;
    top: 20px;
}
.offer-counter-section{
    padding-top:109px;
    padding-bottom:364px;
}
.counter{
    display: flex;
    justify-content: space-between;
    max-width: 1216px;
    margin-left: auto;
    margin-right: auto;
}
.counter >div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.counter >div span:first-of-type{
    font-size: 124px;
    line-height: 119px;
    color: #000000;
}
.counter >div span:last-of-type{
    font-size: 20px;
    color: #000000;
}
.offer-standard{
    padding-top:29px;
    margin-bottom:150px;
}
.offer-standard .flex-cont{
    justify-content: space-between;
}
.offer-standard .image-cont{
    width: 48.7%;
    text-align: right;
}
.offer-standard .image-cont img{
    width: 100%;
    display: block;
}
.offer-standard .text-cont{
    width: 51.3%;
    padding: 0 20px;
}
.offer-standard .text-cont .inner-text-cont{
    max-width: 619px;
    margin-left: auto;
    margin-right: auto;
}
.offer-standard .text-cont h3{
    margin-bottom: 60px;
    font-size: 60px;
    line-height: 70px;
    color: #242424;
    font-weight: 400;
}
.offer-standard .text-cont p{
    font-size: 20px;
    color: #000000;
    max-width: 619px;
}
.header-section-flex .flex-cont{
    align-items: flex-start;
    justify-content: space-between;
}
.header-section-flex .right_side_btn_cont{
    height: 130px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.project-header-section h1,.right_side_btn_cont{
    top: -70px;
    position: relative;
}
.header-section-flex .right-side{
    flex: 1;
}
.header-section-flex .right-side p{
    max-width:892px;
    font-size: 20px;
    color: #000000;
    margin-top: 22px;
}
.project-header-section{
    padding-top:142px;
    padding-bottom:4px;
}
.projects-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap:43px 40px ;
    margin-bottom:191px;
}
.projects-grid img{
    object-fit: cover;
    aspect-ratio: 586.67 / 409.86;
}
.grid-item{
    position: relative;
    top: 70px;
}
.grid-item > img{
    display: block;
    width: 100%;
}
.grid-item:hover .grid-poster,.grid-item.hovered .grid-poster{
    cursor: pointer;
    opacity: 1;
}
.grid-poster{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
    display: flex;
    opacity: 0;
}
.grid-poster h4{
    margin-bottom: 8px;
    font-size: 40px;
    color: #fff;
    line-height: 52px;
    text-align: center;
}
.grid-poster > a{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.grid-poster .arrow-btn{
    position: absolute;
    right:23.15px;
    top: 25.85px;
}
.grid-poster p{
    color: #C2C2C2;
    font-size: 20px;
}

/*klasy odpowiedzialne za animacje*/
.animate:not(.animated) .opacity-an, .animate:not(.animated) .opacity-an-low{
    opacity: 0;
}
.clipped-text{
    transition: 0.7s;
}
.animate:not(.animated) .clipped-text{
    clip-path: inset(0 100% 0 0);
    transition: 0.7s;
}
.animate.animated .clipped-text{
    clip-path: inset(0 0 0 0);
}
.opacity-an-low{
    transition: 0.7s;
}
.animate.animated .opacity-an{
    opacity: 1;
}
.animate.animated .opacity-an-low{
    opacity: 5%;
}
.opacity-an{
    transition: opacity 0.7s;
}
.move_an{
    transition: 0.7s;
}
.animated .move_an{
    top: 0px;
}
.del_1{
    transition-delay: 0.15s;
}
.del_2{
    transition-delay: 0.3s;
}
.animated .video-container video{
    top: 50%;
    transition:0.7s;
}
.about-us_text{
    position: relative;
    top: 200px;
}
.about-us_text h2{
    font-size: 32px;
    line-height: 41px;
}
.p-border{
    font-size: 32px;
    line-height: 41px;
    position: relative;
    padding: 0 16px;
    white-space: nowrap;
}
.header-section .rotate-up{
    width: 16px;
    height: 16px;
}
.header-section .primary-btn{
    display: inline-flex;
    align-items: center;
}
.p-border_inner{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    border: 4px solid #4725D2;
    border-radius:25px;
    clip-path: polygon(4px 0px, 0% 0px, 0 20px, 0 20px, 0 20px);
}
@keyframes draw_border {
    0%{
        clip-path: polygon(4px 0px, 0% 0px, 0 20px, 0 20px, 0 20px);
    }
    25% {
        clip-path: polygon(4px 0px, 100% 0px, 100% 20px, calc(100% - 4px) 20px, calc(100% - 4px) 20px);
    }
    50% {
        clip-path: polygon(4px 0px, 100% 0px, 100% 100%, calc(100% - 4px)  100%,calc(100% - 4px)  100%);
    }
    75% {
        clip-path: polygon(11px 0px, 100% 0px, 100% 100%, 0%  100%,0%  100%);
    }
    100% {
        clip-path: polygon(11px 0px, 100% 0px, 100% 100%, 0%  100%,0%  0%);
    }
}
.animated .p-border .p-border_inner{
    animation:draw_border 2s linear;
    animation-fill-mode: forwards;
}
@keyframes spinz {
    0%{
        transform:translateY(-50%) rotate(0deg);
    }
    100% {
        transform:translateY(-50%) rotate(360deg);
    }
}
.fan-img{
    display: inline-block;
    width: 101px;
    position: relative;
    top: 15px;
}
.btn_menu{
    width: 45px;
    height: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: 0.7s;
    visibility: visible;
    cursor: pointer;
}
.btn_menu .bar{
    width: 100%;
    height: 1px;
    background: #000000;
    transform-origin: center left;
    position: relative;
    top: -1px;
    transition: 0.7s;
    cursor: pointer;
}
.home-page .btn_menu .bar{
    background: #FFFFFF;
}
.open-menu .top-bar{
    transform: rotateZ(45deg);
}
.open-menu .bot-bar{
    transform: rotateZ(-45deg);
}
.open-menu .btn_menu{
    height: 33px;
}
.open-menu .med-bar{
    opacity: 0;
}
.mobile_menu_popup {
    position: fixed;
    top:74px;
    height: calc(100vh - 74px);
    background: var(--bg-color);
    z-index: 9;
    width: 100%;
    right: -100%;
    transition: 0.7s;
    display: none;
}
.home-page .mobile_menu_popup{
    background: #161616;
}
.open-menu .mobile_menu_popup{
    display: block;
}
.open-menu-animated  .mobile_menu_popup .first-lvl-item{
    top: 0px;
    opacity: 1;
}
.open-menu-animated  .mobile_menu_popup .first-lvl-item:first-of-type{
    transition-delay: 0.7s;
}
.open-menu-animated  .mobile_menu_popup .first-lvl-item:nth-of-type(2){
    transition-delay: 0.9s;
}
.open-menu-animated  .mobile_menu_popup .first-lvl-item:last-of-type{
    transition-delay: 1.1s;
}
.open-menu-animated .mobile_menu_popup{
    right: 0;
}
.mobile-menu{
    list-style-type: none;
}
.mobile_menu_popup .first-lvl-item{
    padding: 7px 17px;
    opacity: 0;
    transition: 0.7s;
    position: relative;
    top:70px;
}
.mobile_menu_popup .first-lvl-item a{
    font-size:55px;
    line-height: 76px;
}
.mobile-btn-cont .primary-btn img{
    width: 22.6px;
    margin-left:27px;
}
.mobile-btn-cont .primary-btn{
    padding: 10.5px 26px;
    border-radius: 25px;
}
.mobile-btn-cont{
    padding: 0 17px;
    margin-top: 90px;
    opacity: 0;
    transition: 0.7s;
}
.open-menu-animated .mobile-btn-cont{
    opacity: 1;
    transition-delay: 1.3s;
}
.mobile-copy{
    position: absolute;
    bottom:17px;
    padding: 0 17px;
    color: #8E8E8E;
}
.header-section__menu-btn{
    display: flex;
    align-items: center;
    min-width: 45px;
}
.mobile_menu_popup:before{
    content: "";
    display: block;
    width: 100%;
    height: 74px;
    position: absolute;
    top: -74px;
    background: var(--bg-color);
}
.home-page .mobile_menu_popup:before{
    background: var(--homepage-bg-color);
}
.reel-section{
    position: relative;
}
.reel-container video{
    position: relative;
    width: 100%;
    height: auto;
}
.reel-container{
    display: inline-block;
    min-height:833px;
    width: 100%;
    max-width: 1482px;
}
.reel-section:before{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    left: 0;
    bottom: 0;
    height: 81.75%;
}
/*pojedyńcze projektu*/
.project_main_title{
    margin-top:152px;
    justify-content: space-between;
    max-width: 1528px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:32px;
    top: -70px;
    position: relative;
}
.project-main_info{
    max-width: 1528px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 124px;
}
.project-main_info .flex-cont{
    max-width: 558px;
    justify-content: space-between;
}
.project-main_info .flex-cont span{
    font-size: 24px;
    border-radius: 25px;
}
.project-main_info .flex-cont span:hover{
background: var(--bg-color);
    border: 1px solid var(--secondary_btn);
}
.project-main_image{
    padding-bottom: 200px;
}
.project-desc{
    padding-top: 279px;
    padding-bottom: 197px;
}
.project-standard{
    padding-top:166px;
    margin-bottom: 0;
}
.project-counter{
    padding-top:360px;
    padding-bottom:180px;
}
.portfolio-gal{
    padding-top: 180px;
    margin-bottom: 138px;
}
.socials_container-list{
    list-style-type: none;
    visibility: visible;
    position: absolute;
    right: -30px;
    top: 25vh;
}
.socials_container-list.on-mobile{
    list-style-type: none;
    visibility: visible;
    position: absolute;
    right: 20px;
    top: 25vh;
}
.socials_container .arrow-btn{
    visibility: visible;
    border-color: #fff;
    position: absolute;
    bottom: 0;
    right:67px;
}
.socials_container .arrow-btn img{
    transform: rotate(90deg);
}
.socials_container-list img{
    object-fit: contain;
    height: 14px;
    width: auto;
}
.socials_container-list li{
    width: 29px;
    height: 29px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}
.socials_container-list li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.first-gallery-row{
    margin-bottom: 24px;
}
.truested-us{
    margin-top: 32px;
    transition-delay: 0.9s;
}
@media (min-width: 1920px){
    div.mobile_menu_popup{
        max-width: calc((100vw - 1920px)/2 + 700px);
    }

}
@media (min-width: 980px){
    .hidden_desktop {
        display: none;
        visibility: hidden;
    }
    .header-section__menu,.header-section__lang {
        width: calc(50% - 57.15px);
    }
    .header-section__lang{
        text-align: right;
    }
    .header-section__menu-btn{
        position: fixed;
        width: 100%;
        left: 0;
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 40px;
        justify-content: flex-end;
        z-index: 11;
        visibility: hidden;
        transition: 0.7s;
    }
    .in_view .header-section__menu-btn{
        z-index: -1;
        opacity: 0;
    }
    .mobile_menu_popup{
        max-width: 400px;
    }
}
@media (max-width: 979px){
    .header-section{
        min-height: 74px;
    }
    .hidden_mobile{
        display: none !important;
    }
    .homepage_title_text .hidden_mobile{
        display: none;
    }
    .only-mobile{
        display: block;
    }
    .body-container{
        padding: 0 20px;
    }
    .header-cont .flex-cont{
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .personel-inner-section{
        flex-wrap: wrap;
    }
    .small-header-section__text{
        margin-bottom:29px;
    }
    .small-header-section__text,.small-header-carousel{
        width: 100%;
    }
    .header-cont{
        padding: 0 17px;
    }

    .projects-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .home-page h1{
        font-size: 12.5vw;
        line-height: 14.5vw;
    }
    h2{
        font-size: 28px;
        line-height: 41px;
    }
    .p-border_inner{
        font-size: 28px;
    }
    .p-border{
        font-size: 28px;
        display: inline-block;
        padding: 0 12px;
        line-height: 41px;
    }
    .home-page h1 div{
        display: inline;
        font-size: 56px;
        line-height: 64px;
    }
    .homepage_title_text{
        padding-top: 85px;
        padding-bottom: 87px;
    }
    .about-us-section{
        padding-top: 143px;
        padding-bottom: 205px;
    }
    .about-us-section .about-us-text h6{
        font-size: 200px;
        line-height: 240px;
    }

    .lets-talk-section .small-header-section__text{
        display: none;
    }
    h1{
        font-size: 12vw;
        line-height: 13.5vw;
    }
    .form-cont form{
        flex-wrap: wrap;
    }
    .form-cont form .left-column{
        padding-right: 0;
        width: 100%;
        max-width: none;
        flex: none;
    }
    .lets-talk-section .small-header-carousel{
        width: 100%;
    }
    .lets-talk-link{
        flex-direction: column;
    }
    .lets-talk-link > a{
        width: 100%;
    }
    .lets-talk-info a, .lets-talk-info span{
        font-size: 16px;
    }
    .form-cont .right-column{
        margin-top:52px;
    }
    .header-section-flex .right_side_btn_cont{
        display: none;
    }
    .project-header-section{
        padding-top: 25px;
        padding-bottom: 48px;
    }
    .header-section-flex .flex-cont{
        flex-direction: column;
    }
    .project-grid-section{
        margin-top: 31px;
        margin-bottom: 15px;
    }
    .project-tab-section h4{
        margin-top: 30px;
    }
    .why-us-section{
        padding-top: 0;
    }
    /*offer*/
    .offer-section{
        padding-top: 28px;
    }
    .footer-lets-talk{
        display: none;
    }
    .footer-menu{
        display: none;
    }
    .lets-talk-section{
        display: flex !important;
        margin-bottom: 82px;
    }
    .lets-talk-section h2{
        font-size: 11vw;
        line-height: 13.5vw;
        margin-bottom:49px;
    }
    .lets-talk-btn-cont{
        text-align: left;
    }
    .footer-cont .flex-cont{
        flex-wrap: wrap;
        gap: 0px;
    }
    .footer-logo{
        width: 100%;
        margin-bottom:64px;
    }
    .copyright{
        margin-top:89px;
        flex-direction: column;
    }
    .copyright >span:first-of-type{
        margin-bottom: 4px;
    }
    .footer-cont h4{
        font-size: 20px;
    }
    .footer-cont{
       padding: 35px 20px;
    }
    .offer-section p{
        font-size: 28px;
        line-height: 41px;
        margin-top:82px;
    }
    .offer-section p img{
        height: 40px;
        top: 12px;
    }
    .events-section{
        padding-top: 36px;
        padding-bottom: 36px;
    }
    .events-section .flex-cont{
        flex-direction: column;
        gap: 0;
    }
    .event-elem h3{
        margin-bottom: 22px;
    }
    .event-elem{
        margin-bottom:40px;
    }
    .offer-counter-section{
        padding-top:20px;
        padding-bottom: 112px;
    }
    .counter {
        flex-direction: column;
    }
    .counter >div:not(:last-of-type){
        margin-bottom:31px;
    }
    .offer-standard{
        margin-bottom:112px;
    }
    .offer-standard .flex-cont{
        flex-direction: column;
    }
    .offer-standard .text-cont{
        width: 100%;
        padding: 0;
        margin-bottom:32px;
    }
    .offer-standard .image-cont{
        width: 100%;
        order: 1;
    }
    .offer-standard .text-cont h3{
        margin-bottom:27px;
    }
    .offer-standard.left-image{
        margin-bottom: 0;
    }
    .offer-standard + .trust-us-section {
        padding-bottom: 60px;
    }
    .trust-us-section .small-header-section__text{
        width: 100%;
        padding-bottom: 32px;
    }
    .trust-us-section{
        padding-bottom: 150px;
    }
    .gallery-section__slider{
        max-width: 190px;
    }
    .gallery-single__slider img{
        max-height:50px;
    }
    .gallery-single__slider{
        padding: 0 20px;
    }
    .lang-changer{
        margin-left: 0;
    }
    .project-tab-section{
        margin-bottom:0;
        padding-top: 0;
    }
    .project-tab-section .flex-cont{
        flex-direction: column;
    }
    .project-tab-section .small-header-section__text{
        width: 100%;
        margin-bottom: 29px;
    }
    .project-tab-section .small-header-carousel{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .project-tab-section .ty-btn{
        margin-right: 0;
    }
    .events-section ul li{
        padding:0;
        flex-wrap: wrap;
        margin-bottom: 40px;
        border-bottom: 0px;
    }
    .events-section ul li span{
        display: none;
    }
    .events-section ul li span:nth-of-type(5){
        width: 100%;
        transform: none;
        position: static;
        display: block;
    }
    .portfolio_video{
        transform: none !important;
        opacity: 1;
        display: block;
        width: 100%;
        position: relative;
    }
    .events-section ul li span.mobile-event-desc {
        z-index: 5;
        width: 100%;
        height: 100%;
        background: rgba(17, 17, 17, 0.8);
        display: flex;
        display: none;
        opacity: 0;
        transition: 0.7s;
    }
    .events-section ul li.hovered_row span.mobile-event-desc{
        display: flex;
    }
    .events-section ul li.video_show span.mobile-event-desc,.events-section ul li.hovered span.mobile-event-desc{
        opacity: 1;
        display: flex;
    }
    .portfolio_video img{
        width: 100%;
    }
    div.personel-carousel-cont .owl-nav{
        display: none;
    }
    .about-us-section .flex-cont, .why-us-section .flex-cont{
        flex-wrap: wrap;
    }
    .personel-carousel-cont{
        max-width: 293px;
    }
    div.personel-single img.sun-icon{
        right: -34px;
        height: 100px;
        width: 100px;
    }
    .perso-info{
        padding: 21px 0 0;
    }
    .personnel-section{
        padding-top: 32px;
        padding-bottom:180px;
    }
    .faq-answer{
        margin-left: 0;
        margin-bottom:21px;
    }
    .faq-toggle{
        min-width: 20px;
    }
    .reel-section{
        display: none;
    }
    .fan-img{
        width: 53.2px;
    }
    .header-section__lang{
        display: none;
        opacity: 0;
        transition: 0.7s;
    }
    .open-menu .header-section__lang{
        display: block;
    }
    .open-menu-animated .header-section__lang{
        opacity: 1;
        transition-delay: 0.7s;
    }
    .header-section__menu-btn .btn_menu{
        position: fixed;
    }
    .open-menu .header-cont .flex-cont{
        width: 100%;
        position: fixed;
        left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .open-menu .header-section__logo{
        opacity: 0;

    }
    .open-menu-animated .header-section__logo{
        opacity: 1;
        transition: 0.7s;
    }
    .project_main_title{
        margin-top:27px;
        margin-bottom:77px;
    }
    .project-main_info .flex-cont span:nth-of-type(2){
        display: none;
    }
    .project-main_info{
     margin-bottom:32px;
    }
    .project-desc{
        padding-top:72px;
        padding-bottom: 0px;
    }
    .project-desc .flex-cont{
        flex-wrap: wrap;
    }
    .project_main_title .arrow-btn{
        display: none;
    }
    .galery-grid{
        grid-template-columns: repeat(2, 1fr);
        grid-gap:13px 16px;
    }
    .project-standard {
        margin-bottom: 0;
        padding-top: 64px;
    }
    .project-standard .flex-cont{
        flex-direction: column-reverse;
    }
    .project-counter{
        padding-top:64px;
        padding-bottom: 0;
    }
    .project-standard  .text-cont{
        margin-bottom: 0;
        margin-top:39px;
    }
    .portfolio-gal{
        padding-top:94px;
        margin-bottom:5px;
    }
    .big-text-section{
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .grid-poster .arrow-btn{
        top: 13.85px;
    }
}
@media (min-width: 768px) {
   .left-image .text-cont{
       order: 2;
   }
}
@media (max-width: 767px) {
    .navi-porject span {
        display: none;
    }
}
.lt-mobile-btn {
    margin-top: 60px;
}
.lt-mobile-btn span {
    width: 21px;
}
.navi-porject {
    margin: 50px 0 0;
}
.grecaptcha-badge{
    display: none !important;
}
.event-section-header{
    background: none !important;
    box-shadow: none !important;
    cursor: pointer;
    border: none !important;
    color: var(--body-font_color);
}
.event-section-header.primary-btn{
    text-decoration: underline;
}