/********** Template CSS **********/
:root {
    --primary: #17ae54;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}

:root {
    --primary: #3498DB;
    --secondary: #2980B9;
    --accent: #85C1E9;
    --bg-light: #EBF5FB;
    --text-dark: #154360;
    --text-light: #FFFFFF;
    --shadow-soft: 0 4px 16px rgba(52, 152, 219, 0.15);
    --shadow-hover: 0 8px 32px rgba(52, 152, 219, 0.25);
}

/* Base & Global Fonts */


:root {
    --primary-color: #3498db;
    /* Blue */
    --secondary-color: #e74c3c;
    /* Red */
    --background-light: #f4f7f9;
    --text-dark: #2c3e50;
    --text-subtle: #7f8c8d;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}



.morrenzin-site-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.GRRDuzBnW9 {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

/* Hero Header */
.UEfXJssNBL {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/bGojIGIP0B.jpg') no-repeat center center/cover;
}

.UEfXJssNBL::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.hero-ac-content {
    text-align: center;
}

.hero-ac-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.hero-ac-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease-out;
}

.hero-ac-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    animation: fadeInDown 1.4s ease-out;
}

.KD1uQzRaAp {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.6s ease-out;
}

.ac-btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ac-btn.primary {
    background-color: #17ae54;
    color: white;
    border: 2px solid #17ae54;
}

.ac-btn.primary:hover {
    background-color: white;
    color: #17ae54;
    transform: translateY(-3px);
}

.ac-btn.secondary {
    background-color: white;
    color: #17ae54;
    border: 2px solid white;
}

.ac-btn.secondary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* About Section */
.ac-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ac-content-block.reverse-layout {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
    /* Flip content for visual effect */
}

.ac-content-block.reverse-layout>* {
    direction: ltr;
    /* Reset text direction */
}

.ac-text-zone {
    padding: 20px;
}

.ac-text-zone h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    margin-bottom: 25px;
}

.ac-text-zone h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: #17ae54;
    margin-top: 10px;
}

.ac-text-zone p {
    font-size: 1.05rem;
    color: var(--text-subtle);
    margin-bottom: 20px;
}

.ac-image-box {
    position: relative;
    z-index: 1;
}

.ac-image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.ac-image-box img:hover {
    transform: scale(1.02);
}

.ac-about-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.ac-about-list h6 {
    font-weight: 600;
    color: #17ae54;
    margin-bottom: 0;
    position: relative;
}

.ac-about-list h6::before {
    content: '\2713';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #17ae54;
    margin-right: 8px;
}

/* Features Section */
.features-intro-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border-left: 5px solid #17ae54;
    border-top: 5px solid #17ae54;
}

.features-intro-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #17ae54;
    border-top: 5px solid #17ae54;
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #17ae54;
}

.feature-card h5 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #17ae54;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-subtle);
}

/* Case/Blog Section */
.case-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-blog-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.case-blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-blog-image {
    height: 250px;
    overflow: hidden;
}

.case-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-blog-item:hover .case-blog-image img {
    transform: scale(1.1);
}

.onVSsUcxKm {
    padding: 25px;
    flex-grow: 1;
    border-left: 5px solid #17ae54;
    border-top: 5px solid #17ae54;
}

.onVSsUcxKm h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #17ae54;
}

.onVSsUcxKm p {
    font-size: 0.95rem;
    color: var(--text-subtle);
}

/* Media Queries */
@media (max-width: 992px) {
    .ac-content-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ac-content-block.reverse-layout {
        direction: ltr;
    }

    .ac-text-zone h2::after {
        margin: 10px auto 0;
    }

    .ac-about-list {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-gap {
    padding: 110px 0;
}

.OIYANGONJN {
    background: linear-gradient(120deg, #17ae54, rgba(41, 128, 185, 0.75)), center/cover no-repeat;
    color: var(--text-light);
    text-align: center;
    padding: 190px 0;
    position: relative;
    clip-path: ellipse(100% 85% at 50% 15%);
}

.OIYANGONJN h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

.OIYANGONJN p {
    font-size: 1.9rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
}

.tjVlIcxm2x {
    position: relative;
    background: var(--text-light);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.7s ease;
    margin-bottom: 60px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.tjVlIcxm2x:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.8s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tjVlIcxm2x:hover .service-img {
    transform: scale(1.1) translateX(10px);
}

.service-description {
    grid-column: 2;
}

.service-content h3 {
    color: #17ae54;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.L53W8JhCUj {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.price-tag {
    color: var(--secondary);
    font-size: 2.4rem;
    font-weight: 900;
    text-align: right;
    background: linear-gradient(180deg, var(--accent), #17ae54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.order-btn {
    background: linear-gradient(120deg, #17ae54, var(--secondary));
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.6s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    white-space: nowrap;

}

.order-btn:hover {
    background: linear-gradient(120deg, var(--secondary), #17ae54);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.4);
}

.pricing-plan {
    position: relative;
    border-radius: 35px;
    padding: 50px 40px;
    background: linear-gradient(170deg, var(--text-light), #D6EAF8);
    box-shadow: var(--shadow-soft);
    transition: all 0.6s ease;
    margin-bottom: 50px;
    overflow: hidden;
}

.pricing-plan::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 100px solid var(--accent);
    border-left: 100px solid transparent;
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.pricing-plan:hover::before {
    opacity: 0.4;
}

.pricing-plan:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.pricing-plan h3 {
    color: #17ae54;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-plan ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: left;
}

.pricing-plan ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.5rem;
}

.testimonial {
    background: var(--text-light);
    padding: 45px;
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    position: relative;
}

.testimonial:hover {
    transform: rotate(-2deg) translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial h4 {
    color: #17ae54;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.client-location {
    font-style: italic;
    color: #888;
    margin-bottom: 22px;
    font-size: 1.1rem;
}

.faq-section {
    max-width: 1250px;
    margin: 0 auto;
}

details {
    margin-bottom: 30px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--text-light);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

details:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02) translateY(-5px);
}

summary {
    padding: 28px 35px;
    background: linear-gradient(45deg, #17ae54, var(--accent));
    color: var(--text-light);
    cursor: pointer;
    font-weight: 700;
    font-size: 1.4rem;
    transition: background 0.5s ease;
}

summary:hover {
    background: linear-gradient(45deg, var(--accent), #17ae54);
}

.q1fYHqzlxV {
    padding: 35px;
    background: #EAF2F8;
    color: var(--text-dark);
    line-height: 2;
    border-top: 3px solid var(--secondary);
}

@media (min-width: 1200px) {
    .OIYANGONJN h1 {
        font-size: 5rem;
    }

    .OIYANGONJN p {
        font-size: 2rem;
        max-width: 1000px;
    }

    .service-content h3 {
        font-size: 2.4rem;
    }
}

/* ----------- Ноутбуки та планшети горизонтально (992px – 1199px) ----------- */
@media (max-width: 1199px) {
    .tjVlIcxm2x {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 20px;
        padding: 30px;
    }

    .OIYANGONJN h1 {
        font-size: 3.8rem;
    }

    .OIYANGONJN p {
        font-size: 1.6rem;
    }

    .pricing-plan {
        padding: 40px 30px;
    }
}

/* ----------- Планшети вертикально (768px – 991px) ----------- */
@media (max-width: 991px) {
    .tjVlIcxm2x {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
    }

    .service-description {
        grid-column: auto;
    }

    .L53W8JhCUj {
        grid-column: auto;
        align-items: center;
    }

    .OIYANGONJN h1 {
        font-size: 3rem;
    }

    .OIYANGONJN p {
        font-size: 1.4rem;
    }

    .pricing-plan {
        padding: 35px 25px;
    }
}

/* ----------- Смартфони середні (576px – 767px) ----------- */
@media (max-width: 767px) {
    .OIYANGONJN {
        padding: 120px 20px;
        clip-path: ellipse(120% 90% at 50% 10%);
    }

    .OIYANGONJN h1 {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

    .OIYANGONJN p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .order-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .pricing-plan h3 {
        font-size: 2rem;
    }
}

/* ----------- Смартфони маленькі (до 575px) ----------- */
@media (max-width: 575px) {
    .OIYANGONJN {
        padding: 100px 15px;
    }

    .OIYANGONJN h1 {
        font-size: 2rem;
    }

    .OIYANGONJN p {
        font-size: 1rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .pricing-plan {
        padding: 25px 20px;
    }

    .pricing-plan h3 {
        font-size: 1.8rem;
    }

    summary {
        font-size: 1.1rem;
        padding: 20px;
    }

    .q1fYHqzlxV {
        padding: 20px;
        font-size: 0.95rem;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.contact-triple-section {
    background: #f0f4f8;
}

.contact-info-vertical .vbqyVudOD3 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.contact-info-vertical .vbqyVudOD3:hover {
    transform: translateX(5px);
}

.qsNF4I5s8d::before {
    content: "\1F4CD";
    font-size: 20px;
}

.icon-phone::before {
    content: "\260E";
    font-size: 20px;
}

.LiAqcVuFOl::before {
    content: "\2709";
    font-size: 20px;
}

.contact-form-center .hIjgLmVyas {
    padding: 25px;
    background: #00796b;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}


.Rd9tYv4TDY {
    background: radial-gradient(circle at top left, #0a0a0a, #1f1f1f);
    color: #dcdcdc;
    font-family: 'Helvetica Neue', sans-serif;
    padding-top: 70px;
}

.sozoW59cbL {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ms-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.header-unique {
    background-color: #2b2e4a;
    color: #fff;
    padding: 20px 40px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 100;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.PzhN54uk14 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.ju87VF12lr {
    font-family: 'Roboto Slab', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* PC menu */
.nav-menu {
    transition: transform 0.4s ease-in-out;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    border: 2px solid #ff414d;
    color: #ff414d;
    background-color: rgba(255, 65, 77, 0.1);
}

/* Burger & mobile */
#menu-toggle {
    display: none;
}

.iAnPQlruJP {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.4s ease;
}

/* Анімація бургера */
#menu-toggle:checked~.iAnPQlruJP .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

#menu-toggle:checked~.iAnPQlruJP .burger-line:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked~.iAnPQlruJP .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .iAnPQlruJP {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #2b2e4a;
        transform: translateY(-100%);
        transition: transform 0.6s ease-in-out;
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #menu-toggle:checked~.iAnPQlruJP+.nav-menu {
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.5rem;
        border: none;
        padding: 10px 20px;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 65, 77, 0.2);
    }
}

.ms-col {
    flex: 1 1 30px;
}

.ms-logo-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.ms-logo-text {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

.ms-company-title {
    font-size: 1.3em;
    color: #43ff77;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ms-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.QmpySK8HOk,
.ms-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.QmpySK8HOk li,
.ms-links-list li {
    margin-bottom: 8px;
}

.QmpySK8HOk a,
.ms-links-list a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s;
}

.QmpySK8HOk a:hover,
.ms-links-list a:hover {
    color: #43ff77;
}

.ms-widget-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #43ff77;
}

.ms-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.ms-social-link svg {
    fill: #dcdcdc;
    width: 30px;
    height: 30px;
    transition: all 0.3s;
}

.ms-social-link:hover svg {
    transform: scale(1.2);
    fill: #ff7043;
}

.Rd9tYv4TDY-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.9em;
    color: #bbb;
}

.ms-bottom-link {
    color: #ffb74d;
    text-decoration: none;
}

.ms-bottom-link:hover {
    color: #ff7043;
}

@media(max-width: 992px) {
    .ms-row {
        flex-direction: column;
        gap: 30px;
    }
}

.contact-form-center .LgoqWaq0J2 {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.contact-form-center .submit-btn {
    width: 100%;
    padding: 12px;
    background: #ffd700;
    color: #00796b;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.contact-form-center .submit-btn:hover {
    background: #ffbf00;
}

.w4vxN37Sbt .HinanVY58n {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: #17ae54;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background-color: #17ae54;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

/* .about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
} */


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: #17ae54;
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: #17ae54;
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: #17ae54;
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: #17ae54;
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/dPjp1Y5n28.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/dPjp1Y5n28.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}

.case-item:hover img {
    transform: scale(1.2);
}

.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: #17ae54;
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: #17ae54;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17ae54;
    background: #FFFFFF;
    border: 1px solid #17ae54;
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #17ae54;
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid #17ae54;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #17ae54;
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: #17ae54;
}


/*** Footer ***/
.footer {
    background: url(../img/faZ02jKIG8.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #17ae54;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}