/*
Theme Name: dikigoriko-happyonline
Theme URI: https://happyonline.gr/
Author: happyonline
Author URI: https://happyonline.gr/
Description: Starter Theme for Developers
Version: 1.0.0
Tested up to: 6.2.2
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: st

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

:root {
    --size: 16px;
    --size-normal: 18px;
    --size-xsmall: 12px;
    --size-small: 14px;
    --size-xlarge: 32px;
    --size-xxlarge: 40px;
    /* Paddings */
    --space-half: 10px;
    --space: 20px;
    --space-double: 40px;
    --space-triple: 60px;
    /* Colors */
    --black-600: #161616;
    --black-800: #021520;
    --main-color: #062131;
    --black: #000;
    --error: #FF5858;
    --dark-beige: #8c221f;
    --light-beige: #F4F5EF;
    --white: #fff;
    --red: #8F171F;

    /* Container */
    --width-container: 1640px;
}
 ::-moz-selection {
    background: #000;
    color: #fff;
}

 ::selection {
    background: #000;
    color: #fff;
}
.single-post .blog-content a {
    color: #891b1e;
    font-weight: bold;
}

a {
    -webkit-transition: color 300ms ease-in; 
    -moz-transition: color 300ms ease-in; 
    -o-transition: color 300ms ease-in; 
    transition: color .300ms ease-in;
    color: var(--black-600);
}
a:hover {
    color: var(--main-color);
}
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-weight: normal;
}
div,
p {
    font-weight: normal;
}
a:hover {
    text-decoration: none;
}
body {
    font-family: 'Manrope', sans-serif;
    font-size: var(--size);
    color: var(--black-600);
}
.container {
    width: 100%;
    max-width: var(--width-container);
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container,
    .container-sm {
        max-width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (min-width:768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (min-width:992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (min-width:1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1640px
    }
}
@media (max-width:1306px) {
    header .button_contact a {
        font-size: 1rem;
        padding: 0 10px;
    }
}
/****************** GENERAL STYLE ******************/
.section-title {
    font-size: 24px;
    font-weight: bold;
}
.grid-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space);
    display: grid;
}
.small-container {
    max-width: 1364px;
    margin: auto
}
.page-content {
    overflow: hidden;
    background-color: var(--light-beige);
    padding-bottom: 140px;
}
.control-form p {
    margin-bottom: 0;
}
.page-banner {
    background-color: rgba(166, 147, 111, .18);
    padding: 32px 0;
    margin-bottom: 30px;
}
.page-banner h1 {
    text-align: center;
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
}
/****************** GENERAL STYLE ******************/

/****************** HEADER ******************/
.preheader {
    background-color: var(--black-800);
    padding: 8px 0;
    color: var(--white);
    display: none;
}
.preheader span,
.preheader a {
    color: var(--white);
    display: flex;
    align-items: center;
    font-size: var(--size-small);
}
.preheader span {
    font-weight: 300;
}
.preheader .address {
    padding-right: var(--space);
}
.preheader .address,
.preheader .preheader-infos {
    display: flex;
    align-items: center;
}
.preheader .preheader-infos i {
    display: flex;
    align-items: center;
    padding-right: 7px;
}
.preheader .preheader-info-wrapper i,
.preheader .preheader-info-wrapper span:first-of-type {
    padding-right: 5px;
}
.preheader .preheader-info-wrapper span:last-of-type {
    transition: 300ms ease-in-out;
    position: relative;
}
.preheader .preheader-info-wrapper span:last-of-type:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: var(--white);
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 300ms ease-in-out;
}
.preheader .preheader-info-wrapper:hover span:last-of-type:after {
    width: 100%;
}
header {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--white);
    transition: 300ms ease-in-out;
}
header.scroll {
    box-shadow: 0px 3px 10px #0000001A;
}
header .logo {
    flex: 1;
    display: none;
}
header .mobile-logo {
    flex: 1;
    display: flex;
}
.menu {
    display: none;
}
.menu ul {
    display: flex;
    align-items: center;
    padding-right: 0;
}
.menu ul li:not(:last-of-type) {
   padding-right: var(--space-double);
}
.menu ul li a {
    font-size: var(--size-normal);
    color: var(--main-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: 300ms ease-in-out;
}
.menu ul > li.menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    color: var(--main-color);
    padding-left: 5px;
    position: relative;
    top: 1px;
    transition: 300ms ease-in-out
} 
.menu ul > li.menu-item-has-children > a:hover:after,
.menu ul li a:hover {
    color: var(--red);
}

header .menu {
    max-width: 70%;
    position: relative;
    margin: auto;
    align-items: center;
    justify-content: center;
}
header .button_contact {
    flex: 1;
    justify-content: end;
}
header .header-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
}
header .header-menu > li {
    padding-top: 30px;
    padding-bottom: 30px;
}

header .header-menu > li > ul {
    visibility: hidden;
    opacity: 0;
    transition: 300ms ease-in-out;
    position: absolute;
    top: 100%;
    left: auto;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #0000001A;
    padding: 25px 25px 35px 25px;
    width: 100%;
    max-width: 374px;
    flex-direction: column;
    align-items: start;
}
header .header-menu > li:hover > ul {
    visibility: visible;
    opacity: 1
}
header .header-menu > li > ul li:not(:last-child) {
    margin-bottom: 18px;
}
header .header-menu > li > ul li {
    padding-right: 0 !important;
}
header .header-menu > li > ul li a {
    font-weight: 500;
    color: var(--black);
}
.button_contact {
    display: none;
}
.button_contact a {
    height: 46px;       
    min-height: 46px;  
    font-weight: 500;     
    color: var(--white);
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--size-normal);
    border-radius: 2px;
    padding: 0 28px;
    transition: 300ms ease-in-out;
}
.button_contact a:hover {
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
}
.mobile-utilities {
    display: flex;
    gap: 1px;
}
.mobile-utilities .mobile-menu {
    width: 64px;
    min-width: 64px;
    height: 62px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-utilities .mobile-menu i {
    font-size: 22px;
    font-weight: 100;
}
.mobile-utilities .cta-buttons a {
    background-color: var(--main-color);
    color: var(--white);
    width: 64px;
    min-width: 64px;
    height: 62px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
}
.mobile-menu {
    display: block;
}
/****************** HEADER ******************/

/****************** FOOTER ******************/
.footer-info {
    display: grid;
}
.footer-info .grid-cols {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}
.footer-info .footer-info-layout a,
.footer-info .footer-info-layout {
    background-color: var(--light-beige);
    color: var(--main-color);
}
.footer-info .footer-info-layout:nth-child(2) a,
.footer-info .footer-info-layout:nth-child(2) {
    background-color: var(--main-color);
    color: var(--white);
}
.footer-info .footer-info-layout i {
    font-size: 54px;
}
.footer-info .footer-info-layout .footer-info-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
}
.footer-info .footer-info-layout .footer-info-title {
    font-size: 26px;
    font-weight: bold;
    margin-top: 16px;
}
.footer-info .footer-info-layout:nth-child(2) .footer-info-title {
    color: var(--white);
}
.footer-info .footer-info-layout:nth-child(2) .footer-info-text a,
.footer-info .footer-info-layout:nth-child(2) .footer-info-text {
    color: rgba(255, 255, 255, .66);
}
.footer-info .footer-info-layout .footer-info-text a,
.footer-info .footer-info-layout .footer-info-text {
    font-size: 20px;
    color: var(--black-600);
}
footer {
    background-color: var(--main-color);
    padding-top: 50px;
}
.footer-col { 
    flex: 0 0 25%;
    max-width: 25%;
}
.footer-col ul li,
.footer-info ul li,
.footer-col ul li a,
.footer-info ul li a {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}
.footer-col ul li a {
    position: relative;
}
.footer-col ul li a:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: var(--dark-beige);
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 300ms ease-in-out;
}
.footer-col ul li a:hover:last-of-type:after {
    width: 70px;
}
footer .footer-col h2 {
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
}
footer .footer-col h2:after {
    content: '';
    width: 64px;
    height: 4px;
    background-color: var(--white);
    display: block;
    margin: 20px 0;
}
.footer-col ul li:not(:last-child) {
    margin-bottom: 20px;
}
.footer-col.socials ul li {
    margin-bottom: 0;
}
.footer-col.socials {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
footer .footer-col h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
}
.footer-details ul {
    margin-top: 10px;
}
.footer-details ul li {
    font-size: 16px;
    font-weight: 500;
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-details ul li:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.footer-details ul li:last-child span:last-child {
    border-radius: 19px;
    background-color: var(--white);
    color: var(--main-color);
    min-height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
}
.footer-col.socials ul {
    display: flex;
    gap: 14px;
    justify-content: start;
    max-width: 52%;
    width: 100%;
}
.footer-col.socials ul li a {
    width: 74px;
    min-width: 74px;
    height: 74px;
    min-height: 74px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: 300ms ease-in-out;
}
.footer-col.socials ul li a:after {
    content: none;
}
.footer-col.socials ul li a:hover {
    background-color: var(--white);
    color: var(--main-color);
}
.copyright {
    background-color: var(--main-color);
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 0;
    margin-top: 65px;
}
.copyright,
.copyright a {
    color: var(--white);
    font-size: 12px;
    transition: 300ms ease-in-out;
}
.copyright a:hover {
    color: var(--dark-beige);
}
.fixed-side-buttons {
    position: fixed;
    top: 50%;
    right: 40px;
    z-index: 9;
}
.fixed-side-buttons ul li {
    margin-bottom: 17px;
}
.fixed-side-buttons ul li a {
    background-color: var(--main-color);
    color: var(--white);
    box-shadow: 0px 3px 10px #0000001F;
    width: 62px;
    min-width: 62px;
    height: 62px;
    min-height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms ease-in-out;
    position: relative;
    z-index: 3;
    
}
.fixed-side-buttons ul li a i {
    position: absolute;
    font-size: 23px;
}
.fixed-side-buttons ul li a span {
    opacity: 0;
    position: absolute;
    right: 100%;
    font-size: 0;
}
.fixed-side-buttons ul li a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    min-width: 62px;
    height: 62px;
    min-height: 62px;
    background-color: var(--main-color);
    border: 1px solid rgba(255, 255, 255, .15);
    z-index: -1;
    border-radius: 40px;
    transition: 300ms ease-in-out;
}
.fixed-side-buttons ul li a:hover:before {
    width: 180px;
    min-width: 180px;
}
.fixed-side-buttons ul li a span {
    transition: 300ms ease-in-out;
}
.fixed-side-buttons ul li a:hover,
.fixed-side-buttons ul li a:hover span {
    opacity: 1;
    font-size: 16px;
}
/****************** FOOTER ******************/

/****************** HOMEPAGE ******************/
.homepage .homepage-banner {
    position: relative;
    display: grid;
    width: fit-content;
    margin: auto;
}
.homepage .homepage-banner:after {
    content: '';
    background-color: rgba(6, 33, 49, .48);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.homepage .homepage-banner > * {
    grid-area: 1 / -1;
    display: flex;
    align-items: center;
}
.homepage .homepage-banner .banner-caption-wrapper .grid-cols {
    grid-template-columns: 1fr 400px;
}
.homepage .homepage-banner .homepage-banner-caption {
    z-index: 9;
    position: relative;
    color: var(--white);
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.homepage .homepage-banner .homepage-banner-caption h1 {
    font-size: 22px;
    letter-spacing: 2.2px;
    font-weight: 600;
    color: white;
}
.homepage .homepage-banner .homepage-banner-caption h2 {
    font-size: 62px;
    margin-top: 20px;
    font-weight: bold;
    color: var(--white);
}
.homepage .homepage-banner .homepage-banner-caption .buttons-wrapper {
    grid-template-columns: 1fr 346px;
    gap: 12px;
    display: grid;
    margin-top: 30px;
    width: fit-content;
}
.homepage .homepage-banner .homepage-banner-caption .buttons-wrapper .button_contact a {
    padding: 0 26px;
    border: 1px solid var(--red);
    background-color: var(--red);
}
.homepage .homepage-banner .homepage-banner-caption .buttons-wrapper .button_contact a span {
    color: white;
}
.homepage .homepage-banner .homepage-banner-caption .buttons-wrapper .button_contact a:hover {
    background-color: #062131;
    border: 1px solid #062131;
}
.homepage .homepage-banner .homepage-banner-caption .buttons-wrapper .button_contact:first-child a:hover {
    background-color: var(--red);
    color: var(--main-color);
    border: 1px solid var(--red);
}
.homepage .homepage-banner .homepage-banner-caption .buttons-wrapper .button_contact:first-child a {
    background-color: #062131;
    border: 1px solid #062131;
}
.homepage .homepage-banner .homepage-banner-image {
    position: relative;
    z-index: 9;
    max-width: 400px;
    margin-left: auto;
}
.homepage .homepage-banner .homepage-banner-image img {
    border-radius: 5px;
}
.homepage .homepage-aboutus {
    margin-top: 220px;
}
.homepage .homepage-aboutus .grid-cols {
    align-items: center;
    gap: 65px;
}
.homepage .homepage-aboutus .about-left {
    position: relative;
    z-index: 3;
}
.homepage .homepage-aboutus .about-left img {
    position: relative;
    z-index: 3;
    max-width: 626px;
    width: 100%;
    height: 100%;
}
.homepage .homepage-aboutus .about-left:after {
    position: absolute;
    bottom: 30px;
    left: 31px;
    content: '';
    border: 2px solid #000;
    display: block;
    max-width: 621px;
    width: 100%;
    max-height: 575px;
    z-index: 1;
    height: 100%;
}
.homepage .homepage-aboutus .about-left .judge {
    position: absolute;
    z-index: 9;
    right: -12%;
    bottom: -7%;
    height: 200px;
    width: 200px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}
.homepage .homepage-aboutus .about-right .title {
    font-size: 36px;
    font-weight: bold;
    line-height: 45px;
    color: var(--main-color);
}
.homepage .homepage-aboutus .about-right .text {
    font-size: 21px;
    margin: 40px 0;
    color: var(--main-color);
}
.homepage .homepage-aboutus .about-right .button_contact span {
    padding-right: 10px;
}
.homepage .services-title-background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 370px;
    padding-top: 70px;
    transform: translateY(80px);
    max-width: 1640px;
    margin: auto;
}
.homepage .services-title-background:after {
    content: '';
    background-color: rgba(6, 33, 49, .81);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.homepage .services-title-background h1 {
    color: var(--white);
    z-index: 9;
    position: relative;
    margin-bottom: 0;
    letter-spacing: 2.4px;
    font-size: 24px;
    font-weight: 500;
}
.homepage .services-title-background h2 {
    text-align: center;
    color: var(--white);
    font-size: 42px;
    z-index: 9;
    position: relative;
    margin-bottom: 10px;
}
.homepage .services-container {
    transform: translateY(-80px);
}
.homepage .services-content .button_contact {
    margin-top: 60px;
    justify-content: center;
}
.homepage .services-content .button_contact a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white);
    padding: 0 26px;
    height: 56px;
    min-height: 56px;
}
.homepage .services-content .button_contact a:hover {
    background-color: var(--red);
    border-color: var(--red);
}
.homepage .services-content .button_contact span {
    padding-right: 10px;
}
/****************** HOMEPAGE ******************/

/****************** BLOG ******************/
.blog-content .grid-cols {
    row-gap: 65px;
    column-gap: 85px;
    grid-template-columns: repeat(1, 1fr);
}
.blog-layout a,
.blog-layout span {
    display: block;
    transition: 300ms ease-in-out;
}
.blog-layout p a,
.blog-layout p a span {
    display: initial;
}
.blog-layout .blog-image {
    overflow: hidden;
}
.blog-layout .blog-block img {
    transition: 300ms ease-in-out;
}
/* .blog-layout .blog-block:hover img {
    transform: scale(1.1);
} */
.blog-layout .blog-date {
    font-size: 14px;
    padding: 10px 0;
    color: rgba(6, 33, 49, .82);
}
.blog-layout .blog-title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(6, 33, 49, .35);
}
.blog-layout .blog-intro {
    font-size: var(--size);
    font-weight: 500;
    margin-top: var(--space);
}
.blog-layout .blog-button {
    margin-top: var(--space);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--size-normal);
    height: 46px;       
    min-height: 46px;  
    font-weight: bold;     
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 2px;
    padding: 0 21px;
    transition: 300ms ease-in-out;
}
.blog-layout .blog-button:hover {
    background-color: var(--main-color);
    color: #ffffff;
}
.blog-layout .blog-button i {
    padding-left: 10px;
}
/****************** BLOG ******************/

/****************** BLOG PAGE ******************/
.blog_single_page {

}
.blog_single_page .blog-block:hover img {
    transform: scale(1);
}
.blog_single_page .blog-layout .blog-date {
    border-bottom: none;
    margin-bottom: 0;
}
.blog_single_page .blog-layout .blog-date {
    font-size: 18px;
}
.blog_single_page .blog-layout .blog-title {
    margin-top: 0;
    font-size: 26px;
    border-bottom: none;
    padding-bottom: 0;
}
.blog_single_page .blog-layout .blog-text {
    margin-top: 27px;
    font-size: 18px;
    font-weight: 500;
}
.blog_single_page .blog-layout .blog-text strong {
    font-weight: bold;
}
/****************** BLOG PAGE ******************/

/****************** SERVICES ******************/
.services_page .grid-cols {
    column-gap: 16px;
}
.services_page .services-block {
    display: grid;
    width: fit-content;
}
.services_page .services-block > * {
    grid-area: 1 / -1;
}
.services_page .services-layout .services-block img {
    transition: 300ms ease-in-out;
}
.services_page .services-layout .services-image {
    overflow: hidden;
    position: relative;
}
.services_page .services-layout .services-block:hover img {
    transform: scale(1.1);
}
.services_page .services-layout .services-block .services-caption {
    align-self: end;
    display: flex;
    z-index: 9;
    padding: 22px 24px;
    color: var(--white); 
    background-color: var(--red);
}
.services_page .services-layout .services-block .services-caption .services-title {
    color: var(--white); 
    font-size: 20px;
    font-weight: bold;
    transition: 300ms ease-in-out;
}
.services_page .services-layout .services-block .services-caption .services-button {
    display: flex;
    align-items: center;
    font-size: 25px;
    padding-left: 13px;
    transition: 300ms ease-in-out;
}
.services_page .services-layout .services-block:hover .services-caption .services-button {
    padding-left: 60px;
}
/****************** SERVICES ******************/

/****************** SERVICES PAGE ******************/
.service_page .services-content .button_contact {
    margin-top: 68px;
    display: flex;
}
.service_page .services-content .button_contact a {
    padding: 0 26px;
    height: 56px;
    min-height: 56px;
    border: 1px solid var(--red);
    background-color: var(--red);
}
.service_page .services-content .button_contact a:hover {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}
.services-text p,
.services-text {
    font-size: 18px;
}
.services-text h2,
.services-text p h2 {
    font-size: 25px;
    font-weight: bold;
}
/****************** SERVICES PAGE ******************/

/****************** ABOUT US PAGE ******************/
.about-content {
    margin-top: 140px;
}
.about-content .button_contact {
    margin-top: 60px;
    display: flex;
}
.about-content .button_contact a {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white);
    height: 56px;
    min-height: 56px;
    border-radius: 2px;
    padding: 0 26px;
    transition: 300ms ease-in-out;
}
.about-content .button_contact a:hover {
    background-color: var(--dark-beige);
    border: 1px solid var(--dark-beige);
}
.gallery-container {
    margin-top: 110px;
}
.gallery-container .grid-cols {
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
}
.gallery-container .image-popup {
    overflow: hidden;
    display: block;
}
.gallery-container .image-popup img {
    transition: 300ms ease-in-out;
}
.gallery-container .image-popup:hover img {
    transform: scale(1.1);
}
.mfp-counter {
    left: 0;
    font-size: 26px!important;
    font-weight: 300;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.homepage .section-title,
.gallery-container h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--main-color);
}
.text-content p,
.text-content {
    font-size: 18px;
}
.homepage .section-title,
.text-content h1 {
    font-size: 42px;
    color: var(--main-color);
    font-weight: bold;
}
.text-content h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 41px;
}
.text-content ul {
    margin: 20px 0 30px 0;
}
.text-content ul:last-child {
    margin-bottom: 0;
}
.text-content ul li:before {
    content: '\f111';
    font-family: 'Font Awesome 6 Pro';
    font-size: 10px;
    font-weight: bold;
    padding-right: 10px;
}
.text-content ul li {
    display: flex;
    align-items: center;
}
.text-content ul li:not(:last-child) {
    margin-bottom: 10px;
}
/****************** ABOUT US PAGE ******************/

/****************** CONTACT ******************/
.contact_page .page-content .grid-cols {
    gap: 70px;
}
.contact_page h2.section-title {
    margin-bottom: 20px;
}
.contact_page h3.section-subtitle {
    font-size: 18px;
    font-weight: bold;
}
.map-section .info {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.map-section .info i,
.map-section .info span {
    padding-right: 6px;
}
.map-section .info a {
    position: relative;
    width: fit-content;
    display: block;
}
.map-section .info a:after {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    display: block;
    transition: 300ms ease-in-out;
}
.map-section .info:hover a:after {
    width: 100%;
}
.contact-section .form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-section .control-form {
    margin-bottom: 20px;
}
.contact-section .control-form span {
    display: block;
    margin-top: 10px;
}
.contact-section .control-form label {
    width: 100%;
}
.contact-section form label,
.contact-section .form-wrapper label {
    color: var(--black);
    font-weight: bold;
    font-size: var(--size);
}
.contact-section .form-wrapper select.wpcf7-select,
.contact-section form textarea.wpcf7-textarea,
.contact-section form input.wpcf7-text,
.contact-section .form-wrapper input.wpcf7-text {
    height: 60px;
    border: 1px solid #231F20;
    width: 100%;
    background-color: transparent;
    padding: 0 15px;
}
.contact-section form textarea.wpcf7-textarea {
    padding-top: 15px;
}
.contact-section .form-wrapper select.wpcf7-select:focus,
.contact-section form textarea.wpcf7-textarea:focus,
.contact-section form input.wpcf7-text:focus,
.contact-section .form-wrapper input.wpcf7-text:focus {
    border-radius: 0;
    outline: none;
}
.contact-section .form-wrapper select.wpcf7-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.contact-section .form-wrapper .select-form {
    position: relative;
}
.contact-section .form-wrapper .select-form::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    color: var(--black);
    font-size: 20px;
    right: 4%;
    top: 50%;
    position: absolute;
    pointer-events: none;
}
.contact-section form textarea.wpcf7-textarea {
    height: 256px;
}
.contact-section form textarea::placeholder,
.contact-section form input::placeholder,
.contact-section .form-wrapper textarea::placeholder,
.contact-section .form-wrapper input::placeholder {
    color: rgba(0, 0, 0, .8);
    font-size: 16px;
}
.row-agree {
    margin-top: 10px;
    text-align: right;
}
.contact-section .row-agree p {
    margin-bottom: 0;
}
.contact-section .row-agree .wpcf7-list-item-label {
    letter-spacing: 0;
}
.contact-section .row-agree .wpcf7-list-item-label a {
    text-decoration: underline;
    transition: 300ms ease-in-out;
}
.contact-section .row-agree .wpcf7-list-item-label a:hover {
    color: var(--main-color);
}
.contact-section form .wpcf7-submit {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--white);
    padding: 0 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    height: 49px;
    min-height: 49px;
    margin-left: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    transition: 300ms ease-in-out;
}
.contact-section form .wpcf7-submit:hover {
    background-color: var(--dark-beige);
    color: var(--white);
    border-color: var(--dark-beige);
}
/****************** CONTACT ******************/

/****************** SIMPLE PAGES ******************/
.simple-pages .text p,
.simple-pages .text {
    font-size: 18px;
}
/****************** SIMPLE PAGES ******************/

/****************** 404 PAGE ******************/
.error-page-not-found {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.error-page-not-found .page-banner {
    width: 100%;
}
/****************** 404 PAGE ******************/


.postid-420 .services-content .button_contact {
    display: none !important;
}
@media(max-width:744px){
	.page-banner h1 {
    color: white;
    font-size: 20px !important;
}
.blog-layout .blog-title {
font-size: 19px !important;
}
.services_page .services-layout .services-block .services-caption .services-title {
font-size: 16px !important;
}
}
.gallery-container {}

.gallery-container .magnific-img {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 200px;
}

.gallery-container .magnific-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: ABSOLUTE;
    left: 0;
    top: 0;
}

.footer-col ul li a {
    font-size: 15px;
}
@media(min-width:1180px){
	.footer-col.socials {
    visibility: hidden;
}
}
@media(min-width:744px){
.mobileslidepc{
		display:none !important;
	}
}
	
@media(max-width:744px){
	.desktopslidepc{
		display:none;
	}
	.homepage .container.banner-caption-wrapper {
    padding-top: 40px;
}
	.homepage .homepage-banner img {
    position: absolute;
    height: 100% !important;
    width: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.homepage .homepage-banner {
    padding-bottom: 100%;
    overflow: hidden;
    height: 0;
    position: relative;
    display: grid;
    width: 100%;
    margin: auto;
}
}