*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    width: 100vw;
    min-height: 100dvh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-color: #1d1d1d;
}
body.nav-open {
  overflow: hidden;
}

.loader {
    background: none repeat scroll 0 0 #1d1d1d;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

body.theme-light .loader {
    background: none repeat scroll 0 0 #eee;
}

.loader_inner {
    background-image: url(../images/loader.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 250px;
    width: 250px;
    margin-top: -125px;
    margin-left: -125px;
    left: 50%;
    top: 50%;
    position: absolute;
    animation: smoothZoom 3s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes smoothZoom {
    0% {
        transform: scale(0.1);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cursor-dot,
.cursor-dot-outline {
    mix-blend-mode: normal;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.66s ease-in-out, -webkit-transform 0.66s ease-in-out;
    transition: opacity 0.66s ease-in-out, -webkit-transform 0.66s ease-in-out;
    transition: opacity 0.66s ease-in-out, transform 0.66s ease-in-out;
    transition: opacity 0.66s ease-in-out, transform 0.66s ease-in-out, -webkit-transform 0.66s ease-in-out;
}
.cursor-dot {
    z-index:99999999;
    width: 10px;
    height: 10px;
    background-color: rgba(226, 145, 35, 0.95);
    border: solid;
    border-radius: 50%;
    border-width: 0px;
    border-color: #dfaf78;
}
.cursor-dot-outline {
    z-index:99999998;
    width: 60.0px;
    height: 60.0px;
    background-color: rgba(226, 145, 35, 0.25);
    border: solid;
    border-radius: 50%;
    border-width: 0px;
    border-color: #000;
}

:root {
  --scroll-offset: 90;
}

.main-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1d1d1d;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    transition: all .3s ease;
}
.theme-light .main-menu {
    background-color: #fff;
}
body.nav-open .main-menu {
    opacity: 1;
    pointer-events: auto;
}
.main-menu__container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.main-menu__container::after,
.main-menu__container::before {
    display: block;
    content: "";
    flex-grow: 1;
    min-height: 60px;
}
.main-menu__nav {
    display: flex;
    flex-direction: column;
}
.main-menu__nav a {
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    margin: 24px 0;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.main-menu__nav a:hover {
    text-decoration: underline;
}
.theme-light .main-menu__nav a {
    color: #000;
}
.main-menu__bottom {
    width: 100%;
    display: none;
    flex-direction: column;
}
.main-menu__phone {
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-decoration: none;
    margin: 20px 0;
    padding-left: 48px;
    background-image: url(../images/phone-ico.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 32px;
}
.theme-light .main-menu__phone {
    filter: brightness(0);
}
.main-menu__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.main-menu__socials-facebook {
    display: block;
    width: 32px;
    height: 32px;
    text-decoration: none;
    /*background-image: url(../images/facebook-ico.svg);*/
    background-image: url(../images/whatsapp.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.main-menu__socials-telegram {
    display: block;
    width: 32px;
    height: 32px;
    text-decoration: none;
    background-image: url(../images/telegram-ico.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.menu-toggle {
    width: 40px;
    height: 28px;
    position: relative;
    transition-duration: 1s;
    z-index: 100;
}
.menu-toggle.scrolled {
    top: 32px;
    transition: all 0.35s ease;
}
.menu-toggle span {
    height: 3px;
    width: 40px;
    background-color: #fff;
    border-radius: 20px;
    position: absolute;
    transition-duration: .25s;
    transition-delay: .25s;
    right: 0;
    top: 12px;   
}
.menu-toggle span:before {
    right: 0;
    position: absolute;
    top: -12px;
    height: 3px;
    width: 30px;
    background-color: #fff;
    content: "";
    border-radius: 20px;
    transition-duration: .25s;
    transition: transform .25s, top .25s .25s, width .25s .25s;
}
.menu-toggle span:after {
    right: 0;
    position: absolute;
    top: 12px;
    height: 3px;
    width: 20px;
    background-color: #fff;
    content: "";
    border-radius: 20px;
    transition-duration: .25s;
    transition: transform .25s, top .25s .25s, width .25s .25s;
}
.theme-light .menu-toggle span,
.theme-light .menu-toggle span::before,
.theme-light .menu-toggle span::after {
    background-color: #000;
}
.menu-toggle.open span {
    transition-duration: 0.1s;
    transition-delay: .25s;
    background: transparent;
}
.menu-toggle.open span:before {
    transition: top .25s, transform .25s .25s;
    top: 0px;
    transform: rotateZ(-45deg);
    width: 40px;
    background-color: #FB8205;
}
.menu-toggle.open span:after {
    transition: top 0.4s, transform .25s .25s;
    top: 0px;
    transform: rotateZ(45deg);
    width: 40px;
    background-color: #FB8205;
}

.theme-toggle {
    display: none;
}
.theme-toggle + label {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background-color: rgba(72, 81, 85, 0.75);
    margin-right: 24px;
    background-image: url(../images/theme-ico.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.lang-wrap {
    position:relative;
    display: block;
    width: 52px;
    height: 52px;
    margin-right: 48px;
}
.lang-switcher {
    position:absolute;
    left: 0;
    top: 0;
    display: block;
    width: 52px;
    height: 52px;
    background-color: rgba(72, 81, 85, 0.75);
    border-radius: 52px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.lang-switcher:hover {
    background-color: #FB8205;
}
.lang-switcher.open {
    height: 112px;
    background-color: #FB8205;
}
.lang-current {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Geologica-Medium";
    text-transform: uppercase;
    width: 100%;
    height: 52px;
    transition: all 0.35s ease;
}
.lang-switcher:hover .lang-current {
    color: #000;
}
.lang-switcher.open .lang-current {
    color: #000;
}
.lang-list {
    display: flex;
    flex-direction: column;
    margin-top: -12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
}
.lang-switcher.open .lang-list {
    opacity: 1;
    pointer-events: auto;
}
.lang-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 5px 0;
}
.lang-list li.active {
    display: none;
}
.lang-list li a {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-family: "Geologica-Medium";
    text-transform: uppercase;
    text-decoration: none;
}

.header {
    display: block;
    width: 100vw;
    height: auto;
    padding: 28px 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90;
    transition: all 0.35s ease;
    border-bottom: 1px solid rgb(255, 255, 255, 0);
}
.header.scrolled {
    padding: 10px 0;
    background: rgb(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgb(255, 255, 255, 0.05);
}
.theme-light .header.scrolled {
    background: rgb(255, 255, 255, 0.3);
}
.header__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
}
.header__logo {
    display: block;
    width: 155px;
    height: auto;
    transition: all 0.35s ease;
}
.header.scrolled .header__logo {
    width: 135px;
}
.header__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.header__logo .header__logo-light {
    display: none;
}
.theme-light .header__logo .header__logo-dark {
    display: none;
}
.theme-light .header__logo .header__logo-light {
    display: block;
}
.flex-spacer {
    flex-grow: 1;
}
.header__socials {
    display: flex;
    margin-right: 36px;
}
.header__socials-facebook {
    display: block;
    width: 32px;
    height: 32px;
    text-decoration: none;
    /*background-image: url(../images/facebook-ico.svg);*/
    background-image: url(../images/whatsapp.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 12px;
}
.header__socials-telegram {
    display: block;
    width: 32px;
    height: 32px;
    text-decoration: none;
    background-image: url(../images/telegram-ico.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 12px;
}
.header__phone {
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-decoration: none;
    margin-right: 48px;
    padding-left: 48px;
    background-image: url(../images/phone-ico.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 32px;
}
.theme-light .header__phone {
    filter: brightness(0);
}
.theme-light .header__socials-facebook,
.theme-light .header__socials-telegram {
    filter: grayscale(1) brightness(0);
}

.main {
    flex: 1;
}

.first-screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
}
.first-screen__media {
    display: block;
    width: 100%;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}
.first-screen__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    animation: smoothZoom 24s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.16);
    }
    100% {
        transform: scale(1);
    }
}
.first-screen__media .first-screen__media-light {
    display: none;
}
.theme-light .first-screen__media-dark {
    display: none;
}
.theme-light .first-screen__media-light {
    display: block;
}
.first-screen__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1200px;
    height: auto;
    position: absolute;
    padding-bottom: 86px;
}
.first-screen__title {
    display: table;
    color: #fff;
    font-size: 72px;
    line-height: 1.2;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
}
.first-screen__btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-self: start;
    padding-left: 36px;
    padding-right: 36px;
    width: auto;
    min-width: 253px;
    height: 66px;
    border-radius: 109px;
    color: #161616;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Geologica-Bold";
    font-weight: normal;
    text-decoration: none;
    background: linear-gradient(320deg,rgba(166, 120, 43, 1) 0%, rgba(252, 183, 20, 1) 38%, rgba(252, 183, 20, 1) 59%, rgba(215, 137, 54, 1) 74%, rgba(166, 120, 43, 1) 100%);
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.first-screen__btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #FCB714;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}
.first-screen__btn:hover::before {
    opacity: 1;
}
.first-screen__btn span {
    position: relative;
    z-index: 4;
}

.about {
    display: block;
    width: 100%;
    height: auto;
    padding: 80px 0;
    background-color: #100800;
}
.theme-light .about {
    background-color: #fff;
}
.about__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 1200px;
    height: auto;
    margin: 0 auto;
}
.about__content {
    width: 50%;
    height: auto;
    padding-right: 24px;
    
    opacity:0;
    transform:translateY(60px) scale(.97);
    filter:blur(4px);
    transition: opacity 1s cubic-bezier(.16,.1,.3,1),
                transform 1s cubic-bezier(.16,.1,.3,1),
                filter 1s cubic-bezier(.16,.1,.3,1);
}

.about__content.revealed{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
}

.about__title {
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -5%;
    font-family: "Geologica-Medium";
    font-weight: normal;
    margin-bottom: 40px;
}
.theme-light .about__title {
    color: #000;
}
.about p {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    margin-bottom: 24px;
}
.theme-light .about p {
    color: #000;
}
.about p:last-of-type {
    margin-bottom: 0;
}
.about__media {
    width: 50%;
    height: auto;
    padding-left: 74px;
    padding-right: 50px;
    position: relative;
}
.about__media .owl-theme .owl-nav {
    margin: 0;
}
.about__media .owl-nav button.owl-prev {
    display: block;
    width: 32px;
    height: 32px;
    background-color: transparent !important;
    background-image: url(../images/arrow-about.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    transition: all 0.3s ease;
    position: absolute;
    left: -50px;
    top: 50%;
    margin-top: -16px;
    cursor: none;
}
.about__media .owl-nav button.owl-prev:hover {
    opacity: 0.7;
}
.about__media .owl-nav button.owl-next {
    display: block;
    width: 32px;
    height: 32px;
    background-color: transparent !important;
    background-image: url(../images/arrow-about.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    transform: rotateZ(180deg) !important;
    transition: all 0.3s ease;
    position: absolute;
    right: -50px;
    top: 50%;
    margin-top: -16px;
    cursor: none;
}
.about__media .owl-nav button.owl-next:hover {
    opacity: 0.7;
}
.theme-light .about__media .owl-nav button.owl-prev,
.theme-light .about__media .owl-nav button.owl-next {
    filter: brightness(0);
}
.about__media .owl-prev span,
.about__media .owl-next span {
    display: none;
}

.advantages {
    display: block;
    width: 100%;
    height: auto;
    padding: 80px 0;
   background-color: #1d1d1d;
    scroll-margin-top: 90px;
}
.theme-light .advantages {
    background-color: #eee;
}
.advantages__container {
    display: block;
    width: 1200px;
    height: auto;
    margin: 0 auto;
}
.advantages__title {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -5%;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-align: center;
    margin-bottom: 50px;
}
.theme-light .advantages__title {
    color: #000;
}
.advantages__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 72px;
}
.advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    height: auto;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
}
.advantages__item-media {
    display: block;
    width: 120px;
    height: auto;
    margin-bottom: 12px;
    transition: transform 0.3s ease-in-out;
}
.advantages__item:hover .advantages__item-media {
    filter: brightness(0) saturate(100%) invert(56%) sepia(92%) saturate(1500%) hue-rotate(355deg) brightness(101%) contrast(101%);
    transform: translateY(-20px);
}
.advantages__item-text {
    display: block;
    width: 100%;
    height: auto;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-align: center;
}
.theme-light .advantages__item-text {
    color: #000;
}

.logistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 725px;
    position: relative;
    overflow: hidden;
}
.logistics__container {
    width: 1200px;
    height: auto;
    margin: 48px auto;
    position: relative;
    z-index: 3;
}
.logistics__content {
    width: 50%;
}
.logistics__title {
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -5%;
    font-family: "Geologica-Medium";
    font-weight: normal;
    margin-bottom: 40px;
}
.logistics__content p {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    margin-bottom: 24px;
}
.logistics__content p:last-of-type {
    margin-bottom: 0;
}
.logistics__bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 1;
    transform: scale(1) translateY(0);
    will-change: transform;
}

.services {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.services__label {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 226px;
    height: 226px;
    border-radius: 50%;
    background-color: #1d1d1d;
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    font-family: "Geologica-Medium";
    font-weight: normal;
    letter-spacing: -5%;
    text-transform: uppercase;
    position: absolute;
    cursor: default;
    top: calc(50% - 113px);
    left: calc(50% - 113px);
    z-index: 4;
    transition: all .5s ease-in-out;
}
.theme-light .services__label {
    color: #000;
    background-color: #fff;
}
.services__label:hover {
    background-color: #FB8205;
    color: #1d1d1d;
}
.services__item {
    display: block;
    width: 50%;
    position: relative;
    overflow: hidden;
    position: relative;
}
.services__item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.26);
    z-index: 2;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
}
.services__item:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}
.services__item-bg {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.6s ease-in-out;
    position: relative;
    z-index: 1;
}
.services__item-bg.services-light {
    display: none;
}
.theme-light .services__item-bg.services-dark {
    display: none;
}
.theme-light .services__item-bg.services-light {
    display: block;
}
.services__item:hover .services__item-bg {
    transform: scale(1.18);
}
.services__item-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 100px 100px 100px;
    z-index: 3;
    transition: all 0.6s ease-in-out;
}
.services__item:hover .services__item-desc {
    bottom: 10%;
}
.services__item-desc-title {
    display: block;
    width: 100%;
    max-width: 650px;
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Geologica-Medium";
    font-weight: normal;
    padding-left: 32px;
    border-left: 3px solid #fff;
    margin-bottom: 32px;
}
.services__item-desc-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-self: start;
    padding-left: 36px;
    padding-right: 36px;
    width: auto;
    min-width: 253px;
    height: 66px;
    border-radius: 109px;
    color: #161616;
    font-size: 22px;
    margin-left: 36px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Geologica-Bold";
    font-weight: normal;
    text-decoration: none;
    background: linear-gradient(320deg,rgba(166, 120, 43, 1) 0%, rgba(252, 183, 20, 1) 38%, rgba(252, 183, 20, 1) 59%, rgba(215, 137, 54, 1) 74%, rgba(166, 120, 43, 1) 100%);
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
}
.services__item-desc-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #FCB714;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.services__item-desc-btn:hover::before {
    opacity: 1;
}
.services__item-desc-btn span {
    position: relative;
    z-index: 2;
}

.contacts {
    display: block;
    width: 100%;
    height: auto;
    background-color: #1d1d1d;
    padding: 80px 0;
}
.theme-light .contacts {
    background-color: #fff;
}
.contacts__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
}
.contacts__content {
    width: 543px;
}
.contacts__title {
    color: #fff;
    font-size: 36px;
    line-height: 1.12;
    font-family: "Geologica-Medium";
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -5%;
    margin-bottom: 44px;
}
.theme-light .contacts__title {
    color: #000;
}
.contacts__head {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 44px;
}
.contacts__addres {
    max-width: 45%;
    display: flex;
    flex-direction: column;
}
.contacts__addres-title {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Geologica-SemiBold";
    font-weight: normal;
    margin-bottom: 26px;
}
.theme-light .contacts__addres-title {
    color: #000;
}
.contacts__addres-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    font-weight: normal;
}
.theme-light .contacts__addres-text {
    color: #000;
}
.contacts__phone {
    max-width: 45%;
    display: flex;
    flex-direction: column;
}
.contacts__phone-title {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Geologica-SemiBold";
    font-weight: normal;
    margin-bottom: 26px;
}
.theme-light .contacts__phone-title {
    color: #000
}
.contacts__phone a {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    font-weight: normal;
    text-decoration: none;
}
.theme-light .contacts__phone a {
    color: #000;
}
.contacts__phone span {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    font-weight: normal;
}
.theme-light .contacts__phone span {
    color: #000;
}
.contacts__form {
    display: block;
    width: 100%;
    height: auto;
}
.input-container  {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    width: 100%;
}
.theme-light .input-container {
    border-bottom: 1px solid #000;
}
.input-container input {
    width: 100%;
    height: 36px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-family: "Geologica-Light";
}
.theme-light .input-container input {
    color: #000;
}
.input-container label {
    position: absolute;
    left: 0;
    top: 4px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Geologica-Light";
    pointer-events: none;
    transition: 0.2s ease all;
}
.theme-light .input-container label {
    color: #000;
}
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
    top: -16px;
    font-size: 13px;
}
.contacts__form-submit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 53px;
    border-radius: 109px;
    margin: 0 auto;
    border: none;
    color: #161616;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Geologica-Bold";
    font-weight: normal;
    background: linear-gradient(320deg,rgba(166, 120, 43, 1) 0%, rgba(252, 183, 20, 1) 38%, rgba(252, 183, 20, 1) 59%, rgba(215, 137, 54, 1) 74%, rgba(166, 120, 43, 1) 100%);
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
}
.contacts__form-submit::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #FCB714;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.contacts__form-submit:hover::before {
    opacity: 1;
}
.contacts__form-submit .wpcf7-submit {
    position: relative;
    z-index: 2;
    border: none;
    background: none;
    color: #161616;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Geologica-Bold";
    font-weight: normal;
    width: 100%;
    height: 53px;
}

.contacts__form-submit span {
    display: none;

}
.contacts__map {
    display: block;
    width: 581px;
    height: 387px;
    background-color: #ccc;
}

.footer {
    display: block;
    width: 100%;
    height: auto;
    background-color: #100800;
    padding: 36px 0;
}
.theme-light .footer {
    background-color: #eee;
}
.footer__container {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer__logo {
    display: block;
    width: 118px;
    height: auto;
}
.footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.footer__logo .footer__logo-light {
    display: none;
}
.theme-light .footer__logo .footer__logo-dark {
    display: none;
}
.theme-light .footer__logo .footer__logo-light {
    display: block;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    color: #929292;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    font-weight: normal;
}
.theme-light .footer__contacts {
    color: #161616;
}
.footer__contacts-tel {
    color: #929292;
    text-decoration: none;
}
.theme-light .footer__contacts-tel {
    color: #161616;
}
.footer__contacts-mail {
    color: #929292;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.theme-light .footer__contacts-mail {
    color: #161616;
}
.footer__meta {
    display: flex;
    flex-direction: column;
    color: #929292;
    font-size: 14px;
    line-height: 1.3;
    font-family: "Geologica-Light";
    font-weight: normal;
}
.theme-light .footer__meta {
    color: #161616;
}
.footer__copyright {
    margin-bottom: 8px;
}
.footer__dev {
    color: #929292;
    text-decoration: none;
    padding-right: 24px;
    background-image: url(../images/cursor-logo.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
}
.theme-light .footer__dev {
    color: #161616;
    background-image: url(../images/cursor-logo_light.svg);
}
.footer__dev span {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.wpcf7-form-control-wrap {
    position: static;
}
.wpcf7-not-valid-tip {
    color: #fb8205;
    font-family: Geologica-Light;
}
.wpcf7-response-output {
    color: #fff;
    font-family: Geologica-Light;
}

.error-404 a {
    color: #fff;
}

.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 130px;
  background-color: black;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.services__item-desc-title:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext {
    width: 320px;
    bottom: 110%;
    left: 50%;
    margin-left: -160px;
    font-size: 12px;
    text-transform: none;
    padding: 10px;
    background-color: #fb8205;
}
