: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: 'Montserrat', sans-serif;
--nav-font: 'Montserrat', sans-serif;
--background-color: #ffffff;
--default-color: #333333;
--heading-color: #2b3e50;
--accent-color: #5b9ea6;
--surface-color: #ffffff;
--contrast-color: #ffffff;
--nav-color: #2b3e50;
--nav-hover-color: #5b9ea6;
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #ffffff;
--nav-dropdown-color: #2b3e50;
--nav-dropdown-hover-color: #5b9ea6;
scroll-behavior: smooth;
}

.light-background {
--background-color: #f6f7ff;
--surface-color: #ffffff;
}

.dark-background {
--background-color: #060606;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #252525;
--contrast-color: #ffffff;
}

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%);
}

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);
}
}

.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 h1 {
font-size: 30px;
margin: 0;
font-weight: 700;
color: var(--heading-color);
}

@media (max-width: 1200px) {
.header .logo {
order: 1;
}
}

.scrolled .header {
box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@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 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 rgba(0, 0, 0, 0.1);
}
.navmenu .dropdown ul li {
min-width: 200px;
}
.navmenu .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
color: var(--nav-dropdown-color);
}
.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 {
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 rgba(0, 0, 0, 0.1);
}
.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%;
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
transition: 0.3s;
}
.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;
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 {
padding-top: 50px;
border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo span {
font-size: 26px;
font-weight: 700;
letter-spacing: 1px;
font-family: var(--heading-font);
color: var(--heading-color);
}

.footer .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer .footer-links ul a {
color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-links ul a:hover {
color: var(--accent-color);
}

.footer .footer-contact p {
margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
margin-top: 30px;
margin-bottom: 15px;
padding: 6px 8px;
position: relative;
border-radius: 4px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
display: flex;
background-color: var(--background-color);
transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
border: 0;
padding: 4px;
width: 100%;
background-color: var(--background-color);
color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
border: 0;
font-size: 16px;
padding: 0 20px;
background: var(--accent-color);
color: var(--contrast-color);
transition: 0.3s;
border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#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%);
}

.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);
position: relative;
}

.page-title .heading h1 {
font-size: 38px;
font-weight: 700;
}

.page-title nav {
background-color: color-mix(in srgb, var(--default-color), transparent 95%);
padding: 20px 0;
}

.page-title nav ol {
display: flex;
flex-wrap: wrap;
list-style: none;
margin: 0;
font-size: 16px;
font-weight: 600;
}

.page-title nav ol li + li {
padding-left: 10px;
}

.page-title nav ol li + li::before {
content: "/";
display: inline-block;
padding-right: 10px;
color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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;
}
}

.section-title {
text-align: center;
padding-bottom: 60px;
position: relative;
}

.section-title h2 {
font-size: 32px;
font-weight: 700;
position: relative;
}

.section-title h2:before,
.section-title h2:after {
content: "";
width: 50px;
height: 2px;
background: var(--accent-color);
display: inline-block;
}

.section-title h2:before {
margin: 0 15px 10px 0;
}

.section-title h2:after {
margin: 0 0 10px 15px;
}

.section-title p {
margin-bottom: 0;
}

.hero {
width: 100%;
min-height: 50vh;
position: relative;
padding: 120px 0 60px 0;
display: flex;
align-items: center;
background-color: var(--accent-color);
color: var(--contrast-color);
}

.hero h1 {
margin: 0 0 10px 0;
font-size: 48px;
font-weight: 300;
}

.hero img.animated {
margin-bottom: 60px;
animation: up-down 2s ease-in-out infinite alternate-reverse both;
max-width: 45%;
}

@media (max-width: 991px) {
.hero img.animated {
max-width: 60%;
}
}

@media (max-width: 640px) {
.hero h1 {
font-size: 28px;
line-height: 36px;
}
.hero img.animated {
max-width: 80%;
}
}

@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}

.clients {
padding: 20px 0;
}

.clients .client-logo {
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}

.clients .client-logo img {
padding: 20px 40px;
max-width: 90%;
transition: 0.3s;
opacity: 0.5;
filter: grayscale(100%);
}

.clients .client-logo img:hover {
filter: none;
opacity: 1;
}

@media (max-width: 640px) {
.clients .client-logo img {
padding: 20px;
}
}

.about {
background-color: var(--light-background);
}

.about ul {
list-style: none;
padding: 0;
}

.about ul li {
padding-bottom: 5px;
display: flex;
align-items: center;
}

.about ul i {
font-size: 20px;
padding-right: 4px;
color: var(--accent-color);
}

.about .read-more {
background: var(--accent-color);
color: var(--contrast-color);
font-family: var(--heading-font);
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
padding: 10px 28px;
border-radius: 5px;
transition: 0.3s;
display: inline-flex;
align-items: center;
justify-content: center;
}

.about .read-more i {
font-size: 18px;
margin-left: 5px;
line-height: 0;
transition: 0.3s;
}

.about .read-more:hover {
background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
transform: translate(5px, 0);
}

.features .features-item {
color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item + .features-item {
margin-top: 100px;
}

@media (max-width: 640px) {
.features .features-item + .features-item {
margin-top: 40px;
}
}

.features .features-item h3 {
font-weight: 700;
font-size: 26px;
}

.features .features-item ul {
list-style: none;
padding: 0;
}

.features .features-item ul li {
padding-bottom: 10px;
display: flex;
align-items: center;
}

.features .features-item ul li:last-child {
padding-bottom: 0;
}

.features .features-item ul i {
font-size: 20px;
padding-right: 4px;
color: var(--accent-color);
}

.features .features-item p:last-child {
margin-bottom: 0;
}

.why-us {
background-color: var(--light-background);
}

.why-us .card {
background-color: var(--surface-color);
color: var(--default-color);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
padding: 40px;
margin: -1px;
border-radius: 0;
}

.why-us .card span {
display: block;
font-size: 24px;
font-weight: 400;
color: var(--accent-color);
}

.why-us .card h4 {
color: color-mix(in srgb, var(--heading-color), transparent 20%);
font-size: 24px;
font-weight: 600;
padding: 0;
margin: 20px 0;
}

.why-us .card p {
color: color-mix(in srgb, var(--default-color), transparent 40%);
font-size: 15px;
margin: 0;
padding: 0;
}

.services .service-item {
background-color: var(--surface-color);
text-align: center;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
padding: 80px 20px;
transition: border ease-in-out 0.3s;
height: 100%;
}

.services .service-item .icon {
margin: 0 auto;
width: 64px;
height: 64px;
background: var(--accent-color);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: 0.3s;
}

.services .service-item .icon i {
color: var(--contrast-color);
font-size: 28px;
transition: 0.3s;
}

.services .service-item h3 {
font-weight: 700;
margin: 10px 0 15px 0;
font-size: 22px;
transition: 0.3s;
}

.services .service-item p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}

.services .service-item:hover {
border-color: var(--accent-color);
}

.services .service-item:hover h3 {
color: var(--accent-color);
}

.testimonials .testimonial-item {
box-sizing: content-box;
text-align: center;
min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
width: 90px;
border-radius: 50%;
margin: 0 auto;
}

.testimonials .testimonial-item h3 {
font-size: 18px;
font-weight: bold;
margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: color-mix(in srgb, var(--default-color), transparent 20%);
margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: color-mix(in srgb, var(--accent-color), transparent 40%);
font-size: 26px;
line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
display: inline-block;
left: -5px;
position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
display: inline-block;
right: -5px;
position: relative;
top: 10px;
transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
font-style: italic;
margin: 0 15px 15px 15px;
padding: 20px;
background: var(--surface-color);
position: relative;
margin-bottom: 35px;
border-radius: 6px;
}

.testimonials .testimonial-item p::after {
content: "";
width: 0;
height: 0;
border-top: 20px solid var(--surface-color);
border-right: 20px solid transparent;
border-left: 20px solid transparent;
position: absolute;
bottom: -20px;
left: calc(50% - 20px);
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: var(--background-color);
opacity: 1;
border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--accent-color);
}

.team .team-member {
background-color: var(--surface-color);
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
position: relative;
border-radius: 5px;
transition: 0.5s;
padding: 30px;
height: 100%;
}

.team .team-member .pic {
overflow: hidden;
width: 150px;
border-radius: 50%;
flex-shrink: 0;
}

.team .team-member .pic img {
transition: 0.3s;
}

.team .team-member:hover {
transform: translateY(-10px);
}

.team .team-member .member-info {
padding-left: 30px;
}

@media (max-width: 468px) {
.team .team-member .member-info {
padding: 30px 0 0 0;
text-align: center;
}
}

.team .team-member h4 {
font-weight: 700;
margin-bottom: 5px;
font-size: 20px;
}

.team .team-member span {
display: block;
font-size: 15px;
padding-bottom: 10px;
position: relative;
font-weight: 500;
}

.team .team-member span::after {
content: "";
position: absolute;
display: block;
width: 50px;
height: 1px;
background: color-mix(in srgb, var(--default-color), transparent 85%);
bottom: 0;
left: 0;
}

@media (max-width: 468px) {
.team .team-member span::after {
left: calc(50% - 25px);
}
}

.team .team-member p {
margin: 10px 0 0 0;
font-size: 14px;
}

.team .team-member .social {
margin-top: 12px;
display: flex;
align-items: center;
justify-content: start;
width: 100%;
}

@media (max-width: 468px) {
.team .team-member .social {
justify-content: center;
}
}

.team .team-member .social a {
background: color-mix(in srgb, var(--default-color), transparent 94%);
transition: 0.3s;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50px;
width: 36px;
height: 36px;
}

.team .team-member .social a i {
color: color-mix(in srgb, var(--default-color), transparent 20%);
font-size: 16px;
margin: 0 2px;
}

.team .team-member .social a:hover {
background: var(--accent-color);
}

.team .team-member .social a:hover i {
color: var(--contrast-color);
}

.team .team-member .social a + a {
margin-left: 8px;
}

.pricing .pricing-item {
background-color: var(--surface-color);
padding: 60px 40px;
box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
height: 100%;
position: relative;
}

.pricing h3 {
font-weight: 600;
margin-bottom: 15px;
font-size: 20px;
}

.pricing h4 {
font-size: 48px;
color: var(--accent-color);
font-family: var(--heading-font);
font-weight: 400;
}

.pricing h4 sup {
font-size: 28px;
}

.pricing h4 span {
color: color-mix(in srgb, var(--default-color), transparent 60%);
font-size: 18px;
}

.pricing ul {
padding: 20px 0;
list-style: none;
color: color-mix(in srgb, var(--default-color), transparent 30%);
text-align: left;
line-height: 20px;
}

.pricing ul li {
padding: 10px 0;
display: flex;
align-items: center;
}

.pricing ul i {
color: var(--accent-color);
font-size: 24px;
padding-right: 3px;
}

.pricing ul .na {
color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
text-decoration: line-through;
}

.pricing .buy-btn {
color: color-mix(in srgb, var(--default-color), transparent 40%);
background-color: var(--background-color);
display: inline-block;
padding: 8px 35px 10px 35px;
border-radius: 4px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
font-size: 16px;
font-weight: 500;
font-family: var(--heading-font);
transition: 0.3s;
}

.pricing .buy-btn:hover {
background: var(--accent-color);
border-color: var(--accent-color);
color: var(--contrast-color);
}

.pricing .featured {
z-index: 10;
}

.pricing .featured .pricing-item {
background: var(--accent-color);
}

@media (min-width: 992px) {
.pricing .featured .pricing-item {
transform: scale(1.02, 1.1);
}
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
color: var(--contrast-color);
}

.pricing .featured .buy-btn {
background: var(--accent-color);
color: var(--contrast-color);
border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
background: color-mix(in srgb, var(--background-color), transparent 92%);
}

.faq .faq-container {
margin-top: 15px;
}

.faq .faq-container .faq-item {
background-color: color-mix(in srgb, var(--default-color), transparent 96%);
position: relative;
padding: 20px;
margin-bottom: 20px;
overflow: hidden;
transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
font-weight: 600;
font-size: 18px;
line-height: 24px;
margin: 0 30px 0 32px;
cursor: pointer;
transition: 0.3s;
}

.faq .faq-container .faq-item:hover h3 {
color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
display: grid;
grid-template-rows: 0fr;
transition: 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}

.faq .faq-container .faq-item .faq-icon {
position: absolute;
top: 22px;
left: 20px;
font-size: 20px;
line-height: 0;
transition: 0.3s;
color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
position: absolute;
top: 20px;
right: 20px;
font-size: 16px;
line-height: 0;
transition: 0.3s;
cursor: pointer;
}

.faq .faq-container .faq-active {
background-color: var(--accent-color);
transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
grid-template-rows: 1fr;
visibility: visible;
opacity: 1;
padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
transform: rotate(90deg);
}

.contact .info-item + .info-item {
margin-top: 40px;
}

.contact .info-item i {
color: var(--accent-color);
background: color-mix(in srgb, var(--accent-color), transparent 92%);
font-size: 20px;
width: 44px;
height: 44px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
transition: 0.3s;
margin-right: 15px;
}

.contact .info-item h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 5px;
}

.contact .info-item p {
margin-bottom: 0;
font-size: 14px;
}

.contact .info-item:hover i {
background: var(--accent-color);
color: var(--contrast-color);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
font-size: 14px;
padding: 10px 15px;
box-shadow: none;
border-radius: 0;
color: var(--default-color);
background-color: var(--surface-color);
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 button[type="submit"] {
color: var(--contrast-color);
background: var(--accent-color);
border: 0;
padding: 10px 30px;
transition: 0.4s;
border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

#cookie-popup {
position: fixed;
bottom: 20px;
left: 20px;
background: #e0e0e0;
color: #333333;
padding: 20px;
font-family: var(--default-font);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
border-radius: 25px;
font-size: 14px;
max-width: 400px;
z-index: 1000;
display: none;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
opacity: 1;
transform: translateY(0);
}

#cookie-popup p {
margin: 0;
padding: 0;
}

#cookie-popup .popup-content {
display: flex;
justify-content: space-between;
align-items: center;
}

#cookie-popup button {
background: var(--accent-color);
color: var(--contrast-color);
border: none;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
background: var(--heading-color);
}

#cookie-popup .popup-message {
max-width: 80%;
}

#cookie-popup .popup-message a {
color: var(--accent-color);
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
color: var(--heading-color);
}
/* Кастомные стили для секции “À propos” */
#about {
  background-color: #eef4f8; /* светло-голубой фон */
  padding: 80px 0;           /* сверху и снизу по 80px для воздушности */
}

#about .content p,
#about .content ul,
#about .content ul li span,
#about .col-lg-6 p {
  color: #2b3e50; /* слегка затемнённый текст, чтобы был контраст на фоне */
}

#about .read-more {
  background-color: #5b9ea6; /* кнопка в фирменном акцентном цвете */
  color: #ffffff;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color 0.3s;
}

#about .read-more:hover {
  background-color: #4c8d7f;
}
/* Кастомные стили для секции “Services” */
#services {
  background-color: #f0f6f4; /* светло-бежевый фон */
  padding: 80px 0;           /* сверху и снизу по 80px */
}

#services .section-title h2,
#services .section-title p,
#services .service-item h3,
#services .service-item p {
  color: #2b3e50; /* затемнённый цвет текста для контраста */
}

#services .service-item {
  background-color: #ffffff; /* белый фон карточек */
  border-radius: 6px;        /* скругление углов */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#services .service-item .icon {
  background-color: #5b9ea6; /* акцентный цвет для иконок */
}

#services .service-item .icon i {
  color: #ffffff;
}
