/*
Theme Name: CXFACTORY 2026 Theme
Theme URI: http://cxfactory.org/
Author:Indie Creative Lab
Author URI: László Vincze
Description:
Version: 1.0
License: Indie Design Lab License
License URI: license.txt

*/

/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*=== MEDIA QUERY ===*/ /*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -LOGO CSS
    -MENU CSS
* 04.ABOUT CSS STYLE
* 05.SERVICE CSS STYLE
* 06.WORK CSS STYLE
* 07.AVAILABLE CSS STYLE
* 08.CONTACT CSS STYLE
* 09.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700|Rubik:400,600,700");
:root {
    --primary: #e74c3c;
    --dark: #121417;
    --bg: #ffffff;
    --card-bg: #fcfcfc;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li.wpm-item-language-hu.active, li.wpm-item-language-en.active {
    display: none;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: #121629;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
body, .navbar {
    padding-right: 0 !important;
}
/* Javított kurzorkövető háttér */
.bg-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(231, 76, 60, 0.07) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

   /* A háttér konténere */
        .blur-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            z-index: -1;
        }

        /* Közös blob stílusok */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px); /* Erősebb elmosás a dinamikusabb mozgáshoz */
            opacity: 0.35; /* Kicsit erősebb áttetszőség, hogy látványosabb legyen */
            background-color: #ff4757; /* Csak a kért piros szín */
        }

        /* 1. forma: Nagyobb, lassabb, átlós mozgás */
        .blob-1 {
            width: 70vw;
            height: 70vw;
            top: -20%;
            left: -10%;
            animation: mozgatas-nagy 20s infinite alternate ease-in-out;
        }

        /* 2. forma: Kisebb, gyorsabb, összetettebb mozgás */
        .blob-2 {
            width: 50vw;
            height: 50vw;
            bottom: -15%;
            right: -10%;
            animation: mozgatas-kicsi 12s infinite linear; /* Lineáris mozgás a folyamatosságért */
        }

        /* Animáció a nagyobb gömbnek */
        @keyframes mozgatas-nagy {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            100% {
                transform: translate(25vw, 20vh) scale(1.1) rotate(30deg);
            }
        }

        /* Animáció a kisebb, dinamikusabb gömbnek */
        @keyframes mozgatas-kicsi {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            25% {
                transform: translate(15vw, -10vh) scale(1.05) rotate(45deg);
            }
            50% {
                transform: translate(-5vw, -25vh) scale(1) rotate(90deg);
            }
            75% {
                transform: translate(-15vw, -10vh) scale(1.05) rotate(45deg);
            }
            100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
        }


.tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Bento Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 40px;
    border-radius: 36px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-large {
    grid-column: span 2;
    background: #0C1044;
    color: #ffffff !important;
    min-height: 350px;
}

.card-large h2,.card-large p {
    color: #ffffff !important;
}

/* Menő 2026-os hover effektek */
.card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 40px 70px rgba(0,0,0,0.06);
}

.card-large:hover {
    background: #0C1044;
    color: #ffffff;
}

.card h2 { font-size: 2.2rem; font-weight: 700; line-height: 1.2; }
.card h3 { font-size: 1.4rem; font-weight: 700; }

.icon-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

/* CTA Section */
.cta-section {
    grid-column: span 3;
    text-align: center;
    color: white;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 22px 55px;
    background: white;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
    .grid { grid-template-columns: 1fr; }
    .card-large, .cta-section { grid-column: span 1; }
    .cta-section { padding: 60px 24px; }
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-family: serif;
  position: relative;
}
--accent: #ff4757;
--glass: rgba(255, 255, 255, 0.8);
--border: rgba(255, 255, 255, 0.3);
--bg: #0f172a; /* Mély sötétkék háttér a modern kontrasztért */

body.modal-open, .trans-navigation {
  padding-right: 0 !important;
}

.col-lg-4, .col-lg-3 {
text-align: center;
}
.modal {
z-index: 999999;
}
.modal-open .modal {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.modal-content {
    border: 0px;
        border-radius: .9rem;
        /*
        box-shadow: 0px 10px 100px 20px #f0f0f0;
         */

}

.modal-header {
        align-items: anchor-center !important;
}
.modal-body {
    padding: 0px 30px !important;
}



.table-wrapper {
    overflow-x: auto;
    padding-bottom: 10px; /* Hely a görgetősávnak */
}

/* --- Táblázat Stílusok --- */
table {
    width: 100%;
    border-collapse: separate; /* Fontos a lekerekített sarkokhoz és térközökhöz */
    border-spacing: 0;
    text-align: left;
    min-width: 700px;
}

th {
    font-size: 1rem;
    font-weight: 700;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

/* Különleges fejlécek a csomagoknak */
th.pkg-header {
    text-align: center;
    color: #000000;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

th:first-child {
     color: var(--primary-text);
     font-size: 1.2rem;
}


td {
    padding: 18px 20px;
    font-size: 1rem;
    color: var(--secondary-text);
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* Oszlop igazítások */
td:first-child {
    font-weight: 500;
    color: var(--primary-text);
}

td:not(:first-child) {
    text-align: center;
}

/* --- Animációk --- */

/* 1. Belépő animáció a soroknak */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tbody tr {
    opacity: 0; /* Kezdetben láthatatlan */
    animation: fadeUp 0.6s ease-out forwards;
}

/* Késleltetés a "kaszkád" hatáshoz */
tbody tr:nth-child(1) { animation-delay: 0.1s; }
tbody tr:nth-child(2) { animation-delay: 0.2s; }
tbody tr:nth-child(3) { animation-delay: 0.3s; }
tbody tr:nth-child(4) { animation-delay: 0.4s; }
tbody tr:nth-child(5) { animation-delay: 0.5s; }
tbody tr:nth-child(6) { animation-delay: 0.6s; }
tbody tr:nth-child(7) { animation-delay: 0.7s; }

/* 2. Hover effekt a sorokon */
tbody tr {
    transition: all 0.2s ease;
    border-radius: 8px;
}

tbody tr:hover {
    background-color: var(--highlight-hover);
    transform: scale(1.01); /* Picit megnő a sor */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Hogy a szomszédok fölé kerüljön */
    position: relative;
}

/* --- Ikonok --- */
.icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Rugalmas ugrás */
}

/* 3. Ikon hover animáció */
.icon:hover {
    transform: scale(1.2); /* Nagyobb lesz hoverre */
}

.icon-check {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' rx='12' fill='%2310b981'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-warn {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
}

.icon-cross {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    opacity: 0.6; /* Kicsit halványabb X */
}

/* --- Jelmagyarázat Modernizálva --- */
.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 10px 0 10px;
    font-size: 0.95rem;
    color: var(--secondary-text);
    border-top: 2px solid #e2e8f0;
    margin-top: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--highlight-hover);
    padding: 8px 12px;
    border-radius: 20px; /* Kapszula forma */
}

.legend-item span:last-child {
    font-weight: 500;
}

/* Mobilos nézet */
@media (max-width: 768px) {
    body { padding: 20px 10px; }
     td, th { padding: 15px 10px; }
    .legend { justify-content: flex-start; }
    th.pkg-header { border-radius: 8px; } /* Kisebb lekerekítés mobilon */
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 70% !important;
        margin: auto !important;
        position: relative;
        top: 10%;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 90% !important;
    }
}



.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #ffe4e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: #f43f5e;
    transition: transform 0.3s ease;
}



.card-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.card-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f43f5e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
}

.card-desc strong {
    color: #0f172a;
    font-weight: 700;
}

/* Lista stílusok */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #0f172a;
    line-height: 1.5;
}

/* Modern Pipa ikon a listaelemekhez */
.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f43f5e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}


.modal-header {

}
/* Hero szekció tárolója */
.parallax-wrapper {
    position: relative;
    width: 100%;
    height: 70vh; /* Itt állíthatod a magasságot */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* A tényleges kép, ami lassabban fog mozogni */
.parallax-bg {
    position: absolute;
    top: -20%; /* Extra hely a mozgáshoz felül */
    left: 0;
    width: 100%;
    height: 140%; /* Nagyobb magasság, hogy legyen hova mozdulnia */
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform; /* Teljesítmény optimalizálás */
}

/* Overlay és tartalom */
.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
/* A teljes szélességű képtároló */
.img-container-01 {
    width: 100%;
    height: 60vh; /* 100vh = a képernyő magasságának 100%-a */

    /* Unsplash stock fotó beállítása háttérként */
    background-image: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

    /* Ezek a tulajdonságok felelnek a tökéletes illeszkedésért: */
    background-size: cover;       /* A kép kitölti a teljes konténert torzulás nélkül */
    background-position: center;  /* A kép közepe mindig középen marad */
    background-repeat: no-repeat; /* Megakadályozza a kép ismétlődését */

    /* Flexbox a belső tartalom középre igazításához */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Opcionális: Egy sötétítő réteg (overlay), hogy a rajta lévő szöveg olvasható legyen */
.img-container-01::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40%-osan átlátszó fekete */
    z-index: 1;
}


.img-container-02 {
    width: 100%;
    height: 60vh; /* 100vh = a képernyő magasságának 100%-a */

    /* Unsplash stock fotó beállítása háttérként */
    background-image: url('https://plus.unsplash.com/premium_photo-1683120730432-b5ea74bd9047?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

    /* Ezek a tulajdonságok felelnek a tökéletes illeszkedésért: */
    background-size: cover;       /* A kép kitölti a teljes konténert torzulás nélkül */
    background-position: center;  /* A kép közepe mindig középen marad */
    background-repeat: no-repeat; /* Megakadályozza a kép ismétlődését */

    /* Flexbox a belső tartalom középre igazításához */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Opcionális: Egy sötétítő réteg (overlay), hogy a rajta lévő szöveg olvasható legyen */
.img-container-02::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40%-osan átlátszó fekete */
    z-index: 1;
}


p {
  line-height: 24px;
  font-size: 18px;
  color: #333 !important;
}

html {
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: serif;
  font-weight: 600;
  color: #0C1044;

}

a {
  text-decoration: none;
  transition: all 0.2s;
  color: #000;
}

img {
  max-width: 100%;
}

a:hover {
  color: #ff4757;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 22px;
  line-height: 32px;
}

#multinational h4, #multinational h1 {
color: #ff4757 !important;
}
#multinational p {
color: white !important;
}

h5 {
  font-size: 16px;
  line-height: 24px;
}

h6 {
  font-size: 14px;
  line-height: 26px;
}

.f-color {
  color: #ff4757;
}

h5.subtitle {
  font-size: 16px;
  font-weight: 400;
}

.no-padding {
  padding: 0;
}

.flaticon {
  display: inline;
}

.mb30 {
  margin-bottom: 30px;
}

.section-padding {
  padding: 90px 0px;
}

.section-heading {
  text-align: center;
  width: 70%;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.section-title span {
  color: #ff4757;
}

.section {
  padding: 100px 0px;
}

.line {
  width: 50px;
  background: #ff4757;
  height: 1px;
  margin: 10px auto;
}

/*---------- BUTTONS ----------*/
.btn, [type=button]:not(:disabled) {
  font: 600 10.5px/1;
  display: inline-block;
  padding: 15px 45px 15px 45px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.2s;
  border-radius: 0px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn:focus,
.btn:active,
.btn:active:focus {
  outline: none;
  box-shadow: none;
}

.btn-hero, [type=button]:not(:disabled),
.btn-white:hover {
  color: #fff !important;
  background: #BF443E;
}

.btn-hero:focus {
  color: #fff !important;
}

.btn-black,
.btn-hero:hover, [type=button]:not(:disabled):hover {
  background-color: rgb(0, 0, 0);
  color: #fff !important;
}

.btn-black:hover {
  color: #fff;
  background: #ff4757;
}

.btn-black:focus {
  color: #fff;
}

.btn-white {
  background-color: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-white:focus {
  color: #000;
}

.btn-white:active {
  color: #fff;
}

.btn-trans-black {
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
}

.btn-trans-black:hover {
  color: rgb(255, 255, 255);
  background-color: #000;
}

.btn-trans-white {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
}

.btn-trans-white:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-trans-white:active,
.btn-trans-white:focus {
  color: #fff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-rounded {
  border-radius: 2px;
}

.btn-circled, [type=button]:not(:disabled) {
  border-radius: 40px;
}

.btn-trans-black:hover {
  background: #ff4757 !important;
}

/*---------- COLORS ----------*/
/*-- Background Colors --*/
.bg-black {
  background-color: #000;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.96);
}

.bg-feature {
  background-color: #ff4757;
}

.bg-primary {
  background-color: #0db8ca;
}

.bg-gray {
  background-color: #f2f4ec;
}

.bg-white {
  background-color: #fff;
}

.d-table {
  width: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.brown-overlay {
  background: #222955;
  opacity: 0.97;
}

.feature-overlay {
  background: #ff4757;
  opacity: 0.97;
}

.gr-overlay {
  background: linear-gradient(135deg, #2f1ce0 0%, #53a0fd 30%, #51eca5 100%);
  opacity: 0.87;
}
/*
ul {
            list-style: none;  
            padding-left: 0;
        }

        ul li {
            position: relative;
            padding-left: 35px;  
            margin-bottom: 10px;
            font-family: sans-serif;
            display: flex;
            align-items: center;
        }

        ul li::before {
            
            content: '\2713'; 
            
   
            position: absolute;
            left: 0;
            width: 22px;
            height: 22px;
            border: 2px solid red;
            border-radius: 50%;
            
            display: flex;
            align-items: center;
            justify-content: center;
            
            color: red;
            font-weight: bold;
            font-size: 14px;
        }
*/
.pld-post-list-inr {
	    float: left;
    width: 33%;
    padding: 30px;
}


.pld-post-image-bg img {
    max-height: 300px;
	margin-bottom: 30px;
}


.pld-post-content-inner {
	margin-bottom: 40px;
}

.pld-pagination {
	display: none;
    width: 100%;
}
.pricing-section { padding: 80px 5% 120px; position: relative; }
.pricing-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }

.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
}

/* 2026-os Prémium Glow Hover */
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: #e74c3c;
    transform: scaleX(0); transform-origin: left; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(231, 76, 60, 0.08);
    border-color: rgba(231, 76, 60, 0.2);
}

.pricing-card:hover::before { transform: scaleX(1); }

.pricing-icon {
    width: 70px; height: 70px;
    background: #fff5f4;
    color: #e74c3c;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card:hover .pricing-icon {
    background: #e74c3c; color: white;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.15);
}

.pricing-card h2 { font-family: 'Playfair Display', serif; color: #121629; font-size: 2.5rem; margin-bottom: 5px; text-align: center; }
.subtitle { color: #e74c3c; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 25px;}
.desc { font-size: 0.95rem; color: #555; margin-bottom: 40px; text-align: center; padding: 10px;}

.features { list-style: none; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 30px; }
.features li { display: flex; gap: 15px; margin-bottom: 20px; font-size: 0.95rem; color: #333a45; }
.features li i { color: #e74c3c; margin-top: 4px; font-size: 1.1rem; }

/* Kiemelt Scale Kártya finom jelzése */
.card-premium { border: 1px solid rgba(231, 76, 60, 0.15); box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15); }

@media (max-width: 1024px) {
    .problems-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
	.grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr)) !important;
}
	.pld-post-list-inr {
    width: 100%;
}
	.post--item {
		padding:20px !important;
		        width: 100% !important;
	}
}
@media (max-width: 768px) {
    .problems-grid, .pricing-grid { grid-template-columns: 1fr; }
}
/* ========================

==============================*/
.heading {
  margin-bottom: 40px;
}

.heading h3 {
  margin-bottom: 10px;
  font-weight: 600;
}



        /* Modern Bento/Glassmorphism Kártya */
        .bento-item {
            position: relative;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Balra igazított modern elrendezés */
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        /* Hover animáció */
        .bento-item:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: #ff4757;
            transform: translateY(-8px) scale(1.02);
        }

        /* Ikon stílus - vékonyabb, modern */
        .icon-box {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.05));
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
            color: #ff4757;
            font-size: 24px;
            transition: 0.3s ease;
        }

        .bento-item:hover .icon-box {
            background: #ff4757;
            color: white;
            box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
        }

        .title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0 0 12px 0;
            letter-spacing: -0.02em;
            color: #f8fafc;
        }

        .description {
            font-size: 0.9rem;
            color: #ffffff !important;
            line-height: 1.6;
            margin: 0;
            text-align: left;
        }

        /* Nyíl indikátor - 2026-os trend */
        .arrow {
            position: absolute;
            bottom: 32px;
            right: 32px;
            opacity: 0;
            transform: translateX(-10px);
            transition: 0.3s ease;
            color: #ff4757;
        }

        .bento-item:hover .arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Belépő animáció */
        @keyframes reveal {
            from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
            to { opacity: 1; transform: translateY(0); filter: blur(0); }
        }

        .bento-item {
            animation: reveal 0.8s ease backwards;
        }

        /* Staggered delay */
        .bento-item:nth-child(1) { animation-delay: 0.1s; }
        .bento-item:nth-child(2) { animation-delay: 0.2s; }
        .bento-item:nth-child(3) { animation-delay: 0.3s; }
        .bento-item:nth-child(4) { animation-delay: 0.4s; }
        .bento-item:nth-child(5) { animation-delay: 0.5s; }
        .bento-item:nth-child(6) { animation-delay: 0.6s; }


        .grid-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
            gap: 24px;
            max-width: 100%s;
            width: 100%;
            padding: 40px;
        }
.infographic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
    gap: 30px;
    position: relative;
    margin-top: 80px;
}


        .row-middle {
            justify-content: space-between;
            margin: 10px 0;
            position: relative;
        }

        /* Csomópontok */
        .info-node {
            display: flex;
            align-items: center;
            gap: 30px;
            width: 48%;
            cursor: pointer; /* Interaktivitás jelzése */
            transition: transform 0.3s ease;
            /* Belépő animáció előkészítése */
            opacity: 0;
            animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        /* Késleltetések a lépcsőzetes megjelenéshez */
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.3s; }
        .delay-3 { animation-delay: 0.5s; }
        .delay-4 { animation-delay: 0.7s; }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Egyedi pozicionálások */
        .node-top, .node-bottom {
            width: 95%;
            justify-content: center;
        }
        .node-bottom {
            flex-direction: row-reverse;
            text-align: right;
        }
        .node-left {
            flex-direction: row-reverse;
            text-align: right;
            justify-content: flex-end;
        }
        .node-right {
            justify-content: flex-start;
        }

        /* Modern Kör dizájn */
        .circle {
            flex-shrink: 0;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid transparent;
            background-clip: padding-box;
        }

        /* Színátmenetes keret imitáció és hover */
        .info-node:hover .circle {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.25);
            border-color: #e74c3c;
        }

        .circle-num {
            font-size: 1.8rem;
            font-weight: 700;
            background: #0C1044;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2px;
        }

        .circle-text {
            font-size: 0.55rem;
            font-weight: 600;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #0C1044;
        }

        /* Modern Szövegdoboz */
        .text-block {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 16px;
            font-size: 1.05rem;
            line-height: 1.3;
            color: #4b6584;
            max-width: 350px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid rgba(255,255,255,0.8);
            transition: all 0.3s ease;
        }

        .info-node:hover .text-block {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }

        /* Piros kiemelés a szövegben */
        .highlight {
            color: #e74c3c;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .info-node:hover .highlight {
            color: #BF443E;
        }

        /* Reszponzivitás mobilra */
        @media (max-width: 900px) {

h3 {
    font-size: 24px;
        text-align: center;
}
.media {
    display: block;
}
    .btn, [type=button]:not(:disabled) {
        padding: 15px;
        font-size: 11px;
        font-family: revert-layer;
    }
.section-padding {
    padding: 40px 0;
}
.col-sm-3 {
    position: relative;
    width: 33%;
    padding-right: 15px;
    padding-left: 15px;
}
.mb-5, .my-5 {
    margin-bottom: 0;
}

#kkv .btn, [type=button]:not(:disabled) {
    padding: 15px;
    font-size: 12px;
width: 80%;
}
			
.navbar-toggler {
        width: 15% !important;
	        margin-right: 10px !important;
}
h4 {
    text-align: center;
}
h5.subtitle {
    text-align: center;
}
p {
    line-height: 24px;
    font-size: 16px;
        text-align: center;
}
            .row-middle {
                flex-direction: column;
                gap: 30px;
            }
            .info-node {
                width: 100% !important;
                flex-direction: column !important;
                text-align: center !important;
                justify-content: center !important;
                gap: 20px;
            }
            .text-block {
                max-width: 90%;
            }
            .info-node:hover .circle {
                transform: scale(1.05); /* Mobilon enyhébb hover */
            }
        }

/*------------------------------------
  MENU NAVIGATION AREA
----------------------------------*/
.site-navigation,
.trans-navigation {
  padding: 20px 0px;
}

.site-navigation .navbar-nav a,
.trans-navigation .navbar-nav a {
  text-transform: uppercase;
}

.site-navigation .navbar-nav a.active,
.trans-navigation .navbar-nav a.active {
  color: red;
}

.header-white {
  position: fixed;
  top: 0px;
  background: #111;
  z-index: 9999;
  width: 100%;
  left: 0;
  transition: all 0.5s ease 0s;
  color: #000 !important;
}

.navbar-nav {
  display: contents !important;
}



}
.navbar-expand-lg.trans-navigation .navbar-nav .nav-link,
.navbar-expand-lg.site-navigation .navbar-nav .nav-link {
  padding: 0px 24px;
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link:last-child,
.navbar-expand-lg.site-navigation .navbar-nav .nav-link:last-child {
  padding-right: 0px;
}

.site-navigation,
.trans-navigation {
  transition: all 0.5s ease 0s;
}

.navbar-brand {
  padding-top: 0px;
  margin-right: 60px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}

.navbar-brand span {
  font-weight: 400;
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
  color: #0C1044;
  font-size: 12px;
font-weight: bold;
}

.trans-navigation {
  background: transparent;
}

.trans-navigation.header-white {
  background: #ffffff;
}

.trans-navigation.header-white .navbar-nav .nav-link {
  color: #0C1044;

}

.trans-navigation.header-white .navbar-nav a.active {
  color: #BF443E;
}

.navbar-brand img {
  max-width: 100%;
}

.trans-navigation.header-white .btn-white {
  background: #ff4757;
  color: #fff;
}

/* ===============================
 DROPDOWN MENU
================================*/
.navbar-expand-lg.trans-navigation .navbar-nav .nav-link.dropdown-toggle {
  padding-right: 0px;
}

.dropdown-toggle i {
  font-size: 10px;
  vertical-align: 2px;
}

.dropdown-menu {
  padding: 0px;
  border: 0;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
@media (max-width: 992px) {
  .dropdown-menu {
    text-align: center;
    float: left !important;
    width: 100%;
    margin: 0;
  }
}
.dropdown-menu li:first-child {
  margin-top: 5px;
}
.dropdown-menu li:last-child {
  margin-bottom: 5px;
}

.dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-menu,
.dropright .dropdown-menu {
  margin: 0;
}

.dropleft .dropdown-toggle::before,
.dropright .dropdown-toggle::after {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  border: 0;
  font-size: 10px;
  vertical-align: 1px;
}

.dropleft .dropdown-toggle::before {
  content: "\f053";
  margin-right: 5px;
}

.dropright .dropdown-toggle::after {
  content: "\f054";
  margin-left: 5px;
}

.dropdown-item {
  padding: 0.6rem 1.5rem 0.35rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-submenu.active > .dropdown-toggle,
.dropdown-submenu:hover > .dropdown-item,
.dropdown-item.active,
.dropdown-item:hover {
  background: rgba(99, 92, 219, 0.1);
  color: #ff4757;
}

button:focus {
  outline: 0;
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}

@media (min-width: 992px) {
  .dropdown-menu {
    transition: all 0.2s ease-in, visibility 0s linear 0.2s, transform 0.2s linear;
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    transform: translateY(10px);
  }
  .nav-item {
    margin-left:16px;
  }

    button.navbar-toggler {
      display: none !important;
    }

  .dropdown-menu li:first-child {
    margin-top: 5px;
  }
  .dropdown-menu li:last-child {
    margin-bottom: 5px;
  }
  .dropleft .dropdown-menu,
.dropright .dropdown-menu {
    margin-top: -5px;
  }
  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    transition: all 0.3s ease 0s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }
}
.navbar-collapse.show {
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

        .wpcf7 {
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        }

        /* 1. Mezők elrendezése */
        .wpcf7 p {
            margin-bottom: 28px;
            margin-top: 0;
        }

        .wpcf7 label {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #0C1044; /* Megadott mély kék */
        }

        /* 2. Beviteli mezők (Input & Textarea) */
        .wpcf7 input[type="text"],
        .wpcf7 input[type="email"],
        .wpcf7 textarea {
            width: 100%;
            background: #ffffff; 
            border: 2px solid #edf2f7;
            border-radius: 12px;
            padding: 16px 20px;
            color: #0C1044;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.25s ease-in-out;
            box-sizing: border-box;
            font-family: inherit;
        }

        /* 3. Fókusz állapot - A megadott mélykék színnel */
        .wpcf7 input[type="text"]:focus,
        .wpcf7 input[type="email"]:focus,
        .wpcf7 textarea:focus {
            outline: none;
            border-color: #0C1044;
            background: #ffffff;
            /* Elegáns, professzionális árnyék */
            box-shadow: 0 10px 15px -3px rgba(12, 16, 68, 0.1);
        }

        /* 4. Beküldés gomb - #0C1044 alapú */
        .wpcf7 input[type="submit"] {
            background-color: #0C1044;
            color: #ffffff;
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 12px;
            padding: 20px 40px;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(12, 16, 68, 0.2);
        }

        .wpcf7 input[type="submit"]:hover {
            background-color: #1a226b; /* Kicsit világosabb kék hoverre */
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(12, 16, 68, 0.15);
        }

        .wpcf7 input[type="submit"]:active {
            transform: translateY(0);
        }

        /* 5. Hibaüzenetek formázása - A megadott #ff4757 színnel */
        .wpcf7-not-valid-tip {
            color: #ff4757;
            font-size: 12px;
            font-weight: 600;
            margin-top: 6px;
            display: block;
        }

        /* Beküldés utáni visszajelzés */
        .wpcf7-response-output {
            border-radius: 12px;
            padding: 18px;
            margin: 20px 0 0 0 !important;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            border: none !important;
			background: #BF443E !important;
			color: #FFFFFF;
        }

        /* Hiba esetén */
        form.invalid .wpcf7-response-output,
        form.failed .wpcf7-response-output {
            background: rgba(255, 71, 87, 0.1) !important;
            color: #ff4757 !important;
        }

        /* Siker esetén */
        form.sent .wpcf7-response-output {
            background: #f0fdf4 !important;
            color: #16a34a !important;
            border: 1px solid #bbf7d0 !important;
        }

        /* Placeholder szín finomítása */
        ::placeholder {
            color: #94a3b8;
            opacity: 1;
        }

        /* 6. Animáció betöltéskor */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .wpcf7 {
            animation: slideUp 0.6s ease-out;
        }
.screen-reader-response {
          display: none;
        }
/*------------------------------------
 BANNER AREA
----------------------------------*/
.banner-area .content-padding {
  padding: 250px 0px 180px;
}

.content-padding {
  padding: 80px 0px 80px;
}

.banner-content {
  padding-right: 30px;
}

.banner-content .btn {
  margin-top: 15px;
}

.banner-content .banner-title {
  color: #fff;
  font-weight: 700;
  line-height: 50px;
}

.banner-content .subtitle {
  color: #fff;
  background: #ff4757;
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.subtitle {
  color: #ff4757;
}

.banner-content p {
  margin: 20px 0px;
  color: #eee;
  font-size: 18px;
  line-height: 30px;
}

.banner-content .btn {
  margin-right: 12px;
}

.btn-sm {
  padding: 10px 30px;
}

.banner-1 {
  background: url("../images/banner/bg-2.jpg");
  background-size: cover;
  position: relative;
}

.banner-2 {
  background: url("../images/banner/slider-3.jpg");
  background-size: cover;
  position: relative;
}

.banner-3 {
  background: url("../images/banner/banner-bg.jpg");
  background-size: cover;
  position: relative;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

/* =======================================
INner Pages
=========================================*/
#page-banner {
  position: relative;
  padding: 60px 0px 80px;
}

.page-banner-area {
  background: url("../images/banner/1.jpg") no-repeat 50% 50%;
  background-size: cover;
}

/*-------------------- ------------
 INTRO SECTION
-----------------------------*/
#intro {
  padding-bottom: 0px;
}

.intro-img {
  margin-top: 45px;
}

#intro .section-heading p {
  color: #000;
  font-size: 30px;
  line-height: 40px;
}

.intro-box {
  margin-top: 30px;
  position: relative;
  margin-bottom: 20px;
}

.intro-box h4:before {
  position: absolute;
  left: 0px;
  top: 17px;
  content: "";
  bottom: 0px;
  background: #000;
  width: 50px;
  height: 2px;
}

.intro-box h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
}

.intro-box span {
  font-size: 28px;
  color: #ff4757;
}

.intro-cta {
  margin-top: 40px;
}

/*--------------------------
  ABOUT SECTION
----------------------*/
.section-pt {
  padding-top: 90px;
}

.section-pb {
  padding-bottom: 90px;
}

#about {
  position: relative;
  padding-bottom: 85px;
}

.about-bg-img {
  position: absolute;
  right: 0px;
  content: "";
  background: url("../images/banner/1.jpg") 50% 50%;
  width: 40%;
  height: 100%;
  max-height: 560px;
  top: 0px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}

.about-content {
  margin-top: 94px;
}

.about-content .subtitle {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-content h3 {
  margin-bottom: 25px;
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  width: 45%;
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
  color: #888;
}

.about-list li i {
  color: #000;
  margin-right: 10px;
}

/* ----------------------
ABOUT PAGE
-------------------------*/
.about-list2 li i {
  margin-right: 10px;
  color: #ff4757;
}

.icon-3x {
  font-size: 3rem;
}

.text-default {
  color: #ff4757;
}

.team-social li a {
  font-size: 13px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid #fff;
  display: inline-block;
  padding-top: 3px;
  background: #fff;
}

/* ========================
HISTORY MISSION
==============================*/
.img-block img {
  width: 200px;
}

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

==============================*/
#section-strategy {
  background: url("../images/bg/bg-1.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.strategy-text {
  margin-bottom: 50px;
}

.strategy-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.strategy-text span {
  font-size: 61px;
  color: #ff4757;
  margin-bottom: 15px;
  display: block;
}

/*--------------------------------
 COUNTER SECTION
-----------------------------*/
.counter {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  line-height: 70px;
  margin: 10px 0px;
  color: #ff4757;
}

.counter-stat i {
  font-size: 40px;
  color: #fff;
  margin-right: 10px;
}

.counter-stat h5 {
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.counter-block span {
  font-size: 30px;
}

#counter .dark-overlay {
  background: #000;
  opacity: 0.95;
}

#counter {
  background: url("../images/banner/pattern-3.png") fixed 50% 50%;
  position: relative;
  background-size: cover;
  padding-top: 87px;
  padding-bottom: 95px;
}

/*--------------------------
  SERVICE AREA SECTION
----------------------*/
.page-banner-area.page-service {
  background: url("../images/bg/bg-2.jpg") no-repeat;
  background-size: cover;
}

#service-head {
  padding-bottom: 100px;
  padding-top: 90px;
}

#service-head .section-title {
  color: #fff;
}

.text-white p {
  color: #fff;
}

#service {
  margin-top: -100px;
  padding-bottom: 70px;
}

.service-box .service-img-icon {
  width: 100px;
  height: 100px;
  text-align: center;
  background: #fff;
  padding-top: 20px;
  margin: 0 auto;
  border-radius: 100%;
  margin-bottom: 20px;
  background: #ff4757;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.service-box {
  margin: 10px;
  background: #fff;
  text-align: center;
  padding: 45px 25px 30px 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.service-inner {
  margin-top: 30px;
}

.service-inner h4 {
  margin-bottom: 20px;
}

.service-inner span {
  color: #ff4757;
}

/* ================================
SERVICE PAGE
==============================*/
.bg-gray {
  background: #f4f4f4;
}

.service-block-2 {
  position: relative;
}

.service-block-2 h4 {
  margin-bottom: 15px;
  line-height: 26px;
}

.service-block-2 p {
  font-size: 16px;
}

.service-block-2 span {
  position: absolute;
  content: "";
  font-size: 70px;
  top: 0px;
  left: 0px;
  font-weight: 800;
  opacity: 0.05;
  margin-top: -15px;
}

.service-style-two {
  background: url("../images/bg/bg-2.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

.service-style-two:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.heading {
  margin-bottom: 70px;
}



/* -------------------
PRICING PAGE
--------------------*/
#section-counter .counter-stat i {
  color: #000;
}

#section-counter .counter-stat h5 {
  color: #777;
}

/*------------------------------------
  CLIENT PARTNER AREA SECTION
--------------------------------*/
#clients {
  padding-top: 75px;
  padding-bottom: 80px;
  position: relative;
}

.client-img {
  background: #fff;
}

/*------------------------------------
  TESTIMONIAL AREA SECTION
---------------------------------*/
.author-img img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 5px solid #ddd;
}

.author-info p {
  margin: 0px;
  font-size: 14px;
}

.carousel-indicators {
  bottom: 0px;
  margin-bottom: 0px;
}

.carousel-indicators li {
  background: #111;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.carousel-indicators li.active {
  background: #ff4757;
}

.testimonial-content {
  padding: 0px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-content .author-text {
  padding-top: 10px;
}

.testimonial-content .author-info {
  display: block;
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 20px;
  line-height: 36px;
  color: #222;
  margin: 35px 0px;
  display: block;
}

.author-text h5 {
  text-transform: uppercase;
}

.author-text p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 36px;
  color: #888;
  margin: 0px;
}

.testimonial-content p i {
  margin: 0px 8px;
}

.carousel-indicators li {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/*--------------------------
 CONTACT SECTION AREA
----------------------*/
#contact {
  padding-bottom: 100px;
}

.text-color {
  color: #ff4757;
}

input[type=text],
input[type=email]{
  height: 50px;
}

.form-control {
  border: 1px solid #eee;
  padding-left: 20px;
}

.form-control:hover,
.form-control:focus {
  box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
}

.input:focus {
  outline: none;
}

.form-control::-webkit-input-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

.form-control::-moz-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

.form-control:-ms-input-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

.form-control:-moz-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

/* --------------
    MAP
-----------------*/
#map {
  height: 400px;
  width: 100%;
  position: relative;
}

/*--------------------------
 BLOG SECTION AREA
----------------------*/
#blog {
  padding-bottom: 55px;
}

.blog-block {
  overflow: hidden;
  transition: all 0.3s ease 0s;
}

.blog-block img {
  margin-bottom: 10px;
}

.blog-text {
  padding: 20px;
}

.blog-text .author-name {
  font-weight: 400;
}

.blog-text .author-name span {
  margin-right: 10px;
  font-weight: 600;
}

.blog-block .read-more,
.blog-block span {
  color: #ff4757;
}

/* =================================
BLOG PAGE
===================================*/
.blog-post {
  margin-bottom: 50px;
}

.blog-post img {
  border-radius: 5px;
}

.blog-post .post-author i,
.blog-post .post-info i {
  margin-right: 5px;
  font-size: 14px;
}

.blog-post .post-author span,
.blog-post .post-info span {
  font-size: 14px;
}

.sidebar-widget {
  margin-bottom: 40px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .sidebar-widget {
    padding-left: 0;
  }
}

.category ul li {
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
  padding-left: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.category ul li:before {
  position: absolute;
  content: "\f105";
  left: 0px;
  top: 0px;
  font-family: "Font Awesome 5 Free";
  color: #ff4757;
  font-weight: 900;
}

.tag a {
  text-transform: capitalize;
  padding: 5px 8px;
  border: 1px solid #eee;
  margin-bottom: 5px;
  font-size: 14px;
  display: inline-block;
}

.search i {
  position: absolute;
  right: 0px;
  top: 0px;
  margin-right: 35px;
  margin-top: 15px;
  color: #ff4757;
}

.download a {
  display: block;
  padding: 12px 20px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  background: #f2f2f2;
}

.download a i {
  margin-right: 15px;
  color: #ff4757;
}

/* ==================================
BLOG SINGLE
=====================================*/
.quote i {
  font-size: 50px;
  margin-right: 10px;
  position: absolute;
  left: 0px;
}

.quote {
  font-size: 18px;
  line-height: 32px;
  color: #222;
  position: relative;
  margin: 50px 0px;
  padding-left: 70px;
}

.comments img {
  width: 80px;
  height: 80px;
}

/*--------------------------
 FOOTER
----------------------*/
#footer {
  padding-bottom: 60px;
  position: relative;
  background: url("../images/bg/2.png");
}

.footer-widget ul li {
  padding: 5px 0px;
}

.footer-widget p {
  margin-bottom: 5px;
}

.footer-widget h4 {
  margin-bottom: 20px;
}

.footer-widget h4 span {
  color: #ff4757;
  display: block;
  font-size: 60px;
  line-height: 60px;
}

.footer-blog li img {
  width: 70px;
  height: 70px;
  float: left;
  margin-right: 20px;
}

.footer-blog li h5 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
}

.footer-blog li a.read-more {
  font-size: 13px;
}

.footer-blog li {
  margin-bottom: 15px;
}

.footer-copy {
  letter-spacing: 1px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.footer-text h6 {
  margin-bottom: 10px;
}

.footer-text p span {
  color: #000;
}

.footer-text p.mail {
  color: #ff4757;
}

.bg-main {
  background: #F4F8FB;
}

.footer-widget a {
  color: #999;
}

/*-------------------------------
 RESPONSIVE LAYOUT
---------------------------------*/
/*Extra large devices (large desktops, 1200px and up)*/
/*Large devices (desktops, 992px and up)*/
/*Medium devices (tablets, 768px and up)*/
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
  /*---------------
     NAVIGATION
    ----------------*/
  .navbar-toggler {
    background: #fff;
    border-radius: 0px;
  }
  .navbar-toggler-icon {
    height: auto;
    padding: 5px 0px;
    width: 1rem;
  }
  .trans-navigation {
    background: #ffffff;
  }
  .navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    margin-bottom: 10px;
  }
  /*----------------------
     SECTION HEAINDG
    -----------------------*/
  .section-heading {
    width: 100%;
  }
  /*----------------
     INTRO
    ----------------*/
  #intro {
    padding-bottom: 90px;
  }
  /*----------------
     ABOUT
    ----------------*/
  .about-list li {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .about-bg-img {
    width: 35%;
    height: 100%;
    max-height: 600px;
  }
  .about-content {
    margin-top: 60px;
  }
  #about {
    padding-bottom: 40px;
  }
  /*--------------
     COUNTER
    ----------------*/
  .counter-stat {
    margin-bottom: 30px;
    text-align: center;
  }
  /*--------------
     BLOG
    ----------------*/
  .blog-text {
    padding: 0px;
    margin-top: 10px;
  }
  .blog-tex h5 {
    font-size: 15px;
  }
  .blog-text p {
    font-size: 14px;
  }

  /*--------------
     FOOTER
    ----------------*/
  .footer-widget {
    margin-bottom: 30px;
  }
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /*---------------
     NAVIGATION
    ----------------*/
  .navbar-toggler {
    background: #fff;
    border-radius: 0px;
  }
  .navbar-toggler-icon {
    height: auto;
    padding: 5px 0px;
    width: 1rem;
  }
  .trans-navigation {
    background: #232323;
  }
  .navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    margin-bottom: 10px;
  }
  /*----------------------
     SECTION HEAINDG
    -----------------------*/
  .section-heading {
    width: 100%;
  }
  /*----------------
     INTRO
    ----------------*/
  #intro {
    padding-bottom: 90px;
  }
  /*----------------
     ABOUT
    ----------------*/
  .about-content {
    margin-top: 60px;
  }
  #about {
    padding-bottom: 40px;
  }
  /*-------------------
     TESTIMONIAL
    -------------------*/
  .testimonial-content {
    padding: 10px;
  }
  /*--------------
     COUNTER
    ----------------*/
  .counter-stat {
    margin-bottom: 30px;
    text-align: center;
  }
  /*--------------
     BLOG
    ----------------*/
  .blog-block {
    margin-bottom: 30px;
  }
  .blog-text {
    padding: 0px;
    margin-top: 10px;
  }
  .blog-block:hover {
    box-shadow: none;
  }
  .blog-text h5 {
    font-size: 16px;
  }
  .blog-text p {
    font-size: 14px;
  }
  .intro-box {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  /*--------------
     CLIENT
    --------------*/
  .client-img {
    text-align: center;
  }
  /*--------------
     FOOTER
    ----------------*/
  .footer-widget {
    margin-bottom: 30px;
  }

  .img-block img {
    width: 130px;
  }
}
/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  /*---------------
     NAVIGATION
    ----------------*/
  .navbar-toggler {
    background: #fff;
    border-radius: 0px;
  }
  .navbar-toggler-icon {
    height: auto;
    padding: 5px 0px;
    width: 1rem;
  }
  .trans-navigation {
    background: #ffffff;
    padding: 20px 15px;
  }
  .navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    margin-bottom: 10px;
  }

  .modal-dialog {
      top: 15%;
  }
  /*----------------------
     SECTION HEAINDG
    -----------------------*/
  #intro .section-heading,
.section-heading {
    width: 100%;
  }
  #intro .section-heading p {
    font-size: 16px;
    line-height: 28px;
  }
  .section-title {
    font-size: 26px;
    line-height: 36px;
  }
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
  /*--------------------
     BANNER
    -----------------*/
  .banner-content .banner-title {
    line-height: 37px;
  }
  .banner-content p {
    font-size: 16px;
  }
  /*----------------
     INTRO
    ----------------*/
  #intro {
    padding-bottom: 90px;
  }
  /*----------------
     ABOUT
    ----------------*/
  .about-list li {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .about-bg-img {
    width: 35%;
    height: 100%;
    max-height: 600px;
  }
  .about-content {
    margin-top: 60px;
  }
  #about {
    padding-bottom: 40px;
  }
  .img-block img {
    width: 130px;
  }
  .service-block {
    margin-bottom: 20px;
  }
  /*-------------------
     TESTIMONIAL
    -------------------*/
  .testimonial-content {
    padding: 10px;
  }
  /*--------------
     COUNTER
    ----------------*/
  .counter-stat {
    margin-bottom: 30px;
    text-align: center;
  }
  /*--------------
     BLOG
    ----------------*/
  .blog-block {
    margin-bottom: 30px;
  }
  .blog-text {
    padding: 10px;
    margin-top: 10px;
    text-align: center;
  }
  .blog-tex h5 {
    font-size: 15px;
  }
  .blog-text p {
    font-size: 14px;
  }
  /*--------------
     CLIENT
    --------------*/
  .client-img {
    text-align: center;
  }
  /*--------------
     FOOTER
    ----------------*/
  .footer-widget {
    margin-bottom: 30px;
  }

}
/*# sourceMappingURL=style.css.map */
