/* ==========================================================
   GLOBAL
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;

    font-family: 'Poppins', sans-serif;

    background: #ffffff;
    color: #222222;

    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root {
    --primary: #089c98;
    --primary-hover: #067874;

    --white: #ffffff;
    --black: #222222;

    --radius: 20px;
    --transition: .35s ease;
}


/* ==========================================================
   CONTAINER
========================================================== */

.container {
    width: 90%;
    max-width: 1400px;

    margin: 0 auto;
}


/* ==========================================================
   SECTIONS
========================================================== */

section {
    width: 100%;
    padding: 120px 0;
}


/* ==========================================================
   SECTION LABEL
========================================================== */

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: .95rem;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 20px;
}


/* ==========================================================
   BUTTON
========================================================== */

.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    padding: 16px 35px;

    border-radius: 50px;

    border: 2px solid var(--primary);

    background: var(--primary);
    color: #ffffff;

    font-weight: 600;

    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    color: #ffffff;

    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--primary);
}


/* ==========================================================
   NAVBAR
========================================================== */

#navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    z-index: 9999;

    transition: .35s ease;
}


/* NAVBAR WHEN SCROLLED */

#navbar.scrolled {
    background: rgba(8, 156, 152, .95);

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}


/* NAVBAR INNER */

.navbar {
    width: 90%;
    max-width: 1400px;

    height: 100%;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;
    align-items: center;
}


/* ==========================================================
   LOGO
========================================================== */

.logo {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 55px;
}


/* ==========================================================
   NAVIGATION
========================================================== */

nav {
    flex: 1;

    display: flex;

    justify-content: center;
}

.nav-links {
    display: flex;

    flex-direction: row;

    align-items: center;
    justify-content: center;

    gap: 50px;

    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition: .3s ease;
}

.nav-links a:hover {
    color: #089c98;
}


/* ==========================================================
   NAVBAR BUTTON
========================================================== */

.nav-btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    padding: 14px 28px;

    border: 2px solid #ffffff;

    border-radius: 50px;

    color: #ffffff;

    font-weight: 600;

    white-space: nowrap;

    transition: .35s ease;

    flex-shrink: 0;
}

.nav-btn:hover {
    background: #ffffff;
    color: #089c98;
}
/* ==========================================================
   HERO SECTION
========================================================== */

#hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 700px;

    overflow: visible;

    display: flex;

    justify-content: center;
    align-items: center;
}


/* ==========================================================
   HERO BOTTOM SHADOW
========================================================== */

#hero::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -80px;

    width: 100%;
    height: 80px;

    background: linear-gradient(
        to top,
        transparent,
        rgba(0, 0, 0, .08),
        rgba(0, 0, 0, .15),
        rgba(0, 0, 0, .25)
    );

    pointer-events: none;

    z-index: 5;
}


/* ==========================================================
   HERO VIDEO
========================================================== */

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}


/* ==========================================================
   HERO OVERLAY
========================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    z-index: 2;
}


/* ==========================================================
   HERO BOTTOM GRADIENT
========================================================== */

.hero-overlay::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 180px;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, .10) 40%,
        rgba(0, 0, 0, .25) 70%,
        rgba(0, 0, 0, .50) 100%
    );

    z-index: 4;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    position: relative;

    z-index: 3;

    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;
}


/* ==========================================================
   HERO TITLE
========================================================== */

.hero-content h1 {
    font-size: 5rem;

    font-weight: 800;

    line-height: 1.1;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.hero-content h1 span {
    color: #089c98;
}


/* ==========================================================
   HERO DESCRIPTION
========================================================== */

.hero-content p {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 50px;

    font-size: 1.2rem;

    font-weight: 300;

    line-height: 1.7;
}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}
/* ==========================================================
   LEARN MORE / ABOUT
========================================================== */

#learn-more {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 140px 0;
}


/* ==========================================================
   LEARN MORE BACKGROUND
========================================================== */

.learn-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* ==========================================================
   LEARN MORE OVERLAY
========================================================== */

.learn-overlay {
    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, .82);

    z-index: 1;
}


/* ==========================================================
   LEARN MORE CONTAINER
========================================================== */

.learn-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 100px;

    align-items: center;
}


/* ==========================================================
   LEARN MORE — LEFT CONTENT
========================================================== */

.learn-content {
    min-width: 0;
}


.learn-content h2 {
    font-size: 4rem;

    line-height: 1.1;

    font-weight: 600;

    margin-bottom: 35px;

    color: #222222;
}


.learn-content h2 span {
    color: #089c98;
}


.learn-content p {
    max-width: 700px;

    font-size: 1.15rem;

    line-height: 1.8;

    margin-bottom: 40px;

    color: #222222;
}


/* ==========================================================
   LEARN MORE — MAP
========================================================== */

.learn-map {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    min-width: 0;

    padding-left: 30px;
}


.learn-map img {
    display: block;

    width: 100%;
    max-width: 750px;

    height: auto;

    object-fit: contain;
}


/* ==========================================================
   WHY CHOOSE
   HIDDEN BY DEFAULT
========================================================== */

#why-choose {
    position: relative;

    width: 100%;

    overflow: hidden;

    max-height: 0;

    padding-top: 0;
    padding-bottom: 0;

    opacity: 0;
    visibility: hidden;

    margin: 0;

    transition:
        max-height .8s ease,
        opacity .4s ease,
        padding .8s ease,
        visibility .4s ease;
}


/* ==========================================================
   WHY CHOOSE
   VISIBLE WHEN ACTIVE
========================================================== */

#why-choose.active {
    max-height: 2000px;

    padding: 120px 0;

    opacity: 1;
    visibility: visible;
}


/* ==========================================================
   WHY CHOOSE BACKGROUND
========================================================== */

.why-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* ==========================================================
   WHY CHOOSE OVERLAY
========================================================== */

.why-overlay {
    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, .82);

    z-index: 1;
}


/* ==========================================================
   WHY CHOOSE CONTAINER
========================================================== */

#why-choose .container {
    position: relative;

    z-index: 2;
}


/* ==========================================================
   WHY CHOOSE CONTENT
========================================================== */

.learn-hidden {
    position: relative;

    z-index: 2;

    width: 100%;

    max-height: none;

    overflow: visible;
}


/* ==========================================================
   WHY CHOOSE TITLE
========================================================== */

.why-title {
    text-align: center;

    font-size: 3rem;

    line-height: 1.2;

    font-weight: 800;

    margin: 0 0 70px;

    color: #222222;
}


.why-title span {
    color: #089c98;
}


/* ==========================================================
   WHY CHOOSE GRID
========================================================== */

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;
}


/* ==========================================================
   WHY CHOOSE CARDS
========================================================== */

.why-card {
    min-width: 0;

    padding: 40px 30px;

    border: none;

    border-radius: 25px;

    text-align: center;

    color: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* ==========================================================
   CARD COLORS
========================================================== */

.card-1 {
    background: #129e9d;
}


.card-2 {
    background: #b8c975;
}


.card-3 {
    background: #9dd1e5;
}


.card-4 {
    background: #129e9d;
}


/* ==========================================================
   CARD TITLE
========================================================== */

.why-card h3 {
    color: #ffffff;

    font-size: 1.4rem;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 15px;
}


/* ==========================================================
   CARD DESCRIPTION
========================================================== */

.why-card p {
    color: #ffffff;

    font-size: 1rem;

    line-height: 1.7;

    margin: 0;
}


/* ==========================================================
   CARD ICON
========================================================== */

.why-card i {
    display: block;

    font-size: 55px;

    color: #ffffff;

    margin-bottom: 25px;
}


/* ==========================================================
   CARD HOVER
========================================================== */

.why-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .15);
}
/* ==========================================================
   SERVICES
========================================================== */

#services {
    position: relative;

    width: 100%;

    overflow: visible;

    padding: 120px 0 150px;

    background: #d1ecf4;
}


/* ==========================================================
   SERVICES TOP SHADOW
========================================================== */

#services::before {
    content: "";

    position: absolute;

    top: -60px;
    left: 0;

    width: 100%;
    height: 60px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .18),
        rgba(0, 0, 0, .08),
        transparent
    );

    pointer-events: none;

    z-index: 2;
}


/* ==========================================================
   SERVICES BOTTOM SHADOW
========================================================== */

#services::after {
    content: "";

    position: absolute;

    bottom: -60px;
    left: 0;

    width: 100%;
    height: 60px;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .18),
        rgba(0, 0, 0, .08),
        transparent
    );

    pointer-events: none;

    z-index: 2;
}


/* ==========================================================
   SERVICES CONTAINER
========================================================== */

#services .container {
    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    padding-left: 40px;
    padding-right: 40px;
}


/* ==========================================================
   SERVICES LABEL
========================================================== */

#services .section-label {
    display: block;

    text-align: center;

    color: #089c98;

    font-size: .95rem;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 20px;
}


/* ==========================================================
   SERVICES TITLE
========================================================== */

#services h2 {
    text-align: center;

    font-size: 3.4rem;

    line-height: 1.2;

    font-weight: 800;

    color: #222222;

    margin-bottom: 70px;
}


/* ==========================================================
   SERVICES SLIDER WRAPPER
========================================================== */

.services-slider {
    position: relative;

    width: 100%;
}


/* ==========================================================
   SWIPER
========================================================== */

.serviceSwiper {
    width: 90%;

    margin: 0 auto;

    overflow: visible;

    padding: 20px 0 70px;
}


/* ==========================================================
   SWIPER SLIDES
========================================================== */

.swiper-slide {
    display: flex;

    align-items: stretch;

    height: auto;
}


/* ==========================================================
   SERVICE CARD
========================================================== */

.service-card {
    display: flex;

    flex-direction: column;

    width: 100%;

    height: 600px;

    padding: 20px;

    border-radius: 24px;

    background: #089c98;

    overflow: hidden;
}


/* ==========================================================
   SERVICE IMAGE
========================================================== */

.service-image {
    position: relative;

    width: 100%;

    height: 440px;

    margin-bottom: 22px;

    border-radius: 18px;

    overflow: hidden;

    cursor: pointer;
}


/* ==========================================================
   SERVICE IMAGES
========================================================== */

.service-image img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity .4s ease,
        transform .4s ease;
}


/* ==========================================================
   DEFAULT IMAGE
========================================================== */

.image-default {
    opacity: 1;

    z-index: 1;
}


/* ==========================================================
   HOVER IMAGE
========================================================== */

.image-hover {
    opacity: 0;

    z-index: 2;
}


/* ==========================================================
   SERVICE CARD HOVER
========================================================== */

.service-card:hover .image-default {
    opacity: 0;

    transform: scale(1.05);
}


.service-card:hover .image-hover {
    opacity: 1;

    transform: scale(1.05);
}


/* ==========================================================
   SERVICE INFORMATION
========================================================== */

.service-info {
    padding: 0 10px 10px;
}


.service-info h3 {
    color: #ffffff;

    font-size: 2.3rem;

    font-weight: 700;

    line-height: 1.25;

    margin-bottom: 18px;
}


.service-info p {
    color: #ffffff;

    font-size: 1.15rem;

    line-height: 1.7;

    margin: 0;
}


/* ==================================================
   SWIPER ARROWS
================================================== */

.swiper-button-prev,
.swiper-button-next {
    width: 60px;

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: transparent;

    color: #089c98 !important;

    font-size: 55px;

    font-weight: bold;

    z-index: 100;
}


/* Remove Swiper's default arrow */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;

    content: none !important;
}


/* Remove SVG/icon */
.swiper-button-prev i,
.swiper-button-next i,
.swiper-button-prev svg,
.swiper-button-next svg {
    display: none !important;
}


/* ==================================================
   CUSTOM ARROWS
================================================== */

.swiper-button-prev::before,
.swiper-button-next::before {
    font-size: 28px;

    font-weight: 700;

    color: #c41010;
}

/* ==========================================================
   SERVICE IMAGE HOVER
========================================================== */

.service-img-hover {
    transform: scale(1.05);

    transition: 1s ease;
}


.service-card:hover .service-img-hover {
    transform: scale(1);

    transition: 1s ease;
}
/* ==========================================================
   GALLERY MODAL
========================================================== */

.gallery-modal {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        background .35s ease,
        visibility .35s ease;

    z-index: 999999;
}


/* ==========================================================
   ACTIVE GALLERY
========================================================== */

.gallery-modal.active {
    opacity: 1;

    visibility: visible;

    background: rgba(0, 0, 0, .92);
}


/* ==========================================================
   GALLERY IMAGE
========================================================== */

.gallery-image {
    display: block;

    width: auto;
    height: auto;

    max-width: 85vw;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .4);

    opacity: 1;

    transform: scale(1);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


/* ==========================================================
   GALLERY CLOSE BUTTON
========================================================== */

.gallery-close {
    position: absolute;

    top: 25px;
    right: 35px;

    display: flex;

    justify-content: center;
    align-items: center;

    width: 55px;
    height: 55px;

    color: #ffffff;

    font-size: 45px;

    line-height: 1;

    cursor: pointer;

    z-index: 1000000;

    transition:
        color .3s ease,
        transform .3s ease;
}


.gallery-close:hover {
    color: #089c98;

    transform: rotate(90deg);
}


/* ==========================================================
   GALLERY NAVIGATION BUTTONS
========================================================== */

.gallery-prev,
.gallery-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 70px;
    height: 70px;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 0;

    border: none;
    outline: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 40px;

    font-weight: bold;

    cursor: pointer;

    z-index: 1000000;

    transition:
        background .3s ease,
        transform .3s ease;
}


/* ==========================================================
   PREVIOUS BUTTON
========================================================== */

.gallery-prev {
    left: 50px;
}


/* ==========================================================
   NEXT BUTTON
========================================================== */

.gallery-next {
    right: 50px;
}


/* ==========================================================
   ARROW HOVER
========================================================== */

.gallery-prev:hover,
.gallery-next:hover {
    background: #089c98;
}


/* ==========================================================
   ARROW SPANS
========================================================== */

.gallery-prev span,
.gallery-next span {
    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 42px;

    line-height: 1;
}


/* ==========================================================
   GALLERY WRAPPER
========================================================== */

.gallery-wrapper {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;
}


/* ==========================================================
   GALLERY IMAGE TRANSITION
========================================================== */

.gallery-image.gallery-changing {
    opacity: 0;

    transform: scale(.97);
}
/* ==========================================================
   CONTACT
========================================================== */

#contact {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 140px 0;

    background: #ffffff;
}


/* ==========================================================
   CONTACT BACKGROUND
========================================================== */

.contact-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}


.contact-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ==========================================================
   CONTACT OVERLAY
========================================================== */

.contact-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, .80);

    z-index: 1;
}


/* ==========================================================
   CONTACT CONTAINER
========================================================== */

.contact-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1fr) 520px;

    gap: 80px;

    align-items: center;
}


/* ==========================================================
   CONTACT LEFT SIDE
========================================================== */

.contact-left {
    min-width: 0;
}


.contact-left h2 {
    margin: 20px 0 30px;

    font-size: 4rem;

    font-weight: 800;

    line-height: 1.1;

    color: #222222;
}


.contact-left h2 span {
    color: #089c98;
}


.contact-left p {
    max-width: 550px;

    font-size: 1.05rem;

    line-height: 1.9;

    color: #222222;
}


/* ==========================================================
   CONTACT RIGHT SIDE
========================================================== */

.contact-right {
    width: 100%;

    padding: 40px;

    border-radius: 25px;

    background: #b0c273;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .12);
}


/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-right form {
    display: flex;

    flex-direction: column;

    gap: 18px;

    width: 100%;
}


/* ==========================================================
   INPUTS / TEXTAREA
========================================================== */

.contact-right input,
.contact-right textarea {
    width: 100%;

    padding: 18px;

    border: none;

    outline: none;

    border-radius: 12px;

    background: #ffffff;

    color: #222222;

    font-size: 15px;

    font-family: "Poppins", sans-serif;

    transition:
        box-shadow .3s ease,
        transform .3s ease;
}


/* ==========================================================
   INPUT FOCUS
========================================================== */

.contact-right input:focus,
.contact-right textarea:focus {
    box-shadow:
        0 0 0 3px rgba(8, 156, 152, .25);
}


/* ==========================================================
   TEXTAREA
========================================================== */

.contact-right textarea {
    min-height: 150px;

    resize: vertical;
}


/* ==========================================================
   CONTACT BUTTON
========================================================== */

.contact-right button {
    width: 100%;

    height: 60px;

    border: none;

    border-radius: 12px;

    background: #ffffff;

    color: #222222;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


/* ==========================================================
   CONTACT BUTTON HOVER
========================================================== */

.contact-right button:hover {
    background: #089c98;

    color: #ffffff;

    transform: translateY(-2px);
}
/* ==========================================================
   SISTER COMPANY
========================================================== */

#sister-company {
    position: relative;

    width: 100%;

    padding: 140px 0;

    background: #ffffff;

    overflow: hidden;
}


/* ==========================================================
   SISTER COMPANY CONTAINER
========================================================== */

#sister-company .container {
    position: relative;

    z-index: 1;
}


/* ==========================================================
   SISTER COMPANY CARD
========================================================== */

.sister-card {
    margin-top: 60px;

    width: 100%;

    padding: 60px;

    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    gap: 60px;

    align-items: center;

    background: #d9d9d9;

    border-radius: 30px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .10);
}


/* ==========================================================
   SISTER COMPANY LOGO
========================================================== */

.sister-logo {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}


.sister-logo img {
    width: 220px;

    max-width: 100%;

    height: auto;

    display: block;

    object-fit: contain;
}


/* ==========================================================
   SISTER COMPANY CONTENT
========================================================== */

.sister-content {
    min-width: 0;
}


.sister-content h2 {
    margin: 0 0 20px;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;

    color: #1b3d8d;
}


/* ==========================================================
   SISTER COMPANY TAG
========================================================== */

.sister-tag,
.sister-content > span {
    display: inline-block;

    padding: 10px 20px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: #e63946;

    color: #ffffff;

    font-size: .95rem;

    font-weight: 600;
}


/* ==========================================================
   SISTER COMPANY DESCRIPTION
========================================================== */

.sister-content p {
    margin: 0 0 30px;

    max-width: 850px;

    color: #222222;

    font-size: 1rem;

    line-height: 1.8;
}


/* ==========================================================
   SISTER COMPANY SERVICES
========================================================== */

.sister-services {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px 30px;

    margin-bottom: 35px;
}


.sister-services div {
    color: #222222;

    font-size: 1rem;

    font-weight: 500;
}


/* ==========================================================
   VISIT WEBSITE BUTTON
========================================================== */

.visit-btn {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 15px 35px;

    border-radius: 50px;

    background: #e63946;

    color: #ffffff;

    font-weight: 700;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* ==========================================================
   VISIT BUTTON HOVER
========================================================== */

.visit-btn:hover {
    background: #c92f3b;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(230, 57, 70, .25);
}


/* ==========================================================
   FOOTER SISTER CARD
   Keeps the footer's sister-company card consistent
========================================================== */

#footer .sister-card {
    margin-top: 80px;
}
/* ==========================================================
   FOOTER
========================================================== */

#footer {
    position: relative;

    width: 100%;

    margin-top: 60px;

    padding: 80px 0 30px;

    background: #089c98;

    color: #ffffff;
}


/* ==========================================================
   FOOTER TOP SHADOW
========================================================== */

#footer::before {
    content: "";

    position: absolute;

    top: -60px;
    left: 0;

    width: 100%;
    height: 60px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .35),
        rgba(0, 0, 0, .20),
        rgba(0, 0, 0, .08),
        transparent
    );

    pointer-events: none;
}


/* ==========================================================
   FOOTER TOP
========================================================== */

.footer-top {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1.5fr;

    gap: 50px;

    color: #ffffff;
}


/* ==========================================================
   FOOTER COLUMNS
========================================================== */

.footer-col {
    min-width: 0;
}


.footer-col h3 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 22px;

    font-weight: 700;
}


/* ==========================================================
   FOOTER LOGO
========================================================== */

.footer-logo {
    display: block;

    width: 120px;

    max-width: 100%;

    height: auto;

    margin-bottom: 25px;
}


/* ==========================================================
   FOOTER LIST
========================================================== */

.footer-col ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-col li {
    margin-bottom: 15px;

    list-style: none;

    color: #ffffff;
}


/* ==========================================================
   FOOTER LINKS
========================================================== */

.footer-col a {
    color: #ffffff;

    transition:
        opacity .3s ease,
        color .3s ease;
}


.footer-col a:hover {
    color: #ffffff;

    opacity: .75;
}


/* ==========================================================
   FOOTER CONTACT
========================================================== */

.footer-col p {
    margin: 0 0 12px;

    color: #ffffff;

    line-height: 1.7;
}


/* ==========================================================
   FOOTER MAP
========================================================== */

.map-container {
    width: 100%;

    height: 180px;

    margin-top: 20px;

    overflow: hidden;

    border-radius: 16px;
}


.map-container iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: none;
}


/* ==========================================================
   FOOTER SISTER COMPANY CARD
========================================================== */

#footer .sister-card {
    margin-top: 80px;

    width: 100%;

    padding: 60px;

    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    gap: 60px;

    align-items: center;

    background: #d9d9d9;

    border-radius: 30px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .10);
}


/* ==========================================================
   FOOTER SISTER LOGO
========================================================== */

#footer .sister-logo {
    display: flex;

    justify-content: center;

    align-items: center;
}


#footer .sister-logo img {
    width: 220px;

    max-width: 100%;

    height: auto;

    object-fit: contain;
}


/* ==========================================================
   FOOTER SISTER CONTENT
========================================================== */

#footer .sister-content {
    min-width: 0;
}


#footer .sister-content h2 {
    margin: 0 0 20px;

    color: #1b3d8d;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}


/* ==========================================================
   FOOTER SISTER TAG
========================================================== */

#footer .sister-content > span {
    display: inline-block;

    padding: 10px 20px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: #e63946;

    color: #ffffff;

    font-size: .95rem;

    font-weight: 600;
}


/* ==========================================================
   FOOTER SISTER DESCRIPTION
========================================================== */

#footer .sister-content p {
    max-width: 850px;

    margin: 0 0 30px;

    color: #222222;

    line-height: 1.8;
}


/* ==========================================================
   FOOTER SISTER SERVICES
========================================================== */

#footer .sister-services {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px 30px;

    margin-bottom: 35px;
}


#footer .sister-services div {
    color: #222222;

    font-size: 1rem;

    font-weight: 500;
}


/* ==========================================================
   FOOTER VISIT BUTTON
========================================================== */

#footer .visit-btn {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 15px 35px;

    border-radius: 50px;

    background: #e63946;

    color: #ffffff;

    font-weight: 700;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


#footer .visit-btn:hover {
    background: #c92f3b;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(230, 57, 70, .25);
}


/* ==========================================================
   COPYRIGHT
========================================================== */

.copyright {
    margin-top: 60px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .25);

    text-align: center;

    color: #ffffff;

    font-size: .9rem;

    line-height: 1.6;
}
/* ==========================================================
   PART 9
   GLOBAL RESPONSIVE DESIGN
========================================================== */


/* ==========================================================
   LARGE LAPTOPS / SMALL DESKTOPS
   992px - 1199px
========================================================== */

@media (max-width: 1199px) {

    /* ------------------------------
       GLOBAL
    ------------------------------ */

    .container {
        width: 92%;
        max-width: 1200px;

        padding-left: 20px;
        padding-right: 20px;
    }

    section {
        padding-top: 110px;
        padding-bottom: 110px;
    }


    /* ------------------------------
       NAVBAR
    ------------------------------ */

    .navbar {
        width: 92%;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 15px;
    }


    /* ------------------------------
       HERO
    ------------------------------ */

    .hero-content {
        width: 90%;
        max-width: 1000px;
    }

    .hero-content h1 {
        font-size: 4.2rem;
    }

    .hero-content p {
        max-width: 750px;

        font-size: 1.1rem;
    }


    /* ------------------------------
       LEARN MORE
    ------------------------------ */

    #learn-more {
        padding: 110px 0;
    }

    .learn-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .learn-content h2 {
        font-size: 3.3rem;
    }

    .learn-content p {
        font-size: 1rem;
    }

    .learn-map {
        padding-left: 10px;
    }

    .learn-map img {
        max-width: 600px;
    }


    /* ------------------------------
       WHY CHOOSE
    ------------------------------ */

    #why-choose.active {
        padding: 100px 0;
    }

    .why-title {
        font-size: 2.8rem;

        margin-bottom: 55px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }


    /* ------------------------------
       SERVICES
    ------------------------------ */

    #services {
        padding: 110px 0 140px;
    }

    #services .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #services h2 {
        font-size: 3.2rem;

        margin-bottom: 60px;
    }

    .serviceSwiper {
        width: 95%;
    }

    .service-card {
        height: 570px;
    }

    .service-image {
        height: 390px;
    }

    .service-info h3 {
        font-size: 2rem;
    }

    .service-info p {
        font-size: 1rem;
    }


    /* ------------------------------
       CONTACT
    ------------------------------ */

    #contact {
        padding: 110px 0;
    }

    .contact-container {
        grid-template-columns:
            minmax(0, 1fr)
            450px;

        gap: 50px;
    }

    .contact-left h2 {
        font-size: 3.3rem;
    }

    .contact-right {
        padding: 35px;
    }


    /* ------------------------------
       SISTER COMPANY
    ------------------------------ */

    #sister-company {
        padding: 110px 0;
    }

    .sister-card {
        grid-template-columns: 200px minmax(0, 1fr);

        gap: 40px;

        padding: 50px;
    }

    .sister-logo img {
        width: 190px;
    }

    .sister-content h2 {
        font-size: 36px;
    }


    /* ------------------------------
       FOOTER
    ------------------------------ */

    .footer-top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px;
    }

    #footer .sister-card {
        grid-template-columns: 200px minmax(0, 1fr);

        gap: 40px;

        padding: 50px;
    }

}


/* ==========================================================
   TABLETS
   768px - 991px
========================================================== */

@media (max-width: 991px) {

    /* ------------------------------
       GLOBAL
    ------------------------------ */

    .container {
        width: 94%;

        padding-left: 15px;
        padding-right: 15px;
    }

    section {
        padding-top: 90px;
        padding-bottom: 90px;
    }


    /* ------------------------------
       NAVBAR
    ------------------------------ */

    #navbar {
        height: 80px;
    }

    .navbar {
        width: 94%;
    }

    .logo img {
        height: 48px;
    }

    nav {
        flex: 1;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-btn {
        padding: 11px 20px;

        font-size: 14px;
    }


    /* ------------------------------
       HERO
    ------------------------------ */

    #hero {
        min-height: 100vh;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1rem;

        margin-bottom: 35px;
    }


    /* ------------------------------
       LEARN MORE
    ------------------------------ */

    #learn-more {
        padding: 90px 0;
    }

    .learn-container {
        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;
    }

    .learn-content {
        width: 100%;
        max-width: 750px;

        margin: 0 auto;
    }

    .learn-content h2 {
        font-size: 3rem;
    }

    .learn-content p {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .learn-map {
        width: 100%;

        justify-content: center;

        padding-left: 0;
    }

    .learn-map img {
        width: 80%;

        max-width: 550px;
    }


    /* ------------------------------
       WHY CHOOSE
    ------------------------------ */

    #why-choose.active {
        padding: 90px 0;
    }

    .why-title {
        font-size: 2.6rem;

        margin-bottom: 50px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }

    .why-card {
        padding: 35px 25px;
    }


    /* ------------------------------
       SERVICES
    ------------------------------ */

    #services {
        padding: 90px 0 120px;
    }

    #services h2 {
        font-size: 2.8rem;

        margin-bottom: 50px;
    }

    #services .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .serviceSwiper {
        width: 92%;
    }

    .service-card {
        height: 540px;
    }

    .service-image {
        height: 340px;
    }

    .service-info h3 {
        font-size: 1.8rem;
    }

    .service-info p {
        font-size: .95rem;
    }


    /* ------------------------------
       CONTACT
    ------------------------------ */

    #contact {
        padding: 90px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left h2 {
        font-size: 3rem;
    }

    .contact-left p {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .contact-right {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;
    }


    /* ------------------------------
       SISTER COMPANY
    ------------------------------ */

    #sister-company {
        padding: 90px 0;
    }

    .sister-card {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px;

        text-align: center;
    }

    .sister-logo {
        width: 100%;
    }

    .sister-logo img {
        width: 190px;
    }

    .sister-content {
        width: 100%;
    }

    .sister-content h2 {
        font-size: 34px;
    }

    .sister-content p {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .sister-services {
        max-width: 600px;

        margin-left: auto;
        margin-right: auto;
    }


    /* ------------------------------
       FOOTER
    ------------------------------ */

    #footer {
        padding: 70px 0 30px;
    }

    .footer-top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px;
    }

    #footer .sister-card {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px;

        text-align: center;
    }

    #footer .sister-logo img {
        width: 190px;
    }

    #footer .sister-content p {
        margin-left: auto;
        margin-right: auto;
    }

    #footer .sister-services {
        max-width: 600px;

        margin-left: auto;
        margin-right: auto;
    }

}


/* ==========================================================
   MOBILE
   481px - 767px
========================================================== */

@media (max-width: 767px) {

    /* ------------------------------
       GLOBAL
    ------------------------------ */

    .container {
        width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }

    section {
        width: 100%;

        padding-top: 75px;
        padding-bottom: 75px;
    }


    /* ------------------------------
       NAVBAR
    ------------------------------ */

    #navbar {
        height: 70px;
    }

    .navbar {
        width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }

    .logo img {
        height: 42px;
    }

    /*
       If you already have a mobile
       hamburger menu in your HTML/JS,
       its CSS can be added here.
    */

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-btn {
        padding: 9px 15px;

        font-size: 12px;
    }


    /* ------------------------------
       HERO
    ------------------------------ */

    #hero {
        min-height: 100svh;

        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        width: 100%;
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 2.35rem;

        line-height: 1.15;

        margin-bottom: 22px;
    }

    .hero-content p {
        font-size: .9rem;

        line-height: 1.65;

        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;

        max-width: 260px;
    }


    /* ------------------------------
       SECTION LABEL
    ------------------------------ */

    .section-label {
        font-size: .75rem;

        letter-spacing: 2.5px;
    }


    /* ------------------------------
       LEARN MORE
    ------------------------------ */

    #learn-more {
        padding: 75px 0;
    }

    .learn-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .learn-content {
        text-align: center;
    }

    .learn-content h2 {
        font-size: 2.25rem;

        line-height: 1.15;

        margin-bottom: 25px;
    }

    .learn-content p {
        font-size: .92rem;

        line-height: 1.7;

        margin-bottom: 30px;
    }

    .learn-content p br {
        display: none;
    }

    .learn-map {
        justify-content: center;

        padding: 0;
    }

    .learn-map img {
        width: 100%;

        max-width: 450px;
    }


    /* ------------------------------
       WHY CHOOSE
    ------------------------------ */

    #why-choose.active {
        padding: 75px 0;
    }

    .why-title {
        font-size: 2rem;

        line-height: 1.2;

        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .why-card {
        width: 100%;

        padding: 35px 25px;
    }

    .why-card i {
        font-size: 45px;

        margin-bottom: 18px;
    }

    .why-card h3 {
        font-size: 1.3rem;
    }

    .why-card p {
        font-size: .92rem;

        line-height: 1.6;
    }


    /* ------------------------------
       SERVICES
    ------------------------------ */

    #services {
        padding: 75px 0 110px;
    }

    #services .container {
        width: 100%;

        padding-left: 15px;
        padding-right: 15px;
    }

    #services h2 {
        font-size: 2.2rem;

        line-height: 1.2;

        margin-bottom: 40px;
    }

    #services h2 br {
        display: none;
    }

    .services-slider {
        width: 100%;
    }

    .serviceSwiper {
        width: 100%;

        padding-top: 10px;
    }

    .swiper-slide {
        width: 100%;
    }

    .service-card {
        width: 100%;

        height: auto;

        min-height: 480px;

        padding: 15px;

        border-radius: 20px;
    }

    .service-image {
        width: 100%;

        height: 270px;

        margin-bottom: 18px;

        border-radius: 15px;
    }

    .service-info {
        padding: 0 10px 20px;
    }

    .service-info h3 {
        font-size: 1.6rem;

        line-height: 1.2;

        margin-bottom: 10px;
    }

    .service-info p {
        font-size: .92rem;

        line-height: 1.6;
    }


    /* Hide desktop arrows on phones */

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }


    /* ------------------------------
       SERVICE PAGINATION
    ------------------------------ */

    .services-slider .swiper-pagination {
        bottom: -30px !important;
    }

    .services-slider .swiper-pagination-bullet {
        width: 9px !important;
        height: 9px !important;
    }

    .services-slider .swiper-pagination-bullet-active {
        width: 25px !important;
    }


    /* ------------------------------
       GALLERY
    ------------------------------ */

    .gallery-image {
        max-width: 90vw;

        max-height: 75vh;

        border-radius: 12px;
    }

    .gallery-close {
        top: 18px;

        right: 18px;

        width: 45px;
        height: 45px;

        font-size: 38px;
    }

    .gallery-prev,
    .gallery-next {
        width: 50px;
        height: 50px;

        font-size: 30px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-prev span,
    .gallery-next span {
        font-size: 30px;
    }


    /* ------------------------------
       CONTACT
    ------------------------------ */

    #contact {
        padding: 75px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-left {
        text-align: center;
    }

    .contact-left h2 {
        font-size: 2.3rem;

        line-height: 1.15;

        margin: 15px 0 25px;
    }

    .contact-left p {
        font-size: .92rem;

        line-height: 1.7;
    }

    .contact-right {
        width: 100%;

        padding: 25px 20px;

        border-radius: 20px;
    }

    .contact-right input,
    .contact-right textarea {
        padding: 15px;

        font-size: 14px;
    }

    .contact-right textarea {
        min-height: 130px;
    }

    .contact-right button {
        height: 55px;
    }


    /* ------------------------------
       SISTER COMPANY
    ------------------------------ */

    #sister-company {
        padding: 75px 0;
    }

    .sister-card {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 30px 20px;

        border-radius: 22px;

        text-align: center;
    }

    .sister-logo img {
        width: 170px;
    }

    .sister-content h2 {
        font-size: 2rem;

        line-height: 1.2;
    }

    .sister-tag,
    .sister-content > span {
        font-size: .85rem;

        padding: 8px 16px;
    }

    .sister-content p {
        font-size: .92rem;

        line-height: 1.7;
    }

    .sister-services {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-bottom: 25px;
    }

    .sister-services div {
        font-size: .92rem;
    }

    .visit-btn {
        width: 100%;

        max-width: 250px;
    }


    /* ------------------------------
       FOOTER
    ------------------------------ */

    #footer {
        padding: 60px 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .footer-col {
        width: 100%;
    }

    .footer-logo {
        width: 140px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-col h3 {
        font-size: 1.15rem;
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
        font-size: .92rem;
    }

    #footer .sister-card {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 40px;

        padding: 30px 20px;

        border-radius: 22px;

        text-align: center;
    }

    #footer .sister-logo img {
        width: 170px;
    }

    #footer .sister-content h2 {
        font-size: 2rem;
    }

    #footer .sister-services {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    #footer .visit-btn {
        width: 100%;

        max-width: 250px;
    }

    .copyright {
        margin-top: 35px;

        padding-top: 20px;

        font-size: .8rem;
    }

}


/* ==========================================================
   SMALL PHONES
   480px AND BELOW
========================================================== */

@media (max-width: 480px) {

    /* ------------------------------
       GLOBAL
    ------------------------------ */

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* ------------------------------
       NAVBAR
    ------------------------------ */

    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo img {
        height: 38px;
    }


    /* ------------------------------
       HERO
    ------------------------------ */

    .hero-content h1 {
        font-size: 1.95rem;
    }

    .hero-content p {
        font-size: .85rem;
    }


    /* ------------------------------
       LEARN MORE
    ------------------------------ */

    .learn-content h2 {
        font-size: 1.95rem;
    }

    .learn-content p {
        font-size: .88rem;
    }


    /* ------------------------------
       WHY CHOOSE
    ------------------------------ */

    .why-title {
        font-size: 1.75rem;
    }


    /* ------------------------------
       SERVICES
    ------------------------------ */

    #services h2 {
        font-size: 1.95rem;
    }

    .service-card {
        min-height: 450px;
    }

    .service-image {
        height: 240px;
    }

    .service-info h3 {
        font-size: 1.45rem;
    }


    /* ------------------------------
       CONTACT
    ------------------------------ */

    .contact-left h2 {
        font-size: 2rem;
    }

    .contact-right {
        padding: 20px 15px;
    }


    /* ------------------------------
       SISTER COMPANY
    ------------------------------ */

    .sister-content h2 {
        font-size: 1.7rem;
    }

    .sister-logo img {
        width: 150px;
    }


    /* ------------------------------
       FOOTER
    ------------------------------ */

    #footer .sister-content h2 {
        font-size: 1.7rem;
    }

    #footer .sister-logo img {
        width: 150px;
    }

}

/* =========================================
   ADQUARTERS SUCCESS MODAL
========================================= */

#successModal.contact-modal {

    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    box-sizing: border-box !important;

    background: rgba(0, 0, 0, 0.72) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    z-index: 2147483647 !important;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


#successModal.contact-modal.show {

    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;
}


/* MODAL WHITE BOX */

#successModal .contact-modal-content {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    max-width: 440px !important;

    height: auto !important;

    min-height: 0 !important;

    margin: auto !important;

    padding: 42px 32px 32px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border-radius: 18px !important;

    text-align: center !important;

    color: #222222 !important;

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4) !important;

    transform: translateY(-15px) !important;

    transition: transform 0.25s ease;
}


#successModal.contact-modal.show
.contact-modal-content {

    transform: translateY(0) !important;
}


/* CLOSE BUTTON */

#successModal .modal-close {

    position: absolute !important;

    top: 10px !important;
    right: 12px !important;

    width: 35px !important;
    height: 35px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;

    border-radius: 50% !important;

    background: transparent !important;

    color: #222222 !important;

    font-size: 28px !important;

    line-height: 35px !important;

    cursor: pointer !important;
}


#successModal .modal-close:hover {

    background: #eeeeee !important;
}


/* GREEN CHECKMARK */

#successModal .modal-check {

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 70px !important;
    height: 70px !important;

    margin: 0 auto 20px !important;

    border-radius: 50% !important;

    background: #089c98 !important;

    color: #ffffff !important;

    font-size: 42px !important;

    font-weight: 700 !important;
}


/* MODAL TITLE */

#successModal h3 {

    display: block !important;

    margin: 0 0 12px !important;

    color: #222222 !important;

    font-size: 27px !important;

    line-height: 1.2 !important;

    font-weight: 700 !important;
}


/* MODAL TEXT */

#successModal p {

    display: block !important;

    margin: 0 0 25px !important;

    color: #555555 !important;

    font-size: 16px !important;

    line-height: 1.6 !important;
}


/* OKAY BUTTON */

#successModal .modal-ok-button {

    display: block !important;

    width: 100% !important;

    padding: 15px 20px !important;

    margin: 0 !important;

    border: none !important;

    border-radius: 10px !important;

    background: #089c98 !important;

    color: #ffffff !important;

    font-size: 16px !important;

    font-weight: 700 !important;

    cursor: pointer !important;
}


#successModal .modal-ok-button:hover {

    background: #067d7a !important;
}


/* MOBILE */

@media (max-width: 600px) {

    #successModal .contact-modal-content {

        max-width: 340px !important;

        padding: 38px 24px 25px !important;
    }


    #successModal h3 {

        font-size: 23px !important;
    }


    #successModal p {

        font-size: 14px !important;
    }

}