@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: calc(100% - 50px);
    max-width: 1600px;
    position: relative;
    margin: 0 auto;
    padding: 25px;
}

a.page-button {
    display: flex;
    width: 250px;
    height: 30px;
    background: transparent;
    border-bottom: 2px solid #997544;
    padding: 15px 10px 0 10px;
    justify-content: space-between;
    position: relative;
    transition: 200ms ease-in-out;
}

a.page-button:hover {
    padding: 15px 0 0 0;
}

a.page-button span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a.page-button svg {
    width: 18px;
    height: 18px;
    fill: #bdbaa7;
}

a.page-button.blue span {
    color: #bdbaa7;
}

a.page-button.orange span {
    color: #997544;
}

a.page-button.orange svg {
    fill: #ad7d45;
}

body.home #background-photo {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 700px;
    padding: 0 1rem 2rem;
    box-sizing: border-box;
}

#background-photo {
    position: relative;
    overflow: hidden;
}

.bg__photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(5px);
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

#header {
    display: flex;
    flex-direction: column;
    padding: 10px 20px 20px 20px;
    width: calc(100% - 40px);
    height: 120px;
    position: relative;
    background: transparent;
    gap: 10px 0;
}

#header .top-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#header .top-header .socials-header {
    display: flex;
    flex-direction: row;
    gap: 0 10px;
}

#header .top-header .socials-header .social-icon-header {
    width: 20px;
    height: 20px;
}

#header .top-header .socials-header .social-icon-header img {
    width: 20px;
    height: 20px;
    fill: #191919;
}

#header .top-header .info-header {
    display: flex;
    flex-direction: row;
    gap: 0 20px;
}

#header .top-header .info-header .adress-header,
#header .top-header .info-header .mail-header,
#header .top-header .info-header .phone-header {
    display: flex;
    gap: 10px;
}

#header .top-header .info-header .adress-header .icon,
#header .top-header .info-header .mail-header .icon,
#header .top-header .info-header .phone-header .icon {
    width: 25px;
    height: 25px;
}

#header .top-header .info-header .adress-header .icon img,
#header .top-header .info-header .mail-header .icon img,
#header .top-header .info-header .phone-header .icon img {
    width: 25px;
    height: 25px;
}

#header .top-header .info-header .adress-header .data,
#header .top-header .info-header .mail-header .data,
#header .top-header .info-header .phone-header .data {
    display: flex;
    align-items: center;
}

#header .top-header .info-header .adress-header .data p,
#header .top-header .info-header .mail-header .data p,
#header .top-header .info-header .phone-header .data p {
    font-size: 12px;
    color: #fff;
    margin: 0;
}

#header .border-header {
    width: calc(100% - 40px);
    padding: 1px 20px 0;
    height: 0;
    background: #5d5e60;
    display: flex;
}

#header .bottom-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#header .bottom-header .logo-header {
    width: 200px;
    height: 80px;
}

#header .bottom-header .logo-header svg {
    width: 200px;
    height: 80px;
    fill: #191919;
}

#header .bottom-header .menu-header {
    display: flex;
}

#header .bottom-header .menu-header ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    gap: 0 40px;
}

#header .bottom-header .menu-header ul li {
    padding: 20px 0 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 200ms ease-in-out;
    cursor: pointer;
}

#header .bottom-header .menu-header ul li.current-menu-item {
    color: #ad7d45;
    border-bottom: 2px solid #ad7d45;
}

#header .bottom-header .menu-header ul li:hover {
    color: #ad7d45;
}

#header .mobile-menu-header {
    display: none;
}

#header .mobile-menu-header .hamburger {
    width: 50px;
    height: 50px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

#header .mobile-menu-header .hamburger .line {
    display: block;
    position: absolute;
    height: 7.5px;
    width: 50px;
    background: #fff;
    border-radius: 5px;
    opacity: 1;
    right: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#header .mobile-menu-header .hamburger .line:nth-child(1) {
    top: 0px;
}

#header .mobile-menu-header .hamburger .line:nth-child(2) {
    top: 20px;
    width: 30px;
}

#header .mobile-menu-header .hamburger .line:nth-child(3) {
    top: 40px;
}

#header .mobile-menu-header .hamburger.open .line:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
}

#header .mobile-menu-header .hamburger.open .line:nth-child(2) {
    opacity: 0;
    right: -60px;
}

#header .mobile-menu-header .hamburger.open .line:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);
}

#menu-mobile {
    width: calc(100% - 40px);
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: absolute;
    z-index: 999999;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out;
}

#menu-mobile.open {
    opacity: 100%;
    pointer-events: auto;
}

#menu-mobile .content-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
}

#menu-mobile .content-menu .nav {
    display: flex;
}

#menu-mobile .content-menu .nav ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    gap: 0 25px;
}

#menu-mobile .content-menu .nav ul li {
    padding: 10px 0;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
}

#menu-mobile .content-menu .nav ul li.current-menu-item {
    color: #ad7d45;
    border-bottom: 2px solid #ad7d45;
}

#menu-mobile .content-menu .nav ul li:hover {
    color: #ad7d45;
}

#menu-mobile .content-menu .socials {
    display: flex;
    flex-direction: row;
    gap: 0 10px;
}

#menu-mobile .content-menu .socials .social-icon-header {
    width: 25px;
    height: 25px;
}

#menu-mobile .content-menu .socials .social-icon-header img {
    width: 25px;
    height: 25px;
    fill: #000000;
}

#menu-mobile .content-menu .company-data {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    align-items: center;
}

#menu-mobile .content-menu .company-data .adress-header,
#menu-mobile .content-menu .company-data .mail-header,
#menu-mobile .content-menu .company-data .phone-header {
    display: flex;
    gap: 10px;
}

#menu-mobile .content-menu .company-data .adress-header .icon,
#menu-mobile .content-menu .company-data .mail-header .icon,
#menu-mobile .content-menu .company-data .phone-header .icon {
    width: 25px;
    height: 25px;
}

#menu-mobile .content-menu .company-data .adress-header .icon img,
#menu-mobile .content-menu .company-data .mail-header .icon img,
#menu-mobile .content-menu .company-data .phone-header .icon img {
    width: 25px;
    height: 25px;
    fill: #000000;
}

#menu-mobile .content-menu .company-data .adress-header .data,
#menu-mobile .content-menu .company-data .mail-header .data,
#menu-mobile .content-menu .company-data .phone-header .data {
    display: flex;
    align-items: center;
}

#menu-mobile .content-menu .company-data .adress-header .data p,
#menu-mobile .content-menu .company-data .mail-header .data p,
#menu-mobile .content-menu .company-data .phone-header .data p {
    font-size: 12px;
    color: #000000;
    margin: 0;
}

#slider {
    width: calc(100% - 40px);
    height: auto;
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
}

#slider .title-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    gap: 40px;
}

#slider .title-slider .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#slider .title-slider h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin: 0;
}

#slider .title-slider p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    line-height: 24px;
    opacity: 80%;
}

#about-company {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#about-company .content-about-company {
    display: flex;
}

#about-company .content-about-company .left {
    width: calc(50% - 100px);
    padding: 0 100px 0 0;
    display: flex;
    flex-direction: column;
    gap: 100px 0;
}

#about-company .content-about-company .left .title {
    width: 100%;
    position: relative;
}

#about-company .content-about-company .left .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
    margin-bottom: 50px;
}

#about-company .content-about-company .left .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#about-company .content-about-company .left .title h2 span {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #B4B29F;
    display: block;
}

#about-company .content-about-company .left .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#about-company .content-about-company .left .button__container {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

#about-company .content-about-company .right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#about-company .content-about-company .right .photo {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

#about-company .content-about-company .right .photo:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
}

#about-company .content-about-company .right .photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#why-us {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#why-us .title {
    width: 100%;
    position: relative;
}

#why-us .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
    margin-bottom: 50px;
}

#why-us .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#why-us .title h2 span {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #B4B29F;
    display: block;
}

#why-us .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#why-us .boxes {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

#why-us .boxes .box {
    display: flex;
    flex-direction: column;
    gap: 0 20px;
    flex: 0 0 calc(25% - 80px);
    max-width: 25%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: 200ms ease-in-out;
}

#why-us .boxes .box:hover {
    border: 1px solid transparent;
}

#why-us .boxes .box .icon-box {
    width: 60px;
    height: 60px;
    transition: 200ms ease-in-out;
}

#why-us .boxes .box:hover .icon-box {
    width: 65px;
    height: 65px;
}

#why-us .boxes .box .icon-box img {
    width: 60px;
    height: 60px;
    transition: 200ms ease-in-out;
}

#why-us .boxes .box:hover .icon-box img {
    width: 65px;
    height: 65px;
}

#why-us .boxes .box .content-box {
    display: flex;
    flex-direction: column;
}

#why-us .boxes .box .content-box .title-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #997544;
    margin-bottom: 5px;
}

#why-us .boxes .box .content-box .description-box p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 22px;
}

#opinions {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#opinions .title {
    width: 100%;
    position: relative;
}

#opinions .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #bdbaa7;
    display: block;
}

#opinions .title h2 {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
}

#opinions .title h2 span {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    display: block;
}

#opinions .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    line-height: 25px;
}

#opinions .opinions-boxes {
    display: flex;
    padding: 30px 0;
}

#opinions .opinions-boxes.swiper {
    max-width: 1000px;
    align-items: center;
    gap: 0 50px;
}

#opinions .opinions-boxes .swiper-wrapper {
    max-width: 1000px;
}

#opinions .opinions-boxes .opinion-prev {
    width: 40px;
    height: 40px;
    border: 1px solid #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191919;
    display: none;
}

#opinions .opinions-boxes .opinion-prev svg {
    width: 20px;
    height: 20px;
    fill: #ad7d45;
}

#opinions .opinions-boxes .opinion-prev:hover {
    background: #ad7d45;
}

#opinions .opinions-boxes .opinion-prev:hover svg {
    fill: #191919;
}

#opinions .opinions-boxes .opinion-box {
    display: flex;
    flex-direction: row;
    gap: 0 20px;
    border: 1px solid #191919;
    padding: 50px;
    width: calc(100% - 102px) !important;
    max-width: 900px !important;
}

#opinions .opinions-boxes .opinion-box .icon-opinion {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: start;
}

#opinions .opinions-boxes .opinion-box .icon-opinion svg {
    width: 100px;
    height: 100px;
    fill: #f9cfa2;
}

#opinions .opinions-boxes .opinion-box .opinion-content {
    display: flex;
    flex-direction: column;
}

#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion {
    display: flex;
    align-items: start;
    gap: 0 5px;
}

#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion p {
    font-size: 14px;
    font-weight: 600;
}

#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion p#name {
    color: #000000;
}

#opinions .opinions-boxes .opinion-box .opinion-content .title-opinion p#company {
    color: #ad7d45;
}

#opinions .opinions-boxes .opinion-box .opinion-content .description-opinion p {
    font-size: 14px;
    font-weight: 400;
    color: #191919;
    line-height: 25px;
}

#opinions .opinions-boxes .opinion-next {
    width: 40px;
    height: 40px;
    border: 1px solid #191919;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191919;
    display: none;
}

#opinions .opinions-boxes .opinion-next svg {
    width: 20px;
    height: 20px;
    fill: #ad7d45;
}

#opinions .opinions-boxes .opinion-next:hover {
    background: #ad7d45;
}

#opinions .opinions-boxes .opinion-next:hover svg {
    fill: #191919;
}

#offer {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#offer .title {
    position: relative;
    margin: 0 auto;
}

#offer .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
    margin-bottom: 50px;
}

#offer .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#offer .title h2 span {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
    display: block;
}

#offer .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#offer .offer-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 50px 0 0;
}

#offer .offer-boxes .offer-box {
    flex: 0 0 calc(33% - 48px);
    max-width: 33.33%;
    display: flex;
    align-items: center;
    gap: 0 25px;
    padding: 20px;
}

body.page-template-offer #offer .offer-boxes .offer-box {
    flex: 0 0 calc(25% - 52px);
    max-width: 25%;
    display: flex;
    align-items: center;
    gap: 0 25px;
    padding: 20px;
}

#offer .offer-boxes .offer-box.orange {
    background: #997544;
    /*border: 1px solid rgba(255, 255, 255, 0.5);*/
}

#offer .offer-boxes .offer-box.blue {
    background: #f3f1f0;
}

#offer .offer-boxes .offer-box.button {
    justify-content: center;
}

#offer .offer-boxes .offer-box .icon-offer {
    width: 65px;
    height: 65px;
    opacity: 50%;
}

#offer .offer-boxes .offer-box .icon-offer img {
    width: 65px;
    height: 65px;
    fill: #ad7d45;
}

#offer .offer-boxes .offer-box .title-offer h2 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

#offer .offer-boxes .offer-box .title-offer h2 span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: block;
}

#offer .button-offer {
    display: flex;
    justify-content: center;
}

#gallery {
    width: calc(100% - 40px);
    height: auto;
    padding: 0 20px 60px;
    display: flex;
    background: #191919;
}

#gallery .title {
    position: relative;
    margin: 0 auto;
}

#gallery .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
}

#gallery .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#gallery .title h2 span {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
    display: block;
}

#gallery .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#gallery .photos {
    display: flex;
    padding: 30px 0 60px;
    align-items: center;
    gap: 0 15px;
}

#gallery .button-gallery .photos-prev {
    width: 40px;
    height: 40px;
    border: 1px solid #ad7d45;
    align-items: center;
    justify-content: center;
    background: #191919;
    display: flex;
}

#gallery .button-gallery .photos-prev svg {
    width: 20px;
    height: 20px;
    fill: #ad7d45;
}

#gallery .button-gallery .photos-prev:hover {
    background: #ad7d45;
}

#gallery .button-gallery .photos-prev:hover svg {
    fill: #191919;
}

#gallery .photos .swiper-wrapper {
    display: flex;
    align-items: center;
    width: calc(100% - 100px);
}

#gallery .photos .swiper-wrapper .photo {
    display: flex;
    height: 500px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    filter: opacity(0.5);
    transition: 200ms ease-in-out;
}

#gallery .photos .swiper-wrapper .photo:hover {
    filter: none;
    transform: scale(1.01);
}

#gallery .photos .swiper-wrapper .photo img {
    width: 100%;
    min-width: 500px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

#gallery .button-gallery .photos-next {
    width: 40px;
    height: 40px;
    border: 1px solid #ad7d45;
    align-items: center;
    justify-content: center;
    background: #191919;
    display: flex;
}

#gallery .button-gallery .photos-next svg {
    width: 20px;
    height: 20px;
    fill: #ad7d45;
}

#gallery .button-gallery .photos-next:hover {
    background: #ad7d45;
}

#gallery .button-gallery .photos-next:hover svg {
    fill: #191919;
}

#gallery .button-gallery {
    display: flex;
    justify-content: center;
    gap: 16px;
}

#contact {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#contact .title {
    position: relative;
    margin: 0 auto;
}

#contact .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
}

#contact .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#contact .title h2 span {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #B4B29F;
    display: block;
}

#contact .title p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#contact .contact-content {
    display: flex;
}

body.home #contact .contact-content {
    padding: 30px 0 0;
}

#contact .contact-content .left-contact {
    width: 45%;
    display: flex;
    flex-direction: column;
    background: #191919;
    gap: 100px 0;
}

#contact .contact-content .left-contact .company-data {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

#contact .contact-content .left-contact .company-data .name-company h2 {
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
    margin: 0;
}

#contact .contact-content .left-contact .company-data .adress-company {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

#contact .contact-content .left-contact .company-data .adress-company p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

#contact .contact-content .left-contact .company-data .contact-company {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 15px;
}

#contact .contact-content .left-contact .company-data .contact-company .phone-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 10px;
}

#contact .contact-content .left-contact .company-data .contact-company .phone-number .icon {
    width: 35px;
    height: 35px;
}

#contact .contact-content .left-contact .company-data .contact-company .phone-number .icon svg {
    width: 35px;
    height: 35px;
    fill: #ad7d45;
}

#contact .contact-content .left-contact .company-data .contact-company .phone-number .data a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

#contact .contact-content .left-contact .company-data .contact-company .e-mail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 10px;
}

#contact .contact-content .left-contact .company-data .contact-company .e-mail .icon {
    width: 35px;
    height: 35px;
}

#contact .contact-content .left-contact .company-data .contact-company .e-mail .icon svg {
    width: 35px;
    height: 35px;
    fill: #ad7d45;
}

#contact .contact-content .left-contact .company-data .contact-company .e-mail .data a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

#contact .contact-content .left-contact .company-data .socials-company {
    display: flex;
    gap: 0 15px;
    margin-top: 15px;
}

#contact .contact-content .left-contact .company-data .socials-company .social-media-icon {
    width: 30px;
    height: 30px;
}

#contact .contact-content .left-contact .company-data .socials-company .social-media-icon img {
    width: 30px;
    height: 30px;
}

#contact .contact-content .right-contact {
    width: calc(55% - 100px);
    padding: 50px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contact .contact-content .right-contact .top-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

#contact .contact-content .right-contact .top-contact-form .customer-data {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#contact .wpcf7-form-control-wrap[data-name="your-name"],
#contact .wpcf7-form-control-wrap[data-name="your-email"],
#contact .wpcf7-form-control-wrap[data-name="your-phone"],
#contact .wpcf7-form-control-wrap[data-name="your-subject"] {
    width: calc(50% - 10px);
}

#contact .wpcf7-form-control-wrap[data-name="your-message"] {
    width: 100%;
}

#contact .contact-content .right-contact .top-contact-form .customer-data input {
    font-family: "Inter", sans-serif;
    width: calc(100% - 30px);
    max-width: 100%;
    padding: 15px;
    border: none;
    color: #B4B29F;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

#contact .contact-content .right-contact .top-contact-form .customer-data input::placeholder {
    color: #B4B29F;
}

#contact .contact-content .right-contact .top-contact-form .customer-data input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#contact .contact-content .right-contact .top-contact-form .customer-data input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#contact .contact-content .right-contact .top-contact-form .customer-message {
    display: flex;
}

#contact .contact-content .right-contact .top-contact-form .customer-message input {
    font-family: "Inter", sans-serif;
    width: calc(100% - 30px);
    max-width: 100%;
    padding: 15px;
    border: none;
    color: #B4B29F;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

#contact .contact-content .right-contact .top-contact-form .customer-message textarea {
    font-family: "Inter", sans-serif;
    width: calc(100% - 30px);
    padding: 30px 15px;
    border: none;
    color: #B4B29F;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

#contact .contact-content .right-contact .top-contact-form .customer-message textarea::placeholder {
    color: #B4B29F;
}

#contact .contact-content .right-contact .top-contact-form .customer-message input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#contact .contact-content .right-contact .top-contact-form .customer-message input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#contact .contact-content .right-contact .bottom-contact-form {
    display: flex;
    justify-content: space-between;
    gap: 0 15px;
    align-items: end;
}

#contact .contact-content .right-contact .bottom-contact-form .accept {
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 60%;
}

#contact .contact-content .right-contact .bottom-contact-form .accept input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#contact .contact-content .right-contact .bottom-contact-form .accept input::before {
    content: "✔";
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #191919;
    border-radius: 0;
    display: block;
    transition: 200ms ease-in-out;
    cursor: pointer;
    text-align: center;
    color: transparent;
    font-size: 18px;
    line-height: 20px;
}

#contact .contact-content .right-contact .bottom-contact-form .accept input:checked::before {
    background: #fff;
    color: #ad7d45;
}

#contact .contact-content .right-contact .bottom-contact-form .accept label p {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
}

#contact .contact-content .right-contact .bottom-contact-form .accept label p a {
    color: #ad7d45;
    text-decoration: underline;
}

#contact .contact-content .right-contact .bottom-contact-form .send {
    width: 40%;
    display: flex;
    justify-content: end;
}

#contact .contact-content .right-contact .bottom-contact-form .send button.page-button.orange {
    display: flex;
    width: 220px;
    height: 50px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ad7d45;
    padding: 15px 10px 0 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #ad7d45;
    cursor: pointer;
    transition: 200ms ease-in-out;
}

#contact .contact-content .right-contact .bottom-contact-form .send button.page-button.orange:hover {
    padding: 15px 0 0 0;
}

#contact .contact-content .right-contact .bottom-contact-form .send button.page-button.orange span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#contact .contact-content .right-contact .bottom-contact-form .send button.page-button.orange svg {
    flex-shrink: 0;
}

#footer {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 10px 20px;
    width: calc(100% - 40px);
    position: relative;
    background: #191919;
    gap: 10px 0;
}

#footer .content-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px 0;
}

#footer .top-footer {
    display: flex;
}

#footer .top-footer .menu-header {
    display: flex;
}

#footer .top-footer .menu-header ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    align-items: center;
}

#footer .top-footer .menu-header ul li {
    padding: 0 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    transition: 200ms ease-in-out;
}

#footer .top-footer .menu-header ul li:last-child {
    border: none;
}

#footer .top-footer .menu-header ul li.current-menu-item {
    color: #ad7d45;
}

#footer .top-footer .menu-header ul li:hover {
    color: #ad7d45;
}

#footer .bottom-footer p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

#gallery-page {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 25px 0;
    background: #191919;
}

#gallery-page .gallery-content {
    display: flex;
    margin: 50px 0 25px;
    gap: 0 15px;
}

#gallery-page .gallery-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

#gallery-page .gallery-content ul>li {
    display: flex;
    flex: 0 0 calc(25% - 12px);
    max-width: 25%;
}

#gallery-page .gallery-content ul>li a {
    display: flex;
    width: 100%;
    height: 100%;
}

#gallery-page .gallery-content .photo {
    display: flex;
    width: 100%;
    height: 300px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    filter: opacity(0.5);
    transition: 200ms ease-in-out;
}

#gallery-page .gallery-content .photo:hover {
    filter: none;
    transform: scale(1.01);
    filter: none;
}

#gallery-page .gallery-content .photo img {
    width: 100%;
    /*min-width: 500px;*/
    height: 100%;
    object-fit: cover;
    position: absolute;
    display: block;
}

#contact-page #contact {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding: 25px 0;
    position: relative;
    margin: 0 auto;
}

#contact-page #contact .contact-content {
    display: flex;
    margin: 50px 0 25px;
}

#contact-page #contact .contact-content .company-data {
    display: flex;
    flex-direction: column;
    background: #191919;
    width: calc(50% - 25px);
    padding: 0 25px 0 0;
    gap: 75px 0;
    justify-content: space-between;
}

#contact-page #contact .contact-content .company-data .top-data {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-name h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-adress {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

#contact-page #contact .contact-content .company-data .top-data .company-adress p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.hours {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 15px;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact .phone-number,
#contact-page #contact .contact-content .company-data .top-data .company-contact .email-adress {
    display: flex;
    flex-direction: row;
    gap: 0 10px;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact .phone-number .icon,
#contact-page #contact .contact-content .company-data .top-data .company-contact .phone-number .icon svg,
#contact-page #contact .contact-content .company-data .top-data .company-contact .email-adress .icon,
#contact-page #contact .contact-content .company-data .top-data .company-contact .email-adress .icon svg {
    width: 40px;
    height: 40px;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact .phone-number .icon svg,
#contact-page #contact .contact-content .company-data .top-data .company-contact .email-adress .icon svg {
    fill: #ad7d45;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact .phone-number .data,
#contact-page #contact .contact-content .company-data .top-data .company-contact .email-adress .data {
    display: flex;
    align-items: center;
}

#contact-page #contact .contact-content .company-data .top-data .company-contact .phone-number .data a,
#contact-page #contact .contact-content .company-data .top-data .company-contact .email-adress .data a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

#contact-page #contact .contact-content .company-data .bottom-data {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

#contact-page #contact .contact-content .company-data .bottom-data .social-buttons {
    display: flex;
    flex-direction: row;
    gap: 0 15px;
}

#contact-page #contact .contact-content .company-data .bottom-data .social-buttons .social-media-icon,
#contact-page #contact .contact-content .company-data .bottom-data .social-buttons .social-media-icon img {
    width: 30px;
    height: 30px;
}

#contact-page #contact .contact-content .company-map {
    display: flex;
    width: 50%;
    position: relative;
    overflow: hidden;
}

#contact-page #contact .contact-content .company-map #map {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Stylizacja kontenera akceptacji */
.accept {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.accept label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Ukrywamy natywny checkbox */
.custom-accept input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #191919;
    background: #fff;
    cursor: pointer;
}

/* Dodajemy ✔ przy zaznaczeniu */
.custom-accept input[type="checkbox"]::before {
    content: "✔";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    display: block;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    color: transparent;
    transition: color 0.2s ease-in-out;
}

.custom-accept input[type="checkbox"]:checked::before {
    color: #ad7d45;
}

.accept span.wpcf7-list-item {
    margin: 0;
}

.accept span {
    font-size: 10px;
    font-weight: 500;
    color: #B4B29F;
    margin: 10px 0 0;
}

.accept span a {
    color: #ad7d45;
    text-decoration: underline;
}

#offer__second {
    width: calc(100% - 40px);
    height: auto;
    padding: 0 20px 60px;
    display: flex;
    background: #191919;
}

#offer__second .title {
    width: 100%;
    position: relative;
}

#offer__second .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
    margin-bottom: 50px;
}

#offer__second .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#offer__second .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#offer__second .offer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

#offer__second .offer-content .offer-box {
    display: flex;
    flex: 0 0 calc(33% - 60px);
    max-width: 33.33%;
    padding: 25px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#offer__second .offer-content .offer-box .icon-offer,
#offer__second .offer-content .offer-box .icon-offer img {
    width: 75px;
    height: 75px
}

#offer__second .offer-content .offer-box .icon-offer p {
    margin: 0
}

#offer__second .offer-content .offer-box .title-offer p {
    font-size: 24px;
    font-weight: 600;
    color: #997544;
    margin-bottom: 5px;
}

#offer__second .offer-content .offer-box .title-offer p span {
    display: block
}

#offer__second .offer-content .offer-box .description-offer p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 22px;
}

#offer.icon {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#offer.icon .title {
    position: relative;
    margin: 0 auto;
}

#offer.icon .title span {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #997544;
    display: block;
}

#offer.icon .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#offer.icon .title h2 span {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
    display: block;
}

#offer.icon .title p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#offer.icon .offer-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 0 0;
    justify-content: center;
}

#offer.icon .offer-boxes .offer-box {
    flex: 0 0 calc(50% - 65px);
    max-width: 50%;
    display: flex;
    align-items: center;
    gap: 0 25px;
    padding: 65px 20px 20px;
    position: relative;
    justify-content: center;
    border: none;
}

#offer.icon .offer-boxes .offer-box.orange {
    background: #997544;
}

#offer.icon .offer-boxes .offer-box .photo-feature {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    background: white;
    padding: 16px;
    border-radius: 50%;
}

#offer.icon .offer-boxes .offer-box .photo-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#offer.icon .offer-boxes .offer-box .title-offer h2 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

#offer.icon .offer-boxes .offer-box .title-offer h2 span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: block;
}

#offer.icon .button-offer {
    display: flex;
    justify-content: center;
}

#content-about-us {
    width: calc(100% - 40px);
    height: auto;
    padding: 0 20px 60px;
    display: flex;
    background: #191919;
}

#content-about-us .text-photo-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 100%;
}

#content-about-us.first .text-photo-offer .text-offer {
    display: flex;
    width: calc(50% - 50px);
    padding: 0 0 0 50px;
    align-items: start;
    justify-content: center;
    gap: 64px;
}

#content-about-us.second .text-photo-offer .text-offer {
    display: flex;
    width: calc(50% - 50px);
    padding: 0 50px 0 0;
    align-items: end;
    justify-content: center;
    gap: 32px;
}

body.page-template-home-page #content-about-us .text-photo-offer .text-offer {
    width: 100%;
    padding: 0;
    align-items: center;
    gap: 10px;
}

#content-about-us .text-photo-offer.right .photo-offer {
    display: flex;
    width: calc(50% - 25px);
    padding: 0 25px 0 0;
    min-height: 500px;
}

body.page-template-home-page #content-about-us .text-photo-offer.right .photo-offer {
    width: 100%;
    padding: 0;
    max-width: 700px;
}

#content-about-us .text-photo-offer .text-offer {
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 32px;
}

#content-about-us .text-photo-offer .text-offer .content {
    max-width: 600px;
}

#content-about-us.first .text-photo-offer .text-offer .title-section h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
    margin: 0;
}

#content-about-us.second .text-photo-offer .text-offer .title-section h2 {
    text-align: right;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
    margin: 0;
}

#content-about-us.first .text-photo-offer .text-offer .description p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#content-about-us.second .text-photo-offer .text-offer .description p {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}

#content-about-us .text-photo-offer .text-offer .button__container {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

#content-about-us .text-photo-offer .photo-offer {
    height: 100%;
    position: relative;
    overflow: hidden;
}

#content-about-us .text-photo-offer .photo-offer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    display: block;
}

#team {
    display: flex;
    width: 100%;
    height: auto;
    padding: 0 0 75px;
    position: relative;
    margin: 0 auto;
    background: #191919;
}

#team .container {
    max-width: calc(1200px - 50px);
}

#team .title {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

#team .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#team .team-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

#team .team-content .team-member {
    width: calc(33% - 28px);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#team .team-content .team-member span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

#team .team-content .team-member span.position {
    text-transform: uppercase;
    font-size: 12px;
}

#team .team-content .team-member span.name {
    font-size: 22px;
    font-weight: 500;
    color: #997544;
}

#about-team {
    background: #191919;
}

#about-team #team .container {
    max-width: 1600px;
}

.hour-grey {
    color: #B4B29F !important;
}

.implementation {
    color: #B4B29F !important;
}

#contact-page {
    background: #191919;
}

.company-map {
    display: flex;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.company-map #map {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#partners {
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 20px;
    display: flex;
    background: #191919;
}

#partners .title {
    position: relative;
    margin: 0 auto;
}

#partners .title h2 {
    text-align: left;
    font-size: 38px;
    font-weight: 600;
    color: #B4B29F;
}

#partners .content .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding-top: 32px;
}

#partners .content .partners .partner {
    width: calc(33% - 24px);
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#partners .content .partners .partner a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#partners .content .partners .partner img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}