﻿
/******commom css******/

:root {
    --white: #ffffff;
    --black: #151519;
    --graybg: #f1dede /*#fffbfc*/;
    --pink: #ff59c9;
    --purple: #891785;
    --darkpurple: #2b185a;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 500;
    color: var(--black);
    overflow-x: hidden;
    line-height:1.5;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 54px;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: 45px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.3;
    margin: 0;
    font-family: 'Times New Roman';
}

p {
    word-break: break-word;
    margin: 0;
    line-height: 1.4;
}

button,
input,
optgroup,
select,
textarea {
    font-family: "Quicksand", sans-serif;
}

    button:focus {
        outline: none !important;
    }

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
}

.btn {
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Times New Roman';
    transition: all ease-in-out 0.5s;
}

.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    border-width: 2px;
}


    .btn-primary:hover {
        background: #5a0b57;
        border-color: #5a0b57;
        color: var(--white);
    }

    .btn-primary:focus, .btn-primary:active {
        box-shadow: none !IMPORTANT;
        background: #5a0b57;
        border-color: #5a0b57;
        color: var(--white);
    }

.btn-secondary {
    background: var(--darkpurple);
    border-color: var(--darkpurple);
    color: var(--white);
    border-width: 2px;
}

    .btn-secondary:hover {
        background: #2c0c78;
        border-color: #2c0c78;
        color: var(--white);
    }

    .btn-secondary:focus, .btn-secondary:active {
        box-shadow: none !IMPORTANT;
        background: #2c0c78;
        border-color: #2c0c78;
        color: var(--white);
    }

.btn-outline {
    background: none;
    border-color: var(--purple);
    color: var(--purple);
    border-width: 2px;
}

    .btn-outline:hover {
        background: none;
        border-color: var(--purple);
        color: var(--purple);
    }

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    background-color: #5a0b57;
    border-color: #5a0b57;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #2c0c78;
    border-color: #2c0c78;
}

/**********common css**********/


/* header */

header {
    width: 100%;
    padding: 10px 0;
    background: #fff;
    transition: all 0.2s ease-in-out 0.2s;
    border-bottom: 2px solid #f1f0ef;
}

    header.fixed {
        -webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        position: fixed;
        background: #fff;
        z-index: 99;
    }


    header .logo img {
        margin: 0;
        display: block;
        max-width: 220px;
    }


.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

header .mainNav {
    display: flex;
    align-items: center;
}

    header .mainNav li {
        display: block;
        list-style-type: none;
        padding: 0 15px;
        position: relative;
    }


        header .mainNav li a {
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            width: 100%;
            align-items: center;
            text-transform: none;
            font-size: 15px;
            text-transform: uppercase;
        }

            header .mainNav li a:hover, header .mainNav li.active a {
                color: var(--purple);
            }

        header .mainNav li.header-btn a {
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            grid-column-gap: 8px;
        }

header .header-top-left .menu-toggle {
    display: none;
}

header .mainNav li.mobile-top {
    display: none;
}

header li.mobile-btn {
    display: none;
}

/******header end********/



/**********footer start**************/
.Footer {
    background: #0e0d12;
    color: var(--white);
    padding: 60px 0 0;
    clear:both;
}


.footer-sec h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px;
}

.footer-sec p {
    font-size: 15px;
    font-weight: 400;
    margin: 0px;
    opacity: 0.8;
    color:#fff;
    padding:0;
}

.footer-sec ul {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 10px;
}

    .footer-sec ul li {
        width: calc(50% - 10px);
        padding: 0;
    }

.footer-sec .social {
    display: flex;
    grid-gap: 15px;
    margin: 20px 0 0;
    flex-wrap: nowrap;
}

    .footer-sec .social li {
        width: auto;
    }

        .footer-sec .social li a {
            background: var(--purple);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

.footer-sec a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
}

    .footer-sec a:hover {
        opacity: 1;
    }

.footer-sec .address a, .footer-sec .address p {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.footer-sec .address p {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

    .footer-sec .address a i, .footer-sec .address p i {
        min-width: 18px;
        font-size: 16px;
    }

.footer-sec a.f-logo img {
    border-radius: 10px;
    max-width: 300px;
}

.footer-sec a.f-logo {
    opacity: 1;
}

.footer-sec .address a {
    font-size: 16px;
}

.footer-sec .address {
    margin: 20px 0 0;
}
.copyright {
    background: #18171f;
    position: relative;
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    padding: 15px 0;
    justify-content: center;
    margin-top: 0;
}

    .copyright-inner p {
        font-size: 13px;
        color: var(--white);
        font-weight: 400;
        font-family: times new roman;
        opacity: 0.9;
        padding:0;
    }

        .copyright-inner p a {
            color: var(--white);
        }

.scrollTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 10px;
    background-color: var(--purple);
    padding: 6px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

    .scrollTop img {
        margin-bottom: 7px;
        max-width: 20px;
    }

/************ footer end****************/







/********************** content css start****************************/
.container {
    max-width: 1140px;
}
.back-btn {
    color: var(--purple);
    font-family: 'Quicksand';
    display: flex;
    align-items: center;
}
li.header-btn > div {
    display: flex;
    grid-gap: 10px;
}
.main-banner img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.heading {
    position: relative;
    text-align: center;
    min-height: 100px;
}

    .heading .text {
        position: relative;
        padding-bottom: 20px;
    }

        .heading .text:after {
            content: "";
            background: var(--purple);
            height: 2px;
            width: 100%;
            position: absolute;
            left: 0;
            bottom: 0;
        }

        .heading .text:before {
            content: "";
            background: var(--purple);
            height: 2px;
            width: 70%;
            position: absolute;
            left: 50%;
            bottom: -14px;
            transform: translate(-50%, 0);
        }

    .heading .bullet {
        background: var(--white);
        left: 50%;
        transform: translate(-50%, 0);
        top: 71px;
        position: absolute;
        padding: 0;
        width: 40px;
        z-index: 11;
        height: 22px;
        text-align: center;
    }

        .heading .bullet:before {
            content: "";
            background: var(--purple);
            width: 16px;
            height: 16px;
            transform: translate(0, -50%) rotate(45deg);
            display: block;
            margin: 8px auto 0;
        }
.forum-grid .heading .text {
    position: relative;
    padding-bottom: 20px;
    top: auto;
    left: 0;
    transform: none;
    font-size: inherit;
    color: var(--black);
}
    .forum-grid .heading .text a {
        color: var(--black);
    }

.contentsection {
    padding: 80px 0;
    overflow: hidden;
}


.owl-carousel .owl-nav {
    margin: 30px 0 0;
    color: var(--purple);
}

    .owl-carousel .owl-nav button.owl-prev {
        background: url(../images/left-trans-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
        float: left;
    }

    .owl-carousel .owl-nav button.owl-next {
        float: right;
        background: url(../images/right-trans-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
    }

    .owl-carousel .owl-nav button.owl-prev:hover {
        background: url(../images/left-fill-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
        float: left;
    }

    .owl-carousel .owl-nav button.owl-next:hover {
        float: right;
        background: url(../images/right-fill-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
    }
.contentsection .top-topic {
    margin-top: 30px;
    min-height: 400px;
}
.box-theme-1.top-topic .widget-header .header-topic-list, .related-questions .widget-header .header-topic-list {
    display: inline-block;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    color: var(--purple);
    padding: 8px 8px;
}
.top-topic .title a, .top-topic .news-cont a {
    font-size: 18px;
    font-weight: 500;
    color: var(--darkpurple);
}
.top-topic .title {
    padding: 0;
}
.top-topic .box-container > div {
    margin-bottom: 15px;
}
.register-style-nd .button-group .btn-sm, .register-style-nd .btn-group-sm > .btn {
    color: #000 !important;
    font-size: 16px;
    font-family: 'Quicksand';
    text-transform: none;
    white-space: normal;
    padding-right: 26px;
}
.checkbox label a {
    color: var(--purple);
}


/**********************Responsive Css Start*********************/

@media (max-width:1199px) {
    header .logo img {
        max-width: 180px;
    }

    h2 {
        font-size: 38px;
    }
}


@media (max-width:991px) {
    header {
        padding: 0;
    }

        header .NavBar {
            padding: 0;
            position: static;
            border: none;
            max-width: 100%;
            transform: inherit;
        }

        header .main-header .NavBar {
            padding: 10px 0;
        }

        header.fixed {
            position: fixed;
        }

        header .logo img {
            max-width: 150px;
        }

        header .header-top-left {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header .header-top-left .menu-toggle {
                display: block;
                background: none;
                width: auto;
                height: 26px;
                margin: 0;
                color: var(--purple);
            }

        header ul.mainNav li.mobile-top {
            display: block;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 1;
            background: #fff;
        }


        header .mainNav .mobile-top a.logo:hover {
            background: none;
        }

        header ul.mainNav li.mobile-top .m-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header ul.mainNav li.mobile-top .m-top-inner a.close {
                float: none;
                width: auto;
                opacity: 1;
                text-shadow: none;
                color: var(--purple);
            }

                header ul.mainNav li.mobile-top .m-top-inner a.close:hover {
                    background: none;
                }

        header ul.mainNav {
            float: none;
            width: 100%;
            display: block;
            position: fixed;
            top: 0;
            background: #fff;
            z-index: 99;
            max-height: 100vh;
            overflow: auto;
            min-height: 100vh;
            left: -100%;
            -moz-transition-property: all;
            -o-transition-property: all;
            -webkit-transition-property: all;
            transition-property: all;
            -moz-transition-duration: 0.3s;
            -o-transition-duration: 0.3s;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        }

            /*header ul.mainNav + ul {
                display: none;
            }*/

            header ul.mainNav.active {
                left: 0;
            }

            header ul.mainNav li {
                font-size: 16px;
                display: block;
                padding: 8px 20px;
            }

        header .mainNav li:nth-child(2) {
            padding-left: 20px;
        }

        header .mainNav li {
            padding: 15px 20px;
            margin: 0;
            height: auto;
        }

            header .mainNav li a {
                color: #000;
            }

        header .mainNav > li > a i.material-icons {
            display: none;
        }

        header span.submenu-icon {
            display: block;
            height: 24px;
            position: absolute;
            right: 15px;
            top: 8px;
            cursor: pointer;
            z-index: 1;
        }

        header ul.mainNav ul.subMenu {
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition-duration: 0.4s;
            transition-duration: 0.2s;
            display: none;
            overflow: visible;
            opacity: 1;
            max-height: inherit;
            border: none;
            margin-top: 10px;
        }


        header .mainNav li:before {
            display: none;
        }

    .footer-sec a.f-logo img {
        max-width: 200px;
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 30px;
        line-height: 1;
    }
    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev:hover {
        height: 50px;
        width: 50px;
    }
    .footer-sec {
        margin-bottom: 20px;
    }

        .footer-sec h4 {
            margin: 0 0 10px;
        }

    .copyright {
        margin-top: 10px;
    }

    .Footer {
        padding: 40px 0 0;
    }
    .heading .bullet {
        top:47px;
    }
    .contentsection {
        padding: 40px 0;
    }
}
