@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Ubuntu:wght@400;500;700&display=swap");


@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap");



:root {
    --primary-color: #367e9d;
    --white-color: #fff;
    --light-grey-color: #ddd;
    --blue-color: #0f2454;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "poppins",sans-serif;
}

html {
   font-size: 16px;
}

/*UTILITY CLASSES START*/

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a {
    text-decoration: none;
}
.heading-normal-txt {
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: var(--primary-color);
}
.headings {
    font-size: 3rem;
    font-family: "ubuntu";
    padding-bottom: 2rem;
    letter-spacing: 2px;
}
.headings span {
    color: var(--primary-color);
}
.secondary-headings {
    font-size: 2.5rem;
    font-family: "ubuntu";
    padding: 1rem 0;
}
.lead {
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
}
.primary-btn {
    width: 50%;
    outline: none;
    background-color: var(--primary-color);
    border: none;
    padding: 0.7rem;
    font-size: 1rem;
    border-radius: 4px;
    color: var(--white-color);
    cursor: pointer;
}

/*UTILITY CLASSES ENDS*/

/*HEADER STARST*/

header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100;
    transition: all 0.3s ease-in-out;
}
header.sticky {
    background-color: var(--primary-color);
}
.logo {
    text-align: center;
}
.logo p {
    font-family: "Alex Brush", cursive;
    color: var(--white-color);
    font-size: 3rem;
    font-weight: 900;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style-type: none;
    display: flex;
}
nav ul li {
    margin: 0 0.9rem;
    position: relative;
}
nav ul li a {
    color: var(--white-color);
    font-size: 1.1rem;
}
nav ul li::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white-color);
    opacity: 0;
    transition: all 0.3s ease-in;
}
nav ul li:hover::before {
    opacity: 1;
    width: 100%;
}
.btn {
    font-size: 1.3rem;
    color: var(--white-color);
    cursor: pointer;
    display: none;
}

/*HEADER ENDS*/

/*HERO STARTS*/

main {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.swiper {
    height: 100vh;
}
.slide-container {
    width: 100%;
}
.slide-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-overlay {
    position:absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 100%;
    font-family: "ubuntu";
    transform: translate(-50%, -50%);
}
.img-overlay p {
    font-size: 2rem;
    letter-spacing: 8px;
    color: var(--white-color);
    animation: animate 4s forwards;    
}
.img-overlay h2 {
    font-size: 4rem;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: animate 4s forwards;
    transition: all 0.5s ease-in-out;
}
.overlay{
    position: relative;
}
.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
@keyframes animate {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }
    50% {
        opacity: 0.2;
    }
    70% {
        opacity: 0.5;
    }
    70% {
        opacity: 1;
        transform: translateX(-0%);
    }
}
.img-overlay h2 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--white-color);
}

/*HERO ENDS*/

/*ABOUT STARTS*/

.about-content-wrapper {
   display: grid;
   grid-template-columns: repeat(2, 1fr); 
   grid-column-gap: 3rem;
   margin: 3rem 0;
}
.about-content-wrapper h2 span {
    color: var(--primary-color);
    font-family: "ubuntu";
}
.about-content-wrapper ul {
    list-style: none;
}
.about-content-wrapper ul .icons {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}
.about-content-wrapper ul .icons i {
    background: var(--primary-color);
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--white-color);
}
.about-content-wrapper ul p {
    margin-left: 1rem;
}
.agency-right-side .img {
    position: relative;
}
.agency-right-side .img img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    transition: 0.5s ease-in;
}
.agency-right-side .img::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 55px;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    width: 90%;
    height: 100%;
    z-index: -2;
}
.agency-right-side .img img:hover {
    transform: scale(0.95);
}

/*ABOUT ENDS*/

/*CHOOSE STARTS*/

#choose-place {
    padding: 6rem 0;
}

.lg-img {
    position: relative;
    transition: all0.5s;
    cursor: pointer;
    width: 100%;
    height: 96%;
}
.lg-img:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.lg-img:hover {
    transform: scale(1.02);
}
.img-content {
    position: absolute;
    top: 20px;
    left: 20px;
}
.img-content h2 {    
    color: var(--white-color);
}
.choose-button {        
    bottom: 30px;
    left: 20px;     
    display: block;
    position: absolute;   
    padding: 0.5rem 1.5rem;
    outline: none;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    font-size: 1rem;
}
.row-wise-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

/*CHOOSE ENDS*/

/*STATIC COUNTER STARTS*/

#static-counter {
    padding: 6rem 0;
    background: url('../img/blog.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    z-index: 4;
}
#static-counter::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: -1;
}
.static-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    text-align: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;    
}
.static-icons {
    color: var(--white-color);
    cursor: pointer;
}
.static-icons i{
    font-size: 3rem;
    padding: 2rem;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease-in;
}    
.static-icons i:hover {
   background: var(--primary-color);
   border: none;
   transform: translateY(-20%);
}
.static-icons h3 {
    font-size: 2rem;
    padding-top: 1rem;
}
.static-icons p {
    font-size: 1.5rem;
}

/*STATIC COUNTER ENDS*/

/*TOP PRODUCTS STARTS*/

#top-products {
    padding: 6rem 0;
    margin-bottom: -5rem;
}
.top-products-wrapper {
    width: 100%;
}
.carousel {
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    width: 100%;
}
.carousel:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.carousel-img-overlay {
    width: 100%;
}
.img-content h2 {
    padding-left: 1rem;
}
.hidden-content-carousel {
    padding-bottom: 20rem;
    padding-left: 1rem;
    color: var(--white-color);
    transform: translateY(120%);
    transition: all 0.5s ease-in-out;
}
.carousel:hover .hidden-content-carousel {
    transform: translateY(50%);
}
.carousel:hover {
    transform: scale(1.1);
}

/*TOP PRODUCTS ENDS*/

/*VIDEO STARTS*/

#short-video {
    padding: 6rem 0;
    position: relative; 
}
#short-video video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;   
    object-fit: cover;
    max-height: 650px;
}
.video-bg {
    position: relative;
}
.video-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Középre igazítja a tartalmat vízszintesen */
    justify-content: center; /* Középre igazítja a tartalmat függőlegesen */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    background-color: #a5a3a353;
    border-top: 1px solid rgba(255, 255, 255, 0.381);
    backdrop-filter: blur(10px);
    padding: 1rem;
    width: auto; /* Biztosítja, hogy a szélesség rugalmas maradjon */
}

.video-content h2 {
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--white-color);
    font-family: "ubuntu";
    margin-bottom: 1rem;
}

.video-content span {
    font-size: 1.7rem;
    font-weight: bold;
}

.video-content .more {  
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    padding: 0.5rem 1.5rem;
    border: solid 1px;
    border-color: var(--white-color);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
    color: #0f2454;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 30px; /* Távolság a felette lévő szövegtől */
}

.video-content .m-button {
    color: var(--white-color);
    text-align: center;
    width: 100%; /* Középre igazítja a gomb szövegét */
}


/*VIDEO ENDS*/

/*TECHNIKA STARTS*/

#technika {
   margin-top: -8rem;
   padding: 6rem 0; 
}
/* Grid elrendezés a makrame-wrapper számára */
.makrame-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    width: 100%;
    grid-gap: 2rem;
}
/* A makrame tartalmi rész margója */
.makrame-content {
    margin-top: 2rem;
}

/* A listaelem grid-beállítása, hogy 3 oszlopban jelenjen meg */
.makrame-content ul {
    list-style: none; /* Az alapértelmezett lista jelölések eltávolítása */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 oszlop egyenlő arányban */
    gap: 1rem; /* Távolság a listaelemek között */
    margin: 1rem 0;
    padding: 0;
}



/* Listaelemek stílusa */
.makrame-content ul li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}



/* Listaelemek ikon stílusa */
.makrame-content ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color); /* Az elsődleges szín beállítása az ikonhoz */
}
.primary-btn {
    margin-top: 5rem;
}



/* A slider tartalom beállítása */
.slider-content-wrapper {
    overflow: hidden; 
    /* Ha szükséges további stílusok hozzáadása, például szélesség vagy max-magasság */
}


/*TECHNIKA ENDS*/

/*BLOG STARTS*/

#creative-blog {
    background: url('../img/blog.jpg') no-repeat center center/cover;
    
    padding: 6rem 0;
}
.container h3 {
    color: var(--white-color);
    font-size: 2rem;
}
.blog:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.blog-img-overlay {
    width: 100%;
}
.blog-img-content {
    position: absolute;
    bottom: -30px;
}
.blog-img-content {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 2rem 1rem;
    transition: all 0.5s ease-in;
    transform: translateY(-50%);
    color: var(--white-color);   
}
.blog:hover .blog-img-content {
    transform: translateY(-10%);
}
.blog-img-content h2 span {
    color: var(--primary-color);
}

/*BLOG ENDS*/

/*FOOTER STARTS*/

#footer {
    padding: 2rem 0;
    background: #114b64;    
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    bottom: 0;
    left: 0;
    display: grid;    
    background-color: #a5a3a353;
    border-top: 1px solid rgba(255, 255, 255, 0.381);
    backdrop-filter: blur(30px);
    align-items: center;
    text-align: center;
}
.ft-content {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--white-color);
}

.icon i {
    padding: 0.7rem;
    font-size: 2rem;
    background: var(--primary-color);
}
.content {
    padding: 1rem;
}
.footer-wraper {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Az 'about' rész 2x szélesebb, a map pedig 1x */
    padding-top: 1rem;
    grid-gap: 2rem;
    color: var(--white-color);
    margin: 1rem 0;
}
.about h1 {
    font-size: 50px;
    font-family: "Alex Brush", cursive;
}
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}
.social-icons i {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem;
    font-size: 1.3rem;
    margin: 1rem 0;
    border-radius: 50%;
    cursor: pointer;
}
.about .lead {
    font-size: 0.95rem;
    margin-top: 1rem;
}

.map {
    justify-self: end; /* A map elem igazítása jobbra a grid-en belül */
    width: 100%;       /* A térkép kitölti a rendelkezésre álló szélességet */
    height: auto;      /* Magasság automatikus, hogy illeszkedjen az iframe méretéhez */
}

.map iframe {
    width: 100%;       /* Az iframe szélessége a szülő elemhez igazodik */
    height: 170px;     /* Az iframe magassága, hogy ne takarjon a következő részre */
}

.footer {
    clear: both;       /* Ezzel biztosítod, hogy a footer ne legyen átfedésben a felette lévő elemekkel */
    border-top: 1px solid var(--white-color);
    padding-top: 1rem; /* Elegendő hely biztosítása a footer felső része és a térkép között */
}
.footer h3 {
    text-align: center;
    font-size: 0.8rem;
    color: var(--white-color);
    font-weight: 100;
}


/*FOOTER ENDS*/






