/* Global styles start*/
@import url('https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Kufam',
        cursive;
    box-sizing: border-box;
    height: 100vh;
}

.main-content {
    /* width: 100%;
    height: 100vh;
    overflow: hidden; */
}

button:focus,
button:active,
.btn-primary.focus,
.btn-primary:focus,
.btn.focus,
.btn:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

ul li {
    list-style-type: none;
}

.section__top {
    font-size: 35px;
    font-weight: 900;
    color: lime;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000;
}


/* Nabvar  */
.navbar-inverse {
    background-color: transparent;
    border-color: transparent;
}

header .navbar-brand {
    font-size: 20px;
    font-weight: 800;
    color: black !important;
    padding: 10px 20px;
}

header .navbar-nav .nav-item .nav-link {
    font-size: 12px;
    font-weight: 600;
    color: black !important;
    text-transform: uppercase;
}

.bg-dark {
    background-color: lime !important;
}

.banner {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

header .carousel-inner .carousel-item {
    height: 100vh;
}

.carousel-caption {
    padding-bottom: 230px;
    font-family: 'Poppins',
        sans-serif;
}

.carousel-caption h2 {
    font-size: 55px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 4px 4px 8px #000;
}

.carousel-caption h3 {
    font-size: 35px;
    font-weight: 900;
    text-shadow: 4px 4px 4px #000;
}

.carousel-caption h2 span {
    color: lime;
}

.carousel-caption a {
    color: black;
}

.btn-primary {
    padding: 13px 30px;
    font-weight: 600;
    background-color: lime !important;
    border: none;
    border-radius: 25px;
    transition: .3s ease-in-out;
}

.carousel-indicators li {
    /* background-color: limegreen !important; */
    background-color: #010101 !important;
}


/* counter__up */
#counter__up {
    padding: 70px 0;
}

.box__single {
    padding: 5px;
}

.box__border {
    padding: 50px 10px;
    border: 2px solid lime;
    border-radius: 8px;
}

/* Type Js  */
#typed__js {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3)),
        url('../images/banner/4.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.typing {
    color: lime;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 4px 4px 4px #333;
}

.typing .type {
    color: crimson;
}

/* WOW JS  */
#wow {
    padding: 80px 0;
    background-color: lightcyan;
}


/* magnific Pop up  */
#magnific {
    padding: 80px 0;
    background-color: white;
}

.mfp-arrow:focus {
    opacity: 1;
    border: none !important;
    outline: none !important;
}

/* Simple light box  */
#lightbox {
    padding: 80px 0;
    background-color: whitesmoke;
}

/* Parallax  */
#parallax {
    padding: 80px 0;
    background-color: lightcyan;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.py-120 {
    padding-top: 200px;
    padding-bottom: 200px;
}

.parallax-window {
    min-height: 600px;
    background: transparent;
}

/* Simple light box  */
#isotop {
    padding: 80px 0;
    background-color: white;
}

/* Tabs light box  */
#tabs {
    padding: 80px 0;
    background-color: whitesmoke;
}

div.tab-pane {
    border: 2px dashed lime;
    padding: 20px 15px;
}

/* Masonary light box  */
#masonary {
    padding: 80px 0;
    background-color: white;
}

.card-columns .card {
    cursor: pointer;
}

/* Slicks light box  */
#slicks {
    padding: 80px 0;
    background-color: lightcyan;
}

.slick-prev:before,
.slick-next:before {
    opacity: .8;
    color: black;
    font-family: inherit;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 900;
}

.slick-slide {
    padding: 10px;
}

.slick-slide img {
    border: 6px solid gold;
}

/* Read More  */

#read__more {
    padding: 80px 0;
    background-color: whitesmoke;
}

#more {
    display: none;
    transition: all 0.3s ease-in-out;
}

.readMe {
    transition: all 0.3s ease-in-out;
}

/* Owl light box  */
#owl {
    padding: 80px 0;
    background-color: white;
}


/* Footer Section  */
#footer {
    padding: 6px 0;
    color: white;
    background-color: black;
}

/* Material Scroll Top */
.material-scrolltop {
    color: white;
    background-color: lime !important;
}




/****************************************************
**** Custom Scroll Bar
****************************************************/
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: lime;
}