* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.image-box {
    cursor: pointer;
    position: relative;
    margin: auto;
    overflow: hidden;
    width: 360px;
}

.image-box img {
    max-width: 100%;
    transition: all 0.5s;
    display: block;
    height: auto;
    transform: scale(1);
}

.image-box:hover img {
    transform: scale(1.1);
}

.textWithBlurredBg {
    display: inline-block;
    position: relative;
    transition: .3s;
    margin: 4px;
}

.textWithBlurredBg img {
    width: 100%;
    height: 100%;
    transition: .3s;
    border-radius: 4px;
}

.textWithBlurredBg:hover img {
    filter: blur(0.8px);
}

.textWithBlurredBg :not(img) {
    position: absolute;
    z-index: 1;
    top: 30%;
    width: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: .3s;
}

.textWithBlurredBg h3 {
    top: 55%
}

.textWithBlurredBg:hover :not(img) {
    opacity: 1;
}

* {
    padding: 0;
    margin: 0;
}

.label-container {
    position: fixed;
    bottom: 48px;
    right: 105px;
    display: table;
    visibility: hidden;
}

.label-text {
    color: #FFF;
    background: rgba(51, 51, 51, 0.5);
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    border-radius: 3px;
}

.label-arrow {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    opacity: 0.5;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #cc9e3b;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 2px #999;
}

.my-float {
    font-size: 24px;
    margin-top: 18px;
}

a.float+div.label-container {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

a.float:hover+div.label-container {
    visibility: visible;
    opacity: 1;
    box-shadow: 2px 2px 3px #999;
}

.label-container {
    position: fixed;
    bottom: 48px;
    right: 105px;
    display: table;
    visibility: hidden;
}

.label-text {
    color: #FFF;
    background: rgba(51, 51, 51, 0.5);
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    border-radius: 3px;
}

.label-arrow {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    opacity: 0.5;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #4FCE5D;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 0px 25px #000;
    z-index: 1000;
    animation: bot-to-top 2s ease-out;
}

.my-float {
    font-size: 24px;
    margin-top: 18px;
}

a#menu-share+ul {
    visibility: hidden;
}

a#menu-share:hover+ul {
    visibility: visible;
    animation: scale-in 0.5s;
}

a#menu-share i {
    animation: rotate-in 0.5s;
}

a#menu-share:hover>i {
    animation: rotate-out 0.5s;
}

@keyframes bot-to-top {
    0% {
        bottom: -40px
    }
    50% {
        bottom: 40px
    }
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate-in {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-out {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}


/* Custom Css By Hamza */

.header .navbar {
    background-color: #000;
}

.navbar .navbar-brand img {
    max-width: 220px;
    height: auto;
}

.navbar-light .navbar-nav .active>.nav-link {
    color: #4FCE5D;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #4FCE5D;
}

.navbar ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.navbar ul li {
    margin-right: 30px;
}

.navbar .navbar-toggler {
    background: #fff;
}