@import url(../assets/font-awesome/css/all.css);
@import url(../assets/owl-carousel/css/owl.carousel.css);
@import url(../assets/owl-carousel/css/owl.theme.default.css);

@font-face {
    font-family: "Poppins-light";
    src: url(../assets/Poppins/Poppins-Light.ttf);
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: 0.1s ease;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: 0.3s ease;
}

body {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

h1,
h2,
h3,
h4 {
    font-family: "Poppins-light";
}

p {
    line-height: 1.8;
    font-family: "Poppins-light";
    color: rgba(0, 0, 0, 0.8);
}

a {
    font-family: "Poppins-light";
}

.active {
    color: #000 !important;

}

/*============header-part1==========*/
#container {
    width: 100%;
    margin: 0;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
}

#container .nws {
    color: #fff;
    padding: 0.2rem 0.8rem;
}

#container .note {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0 1rem;
}

#container .note marquee {
    padding: 0.4rem;
    color: #fff;
    font-family: "Poppins-light";
}

#container .note .mob {
    color: #fff;
    width: 100%;
    max-width: 150px;
    min-width: 110px;
    padding: 0.5rem;
    font-size: 0.8rem;
    border: 1;
    font-family: "Poppins-light";
}


#container a {
    color: #fff;
}

@media screen and (max-width: 500px) {

    #container .note marquee,
    #container .nws {
        display: none;
    }
}

/*=====x======header-part1====x=====*/

/*=================projects===============*/
#projects {
    width: 100%;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
}

#projects .project-recods {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#projects h1,
#projects h2,
#projects p {
    align-items: center;
    text-align: center;
    color: #ccc;
}

#projects .project-recods .project {
    width: 100%;
    max-width: 350px;
    min-height: 200px;
    padding: 0 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


#projects .project-recods .project .obleft,
#projects .project-recods .project .obright {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}



#projects .project-recods .project .obleft h1,
#projects .project-recods .project .obleft span {
    color: #fff;
    font-size: 4rem;
    font-weight: bolder;
    transition: 0.5s ease-in-out;
}

#projects .project-recods .project .obleft h1 {
    width: 150px;
    text-align: right;
    transition: 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
    #projects .project-recods {
        flex-direction: column;
    }

    #projects .project-recods .project .obleft h1 {
        width: 100%;
        text-align: center !important;
    }

    #projects .project-recods .project {
        padding: 0;
        flex-direction: column;
    }
}

/*========x========projects=======x=======*/

/*==============picboxer=============*/
#picboxer {
    width: 100%;
    padding: 4rem 3rem;
}

#picboxer .boxer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

#picboxer .boxer .boxer-card {
    width: 100%;
    max-width: 350px;
    min-height: 200px;
    padding: 1rem;
    margin: 0 0.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: 2px solid rgb(145, 33, 7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#picboxer .boxer .boxer-card {
    margin-top: 0;
    box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.2);
    transition: 0.4s ease-in-out;
}

#picboxer .boxer .boxer-card .bpic {
    padding: 1rem 0.5rem;
    width: 4rem;
    height: 4rem;
    margin-top: -6rem;
    text-align: center;
    border-radius: 45px;
    border: 5px solid rgb(145, 33, 7);
    background-color: #BF953F;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

#picboxer .boxer .boxer-card .bpic i {
    font-size: 2rem;
    color: #fff;
}

@media screen and (max-width: 800px) {
    #picboxer .boxer {
        flex-direction: column;
    }

    #picboxer .boxer .boxer-card {
        margin: 1.5rem 0;
        max-width: 600px;
    }
}

@media screen and (max-width: 800px) {
    #picboxer {
        padding: 3rem 1rem;
    }
}

/*=======x======picboxer=======x=====*/
/*============navigation=============*/
#navigation {
    width: 100%;
    padding: 0.5rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    position: relative;
}

#navigation .logo {
    width: 250px;
}

#navigation .navbar button {
    display: none;
    position: absolute;
    top: 1.1rem;
    right: 1rem;
    font-size: 2rem;
    border: none;
    outline: none;
    background-color: transparent;
}

#navlink {
    padding: 0.5rem 0;
    /*margin-top: 20px;*/
}

#navlink a {
    padding: 0.5rem;
    text-decoration: none;
    color: gray;
}

#navlink a:hover {
    color: #e40000;
}


@media screen and (max-width: 1035px) {
    #navigation {
        height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #navigation .navbar {
        width: 100%;
    }

    #navigation .navbar button {
        display: block;
    }

    #navlink {
        display: none;
        width: 100%;
    }

    #navlink a {
        display: block;
        width: 100%;
    }
}

/*======x=====navigation=====x=======*/




/*=============intro-walls============*/
#intro-walls {
    width: 100%;
    height: 90vh;
    background: url(../assets/img/s1.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    padding: 4rem;
}

#intro-walls .notice {
    width: 100%;
    padding: 2rem;
    max-width: 350px;
    border-radius: 1.5rem;
    background-color: #fff;
    border: 1px solid #373B44;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#intro-walls .notice h2 {
    color: #373B44;
    text-align: center;
    margin-bottom: 2rem;
}

#intro-walls .notice .line1,
#intro-walls .notice .line2 {
    color: gray;
    text-align: justify;
}

#intro-walls .notice .line2 {
    margin-top: 2rem;
    text-align: center;
}

#intro-walls .notice button {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 1.5rem;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
    color: #fff !important;
    border: 1px solid #000;
    outline: none;
}

#intro-walls .notice button:hover {
    background-color: #000;
    color: #FCF6BA;
}

@media screen and (max-width: 480px) {
    #intro-walls {
        padding: 2rem;
    }

    #intro-walls .notice {
        max-width: 100%;
    }

    #intro-walls .notice .line2 {
        margin-top: 3rem;
    }
}

/*======x======intro-walls======x=====*/


/*=============npcontact===========*/
.npcontact {
    width: 100%;
    padding: 2.5rem 2rem;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.npcontact p {
    color: #fff;
    padding: 1rem;
}

.npcontact .counters {
    font-size: 3rem;
    padding: 0 1rem;
    text-align: center;
}

.npcontact button {
    padding: 1rem 2rem;
    color: #fff;
    border: 2px solid #ccc;
    border-radius: 1.5rem;
    background-color: transparent;
}

.npcontact button:hover {
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 900px) {
    .npcontact {
        align-items: center;
        flex-direction: column;
    }

    .npcontact .counters {
        font-size: 2rem;
    }
}

/*=======x=====npcontact====x======*/


/*=============cards1=============*/
#card1 {
    width: 100%;
    margin: 2rem 0;
    padding: 1rem;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
}

#card1 .card1-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

#card1 .card1-box .card1-cards {
    width: 100%;
    max-width: 320px;
    min-height: 250px;
    cursor: pointer;
    position: relative;
    margin: 0 0.2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

#card1 .card1-box .card1-cards:hover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

#card1 .card1-box .card1-cards .nom {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    color: #373B44;
}

#card1 .card1-box .card1-cards .card1-part1 {
    background-color: #373B44;
    height: 75px;
    padding: 0.2rem 1rem;
}

#card1 .card1-box .card1-cards .card1-part2 {
    color: rgba(0, 0, 0, 0.5);
    height: 75px;
    padding: 1rem;
}

#card1 .card1-box .card1-cards .card1-part2 .goto {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0.2rem 0;
}

#card1 .card1-box .card1-cards .card1-part2 .goto a {
    color: rgb(145, 33, 7);
}

#card1 .card1-box .card1-cards .card1-part1 h3,
#card1 .card1-box .card1-cards .card1-part1 h4 {
    color: #fff;
    margin: 0.1rem 0.5rem;
    padding-left: 0.3rem;
}

@media screen and (max-width: 800px) {
    #card1 .card1-box {
        flex-direction: column;
    }

    #card1 .card1-box .card1-cards {
        max-width: 600px;
        margin-top: 0.5rem;
    }
}

/*======x======cards1======x======*/




/*=============why=============*/
#why {
    width: 100%;
    padding: 3rem 2rem;
    font-family: "Poppins-Regular" !important;
    line-height: 1.8;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
}

#why .why-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#why .why-box .why-box-1 {
    width: 50%;
    margin: 0 0.2rem;
}

#why .why-box .why-box-coll1 {
    width: 100%;
    padding: 1.8rem 1rem;
    font-size: 1.5rem;
    text-align: center;
    color: #000 !important;
    font-family: cursive;
}

#why .why-box .why-box-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#why .why-box .why-box-2 .why-box-coll {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin: 0 0.2rem;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

#why .why-box .why-box-2 .why-box-coll .wbci i {
    background-color: #BF953F;
    color: #fff;
    padding: 1rem;
    border-radius: 25px;
    margin-bottom: 1px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}

#why .why-box .why-box-2 .why-box-coll .wbci .hs {
    padding: 1rem 0.9rem;
}

@media screen and (max-width: 800px) {
    #why .why-box {
        flex-direction: column;
    }

    #why .why-box .why-box-1 {
        width: 100%;
    }

    #why .why-box .why-box-coll1 {
        min-height: auto;
        padding: 1rem;
    }
}

@media screen and (max-width: 400px) {
    #why .why-box .why-box-2 {
        flex-direction: column;
    }

    #why .why-box .why-box-2 .why-box-coll {
        padding: 1rem;
    }
}

/*======x======why======x======*/




/*==============AOCA============*/
#AOCA {
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#AOCA h1 {
    font-size: 2.5rem;
    color: #e40000;
}

#AOCA .about-OCA {
    width: 100%;
    max-width: 900px;
}

#AOCA .about-OCA p {
    padding: 1rem 0;
    text-align: justify;
}

.button-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.button-bar .button-side1,
.button-bar .button-side2 {
    padding: 0.8rem 2rem;
    margin: 1rem;
    cursor: pointer;
    color: #fff;
    background: #333333;
    background: -webkit-linear-gradient(to right, #dd1818, #333333);
    background: linear-gradient(to right, #dd1818, #333333);
}

.button-bar .button-side1 {
    border-radius: 1.5rem 0 0 1.5rem;
}

.button-bar .button-side2 {
    border-radius: 0 1.5rem 1.5rem 0;
}

.button-bar .or {
    padding: 0.6rem 0.5rem;
    margin: 0 -1.8rem;
    box-shadow: 0 0 10px 1px #fff;
    background-color: #fff;
    border-radius: 25px;
    z-index: 1;
}

.button-bar .button-side1:hover {
    background-color: #5154ff;
    ;
}

.button-bar .button-side2:hover {
    background-color: #f83636f6;
}

@media screen and (max-width: 520px) {

    .button-bar .button-side1,
    .button-bar .button-side2 {
        padding: 0.7rem 1.3rem;
        font-size: 0.7rem;
    }

    .button-bar .or {
        font-size: 0.7rem;
    }

}

/*======x=======AOCA=====x======*/


/*=============Document registration============*/
#Doc-registration {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
         background: #333333;
         background: -webkit-linear-gradient(to right, #dd1818, #333333);
         background: linear-gradient(to right, #dd1818, #333333);

}

#Doc-registration h1 {
    color: #000;
    text-align: center;
    font-size: 3rem;
}

#Doc-registration .doc-reg {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#Doc-registration .doc-reg .reg-parts {
    padding: 1rem;
    width: 100%;
    height: 100%;
    text-align: justify;
}

#Doc-registration .doc-reg .reg-parts button {
    color: #FCF6BA;
    padding: 1rem 2rem;
    margin-left: 1rem;
    outline: none;
    border: none;
    margin-top: 1rem;
    background-color: #000;
    border-radius: 5px;
}

#Doc-registration .doc-reg .reg-parts p {
    color: #000;
    padding: 1rem;
}

@media screen and (max-width: 900px) {
    #Doc-registration .doc-reg {
        max-width: 100%;
        flex-direction: column;
    }

    #Doc-registration .doc-reg .reg-parts {
        padding: 2rem;
    }

    #Doc-registration h1 {
        font-size: 2.5rem;
    }
}

/*======x======Document registration=====x======*/




/*============testimonials=============*/
#testimonials {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#testimonials h1 {
    text-align: center;
}

#testimonials .testy {
    width: 100%;
    max-width: 800px;
    padding: 1rem;
}

#testimonials .testy .testy-item {
    width: 100%;
    padding: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#testimonials .testy .testy-item p {
    margin: 1rem 0;
    text-align: center;
    font-size: 1.3rem;
    color: #BF953F;
}

#testimonials .testy .testy-item h4 {
    margin: 1rem 0;
    text-align: center;
    font-size: 1.5rem;
    color: #BF953F;
}

#testimonials .testy .testy-item img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

/*=====x======testimonials======x======*/


/*================earn money===========*/
#earn-money {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 2rem;
         background: #333333;
         background: -webkit-linear-gradient(to right, #dd1818, #333333);
         background: linear-gradient(to right, #dd1818, #333333);
    width: 100%;
}

#earn-money h1 {
    font-size: 3rem;
}

#earn-money .money-part1 p {
    color: #fff;
}

#earn-money h1,
#earn-money h2 {
    margin-bottom: 1.5rem;
}

#earn-money .money-part1,
#earn-money .money-part2 {
    width: 100%;
}

#earn-money .money-part1 button,
#earn-money .money-part2 button {
    color: #ffff;
    padding: 1rem 2rem;
    outline: none;
    border: none;
    margin-top: 1rem;
}

#earn-money .money-part1 button:hover {
    background-color: rgb(187, 13, 27);
}

#earn-money .money-part1 {
    padding: 1rem;
    color: #fff;
}

#earn-money .money-part1 button {
    border-radius: 1.5rem;
    background-color: #5154ff;
    ;
}

#earn-money .money-part2 {
    padding: 1rem;
    background-color: #fff;
}

#earn-money .money-part2 button {
    background-color: #5cb85c;
    ;
}

@media screen and (max-width: 900px) {
    #earn-money {
        flex-direction: column;
    }

    #earn-money .money-part1,
    #earn-money .money-part2 {
        margin-top: 1rem;
    }

    #earn-money h1 {
        font-size: 2rem;
    }
}

/*==========x=====earn money=====x=====*/


/*============our team==============*/
#our-team {
    padding: 2rem;
}

#our-team h1 {
    text-align: center;
}

#our-team .our-head-team {
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#our-team .our-head-team .team {
    width: 100%;
    max-width: 200px;
    margin: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 2rem 1px rgba(0, 0, 0, 0.3);
    border: 1px solid #000;
}

#our-team .our-head-team .team h4 {
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    #our-team .our-head-team {
        flex-direction: column;
    }

    #our-team .our-head-team .team {
        max-width: 600px;
    }
}

/*======x=====our team=======x======*/


/*==============ourvmt=============*/
#ourvmt {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;

    padding: 1rem;
}

#ourvmt .ourv,
#ourvmt .ourm,
#ourvmt .ourt {
    width: 100%;
    min-height: 300px;
    padding: 2rem;
    margin: 1rem;
    max-width: 350px;
    border-radius: 1rem;
    box-shadow: 0 0 2rem 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    transition: 0.4s ease-in-out;
}


#ourvmt .ourv:hover,
#ourvmt .ourm:hover,
#ourvmt .ourt:hover {
    transition: 0.4s ease-in-out;
    box-shadow: 0 0 2rem 1px rgba(0, 0, 0, 0.05);
}

#ourvmt .ourm {
    box-shadow: 0 0 2rem 1px rgba(0, 0, 0, 0.5);
}

#ourvmt i {
    font-size: 4rem;
    color: #5154ff;
}

#ourvmt .ourm i {
    color: rgb(255, 0, 221);
}

#ourvmt .ourt i {
    color: yellow;
}

#ourvmt h3 {
    margin-top: 1rem;
    color: #e40000;
    ;
}

#ourvmt p {
    margin-top: 1rem;
    text-align: center;
}

@media screen and (max-width: 900px) {
    #ourvmt {
        flex-direction: column;
    }

    #ourvmt .ourv,
    #ourvmt .ourm,
    #ourvmt .ourt {
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 2rem;
    }
}

/*=======x======ourvmt======x======*/




/*===========about reads===========*/
#about-reads {
    padding: 1rem;
    width: 100%;
}

#about-reads {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#about-reads .about-read-box {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#about-reads .about-read-box .about-read-cards1,
#about-reads .about-read-box .about-read-cards2 {
    padding: 0.5rem;
    width: 100%;
    text-align: justify;
}

#about-reads .about-read-box .about-read-cards1 h3,
#about-reads .about-read-box .about-read-cards2 h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

#about-reads .about-read-box .about-read-cards1 {
    max-width: 1000px;
}

#about-reads .about-read-box .about-read-cards2 {
    padding: 0.5rem;
    max-width: 500px;
}

@media screen and (max-width: 900px) {
    #about-reads .about-read-box {
        flex-direction: column;
    }

    #about-reads .about-read-box .about-read-cards1,
    #about-reads .about-read-box .about-read-cards2 {
        max-width: 100%;
        margin: 1rem 0;
    }
}

/*=====x=====about reads=====x=====*/




/*===========about page===========*/
#about-page {
    width: 100%;
    height: 300px;
    background: url(../assets/img/about-pics.jfif);
    background-size: cover;
    background-repeat: no-repeat;
}

#about-page .abouter {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}

#about-page .abouter .abouter-links {
    color: #fff;
    margin-top: 2rem;
}

#about-page .abouter h1 {
    font-size: 3rem;
    color: #fff;
}

#about-page .abouter a {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #fff;
}

#about-page .abouter a:hover {
    color: #e40000;
}

/*======x====about page====x======*/




/*============Registration============*/
#registration-page {
    width: 100%;
    height: 300px;
    background: url(../assets/img/registration.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#registration-page .regpager {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}

#registration-page .regpager .regpager-links {
    color: #fff;
    margin-top: 2rem;
}

#registration-page .regpager h1 {
    font-size: 3rem;
    color: #fff;
}

#registration-page .regpager a {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #fff;
}

#registration-page .regpager a:hover {
    color: #e40000;
}


#registration-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;

    width: 100%;
    padding: 4rem;
}

#registration-content .regbars {
    width: 100%;
    padding: 1rem;
    max-width: 1200px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#registration-content .regbars h1 {
    font-size: 3rem;
}

#registration-content .regbars p {
    margin: 1rem 0;
    text-align: justify;
}

#registration-content button {
    color: #ffff;
    padding: 1rem 2rem;
    margin-left: 1rem;
    outline: none;
    border: none;
    margin-top: 1rem;
    background-color: #5cb85c;
    border-radius: 5px;
}

#registration-content .button-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#registration-content .button-bar .button-side1,
#registration-content .button-bar .button-side2 {
    padding: 0.8rem 2rem;
    margin: 1rem;
    cursor: pointer;
    color: #fff;
}

#registration-content .button-bar .button-side1 {
    background-color: #1418f3;
}

#registration-content .button-bar .button-side2 {
    background-color: #f314ce;
}

#registration-content .button-bar .button-side1:hover {
    background-color: #5154ff;
}

#registration-content .button-bar .button-side2:hover {
    background-color: #f83636f6;
}

@media screen and (max-width: 500px) {
    #registration-content {
        padding: 1rem;
    }

    #registration-content .regbars p {
        text-align: justify;
    }

    #registration-content .button-bar .button-side1,
    #registration-content .button-bar .button-side2 {
        padding: 0.8rem 1rem;
    }
}

/*======x======Registration page=====x=====*/




/*==============contactus==============*/
#contactus-now {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#contactus-now .contactus-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#contactus-now .contactus-box .contactus-card {
    width: 350px;
    height: 100%;
    min-height: 260px;
    padding: 1.5rem;
    margin: 1rem;
    border: 1px solid #000;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
}

#contactus-now .contactus-box .contactus-card a {
    color: #000;
}

#contactus-now .contactus-box .contactus-card:hover {
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.08);
}

#contactus-now .contactus-box .contactus-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #bb0303;
}

#contactus-now .contactus-box .contactus-card p {
    margin: 1rem 0;
}

@media screen and (max-width: 900px) {
    #contactus-now .contactus-box {
        flex-direction: column;
    }

    #contactus-now .contactus-box .contactus-card {
        text-align: center;
        width: 100%;
    }
}

/*========x=====contactus=======x======*/




/*============term & condition=============*/
#term-conditions {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

#term-conditions .my-term {
    width: 100%;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
}

/*======x=====term & condition======x======*/



/*===============assist you================*/
#assist-you {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#assist-you .assist-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    padding: 2rem;
}

#assist-you .assist-box .assist-cards {
    width: 100%;
    max-width: 600px;
    margin: 1rem;
    text-align: center;
}

#assist-you .assist-box .assist-cards h1 {
    font-size: 3rem;
}

#assist-you .assist-box .assist-cards button {
    color: #ffff;
    padding: 1.5rem 4rem;
    margin-left: 1rem;
    outline: none;
    border: none;
    font-size: 1.3rem;
    margin-top: 1rem;
    background-color: #5cb85c;
    border-radius: 5px;
}

#assist-you .assist-box .assist-cards .button-bar .button-side1 {
    background-color: rgb(53, 99, 197);
}

#assist-you .assist-box .assist-cards .button-bar .button-side1:hover {
    background: rgb(2, 0, 36);
}

#assist-you .assist-box .assist-cards .button-bar .button-side2 {
    background-color: hotpink;
}

#assist-you .assist-box .assist-cards .button-bar .button-side2:hover {
    background: rgb(255, 0, 26);
}

@media screen and (max-width: 1024px) {
    #assist-you .assist-box {
        flex-direction: column;
    }

    #assist-you .assist-box .assist-cards {
        max-width: 100%;
        margin: 0;
        margin-top: 1rem;

    }
}

@media screen and (max-width: 625px) {
    #assist-you .assist-box .assist-cards h1 {
        font-size: 2rem;
    }

    #assist-you .assist-box .assist-cards button {
        font-size: 1.2rem;
        width: 220px;
        margin-left: 0;
        padding: 1rem 1.5rem;
    }

    #assist-you .assist-box {
        padding: 0;
    }
}

/*=======x=======assist you========x=======*/




/*===============b2t===============*/
#b2t {
    display: none;
    position: fixed;
    bottom: 0.8rem;
    right: 0.8rem;
    z-index: 99;
    font-size: 18px;
    border: 1px solid #fff;
    outline: none;
    background-color: #ccc;
    color: #bb0303;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
}

#b2t:hover {
    background-color: #555;
}

/*========x======b2t=======x=======*/


/*============footer=============*/
footer {
    width: 100%;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

footer .copyright {
    width: 100%;
    padding: 1rem;
    color: #fff;
    text-align: center;
    background-color: #000;

}

footer .copyright a {
    color: #fff;
}

footer .footer-bar .footer-card a {
    color: #000;
}

footer .footer-bar {
    width: 100%;
    padding: 0.5rem;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

footer .footer-bar .footer-card {
    padding: 0.5rem;
    width: 100%;
    max-width: 300px;

}

footer .footer-bar .footer-card h3 {
    padding: 0.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 3px solid #bb0303;
}

footer .footer-bar .footer-card .links {
    display: block;
    color: #000;
    padding: 0.3rem 0;
}

footer .footer-bar .footer-card .links:hover {
    color: #BF953F;
    ;
}

@media screen and (max-width: 900px) {
    footer .footer-bar {
        flex-direction: column;
    }

    footer .footer-bar .footer-card {
        max-width: 100%;
    }
}

/*====x=======footer======x======*/




/*==========chatbot===========*/
.bots {
    position: fixed;
    left: 1rem;
    bottom: 2.5rem;
    border-radius: 50px;
    padding: 0.6rem 0.9rem 0.4rem;
    background-color: limegreen;
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.418);
}

.bots:hover {
    background-color: #e40000;
}

.bots i {
    overflow: hidden;
    font-size: 2.5rem;
    color: #fff;
}

/*=====x====chatbot=====x=====*/
