@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
:root {
    --theme-color: rgb(240, 146, 14);
    --secondary-theme: rgb(5, 115, 183);
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: "Poppins", serif;
    font-size: 15px;
    line-height: 22px;
    background-color: var(--black-color);
    color: #b9b9b9;
    letter-spacing: 1px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
}


ul li{
    margin-bottom: 10px;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-gray {
    background-color: #f2f4fa;
}

.bg-primary {
    background-color: var(--secondary-theme) !important;
}

.text-primary {
    color: var(--secondary-theme) !important;
}

.boxShadow {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}

.btnMan {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--theme-color);
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--theme-color);
    background: var(--white-color);
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--theme-color);
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: #fff;
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--theme-color);
    transition: background 0s;
}

.title {
    position: relative;
    padding-left: 10px;
    display: inline-block;
    color: var(--white-color);
}

.title:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgb(96 96 96) 0%, rgba(255, 255, 255, 0) 100%);
    width: 50%;
    height: 120%;
    left: 0;
    top: -2px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down-arrow a {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down-arrow a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.scroll-down-arrow svg {
    width: 20px;
    height: 20px;
    margin-top: -6px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ==================================== */
/* Slick Slider */
/* ========================================================== */
.banner-main {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(33, 36, 49, 0) 0%, rgb(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.banner-slider {
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.banner-slider img {
    
    /* height: 100vh; */
    /* background-size: contain;
    background-position: center top;
    background-repeat: no-repeat; */
}

.banner-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
}

.banner-content img {
    width: 200px;
    margin-bottom: 50px;
}

.banner-content .container {
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: 700;
    font-family: "Dancing Script", cursive;
}


/* ================================== */
/* About Panel */
/* =================================================== */
.about-sec {
    padding: 4rem 0;
}

.imgEffect-7 {
    overflow: hidden;
    position: relative;
    aspect-ratio: 5 / 3.5;
}

.imgEffect-7::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.2)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.imgEffect-7 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
}

.imgEffect-7:hover::before {
    -webkit-animation: shine 0.8s;
    animation: shine 0.8s;
}

.imgEffect-7:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}



footer {
    background: #626842;
    padding: 2rem 0;
    position: relative;
    color: var(--white-color);
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 0.5rem;
}

footer li {
    margin: 0 0.75rem;
}

footer li:first-child {
    display: block;
}

footer li a {
    color: var(--white-color);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}
footer li a:hover {
    color: var(--theme-color);
}


@media(max-width:800px){
    .banner-main, .banner-slider{
        height: auto;
    }
    .banner-content img {
        width: 100px;
        margin-bottom: 10px;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .scroll-down-arrow{
        display: none;
    }
}