/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--white);
    background-color: var(--blue);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header-menu {
    padding: 0 50px;
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: var(--color-secondary);
}

.header .logo span {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    padding-left: 3px;
}

.navIcon {
    display: flex;
    align-items: center;
}

.navIcon i {
    color: var(--text-color-nav);
    margin: 0 5px;
}

.dropdown-toggle {
    color: var(--text-color-nav);
    border: none;
}
.dropdown-toggle:hover {
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Dark Mode Button
--------------------------------------------------------------*/
.darkmode {
    overflow: hidden;
    align-items: center;
    color: white;
    margin: 0 5px;
}

.darkmode input {
    position: absolute;
    left: -99em;
}

.toggle {
    cursor: pointer;
    display: flex;
    position: relative;
    width: 45px;
    height: 25px;
    background-color: #83d8ff;
    border-radius: 84px;
    transition: background-color 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.toggle__handler {
    display: inline-block;
    position: relative;
    z-index: 1;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background-color: #ffcf96;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: rotate(-45deg);
}

.toggle__handler .crater {
    position: absolute;
    background-color: #e8cda5;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
    border-radius: 100%;
}

.toggle__handler .crater--1 {
    top: 9px;
    left: 4px;
    width: 3px;
    height: 3px;
}

.toggle__handler .crater--2 {
    top: 14px;
    left: 10px;
    width: 4px;
    height: 4px;
}

.toggle__handler .crater--3 {
    top: 4px;
    left: 12px;
    width: 6px;
    height: 6px;
}

.star {
    position: absolute;
    background-color: #fff;
    transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 50%;
}

.star--1 {
    top: 6px;
    left: 8px;
    z-index: 0;
    width: 25px;
    height: 2px;
}

.star--2 {
    top: 10px;
    left: 15px;
    z-index: 1;
    width: 15px;
    height: 2px;
}

.star--3 {
    top: 14px;
    left: 15px;
    z-index: 0;
    width: 25px;
    height: 2px;
}

.star--4,
.star--5,
.star--6 {
    opacity: 0;
    transition: all 300ms 0 cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.star--4 {
    top: 16px;
    left: 11px;
    z-index: 0;
    width: 2px;
    height: 2px;
    transform: translate3d(3px, 0, 0);
}

.star--5 {
    top: 6px;
    left: 17px;
    z-index: 0;
    width: 3px;
    height: 3px;
    transform: translate3d(3px, 0, 0);
}

.star--6 {
    top: 16px;
    left: 18px;
    z-index: 0;
    width: 2px;
    height: 2px;
    transform: translate3d(3px, 0, 0);
}

input:checked + .toggle {
    background-color: #749dd6;
}

input:checked + .toggle:before {
    color: #749ed7;
}

input:checked + .toggle:after {
    color: #fff;
}

input:checked + .toggle .toggle__handler {
    background-color: var(--beige);
    transform: translate3d(19.5px, -0.5px, 0) rotate(0);
}

input:checked + .toggle .toggle__handler .crater {
    opacity: 1;
}

input:checked + .toggle .star--1 {
    width: 1px;
    height: 1px;
}

input:checked + .toggle .star--2 {
    width: 2px;
    height: 2px;
    transform: translate3d(-5px, 0, 0);
}

input:checked + .toggle .star--3 {
    width: 1px;
    height: 1px;
    transform: translate3d(-7px, 0, 0);
}

input:checked + .toggle .star--4,
input:checked + .toggle .star--5,
input:checked + .toggle .star--6 {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

input:checked + .toggle .star--4 {
    transition: all 300ms 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

input:checked + .toggle .star--5 {
    transition: all 300ms 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

input:checked + .toggle .star--6 {
    transition: all 300ms 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
#nav_logo {
    width: 120px;
    margin-top: 8px;
}
header #nav_logo_image {
    width: 40px;
    margin-top: 8px;
}

nav .nav_logo_mobile {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

nav ul li a {
    color: var(--title-color);
    display: block;
    margin: 0 2px;
    font-weight: 600;
    /* padding: 8px 18px; */
    margin: 8px 18px;
    transition: 0.3s;
    border-radius: 30px;

    text-decoration: none;
    display: inline-block;
    position: relative;
}
/* /////// */
nav ul li a,
nav ul li a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color-nav);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}
/* ////// */
nav ul > li > a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--orange);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

nav ul li a:hover:after,
nav li:hover > a:after,
nav .active:after {
    visibility: visible;
    width: 25px;
}

nav ul li a:hover,
nav .active,
nav .active:focus,
nav li:hover > a {
    color: var(--text-color-nav-active);
}

.nav_menu {
    align-items: center;
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav_menu:hover {
    color: #292929;
}

@media screen and (max-width: 920px) {
    #nav_check:checked ~ nav {
        left: 0;
    }
    nav {
        position: absolute;
        left: -300px;
        top: 0;
        z-index: 999;
        width: 280px;
        height: 100vh;
        background: var(--navbar);
        transition: 0.3s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }
    nav .nav_logo_mobile {
        display: block;
        height: 70px;
        display: flex;
        align-items: center;
        margin-left: 30px;
    }

    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
    }

    nav ul li a {
        margin-bottom: 5px;
        margin: 20px 15px;
        border-radius: 5px;
        color: var(--text-color-nav-mobile);
    }

    .nav_menu {
        display: block;
    }

    .showNav {
        transform: translateX(0%);
    }

    .social_media i {
        display: none;
    }

    .toggle {
        margin-top: 3px;
    }

    .toggleWrapper {
        padding-right: 20px;
    }

    .toggleWrapper input {
        position: absolute;
        left: -99em;
    }
}

/* ======================================================================== */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--blue);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

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

.scroll-top:hover {
    background-color: rgba(var(--blue-rgb), 0.8);
    color: #ffffff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--white);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader div {
    width: 13px;
    height: 13px;
    background-color: var(--blue);
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    position: absolute;
    left: 50%;
}

#preloader div:nth-child(1) {
    left: calc(50% + 8px);
    animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
    left: calc(50% + 8px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
    left: calc(50% + 32px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
    left: calc(50% + 56px);
    animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes animate-preloader-3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes animate-preloader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

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

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

.footer:before {
    content: "";
    background: var(--blue);
    position: absolute;
    inset: 0;
}

.footer .footer-content .footer-info {
    margin-bottom: 30px;
}

.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(--blue);
}

.footer .footer-content .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: var(--font-primary);
    color: #fff;
}

.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(--blue);
    text-decoration: none;
}

.footer .footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-content .footer-links ul li {
    padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: var(--gray);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

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

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

.footer .footer-logo {
    display: flex;
}
.footer .footer-logo img {
    width: 100px;
    margin-right: 20px;
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 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 .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: var(--gray);
    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;
}

/*--------------------------------------------------------------
# Merk
--------------------------------------------------------------*/
.merk .swiper-slide img {
    transition: 0.3s;
}

.merk .swiper-slide:hover img {
    transform: scale(1.15);
}

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

.merk .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--blue);
}

.merk .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--blue);
}

.merk .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.merk .owl-item img {
    width: 60%;
    opacity: 0.5;
    transition: 0.3s;
}

.merk .owl-item img:hover {
    opacity: 1;
}

.merk .owl-nav,
.merk .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.merk .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.merk .owl-dot.active {
    background-color: var(--blue) !important;
}

/* Services Section - Home Page
------------------------------*/
.produk-home-img img {
    width: 1000px;
}

/* Style Catalog */

.gambar-katalog {
    height: 100%;

    padding-top: 70px;
}

.gambar-katalog img {
    height: 100%;

    width: 100%;
}

.top-header-katalog {
    position: relative;
}

.top-header-katalog .overlay_bottom-katalog {
    position: absolute;

    bottom: 0;

    background-image: -webkit-gradient(
        linear,
        left top,

        left bottom,

        from(rgba(255, 255, 255, 0)),
        to(rgba(31, 30, 30, 0.3))
    );

    background-image: linear-gradient(
        rgba(255, 255, 255, 0),
        rgba(31, 30, 30, 0.3)
    );

    width: 100%;

    height: 100px;
}

.katalog {
    padding-top: 15px;

    padding-bottom: 50px;
}

#katalog {
    margin-top: -25px;

    padding-left: 50px;

    padding-right: 50px;

    position: relative;
}

#katalog .container {
    position: relative;

    margin-right: auto;

    margin-left: auto;

    padding-right: 15px;

    padding-left: 15px;

    padding-bottom: 50px;

    width: 100%;

    height: 100%;
}

#katalog .card-katalog {
    padding-bottom: 50px;

    background: var(--grey);

    border-radius: 20px;
}

.card-katalog {
    padding-left: 50px;

    padding-right: 50px;

    position: relative;

    display: -ms-flexbox;

    display: flex;

    -ms-flex-direction: column;

    flex-direction: column;

    min-width: 0;

    word-wrap: break-word;

    background-color: #f5f5f5;

    background-clip: border-box;

    border: none;

    border-radius: 20px;
}

.katalog-card-thumbnail .nama-produk {
    color: #fff;
    text-align: center;
    background-color: var(--blue);
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.5s, filter 1.5s ease-in-out;
    margin-top: 10px;
}

.katalog-card-thumbnail .nama-produk h2 {
    font-size: 20px;
}

.container .card-katalogs {
    display: block;

    margin: auto;

    border: none;

    border-radius: 20px;

    /* box-shadow: 5px 5px 15px rgba(100, 100, 100, 0.3); */
}
.katalog-card-thumbnail {
    transition: transform 0.5s, filter 1.5s ease-in-out;
}

.katalog-card-thumbnail img {
    border-radius: 20px;

    transition: transform 0.5s, filter 1.5s ease-in-out;

    background-color: aqua;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.katalog-card-thumbnail:hover {
    transform: scale(1.1);
}

@media only screen and (max-width: 480px) {
    #katalog {
        margin-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .card-katalogs {
        display: flex;
        width: 50%;
        padding: 10px 10px 10px 10px;
    }
}

/* End Style Catalog */
/* Services Section - Home Page
------------------------------*/
.services .service-item {
    display: flex;
    position: relative;
    padding-top: 40px;
}

.services .service-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray);
}

.services .service-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--blue);
    border-right: 5px solid var(--white);
}

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

.services .service-item .icon i {
    color: rgba(var(--dark-rgb), 0.7);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    background: rgba(var(--blue-rgb), 0.3);
    border-radius: 50px;
    z-index: 1;
    bottom: -15px;
    right: -15px;
    transition: 0.3s;
}

.services .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .service-item .title a {
    color: var(--text-color);
}

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

.services .service-item .description {
    line-height: 24px;
    font-size: 14px;
    color: var(--text-color);
}

/* tentangkami Section - Home Page
------------------------------*/
.tentangkami .tentangkami_item {
    color: var(--text-color);
}

.tentangkami .tentangkami_item + .tentangkami_item {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .tentangkami .tentangkami_item + .tentangkami_item {
        margin-top: 40px;
    }
}

.tentangkami .tentangkami_item h3 {
    color: var(--text-color);
    font-weight: 700;
    font-size: 26px;
}

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

.tentangkami .tentangkami_item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.tentangkami .tentangkami_item ul li:last-child {
    padding-bottom: 0;
}

.tentangkami .tentangkami_item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--blue);
}

.tentangkami .tentangkami_item img {
    border: 6px solid var(--inverse);
    /* box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1); */
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
        rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.tentangkami .tentangkami_item .features-img-bg {
    position: relative;
    min-height: 500px;
}

@media (max-width: 640px) {
    .tentangkami .tentangkami_item .features-img-bg {
        min-height: 300px;
    }
}

.tentangkami .tentangkami_item .features-img-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tentangkami .tentangkami_item .image-stack {
    display: grid;
    position: relative;
    grid-template-columns: repeat(12, 1fr);
}

.tentangkami .tentangkami_item .image-stack .stack-back {
    grid-column: 4/-1;
    grid-row: 1;
    width: 100%;
    z-index: 1;
}

.tentangkami .tentangkami_item .image-stack .stack-front {
    grid-row: 1;
    grid-column: 1 / span 8;
    margin-top: 20%;
    width: 100%;
    z-index: 2;
}

/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
    color: var(--text);
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    font-size: 15px;
    color: rgba(var(--dark-rgb), 0.7);
}

.faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
    color: var(--text);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--blue);
    padding-right: 5px;
}

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

.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-content p {
    margin-bottom: 0;
    overflow: hidden;
    color: var(--text-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-item .faq-toggle:hover {
    color: var(--blue);
}

.faq .faq-container .faq-active h3 {
    color: var(--blue);
}

.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);
    color: var(--blue);
}

/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: rgba(var(--dark-rgb), 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.call-to-action p {
    color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .form-control {
    background-color: var(--body);
}
.contact .form-control::-webkit-input-placeholder {
    color: var(--black);
}
.contact .info {
    width: 100%;
    background: var(--body);
}

.contact .info i {
    font-size: 20px;
    color: var(--blue);
    float: left;
    width: 44px;
    height: 44px;
    background: #effbf9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color-3);
}
.contact .info a {
    color: var(--text-color-3);
}
.contact .info a:hover {
    color: var(--text-color-3);
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--blue);
    color: var(--body);
}

.contact .php-email-form {
    width: 100%;
    background: var(--body);
}

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

.contact .php-email-form .error-message {
    display: none;
    color: var(--body);
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--body);
    background: var(--blue-dark);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--body);
    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 var(--blue-dark);
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

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

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

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

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

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

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

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

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