/* Fonts */
:root {
    --font-default: "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";
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
    --color-default: #364d59;
    /* --color-primary: #feb900; */
    --color-primary: #000000;
    --color-primary2: #ffffff;
    --color-secondary: #52565e;
    --color-bg-hover: #6495ED;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/* Google Maps iframe */
iframe.g-maps-iframe {
    border: 0;
    width: 100%;
    min-height: 499px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    overflow-x: hidden;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f6f7;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 a {
    color: black;
}

.section-header h2 a:hover {
    opacity: 0.5;
}

.gallery .section-header {
    padding-bottom: 10px;
}

.frontpage-contact .section-header {
    padding: 0px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: var(--color-primary);
}

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

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

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

.section-header p {
    margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 90px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumbs:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
    letter-spacing: 1px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: white;
    line-height: 0;
}

.scroll-top:hover {
    background: var(--color-bg-hover);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    z-index: 997;
    position: absolute;
    padding: 19px 0;
    top: 0;
    left: 0;
    right: 0;
}

.header a.logo img {
    width: 211px;
    height: 67px;
}


.header a.logo img:hover {
    opacity: 0.5;
}

.header .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-primary);
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary2);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--color-default);
        font-weight: 400;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #222428;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# gallery Section
--------------------------------------------------------------*/
.gallery .card-item {
    background: #fff;
    position: relative;
}

.gallery .card-item .card-bg {
    height: 195px;
    width: 220px;
    margin: 2%;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 2px 7px 11px;
    border-radius: 40px;
}

.gallery .card-item .card-body {
    padding: 30px;
}

.gallery .card-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.gallery .card-item p {
    color: var(--color-secondary);
    margin: 0;
}

.gallery-row {
    width: 100%;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.photos {
    font-size: 0;
}

a.magnifier {
    display: block;
}

a.magnifier img {
    /* height: 222px;
    width: 250px; */
    height: 195px;
    width: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 2px 7px 11px;
    border-radius: 40px;
}

a.magnifier img:hover {
    opacity: 0.5;
}

/* Frontpage Gallery */
p.frontpage-gallery-link {
    margin-top: 5px;
}

p.frontpage-gallery-link a {
    font-size: 17px;
    font-weight: bold;
    color: black;
}

p.frontpage-gallery-link a:hover {
    opacity: 0.5;
}

p.frontpage-gallery-link a img {
    height: 14px;
    width: 14px;
    margin-left: 5px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    padding: 40px;
    background: #fff;
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: var(--color-secondary);
    font-size: 40px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
    line-height: 1.8;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #f0f1f2;
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -15px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #ebebed;
    transition: 0.3s;
}

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

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: var(--color-primary);
}

.services .service-item:hover .icon:before {
    background: var(--color-primary);
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    min-height: 120px;
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 0 15px 30px 0;
    box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -45px;
}

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

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: var(--color-primary);
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--color-primary);
    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: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d5d7da;
    opacity: 1;
}

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

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
    min-height: 175px;
}

.contact .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    border-radius: 50%;
    border: 2px dotted var(--color-primary);
}

.contact .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 10px 0 2px 0;
}

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

.contact .php-email-form {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.contact .php-email-form .form-group {
    padding-bottom: 20px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-primary);
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--color-bg-hover);
}

.contact .info-item a.contact-links {
    display: grid;
    justify-items: center;
}

.contact .info-item a.contact-links:hover {
    font-weight: bold;
}

.contact-form-email-link {
    color: black;
}

.contact-form-email-link:hover {
    font-weight: bold;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}

.hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
}

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero .info {
        padding: 0 50px;
    }
}

.hero .info h2 {
    color: #fff;
    margin-bottom: 8px;
    padding: 0;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

/* .hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 79%;
    height: 4px;
    background: var(--color-primary2);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 7px;
} */

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 35px;
    }
}

.hero .info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.hero .info .btn-get-started {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 19px 45px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 17px;
    color: #fff;
    background: var(--color-primary);
    box-shadow: rgb(255 255 255 / 50%) 0px 0px 50px;
}

.hero .info .btn-get-started:hover {
    background: grey;
    opacity: 0.5;
    color: black;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: #fff;
    /* background: url("../img/footer-bg.jpg") top center no-repeat; */
    background: url("../img/gallery/s1.jpg") center no-repeat;
    background-size: cover;
    font-size: 14px;
    padding: 45px 0 5px 0;
    position: relative;
}

.footer:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    inset: 0;
}

.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
    color: var(--color-primary);
}

.footer .footer-content .footer-info p {
    font-size: 17px;
    font-family: var(--font-primary);
    color: #fff;
    margin: 20px 0;
}

.footer a.logo img {
    width: 211px;
    height: 67px;
}

.footer a.logo img:hover {
    opacity: 0.5;
}

.footer .footer-content .social-links {
    justify-content: center;
}

.footer .footer-content .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    margin-right: 8px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
    background: var(--color-primary);
    text-decoration: none;
}

.footer .footer-content h4 {
    font-size: 27px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding: 0;
    margin: 0 0 10px 0;
}

.footer .footer-content .footer-box {
    display: inline-grid;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.footer .footer-content .footer-links ul.footer-openings {
    width: 100%;
    float: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-content .footer-links ul.footer-openings li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    line-height: 0.8;
    font-size: 17px;
}

.footer .footer-content .footer-links ul.footer-openings li.footer-openings-empty {
    display: none;
}

.footer .footer-content .footer-links ul.footer-openings li.footer-openings-header {
    width: 40%;
    float: left;
    text-align: left;
    font-weight: bold;
}

.footer .footer-content .footer-links ul.footer-openings li.footer-openings-date {
    width: 60%;
    float: left;
    text-align: left;
}

.footer .footer-content .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
    color: #fff;
}

.footer .footer-legal .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .copyright {
    margin: 15px 0;
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: #fff;
}

.footer .footer-legal .credits a {
    color: var(--color-primary);
}

.services-prices span {
    color: var(--color-primary);
    font-weight: bold;
}

.footer-contact p {
    font-size: 17px;
    margin-bottom: 8px;
}

.footer-contact p a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact p a i.bi-telephone {
    padding-right: 10px;
}

.footer-contact p a i.bi-envelope {
    padding-right: 12px;
}

.footer .footer-content .f3 h4 {
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Mobile Devices
--------------------------------------------------------------*/
@media screen and (max-width: 550px) {
    br.hide-br {
        display: none;
    }

    section {
        padding: 30px 0;
    }

    .breadcrumbs {
        min-height: 25vh;
        padding: 77px 0 0 0;
    }

    .breadcrumbs h2 {
        font-size: 33px;
    }

    .frontpage-contact h6,
    .contact h6 {
        margin-bottom: 20px;
    }

    .footer {
        padding: 25px 0 5px 0;
    }

    .footer .footer-content .footer-box {
        display: inline-grid;
        justify-content: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer .footer-content .footer-box:last-child {
        margin-bottom: 30px;
    }

    .footer .footer-content .footer-info p {
        margin: 20px 0 15px 0;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer a.logo {
        justify-content: center;
    }

    .footer .footer-content .footer-links ul.footer-openings li.footer-openings-empty {
        display: block;
        width: 23%;
        float: left;
    }

    .footer .footer-content .footer-links ul.footer-openings li.footer-openings-header {
        width: 27%;
        float: left;
        text-align: left;
        font-weight: bold;
    }

    .footer .footer-content .footer-links ul.footer-openings li.footer-openings-date {
        width: 27%;
        float: left;
        text-align: right;
    }

    .services .services-left,
    .services .services-right {
        padding-left: 25px;
    }

    .services .services-left {
        margin-top: 25px;
    }

    .services .services-right {
        margin: 0;
    }

    .section-header {
        padding-bottom: 5px;
    }

    .contact .php-email-form .form-name {
        padding-bottom: 0;
    }

    .gallery .card-item .card-bg {
        height: 150px;
        width: 165px;
        margin: 3%;
    }

    a.magnifier img {
        height: 150px;
        width: 165px;
    }

    .hero a.carousel-control-next,
    .hero a.carousel-control-prev {
        width: 7%;
    }

    .hero .info {
        padding: 0 22px;
    }

    .hero .carousel-control-next-icon,
    .hero .carousel-control-prev-icon {
        background: none;
        font-size: 20px;
        line-height: 0;
        color: rgba(255, 255, 255, 0.6);
        width: 54px;
        height: 54px;
    }

    .hero .text-center {
        padding: 0 5px;
    }

    .header .header-logo {
        margin: 0 auto;
        padding-left: 25px;
    }

    .hero .info p {
        font-size: 17px;
    }

    .section-header p.frontpage-gallery-label {
        font-size: 15px;
        margin-top: 10px;
    }

    .section-header p.frontpage-gallery-link {
        font-size: 16px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    iframe.g-maps-iframe {
        border: 0;
        width: 100%;
        min-height: 416px;
    }
}

/*--------------------------------------------------------------
# Big Mobile Devices
--------------------------------------------------------------*/
@media (min-width: 551px) and (max-width: 768px) {
    section {
        padding: 30px 0;
    }

    .breadcrumbs {
        min-height: 25vh;
        padding: 77px 0 0 0;
    }

    .breadcrumbs h2 {
        font-size: 33px;
    }

    .footer {
        padding: 25px 0 5px 0;
    }

    .frontpage-contact h6,
    .contact h6 {
        margin-bottom: 20px;
    }

    .footer .footer-content .footer-box {
        display: inline-grid;
        justify-content: center;
        text-align: center;
    }

    .footer .footer-content .footer-links ul.footer-openings li.footer-openings-empty {
        display: block;
        width: 23%;
        float: left;
    }

    .footer .footer-content .footer-links ul.footer-openings li.footer-openings-header {
        width: 27%;
        float: left;
        text-align: left;
        font-weight: bold;
    }

    .footer .footer-content .footer-links ul.footer-openings li.footer-openings-date {
        width: 27%;
        float: left;
        text-align: right;
    }

    .social-links.d-flex.mt-3 {
        justify-content: center;
        margin-bottom: 10px;
    }

    .hero a.carousel-control-next,
    .hero a.carousel-control-prev {
        width: 7%;
    }

    .hero .info {
        padding: 0 22px;
    }

    .hero .carousel-control-next-icon,
    .hero .carousel-control-prev-icon {
        background: none;
        font-size: 20px;
        line-height: 0;
        color: rgba(255, 255, 255, 0.6);
        width: 54px;
        height: 54px;
    }

    .hero .text-center {
        padding: 0 5px;
    }

    .services .section-header {
        padding: 0;
    }

    .header .header-logo {
        margin: 0 auto;
        padding-left: 30px;
    }

    iframe.g-maps-iframe {
        border: 0;
        width: 100%;
        min-height: 416px;
    }

    .gallery .card-item .card-bg {
        height: 150px;
        width: 165px;
        margin: 3%;
    }

    a.magnifier img {
        height: 150px;
        width: 165px;
    }
}

/*--------------------------------------------------------------
# Small Tablets
--------------------------------------------------------------*/
@media (min-width: 769px) and (max-width: 991px) {
    section {
        padding: 30px 0;
    }

    .breadcrumbs {
        min-height: 27vh;
        padding: 77px 0 0 0;
    }

    .breadcrumbs h2 {
        font-size: 33px;
    }

    .frontpage-contact h6,
    .contact h6 {
        margin-bottom: 20px;
    }

    .testimonials .section-header p {
        margin-bottom: 20px;
    }

    .services .section-header {
        padding: 25px;
    }

    .footer .footer-content .footer-box {
        display: inline-grid;
        justify-content: center;
    }

    .footer .footer-content .footer-box h4,
    .footer .footer-content .footer-box h3 {
        font-size: 23px;
    }

    .footer .footer-content .col-md-6 {
        width: 42%;
    }

    .footer .footer-content .col-md-3 {
        width: 29%;
    }

    .footer .footer-content .footer-box .footer-contact-label {
        text-align: left;
    }

    .footer-contact p a i {
        padding: 0;
        display: none;
    }

    .footer a.logo img {
        width: 190px;
        height: 60px;
    }

    .social-links.d-flex.mt-3 {
        justify-content: center;
        margin-bottom: 10px;
    }

    .services .services-left,
    .services .services-right {
        padding-left: 25px;
        margin: 0;
    }

    .section-header {
        padding-bottom: 5px;
    }

    .contact .php-email-form .form-name {
        padding-bottom: 0;
    }

    .gallery .card-item .card-bg {
        height: 150px;
        width: 165px;
        margin: 3%;
    }

    a.magnifier img {
        height: 150px;
        width: 165px;
    }

    .hero a.carousel-control-next,
    .hero a.carousel-control-prev {
        width: 7%;
    }

    .hero .info {
        padding: 0 22px;
    }

    .hero .carousel-control-next-icon,
    .hero .carousel-control-prev-icon {
        background: none;
        font-size: 20px;
        line-height: 0;
        color: rgba(255, 255, 255, 0.6);
        width: 54px;
        height: 54px;
    }

    .hero .text-center {
        padding: 0 5px;
    }

    .header .header-logo {
        margin: 0 auto;
        padding-left: 30px;
    }

    iframe.g-maps-iframe {
        border: 0;
        width: 100%;
        min-height: 416px;
    }
}

/*--------------------------------------------------------------
# Big Tablets
--------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumbs {
        min-height: 27vh;
        padding: 77px 0 0 0;
    }

    .breadcrumbs h2 {
        font-size: 33px;
    }

    .footer .footer-content .footer-info h3 {
        font-size: 24px;
    }

    .footer .footer-content .footer-info h4 {
        font-size: 18px !important;
    }

    .footer-contact p a i {
        padding: 0;
        display: none;
    }

    .footer a.logo img {
        width: 190px;
        height: 60px;
    }

    .gallery .card-item .card-bg {
        height: 150px;
        width: 165px;
        margin: 2%;
    }

    a.magnifier img {
        height: 150px;
        width: 165px;
    }

    .hero .text-center {
        width: 70%;
    }

    .header .header-logo {
        margin: 0 auto;
        padding-left: 30px;
    }

    .hero .text-center {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Desktop
--------------------------------------------------------------*/
@media (min-width: 1199px) {
    .hero .text-center {
        width: 70%;
    }
}

/*---------------------------------------------------------------------
# Mobile Devices in Landscape mode(Horizontally) - Small & Big Phones
---------------------------------------------------------------------*/
@media screen and (max-width: 991px) and (max-height: 470px) and (orientation: landscape) {
    section {
        padding: 20px 0;
    }

    .services {
        padding: 0;
        margin: 0;
    }

    .testimonials .section-header p {
        margin-bottom: 10px;
    }

    .hero .container {
        margin-top: 122px;
    }

    .hero .info h2 {
        display: none;
    }

    .breadcrumbs {
        padding: 100px 0 10px 0;
    }

    .breadcrumbs h2 {
        font-size: 37px;
    }

    .f1 {
        width: 40% !important;
    }

    .f2 {
        width: 25% !important;
        justify-items: center;
        text-align: center;
    }

    .f3 {
        width: 35% !important;
    }

    .footer .footer-content .footer-info h3 {
        font-size: 22px;
    }

    .footer .footer-content .footer-info h4 {
        font-size: 17px !important;
    }

    .footer-contact p a {
        font-size: 15px;
    }

    .footer-contact p:first-child a {
        font-size: 17px;
    }

    .footer-contact p a i {
        padding: 0;
        display: none;
    }

    .footer .footer-content .footer-box .footer-contact-label {
        text-align: center;
    }

    .gallery .card-item .card-bg {
        height: 150px;
        width: 165px;
        margin: 2%;
    }

    a.magnifier img {
        height: 150px;
        width: 165px;
    }
}

/*--------------------------------------------------------------
# Small Mobile Devices
--------------------------------------------------------------*/
@media screen and (max-width: 400px) {
    .gallery .card-item .card-bg {
        height: 135px;
        width: 150px;
        margin: 2%;
    }

    a.magnifier img {
        height: 135px;
        width: 150px;
    }
}

/* Contact Form Submit message */
.form-message-succes,
.form-message-fail {
    width: 100%;
    margin-top: 11px;
    text-align: center;
    -moz-animation: cssAnimation 0s ease-in 15s forwards;
    -webkit-animation: cssAnimation 0s ease-in 15s forwards;
    -o-animation: cssAnimation 0s ease-in 15s forwards;
    animation: cssAnimation 0s ease-in 15s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.form-message-succes h4,
.form-message-fail h4 {
    display: inline-block;
    font-size: 20px;
    color: white;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 2px 7px 11px;
    margin: 0;
    padding: 17px 25px;
}

.form-message-succes h4 {
    background: green;
}

.form-message-fail h4 {
    background: red;
}

@keyframes cssAnimation {
    to {
        display: none;
    }
}

@-webkit-keyframes cssAnimation {
    to {
        display: none;
    }
}