:root { --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --heading-font: "Marcellus", sans-serif; --nav-font: "Marcellus", sans-serif; } :root { --background-color: #ffffff; --default-color: #212529; --heading-color: #2d465e; --accent-color: #A0522D; --surface-color: #ffffff; --contrast-color: #ffffff; } :root { --nav-color: #212529; --nav-hover-color: #A0522D; --nav-mobile-background-color: #ffffff; --nav-dropdown-background-color: #ffffff; --nav-dropdown-color: #212529; --nav-dropdown-hover-color: #A0522D; } .light-background { --background-color: #f9f9f9; --surface-color: #ffffff; } .service-item-icon i { font-size: 48px; color: #2f7d4a; margin-bottom: 15px; } .dark-background { --background-color: #060606; --default-color: #ffffff; --heading-color: #ffffff; --accent-color: #D6824A; --surface-color: #252525; --contrast-color: #ffffff; } :root { scroll-behavior: smooth; } body { color: var(--default-color); background-color: var(--background-color); font-family: var(--default-font); } a { color: var(--accent-color); text-decoration: none; transition: 0.3s; } a:hover { color: color-mix(in srgb, var(--accent-color), transparent 25%); text-decoration: none; } h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-family: var(--heading-font); } .php-email-form .error-message { display: none; background: #df1529; color: #ffffff; text-align: left; padding: 15px; margin-bottom: 24px; font-weight: 600; } .php-email-form .sent-message { display: none; color: #ffffff; background: #059652; text-align: center; padding: 15px; margin-bottom: 24px; font-weight: 600; } .php-email-form .loading { display: none; background: var(--surface-color); text-align: center; padding: 15px; margin-bottom: 24px; } .php-email-form .loading:before { content: ""; display: inline-block; border-radius: 50%; width: 24px; height: 24px; margin: 0 10px -6px 0; border: 3px solid var(--accent-color); border-top-color: var(--surface-color); animation: php-email-form-loading 1s linear infinite; } @keyframes php-email-form-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .pulsating-play-btn { width: 94px; height: 94px; background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%); border-radius: 50%; display: block; position: relative; overflow: hidden; } .pulsating-play-btn:before { content: ""; position: absolute; width: 120px; height: 120px; animation-delay: 0s; animation: pulsate-play-btn 2s; animation-direction: forwards; animation-iteration-count: infinite; animation-timing-function: steps; opacity: 1; border-radius: 50%; border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%); top: -15%; left: -15%; background: rgba(198, 16, 0, 0); } .pulsating-play-btn:after { content: ""; position: absolute; left: 50%; top: 50%; transform: translateX(-40%) translateY(-50%); width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid #fff; z-index: 100; transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19); } .pulsating-play-btn:hover:before { content: ""; position: absolute; left: 50%; top: 50%; transform: translateX(-40%) translateY(-50%); width: 0; height: 0; border: none; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid #fff; z-index: 200; animation: none; border-radius: 0; } .pulsating-play-btn:hover:after { border-left: 15px solid var(--accent-color); transform: scale(20); } @keyframes pulsate-play-btn { 0% { transform: scale(0.6, 0.6); opacity: 1; } 100% { transform: scale(1, 1); opacity: 0; } } body { border-top: 4px solid transparent; border-image: linear-gradient(90deg, var(--accent-color), var(--honey-color)) 1; } .header { color: var(--default-color); background-color: var(--background-color); padding: 20px 0; transition: all 0.5s; z-index: 997; } .header .logo { line-height: 1; } .header .logo img { max-height: 40px; width: auto; margin-right: 10px; } .header .logo h1 { font-size: 30px; margin: 0; font-weight: 700; color: var(--heading-color); } .header .logo .sitename { font-family: var(--heading-font); font-size: 1.4rem; font-weight: 400; color: var(--heading-color); letter-spacing: 0.01em; } @media (max-width: 400px) { .header .logo img { max-height: 32px; } .header .logo .sitename { font-size: 1.15rem; } } .scrolled .header { box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%); } @media (min-width: 1200px) { .navmenu { padding: 0; } .navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; } .navmenu li { position: relative; } .navmenu a, .navmenu a:focus { color: var(--nav-color); padding: 18px 15px; font-size: 16px; font-family: var(--nav-font); font-weight: 400; display: flex; align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s; } .navmenu a i, .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; } .navmenu li:last-child a { padding-right: 0; } .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus { color: var(--nav-hover-color); } .navmenu .dropdown ul { margin: 0; padding: 10px 0; background: var(--nav-dropdown-background-color); display: block; position: absolute; visibility: hidden; left: 14px; top: 130%; opacity: 0; transition: 0.3s; border-radius: 4px; z-index: 99; box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%); } .navmenu .dropdown ul li { min-width: 200px; } .navmenu .dropdown ul a { padding: 10px 20px; font-size: 15px; text-transform: none; color: var(--nav-dropdown-color); } .navmenu .dropdown ul a i { font-size: 12px; } .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover>a { color: var(--nav-dropdown-hover-color); } .navmenu .dropdown:hover>ul { opacity: 1; top: 100%; visibility: visible; } .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; } .navmenu .dropdown .dropdown:hover>ul { opacity: 1; top: 0; left: -100%; visibility: visible; } } @media (max-width: 1199px) { .mobile-nav-toggle { background: none; border: 0; padding: 0; color: var(--nav-color); font-size: 28px; line-height: 0; margin-right: 10px; cursor: pointer; transition: color 0.3s; } .navmenu { padding: 0; z-index: 9997; } .navmenu ul { display: none; list-style: none; position: absolute; inset: 60px 20px 20px 20px; padding: 10px 0; margin: 0; border-radius: 6px; background-color: var(--nav-mobile-background-color); overflow-y: auto; transition: 0.3s; z-index: 9998; box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%); } .navmenu a, .navmenu a:focus { color: var(--nav-dropdown-color); padding: 10px 20px; font-family: var(--nav-font); font-size: 17px; font-weight: 500; display: flex; align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s; } .navmenu a i, .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; background-color: color-mix(in srgb, var(--accent-color), transparent 90%); } .navmenu a i:hover, .navmenu a:focus i:hover { background-color: var(--accent-color); color: var(--contrast-color); } .navmenu a:hover, .navmenu .active, .navmenu .active:focus { color: var(--nav-dropdown-hover-color); } .navmenu .active i, .navmenu .active:focus i { background-color: var(--accent-color); color: var(--contrast-color); transform: rotate(180deg); } .navmenu .dropdown ul { position: static; display: none; z-index: 99; padding: 10px 0; margin: 10px 20px; background-color: var(--nav-dropdown-background-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow: none; transition: all 0.5s ease-in-out; } .navmenu .dropdown ul ul { background-color: rgba(33, 37, 41, 0.1); } .navmenu .dropdown>.dropdown-active { display: block; background-color: rgba(33, 37, 41, 0.03); } .mobile-nav-active { overflow: hidden; } .mobile-nav-active .mobile-nav-toggle { color: #fff; position: absolute; font-size: 32px; top: 15px; right: 15px; margin-right: 0; z-index: 9999; } .mobile-nav-active .navmenu { position: fixed; overflow: hidden; inset: 0; background: rgba(33, 37, 41, 0.8); transition: 0.3s; } .mobile-nav-active .navmenu>ul { display: block; } } .footer { color: var(--default-color); background-color: var(--background-color); font-size: 14px; position: relative; } .footer .footer-top { background-color: color-mix(in srgb, var(--background-color), white 5%); padding-top: 50px; } .footer .footer-about .logo { line-height: 1; margin-bottom: 25px; } .footer .footer-about .logo img { max-height: 40px; margin-right: 6px; } .footer .footer-about .logo span { color: var(--heading-color); font-family: var(--heading-font); font-size: 26px; font-weight: 700; letter-spacing: 1px; } .footer .footer-about p { font-size: 14px; font-family: var(--heading-font); } .footer h4 { font-size: 16px; font-weight: 600; position: relative; padding-bottom: 12px; margin-bottom: 15px; } .footer h4::after { content: ""; position: absolute; display: block; width: 20px; height: 2px; background: var(--accent-color); bottom: 0; left: 0; } .footer .footer-links { margin-bottom: 30px; } .footer .footer-links ul { list-style: none; padding: 0; margin: 0; } .footer .footer-links ul i { padding-right: 2px; font-size: 12px; line-height: 0; } .footer .footer-links ul li { padding: 10px 0; display: flex; align-items: center; } .footer .footer-links ul li:first-child { padding-top: 0; } .footer .footer-links ul a { color: color-mix(in srgb, var(--default-color), transparent 30%); display: inline-block; line-height: 1; } .footer .footer-links ul a:hover { color: var(--accent-color); } .footer .footer-contact p { margin-bottom: 5px; } .footer .copyright { padding: 30px 0; } .footer .copyright p { margin-bottom: 0; } .footer .credits { margin-top: 5px; font-size: 13px; } .footer .social-links a { font-size: 18px; display: inline-block; background: color-mix(in srgb, var(--default-color), transparent 92%); color: var(--accent-color); line-height: 1; padding: 8px 0; margin-right: 4px; border-radius: 4px; text-align: center; width: 36px; height: 36px; transition: 0.3s; } .footer .social-links a:hover { color: var(--contrast-color); background: var(--accent-color); text-decoration: none; } #preloader { position: fixed; inset: 0; z-index: 999999; overflow: hidden; background: var(--background-color); transition: all 0.6s ease-out; } #preloader:before { content: ""; position: fixed; top: calc(50% - 30px); left: calc(50% - 30px); border: 6px solid #ffffff; border-color: var(--accent-color) transparent var(--accent-color) transparent; border-radius: 50%; width: 60px; height: 60px; animation: animate-preloader 1.5s linear infinite; } @keyframes animate-preloader { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .scroll-top { position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: 15px; z-index: 99999; background-color: var(--accent-color); width: 40px; height: 40px; border-radius: 4px; transition: all 0.4s; } .scroll-top i { font-size: 24px; color: var(--contrast-color); line-height: 0; } .scroll-top:hover { background-color: color-mix(in srgb, var(--accent-color), transparent 20%); color: var(--contrast-color); } .scroll-top.active { visibility: visible; opacity: 1; } @media screen and (max-width: 768px) { [data-aos-delay] { transition-delay: 0 !important; } } .page-title { color: var(--default-color); background-color: var(--background-color); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 80px 0; text-align: center; position: relative; } .page-title:before { content: ""; background-color: color-mix(in srgb, var(--background-color), transparent 50%); position: absolute; inset: 0; } .page-title h1 { font-size: 42px; font-weight: 700; margin-bottom: 10px; } .page-title .breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; justify-content: center; padding: 0; margin: 0; font-size: 16px; font-weight: 400; } .page-title .breadcrumbs ol li+li { padding-left: 10px; } .page-title .breadcrumbs ol li+li::before { content: "/"; display: inline-block; padding-right: 10px; color: color-mix(in srgb, var(--default-color), transparent 50%); } section, .section { color: var(--default-color); background-color: var(--background-color); padding: 60px 0; scroll-margin-top: 100px; overflow: clip; } @media (max-width: 1199px) { section, .section { scroll-margin-top: 66px; } } @media (max-width: 575px) { section, .section { padding: 40px 0; } } @media (max-width: 767px) { img.img-fluid.rounded.shadow { max-height: 320px; width: 100%; object-fit: cover; } } .section-title { text-align: center; padding-bottom: 60px; position: relative; } .section-title h2 { font-size: 15px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--honey-color); margin-bottom: 12px; } .section-title p { margin-bottom: 0; font-family: var(--heading-font); font-size: 32px; position: relative; display: inline-block; padding-bottom: 18px; } .section-title p::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 46px; height: 3px; border-radius: 2px; background: var(--accent-color); } @media (max-width: 768px) { .section-title { padding-bottom: 40px; } .section-title p { font-size: 26px; } } .hero { padding: 0; } .hero .carousel { width: 100%; min-height: clamp(400px, 52vh, 560px); padding: 0; margin: 0; background-color: var(--background-color); position: relative; } @media (max-width: 575px) { .hero .carousel { min-height: 60vh; } } .hero img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; z-index: 1; } .hero .carousel-item { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; overflow: hidden; } .hero .carousel-item:before { content: ""; background: color-mix(in srgb, var(--background-color), transparent 60%); position: absolute; inset: 0; z-index: 2; } .hero .carousel-container { position: absolute; inset: 48px 48px 48px 48px; display: flex; justify-content: center; align-items: center; flex-direction: column; z-index: 3; } .hero h1, .hero h2 { margin-bottom: 20px; font-size: 38px; font-weight: 700; animation: fadeInDown 1s both; } @media (max-width: 768px) { .hero h1, .hero h2 { font-size: 26px; } } .hero p { animation: fadeInDown 1s both 0.2s; } @media (min-width: 1024px) { .hero h1, .hero h2, .hero p { max-width: 60%; } } .hero .btn-get-started { color: var(--contrast-color); background: var(--accent-color); font-family: var(--heading-font); font-weight: 500; font-size: 15px; letter-spacing: 1px; display: inline-flex; align-items: center; min-height: 46px; padding: 0 32px; border-radius: 50px; transition: 0.5s; margin: 10px; animation: fadeInUp 1s both 0.4s; } .hero .btn-get-started:hover { background: color-mix(in srgb, var(--accent-color), transparent 20%); } .hero .carousel-control-prev, .hero .carousel-control-next { width: 10%; transition: 0.3s; opacity: 0.5; } .hero .carousel-control-prev:focus, .hero .carousel-control-next:focus { opacity: 0.5; } .hero .carousel-control-prev:hover, .hero .carousel-control-next:hover { opacity: 0.9; } @media (min-width: 1024px) { .hero .carousel-control-prev, .hero .carousel-control-next { width: 5%; } } .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon { background: none; font-size: 32px; line-height: 1; } .hero .carousel-indicators { list-style: none; } .hero .carousel-indicators li { cursor: pointer; } @keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 100%, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } } @keyframes fadeInDown { from { opacity: 0; transform: translate3d(0, -100%, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } } .services .section-title h2 { color: var(--accent-color); font-size: 20px; } .services .content .service-item { background-color: var(--surface-color); padding: 20px 30px; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); position: relative; } .services .content .service-item .number { position: absolute; right: 10px; top: 10px; font-weight: 400; color: color-mix(in srgb, var(--default-color), transparent 80%); } .services .content .service-item .service-item-icon { position: relative; margin-bottom: 20px; color: var(--accent-color); } .services .content .service-item .service-item-icon img { width: 50px; } .services .content .service-item .service-item-icon:before { position: absolute; content: ""; transform: rotate(45deg); z-index: -1; left: -20px; border-top: 40px solid transparent; border-bottom: 40px solid transparent; border-right: 40px solid var(--accent-color); display: none; } .services .content .service-item .service-item-icon>span { color: var(--default-color); font-size: 4rem; } .services .content .service-item .service-item-content .service-heading { font-size: 20px; color: var(--default-color); font-weight: 400; } .services .content .service-item .service-item-content p { font-size: 15px; } @media (min-width: 769px) { .services .content [class^=col-]:nth-child(4n+4) .service-item { border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); } .services .content [class^=col-]:nth-last-child(-n+4) .service-item { border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); } } @media (max-width: 768px) { .services .content [class^=col-]:nth-child(2n+2) .service-item { border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); } .services .content [class^=col-]:last-child .service-item, .services .content [class^=col-]:nth-last-child(2) .service-item { border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); } } @media (max-width: 576px) { .services .content [class^=col-] .service-item { border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); margin-bottom: 10px; } } .about .section-title { margin-bottom: 60px; } .about .content { background: var(--accent-color); color: var(--contrast-color); padding: 7rem 0; } @media (max-width: 991px) { .about .content { padding: 3rem 0; } .about .content img.img-fluid { max-height: 340px; width: 100%; object-fit: cover; } } .about .content .img-overlap { margin-top: -150px; } .about p { color: var(--contrast-color); } .about .content-title { color: var(--contrast-color); font-weight: 300; text-align: left; } .about .content-title strong { font-weight: 700; } .about .content-subtitle { font-weight: 300; color: var(--contrast-color); text-transform: uppercase; font-size: 1.3rem; } .services-2 { overflow: visible; } .services-2 .section-title p { color: var(--contrast-color); } .services-2 .services-carousel-wrap { position: relative; margin-bottom: -200px; } .services-2 .swiper-wrapper { height: auto; } .services-2 .service-item { position: relative; overflow: hidden; } .services-2 .service-item:before { content: ""; background-color: color-mix(in srgb, var(--background-color), transparent 50%); top: 0; left: 0; right: 0; bottom: 0; position: absolute; opacity: 0; visibility: hidden; z-index: 1; transition: 0.3s all ease; } .services-2 .service-item img { transition: 0.5s all ease; transform: scale(1); } .services-2 .service-item .service-item-contents { z-index: 9; position: absolute; bottom: 20px; left: 20px; right: 20px; transition: 0.3s all ease; transform: translateY(100%); opacity: 0; visibility: hidden; } .services-2 .service-item .service-item-contents .service-item-category { color: var(--accent-color); text-transform: uppercase; } .services-2 .service-item .service-item-contents .service-item-title { color: var(--contrast-color); margin-bottom: 0; } .services-2 .service-item:hover:before { opacity: 1; visibility: visible; } .services-2 .service-item:hover .service-item-contents { transform: translateY(0%); opacity: 1; visibility: visible; } .services-2 .service-item:hover img { transform: scale(1.2); } .services-2 .navigation-prev, .services-2 .navigation-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 9; width: 46px; height: 46px; background: var(--contrast-color); background-color: none; border: none; transition: 0.3s all ease; } .services-2 .navigation-prev i, .services-2 .navigation-next i { font-size: 2rem; } .services-2 .navigation-prev:hover, .services-2 .navigation-next:hover { background-color: var(--accent-color); color: var(--contrast-color); } .services-2 .navigation-prev { left: 10px; } .services-2 .navigation-next { right: 10px; } .services-2 .swiper { padding-bottom: 50px; } .services-2 .swiper-pagination { bottom: 0px; } .services-2 .swiper-pagination .swiper-pagination-bullet { border-radius: 0; width: 20px; height: 4px; background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important; opacity: 1; } .services-2 .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--accent-color) !important; } .recent-posts .post-item { background: var(--surface-color); box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1); transition: 0.3s; } .recent-posts .post-item .post-img img { transition: 0.5s; width: 100%; height: 220px; object-fit: cover; } .recent-posts .post-item .post-date { position: absolute; right: 0; bottom: 0; background-color: var(--accent-color); color: var(--contrast-color); text-transform: uppercase; font-size: 13px; padding: 6px 12px; font-weight: 500; } .recent-posts .post-item .post-content { padding: 30px; } .recent-posts .post-item .post-title { color: var(--heading-color); font-size: 20px; font-weight: 700; transition: 0.3s; margin-bottom: 15px; } .recent-posts .post-item .meta i { font-size: 16px; color: var(--accent-color); } .recent-posts .post-item .meta span { font-size: 15px; color: color-mix(in srgb, var(--default-color), transparent 50%); } .recent-posts .post-item hr { color: color-mix(in srgb, var(--default-color), transparent 80%); margin: 20px 0; } .recent-posts .post-item .readmore { display: flex; align-items: center; font-weight: 600; line-height: 1; transition: 0.3s; color: color-mix(in srgb, var(--default-color), transparent 40%); } .recent-posts .post-item .readmore i { line-height: 0; margin-left: 6px; font-size: 16px; } .recent-posts .post-item:hover .post-title, .recent-posts .post-item:hover .readmore { color: var(--accent-color); } .recent-posts .post-item:hover .post-img img { transform: scale(1.1); } .call-to-action .content { padding: 20px 0; } .call-to-action .content h3 { font-weight: 300; text-transform: uppercase; } .call-to-action .content .form-subscribe .form-control { border: 2px solid var(--accent-color); background: var(--surface-color); border-radius: 0; } .call-to-action .content .form-subscribe input[type=email] { height: 63px !important; color: var(--default-color); } .call-to-action .content .form-subscribe input[type=email]:focus { box-shadow: none; } .call-to-action .content .form-subscribe input[type=email]::placeholder { color: color-mix(in srgb, var(--contrast-color), transparent 50%); } .call-to-action .content .loading, .call-to-action .content .error-message, .call-to-action .content .sent-message { margin-top: 15px; } .call-to-action .content .btn { color: var(--contrast-color); background-color: var(--accent-color); border: 1px solid var(--accent-color); border-radius: 0; } .call-to-action .content .btn:hover, .call-to-action .content .btn:active, .call-to-action .content .btn:focus { box-shadow: none; outline: none; background-color: var(--contrast-color); border: 1px solid var(--contrrast-color); } .about-3 .content-title { color: var(--accent-color); margin-bottom: 30px; } @media (max-width: 991px) { .about-3 img.img-fluid { max-height: 320px; width: 100%; object-fit: cover; } } .about-3 .btn-cta { text-transform: uppercase; font-size: 14px; padding-top: 20px; padding-bottom: 20px; padding-left: 30px; padding-right: 30px; background-color: var(--accent-color); color: var(--contrast-color); border-radius: 6px; } .about-3 .list-check { margin-bottom: 50px; } .about-3 .list-check li { display: block; padding-left: 30px; position: relative; } .about-3 .list-check li:before { content: "\f26e"; display: inline-block; font-family: "bootstrap-icons" !important; font-style: normal; font-weight: normal !important; font-variant: normal; text-transform: none; line-height: 1; vertical-align: -0.125em; -webkit-font-smoothing: antialiased; position: absolute; top: 0.1rem; font-size: 20px; left: 0; color: var(--accent-color); } .about-3 .pulsating-play-btn { position: absolute; left: calc(50% - 47px); top: calc(50% - 47px); } .contact { padding-top: 10px; } .contact .info { background-color: var(--surface-color); padding: 40px; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); overflow: hidden; } .contact .info h3 { font-weight: 600; font-size: 24px; } .contact .info p { color: color-mix(in srgb, var(--default-color), transparent 40%); margin-bottom: 30px; font-size: 15px; } .contact .info-item+.info-item { padding-top: 20px; margin-top: 20px; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); } .contact .info-item i { font-size: 24px; color: var(--accent-color); transition: all 0.3s ease-in-out; margin-right: 20px; } .contact .info-item h4 { padding: 0; font-size: 18px; line-height: 24px; font-weight: 600; margin-bottom: 5px; } .contact .info-item p { padding: 0; margin-bottom: 0; font-size: 14px; color: color-mix(in srgb, var(--default-color), transparent 40%); } .contact .php-email-form { width: 100%; } .contact .php-email-form .form-group { padding-bottom: 8px; } .contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea { color: var(--default-color); background-color: var(--surface-color); border-radius: 0px; box-shadow: none; font-size: 14px; border-color: color-mix(in srgb, var(--default-color), transparent 80%); } .contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus { border-color: var(--accent-color); } .contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder, .contact .php-email-form textarea::placeholder { color: color-mix(in srgb, var(--default-color), transparent 70%); } .contact .php-email-form input[type=text], .contact .php-email-form input[type=email] { height: 48px; padding: 10px 15px; } .contact .php-email-form textarea { padding: 10px 12px; height: 290px; } .contact .php-email-form button[type=submit] { background: var(--accent-color); color: var(--contrast-color); border: 0; padding: 13px 50px; transition: 0.4s; border-radius: 4px; } .contact .php-email-form button[type=submit]:hover { background: color-mix(in srgb, var(--accent-color) 90%, black 15%); } :root { --honey-color: #c8891a; } .btn-cta { display: inline-block; text-transform: uppercase; font-size: 14px; padding: 14px 30px; background-color: var(--accent-color); color: var(--contrast-color); border-radius: 6px; transition: 0.3s; } .btn-cta:hover { background-color: color-mix(in srgb, var(--accent-color) 85%, black 10%); color: var(--contrast-color); } .header .btn-cta { padding: 10px 22px; font-size: 13px; margin-left: 1.5rem; } .trust-strip { background: var(--surface-color); border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); padding: 2.5rem 0; } .trust-strip .row { --bs-gutter-y: 1.5rem; } .trust-strip .trust-item { text-align: center; padding: 0 1rem; } .trust-strip .trust-item .trust-value { display: block; font-family: var(--heading-font); font-size: 2rem; line-height: 1.1; color: var(--heading-color); font-weight: 400; } .trust-strip .trust-item .trust-value strong { color: var(--honey-color); } @media (max-width: 575px) { .trust-strip { padding: 1.5rem 0; } .trust-strip .row { --bs-gutter-y: 1rem; } .trust-strip .trust-item .trust-value { font-size: 1.5rem; } .trust-strip .trust-item .trust-label { font-size: 0.72rem; } } .trust-strip .trust-item .trust-label { display: block; margin-top: 0.4rem; font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase; color: color-mix(in srgb, var(--default-color), transparent 35%); } .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; } .cert-card { background: var(--surface-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%); border-top: 3px solid var(--honey-color); border-radius: 10px; padding: 2rem 1.5rem; text-align: center; transition: 0.3s box-shadow, 0.3s transform; } .cert-card:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); transform: translateY(-3px); } @media (max-width: 575px) { .cert-card { padding: 1.5rem 1.25rem; } } .cert-card img { max-height: 64px; width: auto; margin: 0 auto 1.2rem; display: block; } .cert-card .cert-icon-fallback { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: color-mix(in srgb, var(--accent-color), transparent 90%); color: var(--accent-color); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; } .cert-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; } .cert-card p { font-size: 0.92rem; color: color-mix(in srgb, var(--default-color), transparent 25%); margin-bottom: 0; } .cert-card .cert-note { display: inline-block; margin-top: 0.75rem; font-size: 0.78rem; color: var(--honey-color); border: 1px dashed color-mix(in srgb, var(--honey-color), transparent 40%); border-radius: 20px; padding: 0.2rem 0.7rem; } .snap-gallery { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.5rem 0 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; } .snap-gallery::-webkit-scrollbar { height: 6px; } .snap-gallery::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--accent-color), transparent 40%); border-radius: 4px; } .snap-gallery .snap-item { flex: 0 0 auto; width: min(320px, 80vw); scroll-snap-align: start; position: relative; border-radius: 10px; overflow: hidden; } .snap-gallery .snap-item img { width: 100%; height: 220px; object-fit: cover; display: block; } .snap-gallery .snap-item .snap-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.9rem 1rem; background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent); color: #fff; font-size: 0.9rem; } .snap-gallery-wrap { position: relative; padding: 0 2.75rem; } .snap-gallery-wrap .snap-nav { position: absolute; top: 0; bottom: 40px; margin: auto 0; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--surface-color); color: var(--heading-color); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; z-index: 4; cursor: pointer; transition: 0.2s background, 0.2s color; } .snap-gallery-wrap .snap-nav:hover { background: var(--accent-color); color: var(--contrast-color); } .snap-gallery-wrap .snap-prev { left: 0; } .snap-gallery-wrap .snap-next { right: 0; } .snap-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; } .snap-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: color-mix(in srgb, var(--default-color), transparent 75%); cursor: pointer; transition: 0.2s; } .snap-dots button.active { background: var(--accent-color); width: 22px; border-radius: 4px; } @media (max-width: 575px) { .snap-gallery-wrap { padding: 0 1.5rem; } .snap-gallery-wrap .snap-nav { width: 36px; height: 36px; font-size: 1rem; } .snap-gallery .snap-item { width: 82vw; } .snap-gallery .snap-item img { height: 190px; } } .faq-list { max-width: 860px; margin: 0 auto; } .faq-list details { background: var(--surface-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%); border-radius: 10px; padding: 1rem 1.3rem; margin-bottom: 0.9rem; } .faq-list summary { cursor: pointer; font-family: var(--heading-font); color: var(--heading-color); font-size: 1.05rem; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; } .faq-list summary::-webkit-details-marker { display: none; } .faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--accent-color); flex-shrink: 0; transition: transform 0.25s; } .faq-list details[open] summary::after { transform: rotate(45deg); } .faq-list details p { margin: 0.9rem 0 0.2rem; color: color-mix(in srgb, var(--default-color), transparent 15%); } .founder-quote { border-left: 3px solid var(--honey-color); padding-left: 1.2rem; margin: 1.5rem 0; font-family: var(--heading-font); font-size: 1.15rem; color: var(--heading-color); } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; } .product-card { background: var(--surface-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%); border-top: 3px solid var(--honey-color); border-radius: 10px; overflow: hidden; } @media (max-width: 575px) { .product-card .product-card-body { padding: 1.25rem; } .product-card img { height: 170px; } } .product-card img { width: 100%; height: 200px; object-fit: cover; display: block; } .product-card .product-card-body { padding: 1.5rem; } .product-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; } .product-card p { font-size: 0.94rem; color: color-mix(in srgb, var(--default-color), transparent 25%); margin-bottom: 0; }
