/* headingFont */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* normalFont */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --red: #ff1f1f;
    --brown: #190101;
    --blue: #010161;
    --white: #ffffff;
    --heading-fontFamily: 'Poppins', sans-serif;
    --pargraph-fontFamily: 'Inter', sans-serif;
    --bg-color: rgba(205, 159, 250, 0.90);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}


.navbar {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    min-height: 50px;
    line-height: 50px;
    background: transparent;
    z-index: 1030;
    font-family: var(--heading-fontFamily);
}

.navbar .active {
    color: red;
}

.navbar .navbar-brand, .offcanvas .navbar-brand {
    display: flex;
    align-items: center;

    img {
        height: 30px;
        margin-right: 5px;
    }

    span {
        font-size: 30px;
        font-weight: 700;
        color: var(--white);
    }
}

.offcanvas {
    font-family: var(--heading-fontFamily);
    .navbar-brand span{
        color: var(--blue);
    }
}

.navbar .nav-item {
    margin: 0 5px;
    padding: 0;
}

.navbar .nav-item a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.navbar .nav-item a:hover {
    color: red;
}

.navbar .nav-link {
    position: relative;
    padding: 0;
}

.navbar .navbar-toggler {
    cursor: pointer;
}

.navbar .navbar-toggler span {
    color: #fff;
}

.navbar-style2 .active:after,
.navbar-style2 .nav-link:after {
    display: none;
}

.nav-scroll {
    background: #fff;
    -webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-scroll .navbar-nav>li>a {
    color: #333;
}

.nav-scroll .navbar-brand img {
    -webkit-transform: scale(1.03) !important;
    transform: scale(1.03) !important;
}

.nav-scroll .navbar-toggler {
    cursor: pointer;
}

.nav-scroll .navbar-toggler span {
    color: #333;
}

.nav-scroll .nav-link:hover:after {
    background-color: #2388ed;
}

.nav-scroll .active {
    position: relative;
}


.banner {
    background: var(--blue);
    /* background: linear-gradient(to left, #7a60ff, #cd9ffa); */
    /* background: linear-gradient(90deg, rgb(1, 1, 97) 0%, rgb(139, 102, 241) 100%); */
    background-image: linear-gradient(to right, #ff1f1f, #de0046, #aa005e, #680068, #010161);
    padding: 100px 0px;
    position: relative;
}

.banner::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
}

.banner a.weblink {
    color: #ffffff;
    border-bottom: 1px dotted #ffffff;
}

.banner a:hover {
    text-decoration: none;
}

.svg-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.banner-text {
    padding-right: 80px;
    margin: 50px 0px 0px;
    color: var(--white);

    h2 {
        font-weight: 700;
        font-family: var(--heading-fontFamily);
    }

    span {
        font-family: var(--pargraph-fontFamily);
        font-family: 300 !important;
    }

    p {
        margin: 40px 0px;
        font-family: var(--pargraph-fontFamily);
    }

    ul {
        list-style: none;

        li {
            display: inline-block;
            margin: 0px 10px 10px 0px;

            a {
                display: block;

                img {
                    width: 150px;
                    border-radius: 7px;
                }
            }
        }
    }
}

.sec-padding {
    padding: 50px 0px;
}

.sectionHeading {
    h3 {
        width: 69%;
        margin: 0 auto;
        font-family: var(--heading-fontFamily);
        text-align: center;
        font-size: 25px;
        font-weight: 700;
        color: var(--blue);
    }

    p {
        font-size: 15px;
        font-family: var(--pargraph-fontFamily);
        line-height: 30px;
        font-weight: 400;
    }
}

.line {
    height: 2px;
    width: 50px;
    background: var(--blue);
    display: block;
    margin: 20px auto 20px;
}

.line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 150px;
    height: 2px;
    border-bottom: 2px dashed var(--blue);
    margin-left: -75px;
}


/* video */
.video-section {
    background: url('../images/video-bg.jpg') no-repeat fixed center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    font-family: var(--heading-fontFamily);
    color: var(--white);
}

.video-overlay {
    background: linear-gradient(to left, rgba(122, 96, 255, 0.90), rgba(205, 159, 250, 0.90));
}

.video-section h3 {
    font-weight: 600;
    font-size: 38px;
}

.video-section i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background: var(--white);
    color: var(--blue);
    font-size: 30px;
    line-height: 70px;
    margin: 0 auto;
    cursor: pointer;
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-content: center !important;
    -ms-flex-line-pack: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.video-popup .video-src {
    position: relative;
    width: 700px;
    max-width: 80%;
}

.video-popup .iframe-src {
    width: 100%;
    height: 0;
    padding-top: 56.3%;
    position: relative;
    display: none;
}

.video-popup .iframe-src iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#woorks {
    background: rgba(205, 159, 250, 0.90);
}

/* contact */
.bg-color {
    background-color: var(--bg-color);
}

#contact .ss-btn {
    background: linear-gradient(to left, var(--blue), var(--red));
    text-align: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    border-radius: 0.375rem;
    font-family: var(--heading-fontFamily);
}

#contact .fa {
    color: var(--blue);
}

#contact span {
    color: var(--white);
    font-family: var(--heading-fontFamily);
}

.form-floating {
    font-family: var(--heading-fontFamily);
}

.nav-scroll .navbar-brand span {
    color: var(--blue);
}

.nav-scroll {
    background-color: var(--white)!important;
    top: -2px;
}



/*** Footer ***/
.footersec {
    font-family: var(--heading-fontFamily);
    background-color: var(--blue);
    padding-bottom: 1rem;
}

.footer-section {
    background: #010717;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-widget-wrap {
    padding-bottom: 50px;
}

.footer-widget-about {
    margin-top: 25px;
}
.footer-logo {
    font-size: 20px;
    font-weight: 700;
}

.footer-widget-about p {
    font-size: 12px;
    line-height: 30px;
    color: var(--white);
    margin-top: 20px;
}
.footer-widget {
    margin-top: 30px;
}

.footer-widget .footer-widget-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.widget-link {
    padding-top: 22px;
}

.widget-link .link {
    padding-left: 0;
}

.widget-link .link li {
    margin-top: 7px;
    list-style: none;
}

.widget-link .link li a {
    font-size: 12px;
    color: #c4c5c7;
    transition: all 0.3s linear;
}

.widget-info {
    padding-top: 20px;
}

.widget-info ul li {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 10px;
    list-style: none;
}

.widget-info ul li .info-icon i {
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
}

.widget-info ul li .info-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #c4c5c7 !important;
}

.widget-link .link li a:hover {
    color: var(--red);
    padding-left: 10px;
}

.footer-copyright-area {
    border-top: 1px solid #1b202f;
    padding-top: 15px;
}

.copyright-text p {
    color: #c4c5c7;
    font-size: 13px;
}

.copyright-text p a {
    color: #c4c5c7;
    font-size: 13px;
}

.copyright-text p a:hover {
    color: var(--red);
}

.bg-blue{
    background-color: var(--blue);
}

.pt-100{
    padding-top: 100px;
}

@media (max-width: 991px){
    .banner-text {
        padding-right: 0px;
        margin: 0px 0px 0px;
    }
}