:root {
    --black: #212121;
    --orange: #F06200;
    --light-orange: #F9c099;
    --grey: #909090;
    --white-gradient: linear-gradient(0deg, rgba(231,231,231,1) 0%, rgba(255,255,255,1) 31%);
}

html {
    overflow-x: hidden;
}

body .main-container:after{
	content: none !important;
	display: none !important;
	opacity: 0 !important;
}

.show-temp {
    position: fixed;
    background: rgba(255, 255, 255, .5);
    color: #000;
    z-index: 10;
    bottom: 0;
    left: 0;
    padding: 2px 5px;
}

body {
    margin: 0;
    position: relative;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    line-height: 130%;
        /*overflow-x: hidden;
 background: rgb(231,231,231);
    background: var(--white-gradient); */
    width: 100%;
}

* {
    box-sizing: border-box;
}

ol,
ul {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}

  a {
    color: var(--black);
    text-decoration: none;
    transition: all .3s linear;
}

a:hover {
    color: var(--orange);
    transition: all .3s linear;
}


.button,
a.button,
.wpcf7-submit.has-spinner {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    padding: 15px 24px;
    color: #fff;
    border:1px solid var(--orange);
    border-radius: 3px;
    width: 300px;
    border-radius: 30px;
    transition: all .3s linear;
}

a.button.fill, .wpcf7-submit.has-spinner {
    background: var(--orange);
    border-color: var(--orange);
    width: 100%;
    cursor: pointer;
    transition: all .3s linear;
    color: #ffffff;
    padding: 16px;
    border-radius: 30px;
}

a.button.fill:hover,
a.button:hover,
.wpcf7-submit.has-spinner:hover {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange);
    transition: all .3s linear;
    transform: scale(1.02);
}

.wpcf7-submit.has-spinner.cf-submit.button.fill {
    display: block;
    margin: 30px auto 0;
}

h1 {
    font-family: 'Cakra';
    position: relative;
    text-align: center;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

h2 {
    font-size: 30px;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    line-height: 1.2;
    color: var(--black);
    font-weight: 600;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 100%;
    margin: 0;
}

h4 {
    font-size: 20px;
    margin: 0;
    margin-bottom: 0;
}

p {
    margin: 0;
    padding: 0;
}

.site-container {
    height: 100vh;
}

.fixed-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    padding: 0 30px;
    margin: 0 auto;
}

.p-relative{
    position: relative;
}

.p-relative .e-con-inner{
    position: relative;
}

.bf-blur{
    backdrop-filter: blur(23.4px);
    -moz-backdrop-filter: blur(23.4px);
    -webkit-backdrop-filter: blur(23.4px);
    -o-backdrop-filter: blur(23.4px);
}

.bf-blur .e-con-inner{
    backdrop-filter: blur(23.4);
    -moz-backdrop-filter: blur(23.4);
    -webkit-backdrop-filter: blur(23.4);
    -o-backdrop-filter: blur(23.4);
}

.link{
    position: relative;
    color: var(--orange) !important;
    transition: all .5s linear;
}

.link:after{
    content: '';
    width: 100%;
    height: 1px;
    background: var(--orange);
    display:block;
    position: absolute;
    bottom: 0;
    left:0;
}

.arrow-up.show {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
}

.arrow-up.show svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.arrow-up.show {
    cursor: pointer;
    z-index: 5;
    box-sizing: border-box;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 1px solid rgba(240, 98, 0, .7);
    background: rgba(240, 98, 0, 0.7);
    border-radius: 100%;
    transition: all .3s linear;
}

.arrow-up.show:hover {
    background: transparent;
    border: 1px solid rgba(240, 98, 0, 1);
    transition: all .3s linear;
}

.arrow-up.show:hover svg {
    transform: translateY(-5px);
    transition: transform .3s linear;
}

.arrow-up.show svg {
    transition: transform .3s linear;
}

.arrow-up.show:hover svg path {
    fill: rgba(240, 98, 0, 1);
}

.cf-form__inner {
    width: 50%;
    margin: 0 auto;
}

.cf-submit {
    margin-top: 24px;
}

.cf-input, .cf-textarea {
    margin-top:16px;
    padding: 18px 16px;
    border-radius: 30px;
    border: 2px solid var(--orange);
    width: 100%;
}

.cf-input::placeholder, .cf-textarea::placeholder{
    font-size: 16px;
    color: #212121;
    font-family: 'Manrope', sans-serif;
}

textarea.wpcf7-form-control.wpcf7-textarea.cf-textarea::placeholder {
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    color: #212121;
}



span.wpcf7-not-valid-tip {
    background: #e26060;
    color: #fff;
    padding: 3px 10px;
    margin: 7px auto;
    width: max-content;
    text-align: center;
    border-radius: 10px;
    font-size: 10px;
    transition: all .5s linear;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #e26060;
    background: #e26060;
    color: #fff;
    text-align: center;
}

.contact-form__agreement p {
    text-align: center;
}

.contact-form._callback-call h3 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}

.contact-form._callback-call p{
    text-align:center;
}

.fancybox-slide--html .fancybox-close-small {
    color: #fff;
    padding: 10px;
    right: 10px;
    top: 10px;
}

.contact-form h3 {
    font-family: 'Manrope', sans-serif;
}

.cf-submit {
    font-family: 'Manrope', sans-serif;
}

.fancybox-slide div {
    border-radius: 30px;
}

/*hero slider*/

section.section-hero {
    margin-top: 45px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    border-radius: 30px;
    max-height: 650px;
}

.hero-slider__wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide.hero-slider__slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide .hero-slider__slide__img {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index:-1;
}

.hero-slider__button-prev,
.hero-slider__button-next{
    position: absolute;
    top: 50%;
    cursor: pointer;
    display:flex;
    align-items:center;
    justify-content: center;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #fff;
    z-index: 2;
    transition: all .5s ease-in-out;
}

.hero-slider__button-prev:hover,
.hero-slider__button-next:hover{
    background: var(--orange);
    transition: all .5s ease-in-out;
}

.hero-slider__button-prev:hover svg path,
.hero-slider__button-next:hover svg path{
    fill: #fff;
    transition: all .5s ease-in-out;
}

.hero-slider__button-prev svg path,
.hero-slider__button-next svg path{
    transition: all .5s ease-in-out;
}

.hero-slider__button-prev svg,
.hero-slider__button-next svg{
    width: 16px;
    height: 30px;
}

.hero-slider__button-prev{
    top: calc(50% - 25px);
    left: 46px;
}

.hero-slider__button-next{
    top: calc(50% - 25px);
    right: 46px;
}

.hero-slider__button-prev svg {
    /* left: -5px; */
    transform: translateX(-3px);
}

.hero-slider__button-next svg {
    transform: translateX(2px);
}

.hero-slider__wrapper__content {
    position: absolute;
    bottom: 24px;
    left: 0;
    z-index: 5;
    width: 100%;
}

.hero-slider__wrapper__content .button.fill {
    width: 367px;
    margin: 0 auto;
}

.hero-slider__wrapper__content .button.fill:hover {
    background: #fff;
   color: var(--orange);
   border-color: #fff;
}

.main-page_title div h2 {
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    line-height: 130%;
    color: var(--black);
    font-weight: 600;
    padding: 7px 30px;
    /* padding-left: 30px; */
    /* margin-left: -30px; */
    background: var(--light-orange);
    width: max-content;
    border-radius: 0 30px 30px 30px;
}

ul.posts-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.post__content a {
    position: relative;
    display: block;
}

li.posts-list__item a.post-thumbnail {
    display: block;
    position: relative;
    width: 100%;
    height: 330px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid transparent;
}

li.posts-list__item a.post-thumbnail img{
    width: 100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease-in-out, filter .7s linear;
}

li.posts-list__item a.post-thumbnail:hover img{
    transform: scale(1.05);
    filter: brightness(1.2);
    transition: transform .5s ease-in-out, filter .7s linear;
}

li.posts-list__item a.post-thumbnail:hover{
    border-color: var(--orange);
}

li.posts-list__item .post-title {
    font-size: 18px;
    line-height: 130%;
    margin-top: 16px;
}

a.read-post{
    position: relative;
    display: block;
    margin-top: 16px;
    width: max-content;
    color: #909090;
}

a.read-post:after{
    content:'';
    width: 100%;
    height: 1px;
    background: #909090;
    display: block;
    position:absolute;
    left: 0;
    bottom: 0;
    transition: all 1s ease-in-out;
}

a.read-post:hover:after{
    color: var(--orange);
    opacity: 0;
    transition: all .5s ease-in-out;
}

ul.posts-list li:last-child {
    display: none;
}

.logo-gallery .elementor-widget-container figure.gallery-item {
    width: 100%;
    height: 100px;
}

.elementor-30 .elementor-element.elementor-element-6d33990 .gallery-item {
    padding: 0 !important;
}

figure.gallery-item .gallery-icon {
    width: 100%;
    height: 100%;
}

.logo-gallery #gallery-1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: space-between;
}

.logo-gallery #gallery-1 figure {
    max-width: unset !important;
    padding: 10px 20px !important;
}

/* figure.gallery-item .gallery-icon{
    display: block;
    width:100%;
    height:100%;
} */

figure.gallery-item .gallery-icon img{
    width:100%;
    height:100%;
    object-fit: contain;
    object-position: center;
}

.basic-page__header {
    margin-top: 40px;
    margin-bottom: 40px;
}

ul.breadcrumbs__list {
    display: flex;
    gap: 5px;
    align-items: center;
}

.separator {
    width: 20px;
    height: 7px;
}

.breadcrumbs__list svg {
    width: 20px;
    height: 7px;
    object-fit: contain;
    object-position: center;
}

.basic-page__header h2 {
    margin-top: 20px;
}

section.basic-page {
    margin-bottom: 90px;
}

#footer{
    padding-top: 40px;
    padding-bottom:20px;
    background: #212121;
}

.footer__menu{
    columns: 2;
}

.footer__menu li a {
    color: #fff;
    font-size:18px;
    line-height:2.3;
    transition: all .3s linear;
}

.footer__menu li a:hover {
    color: var(--orange);
    transition: all .3s linear;
}


.footer-right .mobile__menu__messengers li a span {
    color: #fff;
}

.footer-right ul li.social__item span {
    color: #fff;
}

.footer__right__links .footer__link{
    color: #fff;
}

a.footer__logo.logo {
    display: block;
    width: 175px;
    height: 92px;
}

a.footer__logo.logo img{
    width:100%;
    height: 100%;
    object-fit:contain;
    object-position: center;
}

.footer .fixed-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.footer-right ul .social__item:not(:last-child) {
    margin-bottom: 12px;
}

.footer__right__links {
    margin-top: 50px;
}

.footer__right__links .footer__link {
    display: block;
    color: var(--orange);
    text-align: center;
    margin: 20px auto 0;
    text-decoration: underline;
}

.footer__right__links .button {
    text-transform: none;
}

.footer-bottom{
    margin-top: 50px;
}

.footer-bottom__link{
    color: #fff;
    text-align:center;
}

p.footer-bottom__about-company {
    text-align: right;
}

.footer-bottom__link:hover{
    color: var(--orange);
}

.footer-bottom div {
    color: #fff;
    font-size: 12px;
}

/* 404 */

.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.error-404 .button {
    max-width: 350px;
}

.error-404 p {
    font-size: calc(1em + 10vw);
    line-height: 100%;
    color: var(--orange);
    font-weight: 600;
}

.error-404 h2 {
    text-align: center;
}


@media (max-width: 1200px){
    li.posts-list__item a.post-thumbnail {
        height: 270px;
    }
}

@media (max-width: 1024px){
    /* ul.posts-list {
        gap: 40px;
    } */

    .footer .fixed-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-right {
        display: grid;
        margin-top:90px;
        grid-template-columns: repeat(2, 1fr);
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 2;
    }

    .footer__right__links a.button.fill {
        width: max-content;
        max-width: 178px;
    }

    .footer__right__links .footer__link {
        text-align: left;
        margin: 20px auto 0;
    }

    .footer-bottom .fixed-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    

    .footer__right__links {
        margin-top: 0;
    }
}

@media (max-width: 768px){
    .fixed-container {
        padding: 0 10px;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-slider__button-prev {left: 16px;}
    .hero-slider__button-next {right: 16px;}

    ul.posts-list {
        grid-template-columns: repeat(2, 1fr);
    }

    ul.posts-list li:last-child {
        display: block;
    }

    .logo-gallery #gallery-1 .gallery-item {
        max-width: unset !important;
    }

    .logo-gallery #gallery-1 {
        display: grid;
        gap:16px;
        grid-template-columns: repeat(4, 1fr);
        justify-content: space-between;
    }

    .logo-gallery .elementor-widget-container figure.gallery-item {
        width: 100%;
        height: 60px;
        margin: 0 auto ! important;
    }

    .elementor-35 .elementor-element.elementor-element-128c1f9d .gallery-item {
        padding: 0;
    } 

    .elementor-35 .elementor-element.elementor-element-128c1f9d .gallery  {
        margin: 0;
    }

    .elementor-35 .elementor-element.elementor-element-128c1f9d .gallery-item {
        padding: 0 !important;
    }

    .logo-gallery .galleryid-35 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap:16px;
    }

    section.basic-page {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px){
    .logo-gallery #gallery-1 {
        display: grid;
        gap:16px;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
    }

    section.basic-page {
        margin-bottom: 40px;
    }
  
}