/********** Template CSS **********/
:root {
    --primary: #3f85a1;
    --light: #F3F4F5;
    --dark: #282F34;
}

/* Custom button styling to ensure light blue color */
.btn-primary {
    background-color: #87ceeb !important; 
    border-color: #87ceeb !important;
    color: #000 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #a2d5f2 !important;
    border-color: #9acfea !important;
    color: #000 !important;
}

/* Custom topbar height and styling */
.container-fluid.bg-light {
    padding-top: 0px !important; /* Increase top padding */
    padding-bottom: 0px !important; /* Increase bottom padding */
    background-color: #cfdae6 !important; /* Change background color to light gray */
}

.container-fluid.bg-light .h-100 {
    padding-top: 8px !important; /* Adjust inner element padding */
    padding-bottom: 8px !important; /* Adjust inner element padding */
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 28px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #1770c3;
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #1770c3;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Remove hover line bar effect in tablet view */
@media (max-width: 1199.98px) and (min-width: 768px) {
    .navbar .navbar-nav .nav-link::after {
        display: none !important;
    }
    
    .navbar .navbar-nav .nav-link:hover::after,
    .navbar .navbar-nav .nav-link.active::after {
        display: none !important;
    }
    
    /* Custom tablet hover style */
    .navbar .navbar-nav .nav-link {
        border-radius: 6px;
        padding: 8px 16px !important;
        margin: 0 4px;
        transition: all 0.3s ease;
    }
    
    .navbar .navbar-nav .nav-link:hover {
        background-color: rgba(63, 133, 161, 0.1);
        color: #1770c3 !important;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(63, 133, 161, 0.15);
    }
    
    .navbar .navbar-nav .nav-link.active {
        background-color: rgba(63, 133, 161, 0.15);
        color: #1770c3 !important;
        box-shadow: 0 2px 8px rgba(63, 133, 161, 0.2);
    }
}

@media (max-width: 991.98px) {
    .navbar {
        flex-wrap: wrap;
        align-items: center;
        padding: 8px 15px;
    }
    
    .navbar .navbar-brand {
        position: relative;
        z-index: 1001;
        order: 1;
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0;
        margin-right: 10px;
    }
    
    .navbar .navbar-brand img {
        max-height: 24px;
        margin-right: 8px;
    }
    
    .navbar .navbar-brand img:last-child {
        margin-right: 0;
    }
    
    .navbar .navbar-toggler {
        position: relative;
        z-index: 1002;
        border: 2px solid #e9ecef;
        padding: 8px 10px;
        order: 2;
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 42px;
        border-radius: 6px;
        background-color: #f8f9fa;
        transition: all 0.3s ease;
    }
    
    .navbar .navbar-toggler:hover {
        border-color: #3f85a1;
        background-color: #ffffff;
        box-shadow: 0 2px 8px rgba(63, 133, 161, 0.15);
    }
    
    .navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(63, 133, 161, 0.25);
        outline: none;
    }
    
    .navbar .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-size: 24px 24px;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        width: 100%;
    }
    
    .navbar .navbar-collapse {
        position: relative;
        z-index: 1000;
        background: #ffffff;
        margin-top: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 5px;
        padding: 15px !important;
        width: 100%;
        order: 3;
        flex-basis: 100%;
        clear: both;
    }
    
    /* Ensure no overlap by creating clear separation */
    .navbar-expand-lg .navbar-collapse {
        display: none;
    }
    
    .navbar-expand-lg .navbar-collapse.show {
        display: block !important;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

/* Additional mobile-specific overrides */
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        background: transparent;
    }
    
    .navbar .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Add spacing before MYVTX button in mobile */
    .navbar .navbar-collapse .btn {
        margin-top: 10px;
        margin-left: 0;
        width: auto;
        display: inline-block;
    }
    
    /* Prevent any absolute positioning conflicts */
    .navbar * {
        position: relative !important;
    }
    
    .navbar .navbar-brand,
    .navbar .navbar-toggler {
        position: relative !important;
        z-index: auto;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/background-2.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.feature-img img {
    position: absolute;
    width: 60%;
    height: 70%;
    object-fit: cover;
}

.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}

.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/** Mission & Vision **/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Services ***/
.service-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: .4s;
}

.service-item:hover .bg-img {
    z-index: 1;
    opacity: 1;
}

.service-item .service-text {
    background: #ffffff;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(63, 133, 161, 0.03) 10px, rgba(63, 133, 161, 0.03) 20px),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: .4s;
    z-index: 2;
    opacity: 1;
    position: relative;
    border: 1px solid #e9ecef;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .75);
    background-image: none;
}

.service-item * {
    transition: .4s;
    color: var(--dark);
}

.service-item img:first-of-type {
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.service-item h3 {
    opacity: 1;
    color: #2c3e50;
    font-weight: 600;
}

.service-item:hover h3 {
    color: #ffffff;
}

.service-item p {
    opacity: 0.8;
    max-height: 100px;
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.service-item p.expanded {
    max-height: none;
    overflow: visible;
    text-overflow: unset;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

.service-item ul {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.service-item li {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-item:hover ul,
.service-item:hover li,
.service-item.expanded ul,
.service-item.expanded li {
    color: #ffffff;
    opacity: 1;
}

.service-item.expanded .service-text {
    background: rgba(0, 0, 0, .75);
    background-image: none;
}

.service-item.expanded .bg-img {
    z-index: 1;
    opacity: 1;
}

.service-item.expanded * {
    color: #FFFFFF;
    opacity: 1;
}

.service-item.expanded h3 {
    color: #ffffff;
}

.service-item.expanded .btn {
    background: #ffffff;
    color: #3f85a1;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Page Fixes */
.contact-item {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 1.5rem !important;
}

.contact-item h5 {
    font-size: 0.95rem !important;
    line-height: 1.4;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.contact-item .ms-4 {
    flex: 1;
    min-width: 0;
    margin-left: 0.75rem !important;
}

.contact-item .btn-lg-square {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-item h5 {
        font-size: 0.85rem !important;
    }
    
    .contact-item .ms-4 {
        margin-left: 0.5rem !important;
    }
    
    .contact-item {
        padding: 1rem !important;
    }
}

.service-item .btn {
    opacity: 0.7;
    max-height: 40px;
    background: #f8f9fa;
    border: 2px solid #3f85a1;
    color: #3f85a1;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin: 15px auto 0;
    text-align: center;
    width: fit-content;
}

.service-item:hover * {
    color: #FFFFFF;
    opacity: 1;
}

.service-item:hover p,
.service-item:hover .btn {
    opacity: 1;
    max-height: 200px;
    color: #ffffff;
}

.service-item:hover .btn {
    background: #ffffff;
    color: #3f85a1;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-item .btn {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow: visible;
    transition: .4s;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
}

.service-item:hover .btn {
    background: #ffffff;
    color: #3f85a1;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3f85a1, #87ceeb);
    z-index: 3;
}

/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/highlight-1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/footer.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


hr {
    border: none;
    height: 4px;
    background: linear-gradient(to right, transparent, #3f85a1, transparent);
    margin: 40px 0;
    position: relative;
}

hr:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: linear-gradient(to right, rgba(63, 133, 161, 0.3), #3f85a1, rgba(63, 133, 161, 0.3));
    border-radius: 3px;
}