@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');

*,
*:after,
*:before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    line-height: 1.5rem;
}

body {
    font-family: "Poppins", "sans-serif";
}

:root {
    --primary: #3c3c3c;
    /* --secondary: #ec937d; */
    --dark: #afafaf;
    --background: #ffffff;
    --textcolor: #191919;
}

a {
    color: var(--textcolor);
}

/* a:hover {
    color: var(--textcolor) !important;
} */

/* Some Comman Property Start */

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.col {
    padding: 0.5rem;
    flex: 1 0 0%;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
    padding: 0.5rem;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
    padding: 0.5rem;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
    padding: 0.5rem;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding: 0.5rem;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
    padding: 0.5rem;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0.5rem;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
    padding: 0.5rem;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
    padding: 0.5rem;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
    padding: 0.5rem;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
    padding: 0.5rem;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
    padding: 0.5rem;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
    padding: 0.5rem;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
        padding: 0.5rem;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
        padding: 0.5rem;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
        padding: 0.5rem;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 0.5rem;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
        padding: 0.5rem;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
        padding: 0.5rem;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
        padding: 0.5rem;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
        padding: 0.5rem;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
        padding: 0.5rem;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
        padding: 0.5rem;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
        padding: 0.5rem;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
        padding: 0.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
        padding: 0.5rem;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
        padding: 0.5rem;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
        padding: 0.5rem;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 0.5rem;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
        padding: 0.5rem;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        padding: 0.5rem;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
        padding: 0.5rem;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
        padding: 0.5rem;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
        padding: 0.5rem;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
        padding: 0.5rem;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
        padding: 0.5rem;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
        padding: 0.5rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
        padding: 0.5rem;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
        padding: 0.5rem;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
        padding: 0.5rem;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        padding: 0.5rem;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
        padding: 0.5rem;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
        padding: 0.5rem;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
        padding: 0.5rem;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
        padding: 0.5rem;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
        padding: 0.5rem;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
        padding: 0.5rem;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
        padding: 0.5rem;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
        padding: 0.5rem;
    }


}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }


}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Face Animation Start */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Face Animation End */

/* Padding & Margin Section Start*/
.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.p-1 {
    padding: 1rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pl-1 {
    padding-left: 1rem;
}

.p-2 {
    padding: 2rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pl-2 {
    padding-left: 2rem;
}

.p-3 {
    padding: 3rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pl-3 {
    padding-left: 3rem;
}

.p-4 {
    padding: 4rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pl-4 {
    padding-left: 4rem;
}

.p-5 {
    padding: 5rem;
}

.pt-05 {
    padding-top: 0.5rem !important;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pl-5 {
    padding-left: 5rem;
}

.pr-5 {
    padding-right: 5rem;
}

.pr-2 {
    padding-right: 2rem;
}


.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mx-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.m-1 {
    margin: 1rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.ml-1 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-05 {
    margin-right: 0.5rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

.m-2 {
    margin: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.ml-2 {
    margin-left: 2rem;
}

.mr-2 {
    margin-right: 2rem;
}

.m-3 {
    margin: 3rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.ml-3 {
    margin-left: 3rem;
}

.mr-3 {
    margin-right: 3rem;
}

.m-4 {
    margin: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.ml-4 {
    margin-left: 4rem;
}

.mr-4 {
    margin-right: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.ml-5 {
    margin-left: 5rem;
}

.mr-5 {
    margin-right: 5rem;
}

/* Padding & Margin Section End*/

/* Card Property Start */
.card {
    height: 100%;
    /* background-color: var(--background); */
    color: var(--textcolor);
}

.card:hover {
    /* transform: scale(1.03);
    transition: all .5s;
    box-shadow: 0px 5px 10px 5px #aaa; */
    background-color: var(--dark);
    color: var(--primary) !important;
    transform: scale(1.02);
    transition: all ease-in-out .5s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    /* transform: scale(1.02);
    transition: all ease-in-out .5s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    background-color: var(--backround);
    color: var(--primary);
    border: solid 1px var(--dark); */
}

/* .card a {
    color: var(--primary);
} */

.card:hover a {
    color: var(--primary);
}

a:hover .card {
    color: var(--primary);
}

.card .btn {
    padding: 10px;
    transition: all ease-in-out 0.5s
}

/* Card Property End */

/* Image Property Start */
.img-fluid {
    width: 100%;
    height: auto;
}

/* Image Property End */

/* Button Property Start */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    transition: all ease-in-out 0.5s
}

.border-rounded {
    border-radius: 20px;
}

.border-rounded-top {
    border-radius: 20px 20px 0px 0px;
}

.border-pil {
    border-radius: 50%;
}

.primary-border {
    border: solid 1px var(--primary);
}

.secondary-border {
    border: solid 1px var(--textcolor);
}

.secondary-border-bottom {
    border-bottom: solid 1px var(--textcolor);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--background);
}

.btn-danger {
    background-color: red;
    color: var(--textcolor);
    padding: 0.5rem 1rem;
}

.btn-primary:hover {
    background-color: var(--background);
    color: var(--primary) !important;
}

/* .btn-secondary {
    background-color: var(--secondary);
} */

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--background);
}

/* Button Property End */

/* Heading Property Start */
.h1,
h1 {
    font-size: 2.5em;
    line-height: normal;
}

.h2,
h2 {
    font-size: 1.875em;
    line-height: normal;
}

.h3,
h3 {
    font-size: 1.255em;
    line-height: normal;
}

.h4 {
    font-size: 1em;
    line-height: normal;
}

/* Heading Property End */

/* Text Property Start */
.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--background);
}

.text {
    color: var(--textcolor);
}

.text-white {
    color: white !important;
}

.text-danger {
    color: red;
}

.text-dark {
    color: black;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify !important;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.aline-self-center {
    align-self: center;
}

.aline-self-bottom {
    align-self: end;
}

/* Text Property End */

/* Background Property Start */
.bg-primary {
    background-color: var(--primary);
    color: var(--textcolor) !important;
}

.bg-light {
    background-color: var(--background);
    color: var(--dark);
}

.bg-white {
    background-color: white;
    color: black;
}

.bg-dark {
    background-color: var(--dark);
    color: var(--textcolor) !important;
}

/* Background Property End */

/* Form Property Start */
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    color: var(--textcolor);
    background-color: var(--background);
    border: 1px solid black;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

/* Form Property End */

/* model */
.modal {
    display: none;
    position: fixed;
    z-index: 15000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 70%;
}

.modal .btn {
    padding: 0.5rem 3rem;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Property End */

/*Display Property Start*/
.inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

/*Display Property end*/


/* Some Common Property End */

/* Navbar Section Start */
.top-news .col-12 {
    padding: 0.1rem !important;
}

.nav-stick-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
}

.nav {
    /* position: static;
    top: 0;
    left: 0; */
    width: 100%;
    padding: 8px 80px;
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav a:hover {
    color: var(--textcolor) !important;
}

.footer .nav {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    box-shadow: none;
    /* z-index: 1000; */
    justify-content: center;
}

.nav,
.nav .nav-links {
    display: flex;
    align-items: center;
}

.nav {
    justify-content: space-between;
}

.nav .logo {
    font-size: 22px;
    font-weight: 500;
}

.nav .nav-links {
    column-gap: 20px;
    list-style: none;
}

.nav .nav-links a {
    transition: all 0.2s linear;
    color: white;
}

.nav.openSearch .nav-links a {
    opacity: 0;
    pointer-events: none;
}

.nav .search-icon {
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.nav .search-box {
    position: absolute;
    right: 250px;
    height: 45px;
    max-width: 555px;
    top: 8px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s linear;
}

.openSearch .search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    left: 15px;
    color: var(--textcolor);
    transform: translateY(-50%);
}

.search-box input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 6px;
    background-color: var(--background);
    padding: 0 15px 0 45px;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
    display: none;
}

.nav .mobile-nav {
    display: none;
}

/* responsive */
@media screen and (max-width: 1160px) {
    .nav {
        padding: 15px 100px;
    }

    .nav .search-box {
        right: 150px;
    }
}

@media screen and (max-width: 950px) {
    .nav {
        padding: 15px 50px;
    }

    .nav .search-box {
        right: 100px;
        max-width: 400px;
    }
}

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

    .nav .navOpenBtn,
    .nav .navCloseBtn {
        display: block;
    }

    .nav .desktop-nav {
        display: none;
    }

    .nav .mobile-nav {
        display: flex;
        overflow-y: auto;
        height: 100vh !important;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        max-width: 280px;
        width: 100%;
        padding-top: 100px;
        row-gap: 30px;
        flex-direction: column;
        background-color: var(--primary);
        opacity: 1;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        z-index: 100;
    }

    .nav.openNav .nav-links {
        left: 0;
    }

    .nav .navOpenBtn {
        color: var(--background);
        font-size: 20px;
        cursor: pointer;
    }

    .nav .navCloseBtn {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 20px;
        cursor: pointer;
    }

    .nav .search-box {
        top: calc(100% + 10px);
        max-width: calc(100% - 20px);
        right: 50%;
        transform: translateX(50%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Navbar section End */

/* carousel section start */
.slider .owl-item .img-fluid {
    width: 100%;
    height: 500px;
}

.slider .owl-prev,
.slider .owl-next {
    display: none;
}

.slider .owl-next {
    float: right;
}

.slider-position {
    position: relative;
}

.slider-buttons {
    position: absolute;
    bottom: 8%;
    left: 30%;
    z-index: 1;
}


/* .slideshow-container {
    width: 100%;
    margin: auto;
    backface-visibility: visible !important;
}

.Containers {
    display: none;
    position: relative;
}

.Containers .img-fluid {
    width: 100%;
    height: 400px;
}

.Back,
.forward {
    cursor: pointer;
    position: absolute;
    top: 35%;
    width: auto;
    margin-top: -23px;
    padding: 17px;
    color: var(--textcolor);
    font-weight: bold;
    font-size: 19px;
    transition: 0.4s ease;
    border-radius: 0 5px 5px 0;
    user-select: none;
}

.forward {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.Back:hover,
.forward:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.Info {
    color: var(--textcolor);
    font-size: 16px;
    padding: 10px 14px;
    position: absolute;
    top: 35%;
    left: 10%;
    width: 50%;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.4s;
    animation-name: fade;
    animation-duration: 1.4s;
}

@-webkit-keyframes fade {
    from {
        opacity: .5
    }

    to {
        opacity: 2
    }
}

@keyframes fade {
    from {
        opacity: .5
    }

    to {
        opacity: 2
    }
} */

/* Carousel Section end */

/* About Us Section Start */
.about-us ul li {
    font-weight: 600;
    margin-top: 5px;
    margin-left: 20px;
}

.about-us ul li i {
    margin-right: 8px;
}

/* About Us Section End */

/* Testimonial Section Start */
.testimonial {
    position: relative;
    width: 100%;
    min-height: 320px;
}

.testimonial .contents-wraper {
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    text-align: center;
}

.contents-wraper .testRow {
    width: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
}

.testRow .testItem {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testRow .testItem:not(.active) {
    top: 0;
    left: -100%;
}

.testRow .testItem img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.testRow .testItem h3 {
    font-size: 30px;
    font-style: italic;
    padding: 7px;
}

.testRow .testItem h4 {
    font-style: italic;
}

.testRow .testItem p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
}

.contents-wraper .indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    cursor: pointer;
}

.contents-wraper .indicators .dot {
    width: 15px;
    height: 15px;
    margin: 0px 3px;
    border: 3px solid #aaa;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}

.contents-wraper .indicators .active {
    background-color: var(--primary);
}

@keyframes next1 {
    from {
        left: 0%;
    }

    to {
        left: -100%;
    }
}

@keyframes next2 {
    from {
        left: 100%;
    }

    to {
        left: 0%;
    }
}

@keyframes prev1 {
    from {
        left: 0%;
    }

    to {
        left: 100%;
    }
}

@keyframes prev2 {
    from {
        left: -100%;
    }

    to {
        left: 0%;
    }
}



/* Testimonial Section End */

/* Footer Section Start */
.footer {
    background-color: var(--primary);
    color: white;
}

.footer a,
.footerButtom a {
    color: white !important;
}

.footer a:hover,
.footerButtom a:hover {
    color: var(--textcolor) !important;
}

.footer ul li {
    margin-top: 10px;
}

.footer ul li a {
    font-weight: normal;
    color: white;
}

.footer i {
    margin-right: 5px;
    color: white;
}

.footer ul li a:hover {
    transition: ease-in-out .3s;
    letter-spacing: 2px;
}

.footer hr {
    margin-top: 8px;
    border: 1px solid var(--primary);
}

.footerButtom hr {
    border: 1px solid var(--textcolor);
}

.footerButtom a {
    color: var(--textcolor);
}

/* .footer .social-media{
    display: block !important;
} */

.footer .social-media a {
    /* display: block; */
}

.footer .social-media .mt-1 {
    margin-top: 0.5rem !important;
}

.social-media a {
    display: inline-block;
}

.social-media a {
    font-size: 20px;
    padding: 10px 8px;
    border-radius: 20px;
    border: solid 1px var(--textcolor);
    text-align: center;
}

.social-media a:hover {
    background-color: var(--background);
    color: var(--primary) !important;
}

.social-media a:hover i {
    color: var(--primary) !important;
}

/* footer social media icon start */
.facebook,
.instagram,
.twitter,
.youtube,
.mywhatsapp,
.call,
.linkedin {
    font-size: x-large;
    /* border: solid 1px black; */
    padding: 5px 5px !important;
    border-radius: 50%;
    margin: 0 !important;
    width: 36px;
    height: 36px;
    text-align: center;
}

/* .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.mywhatsapp {
    color: white !important;
    background-color: green;
}

.call {
    color: black !important;
    background-color: white;
}

.youtube {
    color: #fe0000 !important;
    background-color: white;
}

.facebook {
    background-color: white;
    color: #0866ff !important;
}

.linkedin {
    background-color: #0077b4;
    color: white !important;
}

.twitter {
    background-color: black;
    color: white !important;
} */

/* footer social media icon end */

/* .social-media a i:hover {
    background: var(--dark);
    color: var(--primary);
} */

/* Footer Section End */

/* Page Header Section Start */
.page-header {
    height: 260px;
    /*background: url("../img/page_header.jpeg");*/
    background-color: var(--dark);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-size: 100% 100%;
    color: var(--textcolor);
}

.page-header h3 a {
    margin-right: 10px;
    margin-left: 10px;
}

/* Page Header Section End */

/* Single-detail Section Start */
.single-detail .main-img img {
    width: 100%;
    max-height: 500px;
}

.single-detail .service-list ul li i,
.single-detail .blog-list ul li i {
    margin-right: 8px;
}

.single-detail .service-list ul li,
.single-detail .blog-list ul li {
    /* font-size: large; */
    margin-bottom: 10px;
}

.single-detail .btn i {
    font-size: x-large;
}

.service-list .btn {
    padding: 0.2rem 0.5rem;
}

.service-list,
.blog-list {
    background: var(--dark);
}

/* Single-detail Section End */

/* Blog Section Start */
.blog .card {
    border: solid 1px;
}

.blog .card:hover a {
    color: var(--primary);
}

/* Blog Section End */

/* contact Section Start */
.address i {
    padding: 10px;
    font-size: large;
}

/* contact Section End */

/* floting icons Start*/
.phone {
    position: fixed;
    width: 80px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark);
    color: var(--textcolor);
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.phone i {
    padding-top: 10px;
}

.my-phone {
    margin-top: 5px;
}

.whatsapp {
    position: fixed;
    width: 80px;
    height: 50px;
    bottom: 90px;
    right: 20px;
    background-color: var(--dark);
    color: var(--textcolor);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-whatsapp {
    margin-top: 10px;
}

.phone:hover,
.whatsapp:hover {
    color: var(--primary) !important;
}

/* floting icons End*/

.pagination {
    margin-top: 10px;
    display: inline-flex !important;
    font-size: x-large !important;
    flex-wrap: wrap;
}

.pagination .page-item {
    padding: 10px !important;
    margin-top: 10px;
    margin-left: 10px;
    background: var(--dark) !important;

}

.pagination .active {
    background: var(--primary) !important;
}

.news .card:hover p {
    color: var(--textcolor);
}

.listing .card:hover .primary-border {
    border: solid 1px var(--textcolor);
}

.listing .card .btn:hover {
    background-color: var(--primary);
    color: var(--background) !important;
}

.listing i {
    margin-right: 0.5rem;

}

.courses ul,
.city ul,
.approval ul,
.college ul {
    display: contents;
}

.courses ul li .btn,
.city ul li .btn,
.approval ul li .btn {
    width: 250px;
    padding-right: 10px;
    background-color: var(--dark);
}

.courses ul li .btn:hover,
.city ul li .btn:hover,
.approval ul li .btn:hover {
    background-color: var(--primary);
    color: var(--background);
}

.courses .btn:before,
.city .btn:before,
.approval .btn:before {
    font-family: FontAwesome;
    padding-right: 10px;
    vertical-align: middle;
    font-size: x-large;
}

.courses .btn:before {
    content: "\f19d";
}

.city .btn:before {
    content: "\f3c5";
}

.approval .btn:before {
    content: "\e5a0";
}

.courses .btn {
    display: inline-flex;
    align-items: center;
    height: 100px !important;
}

.city .btn,
.approval .btn {
    display: inline-flex;
    align-items: center;
    height: 50px !important;
}

/* According Start */

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark);

    [data-tab-target] {
        border: none;
        outline: none;
        background: var(--dark);
        color: var(--primary);
        width: 100%;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        transition: 200ms linear;
        padding: 10px;

        &.is-active {
            /* background: var(--background); */
            color: var(--textcolor);
        }
    }
}

/* Tab Content */
.section-wrapper {
    margin-top: -0.8rem;
}

.tab-content {
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;

    /* show/hide content */
    .tab-target {
        display: none;

        &.is-active {
            display: block;
            animation-name: fadeInUp;
            animation-duration: 400ms;
            animation-timing-function: ease-in-out;
            animation-iteration-count: 1;
        }
    }
}

.allCourses .card .btn:hover {
    background-color: var(--primary);
    color: var(--background) !important;
}

.tab-target .course-info,
.allCourses .course-info {
    margin-top: -10px !important;
    font-size: 20px;
}

.tab-target .course-info .btn,
.allCourses .course-info .btn {
    font-size: 16px;
    margin-top: 4px;
    padding: 0.2rem !important;
}



/* Animation: Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* According End */

/* Responstive table Start */
.rwd-table {
    margin: auto;
    width: 100%;
    border-collapse: collapse;
}

.rwd-table tr {
    border-top: 1px solid var(--background);
    border-bottom: 1px solid var(--background);
}

.rwd-table th {
    display: none;
}

.rwd-table td {
    display: block;
}

.rwd-table td:first-child {
    margin-top: .5em;
}

.rwd-table td:last-child {
    margin-bottom: .5em;
}

.rwd-table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    display: inline-block;
}

.rwd-table th,
.rwd-table td {
    text-align: left;
}

.rwd-table {
    border-radius: .4em;
    overflow: hidden;
}


.rwd-table th,
.rwd-table td {
    padding: .5em 1em;
}

@media screen and (max-width: 601px) {
    .rwd-table tr:nth-child(2) {
        border-top: none;
    }
}

@media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: var(--background);
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: .25em .5em;
    }

    .rwd-table th:first-child,
    .rwd-table td:first-child {
        padding-left: 0;
    }

    .rwd-table th:last-child,
    .rwd-table td:last-child {
        padding-right: 0;
    }

    .rwd-table th,
    .rwd-table td {
        padding: 1em !important;
    }
}

/* Responstive table End */

/* Filter Start */
.filter input {
    margin-right: 10px;
}

.filter li {
    margin-top: 5px;
}

.filter .btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
}

/* Filter End */
/*  all listing degine start */
.allListing .card .row .cover {
    padding: 0;
}

.allListing .listingSomeInfo {
    margin-top: -25px;
}

.allListing .card .row .cover .img-fluid {
    height: 200px;
    width: 100%;
}

.allListing .card .row .logo,
.single-detail .main-img .logo {
    width: 70px;
    height: 70px;
}

.allListing .card .row .logo,
.allListing .card .row .title {
    margin-top: -6px;
}

/*  all listing degine end */
#tab-content-2 i,
.allCourses i {
    font-size: x-large;
}

/* new css try */

.listingDetail .social-media {
    width: 167px;
    text-align: left;
    padding: 0.3rem 1rem;
}

.listingDetail .social-media img {
    width: 20px;
    margin-right: 10px;
}

.courses .mt-1,
.approval .mt-1,
.city .mt-1 {
    margin-top: 0.5rem;
}

.image-size {
    width: 100% !important;
    height: 200px;
}

.stick-top {
    position: -webkit-sticky;
    position: sticky;
    top: 135px;
}

.single_course .card:hover {
    background-color: var(--background) !important;
}

.single_course .card:hover .btn {
    background-color: var(--dark);
}

.single_course .card:hover .btn:hover {
    background-color: var(--primary);
}

@media (max-width:575px) {
    .allListing .card .row .title {
        margin-top: -6px;
        padding-left: 13px;
    }

    .card {
        margin: 0rem 0.5rem;
    }

    .image-size {
        width: 100%;
        height: 250px !important;
    }

    .allListing .card .row .cover .img-fluid {
        height: 250px;
        width: 100%;
    }

    .courses ul li {
        width: 100% !important;
    }

    .courses ul li .btn {
        width: 95% !important;
        margin-right: 0;
        height: 50px !important;
    }

    .city ul li .btn,
    .approval ul li .btn {
        max-width: 200px;
        padding-right: 5px;
    }

    .city .btn,
    .approval .btn {
        margin-right: 0.4rem;
    }

    .city .btn:before,
    .approval .btn:before {
        font-family: FontAwesome;
        content: "\f04b";
        padding-right: 10px;
        vertical-align: middle;
        font-size: x-large;
    }

    .tab-target .course-info,
    .allCourses .course-info {
        margin-top: -10px !important;
    }

    .tab-target .course-info .btn,
    .allCourses .course-info .btn {
        margin-top: 0.5rem;
    }


    .course-info .btn {
        margin: auto 10px;
    }

    .course-info {
        padding-bottom: 10px;
    }

    .allNews {
        margin-bottom: 10px;
    }

    .allNewsBtn {
        text-align: end;
        background-color: var(--dark);
        border-radius: 0px 0px 20px 20px;
    }

    .allNewsBtn:hover {
        color: var(--textcolor);
        background-color: var(--background);
    }
}

.social-media-btn {
    width: 190px !important;
    text-align: center;
}

.w-100 {

    width: 100% !important;
}

.higlight,
.tab-nav {
    background-color: var(--dark);
}

.higlight {
    margin-top: 2px;
    position: relative;
}

.higlight .btn-green {
    background-color: rgb(173, 216, 230);
    position: absolute;
    bottom: 20px;
    right: 10px;
}


.tab-target .card:hover {
    color: var(--textcolor) !important;
}

.tab-target .card .btn:hover {
    background-color: var(--primary);
    color: var(--background) !important;
}

.allNewsBtn {
    text-align: end;
}

.tab-content .description h2,
.news-details .description h2,
.tab-content .description h3,
.news-details .description h3,
.tab-content .description h4,
.news-details .description h4,
.tab-content .description h5,
.news-details .description h5,
.tab-content .description h6,
.news-details .description h6 {
    border: solid 1px black !important;
    border-radius: 5px;
    padding: 2px 0px 2px 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: var(--dark);
    color: var(--textcolor);
}

.footer li:before {
    content: ">>";
    margin-right: 10px;
    vertical-align: middle;
}

.facilities-img {
    width: 20px !important;
    height: 20px !important;
}

/* mobile view */
@media(max-width: 550px) {
    .main-title {
        font-size: 1.5rem;
        line-height: normal;
    }

    .modal-image {
        display: none;
    }

    .modal-content {
        background-color: #fefefe;
        margin: 10% auto;
        width: 80%;
    }

    .description {
        overflow: auto !important;
    }

    .testimonial .contents-wraper {
        width: 90%;
    }

    .home-slider .img-fluid {
        height: 200px !important;
    }

    .slider-buttons .btn {
        padding: 0.5rem 0.5rem;
    }

    .slider-buttons .mr-1 {
        margin-right: 0rem;
    }

    .slider-buttons {
        bottom: 8%;
        left: 5%;
    }

    .latest-top-news {
        display: none;
    }

    .contents-wraper .header h1 {
        font-size: 32px;
    }

    .testRow .testItem h3 {
        font-size: 26px;
    }

    .testRow .testItem p {
        font-size: 16px;
        letter-spacing: initial;
        line-height: initial;
    }

    .social-media-btn {
        width: 39% !important;
        padding: 15px 0px !important;
    }

    .social-media h4 {
        font-size: x-large;
    }

    .tab-content {
        padding-left: 0;
        padding-right: 0;
    }

    .tab-content .course-info .pl-3 {
        padding-left: 1rem;
    }

    .listingDetail .social-media {
        padding: 1rem 1rem;
        display: flex;
        width: 100%;
        font-size: x-large;
        justify-content: center;
    }

    .footer-btn .btn {
        width: 100%;
    }

    .courses-filter ul,
    .city-filter ul,
    .state-filter ul,
    .approval-filter ul {
        display: none;
    }

    .courses-filter ul.show,
    .city-filter ul.show,
    .state-filter ul.show,
    .approval-filter ul.show {
        display: block;
    }

    .higlight .btn-green {
        position: relative;
    }
    .listingDetail .higlight .btn-green {
        position: relative;
        bottom: -5px;
    }
}

@media (max-width:442px) {

    .city ul li .btn,
    .approval ul li .btn {
        max-width: 140px;
        padding-right: 5px;
        padding-left: 7px;
        text-align: left;
    }

    .city .btn:before,
    .approval .btn:before {
        padding-right: 10px;
        vertical-align: middle;
        content: "";
    }
}

.courses-filter ul,
.city-filter ul,
.state-filter ul,
.approval-filter ul {
    max-height: 300px;
    overflow: auto;
}

.footer-btn {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0px;
    z-index: 3000;
    background-color: var(--dark);
    transition: all ease-in-out 0.5s;
}

.footer-btn .btn {
    padding: 0.5rem 2rem;
    /* color: var(--background); */
    cursor: pointer;
    transition: all ease-in-out 0.5s;
}

.footer-btn .btn-primary:hover {
    /* background-color: var(--dark); */
    color: var(--textcolor) !important;
}

.privacy p {
    line-height: 2rem;
}

.privacy ul {
    margin-top: -16px;
}

.privacy li {
    list-style: disc;
    margin-left: 2rem;
}

.modal-image {
    height: 400px;
    padding: 0 !important;
}

.first-row {
    background-image: url('assets/frontend/icon/new-post.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.single_course .text-white {
    color: white !important;
}

.single-detail .btn-primary:hover {
    background-color: var(--dark) !important;
    font-weight: 600;
}

.listing-course-list .col-12 {
    padding: 0rem 0rem 0rem 0.5rem !important;
}

.listing-course-list .card .col-12 {
    padding: 0.5rem !important;
}

.listing-course-list .col-12 .pl-1 {
    padding-left: 1rem !important;
}

.higlight .hoverColor {
    color: blue;
}
.higlight .hoverColor:hover {
    text-decoration: underline;
}

.tags-div {
    max-height: 20px;
    overflow-y: hidden;
    transition: max-height 0.5s ease;
}

.tags-div.expanded {
    max-height: 100%;
    overflow-y: visible;
}

.hoverColor i {
    transform: rotate(90deg);
}

.viewAll {
    position: relative;
}

.viewAll .viewAllBtn {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.viewAll .viewAllBtn:hover {
    color: rgb(0, 191, 255);
    text-decoration: underline;
}

.btn-blue {
    background-color: rgb(173, 216, 230) !important;
}

.btn-blue:hover {
    background-color: rgb(106, 191, 220) !important;
}

.btn-orange {
    background-color: rgb(231, 181, 89) !important;
}

.btn-orange:hover {
    background-color: rgb(251, 168, 12) !important;
}

.btn-green {
    background-color: rgb(144, 238, 144) !important;
}

.btn-green:hover {
    background-color: rgb(27, 243, 27) !important;
}
#enquiryForm .btn{
    display: flex;
    margin-left: auto;
}

