.section-header,
.section-header h2 {
    padding-bottom: 20px
}

.breadcrumbs nav,
.sections-bg {
    background-color: #f6f6f6
}

.breadcrumbs nav ol,
body {
    color: var(--color-default)
}

.column1,
.footer .copyright,
.footer .credits,
.gallery #gallery-flters,
.gallery .gallery-wrap .gallery-info,
.hero .icon-box,
.hero-text,
.lb-loader,
.lightbox,
.mrg,
.section-header {
    text-align: center
}

.contact a,
.scroll-top,
a,
a:hover {
    text-decoration: none
}

@media (min-width:581px) {
    .video-mobile {
        display: none
    }
}

#video-desktop,
#video-mobile {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1
}

@media (max-width:580px) {
    .video-desktop {
        display: none
    }

    .video-mobile {
        height: 110%
    }
}

:root {
    --font-default: 'Winky Sans', sans-serif;
    --font-primary: 'Winky Sans', sans-serif;
    --font-secondary: 'Winky Sans', sans-serif;
    --color-default: #121212;
    --color-primary: #4b2e16;
    --color-secondary: #ffad33;
    scroll-behavior: smooth
}

body {
    font-family: var(--font-default)
}

.breadcrumbs nav ol a,
a {
    color: var(--color-primary)
}

a:hover {
    color: #f85a40
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary)
}

section {
    padding: 90px 0;
    overflow: hidden;
    scroll-margin-top: 70px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative
}

.section-header p {
    margin-bottom: 0;
    color: #6f6f6f
}

.breadcrumbs .page-header {
    padding: 60px 0;
    min-height: 20vh;
    position: relative;
    background-color: var(--color-primary)
}

.breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary)
}

.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, .8)
}

.breadcrumbs nav {
    padding: 20px 0
}

.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600
}

.breadcrumbs nav ol a {
    transition: .3s
}

.breadcrumbs nav ol a:hover {
    text-decoration: underline
}

.breadcrumbs nav ol li+li {
    padding-left: 10px
}

.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary);
    content: "/"
}

.scroll-top {
    background-color: #4b2e16; /* Однорідний колір фону */
    color: #fff; /* Білий колір тексту */
    transition: .3s; /* Зміна ефекту при наведенні */
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    width: 44px; /* Ширина кнопки */
    height: 44px; /* Висота кнопки */
    border-radius: 0; /* Квадратна форма */
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top i {
    font-size: 24px; /* Розмір іконки */
    color: #fff; /* Колір іконки */
}

.scroll-top:hover {
    background-color: #8c4401; /* Зміна кольору при наведенні */
}

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


#preloader {
    position: fixed;
    inset: 0;
    display: flex; /* Додаємо Flexbox для центрування */
    justify-content: center;
    align-items: center;
    z-index: 999999;
    background: #eeeeee;
    transition: .6s ease-out;
}

#preloader:before {
    content: "";
    border: 18px solid #fff;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    width: 60px; /* Це діаметр кола */
    height: 60px; /* Це діаметр кола */
    -webkit-animation: 1.5s linear infinite animate-preloader;
    animation: 1.5s linear infinite animate-preloader;
}

/* Анімація обертання */
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* На мобільних екранах */
@media screen and (max-width: 768px) {
    #preloader:before {
        width: 50px; /* Можна змінити розмір прелоадера для мобільних */
        height: 50px; /* Можна змінити розмір прелоадера для мобільних */
    }
}


.header {
    transition: .5s;
    z-index: 997;
    height: 90px;
    background-color: #e2e2e2
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, .1) */
}

.header .logo img {
    /* max-height: 79px; */
    max-height: 55px;

    margin-right: 6px
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: .8px;
    color: #584226;
    font-family: var(--font-primary)
}

.header .logo h1 span,
.hero .circle {
    color: #f96f59
}

@media (min-width:1280px) {
    .navbar {
        padding: 0
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }

    .navbar li {
        position: relative
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 400;
        color: #938570;
        white-space: nowrap;
        transition: .3s;
        position: relative
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
background: linear-gradient(334deg, #736147, #523c20);
        visibility: hidden;
        width: 0;
        transition: .3s ease-in-out
    }

    .navbar .active:before,
    .navbar a:hover:before,
    .navbar li:hover>a:before {
        visibility: visible;
        width: 100%
    }

    .navbar .active,
    .navbar .active:focus,
    .navbar a:hover,
    .navbar li:hover>a {
        color: #584226;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 17px 0 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #2a2a2a;
        box-shadow: 0 0 30px rgba(127, 137, 161, .25);
        transition: .3s;
        border-radius: 0
    }

    .navbar .dropdown ul li {
        min-width: 200px
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: #fff
    }

    .navbar .dropdown ul a i {
        font-size: 12px
    }

    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-secondary)
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible
    }

    .mobile-nav-hide,
    .mobile-nav-show {
        display: none
    }
}

.colon,
.mrg {
    padding: 2.5%
}

@media (min-width:1280px) and (max-width:1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%
    }
}

@media (max-width:1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100vh;
        bottom: 0;
        transition: .3s;
        z-index: 9997;
        height: 100vh;
    }

    .mobile-nav-hide,
    .mobile-nav-show {
        cursor: pointer;
        line-height: 0;
        transition: .5s;
        z-index: 9999
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50% 0 10px;
        margin: 0;
        background: #eee;
        overflow-y: auto;
        transition: .3s;
        z-index: 9998
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 27px;
        font-weight: 600;
        color: #584226;
        white-space: nowrap;
        transition: .3s
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px
    }

    .navbar .active,
    .navbar .active:focus,
    .navbar a:hover,
    .navbar li:hover>a {
        color: #584226
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--color-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff
    }

    .navbar .getstarted:focus:hover,
    .navbar .getstarted:hover {
        color: #fff;
        background: rgba(0, 131, 116, .8)
    }

    .navbar .dropdown .dropdown ul,
    .navbar .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: .5s ease-in-out;
        background-color: #f85a40
    }

    .navbar .dropdown .dropdown>.dropdown-active,
    .navbar .dropdown>.dropdown-active {
        display: block
    }

    .mobile-nav-show {
        color: rgba(88 66 38);
        font-size: 28px;
        margin-right: 10px
    }

    .mobile-nav-hide {
        color: #584226;
        font-size: 32px;
        position: fixed;
        right: 20px;
        top: 25px
    }

    .mobile-nav-active {
        overflow: hidden
    }

    .mobile-nav-active .navbar {
        right: 0
    }
}

.call-to-action,
.hero .icon-box,
body.lb-disable-scrolling {
    overflow: hidden
}

.call-to-action .cta-btn:hover,
.call-to-action h2,
.ceny h2,
.ceny h3,
.ceny p,
.contact .php-email-form .btn[type=submit]:hover,
.footer .credits a,
.footer .footer-links ul a:hover,
.hero .icon-box:hover .icon,
.hero .icon-box:hover .title a,
.section-lg {
    color: #fff
}

.ceny h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--font-secondary)
}

.ceny .content p:last-child,
.ceny p {
    margin-bottom: 0
}

.ceny {
    background: center/cover #161616
}

.mrg {
    margin-top: .6%;
    background: #222
}

.ceny h5 {
    color: #d6952c;
    font-size: 16px;
    letter-spacing: 1px
}

.ceny li {
    color: #fff;
    font-weight: 100
}

.ceny .content ul {
    list-style: none;
    padding: 0
}

.ceny .content ul li {
    padding: 0 0 10px 30px;
    position: relative
}

.ceny .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--color-primary)
}

.custom-row {
    display: flex
}

.colon {
    margin: .6%;
    background: #1e1e1e
}

.call-to-action .cta-btn,
.contact .php-email-form .btn[type=submit] {
    background-color: #4b2e16;
    border-radius: 0px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 60px;
    width: auto; /* Залишаємо ширину автоматичною */
    max-width: 200px; /* Обмежуємо максимальну ширину */
    border: none;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 0 auto; /* Центруємо кнопку */
    font-family: Winky Sans;
}
/*
.call-to-action .cta-btn:hover,
.contact .php-email-form .btn[type=submit]:hover {
    background-color: #dbba44;
} */


@keyframes pulsate-btn {
    0% {
        transform: scale(.6, .6);
        opacity: 1
    }

    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

.hero {
    position: relative;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 101vh
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .36)
}

.hero .caption {
    height: 370px
}

@media (min-width:1365px) {
    .hero {
        background-attachment: fixed;
        padding: 515px 0 0
    }
}

.hero p {
    margin-bottom: 15px
}

@media (max-width:767px) {
    .hero h2 {
        font-size: 50px
    }

    .icon-boxes .card-two {
        margin-top: var(--bs-gutter-y);
        margin-bottom: 0;
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5)
    }
}

.hero .icon-boxes {
    padding-bottom: 60px
}

@media (min-width:1200px) {
    .hero .icon-boxes:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(50% + 20px);
        background-color: #fff
    }
}

.icon {
    font-size: 50px;
    color: #fff
}

.bg-gray-100 {
    background: #161616
}

.hero .icon-box {
    padding: 20px 30px;
    position: relative;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, .08);
    transition: .3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%
}

.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px
}

.hero .icon-box .title a {
    color: #121212;
    transition: .3s
}

.hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: .3s ease-in-out;
    font-size: 48px;
    line-height: 1;
    color: rgb(0 0 0 / 60%)
}

.hero .icon-box:hover {
    background: #222
}

.footer {
    font-size: 14px;
    background-color: #eeeeee;
    padding: 50px 0;
    color: #9d8570
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px
}

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

.footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-primary)
}

.footer .footer-info p {
    font-size: 14px;
    font-family: var(--font-primary)
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #9d8570;
    font-size: 16px;
    color: #9d8570;
    margin-right: 10px;
    transition: .3s
}

/* .footer .social-links a:hover {
    color: #fff;
    border-color: #fff
} */

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links,
.gallery .gallery-item {
    margin-bottom: 30px
}

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

.gallery-details .gallery-info h3,
.hero-text h2,
.resume .resume-title {
    margin-bottom: 20px;
    font-weight: 700
}

.footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(0, 131, 116, .8);
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

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

.footer .footer-links ul a {
    color: rgba(255, 255, 255, .7);
    transition: .3s;
    display: inline-block;
    line-height: 1
}

.footer .footer-contact p {
    line-height: 26px
}

.footer .credits {
    padding-top: 4px;
    font-size: 13px
}

.img-fl {
    max-width: 100%;
    height: auto
}

.resume {
    position: relative;
    background: center/cover #e5e4e3;
    color: #69452e;
}

.resume h2,
.resume p {
    letter-spacing: 1.5px
}

.resume .resume-title {
    font-size: 26px;
    margin-top: 20px;
    color: #45505b
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #c08526;
    position: relative
}

.resume .resume-item:last-child {
    padding-bottom: 0
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50px;
    left: -7.5px;
    top: 5px;
    background: #d6952c;
    border: 2px solid #d6952c
}

.resume .row {
    margin-bottom: 7%;
    background: #c2c2c2;
}

.gallery {
  background-color: #eeeeee;
  color: #4b2e16;
}

.hero-text,
.row1 {
    bottom: 0;
    right: 0
}

.contact .info,
.contact .php-email-form {
    width: 100%
}

* {
    scrollbar-width: thin;
    scrollbar-color: #4D4D4D #121212
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #121212
}

::-webkit-scrollbar-track:hover {
    background-color: #262626
}

::-webkit-scrollbar-track:active {
    background-color: #262626
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #4d4d4d
}

::-webkit-scrollbar-thumb:hover {
    background-color: #666
}

::-webkit-scrollbar-thumb:active {
    background-color: #666
}

.transparent-navbar {
    /* background-color: rgba(0, 0, 0, .25); */
    transition: background-color .3s;
    /* backdrop-filter: blur(15px) */
}

.normal-navbar {
    background-color: #121212
}

.usim {
    position: absolute
}

.hero-text,
.row1 {
    position: absolute
}

.hero-text {
    top: 47%;
    left: 0;
    color: #fff;
    padding: 10px 0
}

.hero-text h2 {
    text-shadow: 2px 1px 10px rgba(0, 0, 0, 0.24);
    font-size: 79px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e7e7e7;
    font-family: 'Winky Sans', sans-serif;
    text-transform: uppercase;
    opacity: .88;
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 30px;
    }
}

.row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    left: 0;
    z-index: 4;
    margin-left: 25%;
    margin-right: 25%
}

.column1 {
    flex: 1;
    color: #fff;
    padding: 20px
}

.column1 h2 {
    margin-bottom: 10px;
    font-size: 29px;
    font-weight: 700;
    opacity: .4
}

.column1 p {
    margin: 0;
    font-size: 20px;
    opacity: .4
}

#contact input,
#contact textarea {
  background: #eeeeee;
      color: #938570;
      border-radius: 0px;
}

#contact input::placeholder {
  color: #938570;

}
#contact textarea::placeholder {
  color: #938570;

}
.form-control {
    background: #1e1e1e;
    border: 0
}

.contact {
  background: #f8f9fa;
  color: #4b2e16;
}

.contact a {
    outline: 0
}

.contact .col-lg-8 {
    margin: 0
}

.contact .info i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background: #4b2e16;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: .3s ease-in-out
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #4b2e16
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #938570
}

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

/* .contact .info .address:hover i,
.contact .info .email:hover i,
.contact .info .phone:hover i {
    background: #d6952c;
    color: #121212
} */

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

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: 1s linear infinite animate-loading
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=pojazd],
.contact .php-email-form input[type=przejazd],
.contact .php-email-form input[type=temat],
.contact .php-email-form input[type=numer] {
    height: 44px;
}

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

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

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

@media (max-width:1000px) {
    .usim {
        display: none
    }
}

@media (min-width:1001px) and (max-width:1200px) {
    .usim {
        margin-left: 56%;
        margin-top: 12.3%
    }

    .usim img {
        width: 37%;
        padding-right: 0
    }
}

@media (min-width:1201px) and (max-width:1400px) {

    .usim {
        margin-left: 55%;
        margin-top: 8.5%
    }

    .usim img {
        width: 39%;
        padding-right: 0
    }
}

@media (max-width:768px) {
    #preloader:before {
        top: 21%;
        left: 21%
    }

    .header .logo img {
        max-height: 50px
    }

    .ceny li,
    p {
        font-size: 14px
    }

    .ceny h5 {
        font-size: 15px
    }

    .colon {
        padding: 7.5%;
        margin: 4% 0 0
    }

    .row1 {
        display: none
    }

    .col-lg-8 {
        padding: 8%
    }

    .row {
        flex-direction: column
    }

    .contact .info {
        margin-left: 5%;
        margin-right: 5%
    }

    .hero-text {
        top: 42%
    }

    .col-lg-11 {
        text-align: justify
    }
}

@media (min-width:768px) {
    .scroll-top:hover {
        background-position: 0 0
    }

    .icon-boxes .card-two {
        margin-top: -20px;
        margin-bottom: -20px
    }

    .col-lg-8 {
        margin-top: 3%;
        margin-left: 3%;
        margin-bottom: 1.7%
    }
}

@media (min-width:1400px) {
    .usim {
        position: absolute;
        margin-left: 51%;
        margin-top: 6%
    }

    .usim img {
        width: 41%;
        padding-right: 0
    }
}

@media (min-width:992px) {
    .col-lg-11 {
        flex: 0 0 auto;
        width: 98.73%;
        text-align: center
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 48.8%
    }
}

.shorts-container {
    position: relative;
    width: 100%;
    padding-bottom: 86.78%;
    /* 315 / 560 * 100 */
    flex: 1;
    /* Рівномірне розподілення простору */
    margin-right: 20px;
    /* Проміжок між короткими відео */
}

.shorts-container:last-child {
    margin-right: 0;
    /* Видаляємо проміжок після останнього короткого відео */
}

.shorts-container iframe {
    width: 100%;
}

.shorts-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery img {
    padding: 0px;
    border: 0px;
}

.col-md-4 {
    transition: .8s cubic-bezier(.2, .8, .2, 1);
    border-radius: 3px;
}

.col-md-4:hover {
    transform: scale(1.035, 1.035);
}

.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.fullscreen-image.active {
    opacity: 1;
}

.fullscreen-image img {
    max-width: 90%;
    max-height: 90%;
}

.colll {
  background: #eeeeee;
}
