/*================================================
Default CSS
=================================================*/
/*font-family: 'Rubik'*/
@import url('https://fonts.googleapis.com/css?family=Rubik:400,500,700&display=swap');

/*font import*/
body {
    padding: 0;
    margin: 0;
    font-size: 15px;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Rubik';
}

a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 0 !important;
    text-decoration: none;
    color: #121521;
}

.main {
    margin: 0 auto;
    background: #fff;
}

a:hover {
    text-decoration: none;
    color: #01362f;
}

button {
    outline: 0 !important;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: bottom;
}

img {
    max-width: 100%;
    height: auto;
}

/*p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  color: #121521;
  font-family: 'Rubik';
  font-weight: 500;
}*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #121521;
}

/* bootstrap container */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

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

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

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

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}

/*============
common class
============*/

.topbar {
    background: #f97316;
    padding: 8px 0;
}
.top-contact-info {
    display: flex;
    justify-content: start;
    gap: 12px;
    align-items: center;
}
.top-contact-info a {
    color: #fff;
    margin-top: 4px;
}
.social-links {
    display: flex;
    justify-content: end;
    gap: 8px;
}
.social-links a {
    font-size: 16px;
    color:#f97316;
    background: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:4px;
}
.social-links a:hover {
    background: #1f2937;
    color: #fff;
}

.hpage-text-height {
    height: 253px;
    overflow: hidden;
}

.bg-army-green {
    background: #01362f;
}

.common-txt-white {
    color: #fff;
    font-size: 14px;
}

.common-text {
    color: #464646;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 24px;
}

.section-title {
    font-size: 25px;
    padding-top: 25px;
}

.f-heading {
    text-transform: uppercase;
    font-weight: 600;
    color: #334155;
    font-size: 16px;
    margin-top: 50px;
    border-left: 5px solid #ea580c;
    padding: 0 4px;
}
.sr-heading {
    font-size: 32px;
    color: #000;
    position: relative;
}

.sr-heading:after {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #FF5722;
    content: '';
}

.main-hdn {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.bg-slate-100{
    background: #f1f5f9;
}

/*============
common class
============*/
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/*.btn {*/
/*    border: none;*/
/*    line-height: initial;*/
/*    text-transform: uppercase;*/
/*    border-radius: 30px;*/
/*    padding: 17px 50px 15.5px 25px;*/
/*    position: relative;*/
/*    -webkit-transition: 0.5s;*/
/*    transition: 0.5s;*/
/*    font-size: 14px;*/
/*    font-family: "Rubik", sans-serif;*/
/*    font-weight: 500;*/
/*}*/

.btn.disabled, .btn:disabled {
    opacity: 1;
}

/*common button*/
/*.tin-button {*/
/*    display: inline-block;*/
/*    color: #ffffff;*/
/*    font-size: 18px;*/
/*    letter-spacing: 2px;*/
/*    padding: 14px 20px;*/
/*    border: 1px solid #efe2c9;*/
/*    border-radius: 50px;*/
/*    background: #f97316;*/
/*    transition: .4s;*/
/*}*/
.tin-button {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 12px 22px;
    border: 1px solid #efe2c9;
    border-radius: 6px;
    background: #f97316;
    transition: .4s;
}

.tin-button:hover {
    cursor: pointer;
    color: #fff;
    background-color: #16a34a;
}
.tin-button i {
    -webkit-animation: arrow-animation 1.5s;
    -moz-animation: arrow-animation 1.5s;
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
}

.tin-button i:first-child {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    margin-left: 5px;
    opacity: 0.15;
}

.tin-button i+i {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    opacity: 0.5;
}

.tin-button i+i+i {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    opacity: 1;
}

.tin-button:hover i {
    -webkit-animation: arrow-animation 2s;
    -moz-animation: arrow-animation 2s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes arrow-animation {
    0% {
        opacity: .15;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes arrow-animation {
    0% {
        opacity: .15;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

/*common button*/
/*form-control*/
.form-control {
    height: 45px;
    padding: 0 15px;
    font-size: 15px;
    line-height: initial;
    color: #121521;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.form-control:focus {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    border-color: #01362f;
}

/*================================================
Header Area CSS
=================================================*/
.nav-item {
    position: relative;
    transition: all 200ms linear;
    margin-left: 0 !important;
    padding: 0 15px;
}

.start-header {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
    height: 24px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap {
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(10%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #212121 !important;
    font-weight: 500;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link {
    color: #FF5722 !important;
}

.nav-item.active .nav-link {
    color: #FF5722 !important;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.bg-light {
    background-color: #fff !important;
    transition: all 200ms linear;
}

.section {
    position: relative;
    width: 100%;
    display: block;
}

.full-height {
    height: 100vh;
}

.over-hide {
    overflow: hidden;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: 40px;
    transform: translateY(-50%);
    z-index: 20;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    background-color: rgb(71 68 135);
}

.navbar-brand img {
    filter: brightness(100%);
}

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

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

/*================================================
Main Banner Area CSS
 =================================================*/
/*.main-banner {*/
/*  height: 550px;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  background-position: center center;*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*}*/
.banner-hdn {
    color: #fff;
}

/*.item-bg1 {*/
/*  background-image: url(../img/2021-06-21.jpeg);*/
/*}*/
/*.item-bg2 {*/
/*  background-image: url(../img/main-banner2.jpg);*/
/*}*/
/*.item-bg3 {*/
/*  background-image: url(../img/main-banner3.jpg);*/
/*}*/
/*.item-bg4 {*/
/*  background-image: url(../img/main-banner4.jpg);*/
/*}*/
/*.main-banner-content {*/
/*  max-width: 850px;*/
/*}*/
.main-banner-content span {
    display: block;
    margin-bottom: 2px;
    color: #19ce67;
    font-size: 17px;
    font-family: "Rubik", sans-serif;
}

.bnr-txt-main {
    background: #00000099;
    padding: 15px;
    margin-bottom: 33px;
}

.main-banner-content h1 {
    margin-bottom: 0;
    font-size: 70px;
    font-weight: 700;
    line-height: 67px;
    padding-bottom: 21px;
}

.main-banner-content p {
    line-height: 25px;
    color: #fff;
    /* max-width: 670px; */
    font-size: 21px;
    margin-bottom: 0;
    margin-top: 10px;
    /* font-weight: 600; */
}

.main-banner-content .btn-box {
    margin-top: 30px;
}

.main-banner-content .btn-box .btn-light {
    margin-left: 12px;
}

.home-slides.owl-theme .owl-nav {
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
    color: #121521;
    margin: 0;
    padding: 0;
    background: #ffffff;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 51px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #01362f;
    color: #ffffff;
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 15px;
}

.home-slides.owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
}

.home-slides.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 3px;
    margin: 0 2px;
    background: #121521;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.home-slides.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ffffff;
}

.home-slides.owl-theme .owl-dots .owl-dot.active span {
    width: 25px;
    background-color: #ffffff;
}

.home-slides.owl-theme:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}

/*================================================
About Area CSS
=================================================*/
.about-sec-txt {
    margin-top: 30px;
    text-align: left;
}

.about-area {
    padding: 80px 0 80px 0;
}

/*================================================
Notice Area CSS
=================================================*/
.rel-img {
    height: 66px;
    object-fit: cover;
}



.course-section {
    padding: 90px 0;
    background: #f1f5f9;
}

.notice-box {
    background: #f3f1ee;
}

.tin-box {
    box-shadow: rgb(50 50 105 / 15%) 0px 2px 5px 0px, rgb(0 0 0 / 5%) 0px 1px 1px 0px;
    padding: 20px;
}

.rel-link {
    color: #2F72A8;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 19px;
    margin-bottom: 6px;
}

.br-1 {
    border-right: 1px solid #e8e8e8;
    padding-right: 17px;
}

.rel-list {
    font-weight: 600;
    position: relative;
    padding: 0 0;
}

.rel-list li {
    font-weight: bold;
    padding: 11px 0;
    list-style: none;
    line-height: 19px;
    border-bottom: 1px solid #ddd;
}

.rel-list li a {
    color: #2F72A8;
    font-weight: 500;
}

/*event section*/
.event .date {
    background-color: #f3f1ee;
    color: #474487;
    float: left;
    height: 70px;
    overflow: hidden;
    width: 70px;
}

.event.date {
    background-color: #e43e30;
}

.event {
    border: none;
    margin-bottom: 20px;
}

.event .date .month {
    font-size: 14px;
    padding-top: 5px;
    text-align: center;
    text-transform: uppercase;
}

.event .date .day {
    bottom: 21px;
    font-size: 46px;
    font-weight: bold;
    position: relative;
    right: -4px;
}

.event aside {
    padding-left: 80px;
    font-size: 15px;
    margin-bottom: 8px;
}

.event aside .additional-info {
    color: #474487;
    font-size: 14px;
    margin-bottom: 0px;
}

.evnt-link {
    color: #505050;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 19px;
    margin-bottom: 5px;
    font-size: 15px;
}

/*event section*/
/*================================================
Chairman message Area CSS
=================================================*/
.msg-hdn h3 {
    font-weight: 600;
    font-size: 17px;
    color: #FF9800;
}

.msg-hdn {
    background: linear-gradient(139deg, rgba(1, 54, 47, 0.79)46%, rgba(1, 54, 47, 0.1)20%, rgba(1, 54, 47, 0.66)66%), linear-gradient(142deg, rgba(1, 54, 47, 0.01)65%, rgba(1, 54, 47, 0.45)20%), linear-gradient(152deg, rgba(1, 54, 47, 0.88)70%, rgba(1, 54, 47, 0.01)30%), linear-gradient(-200deg, rgba(1, 54, 47, 0.73)75%, rgba(1, 54, 47, 0.6)40%);
    padding: 20px;
}

.msg-hdn h2 {
    text-transform: uppercase;
    font-size: 47px;
    color: #fff;
}

.second-hdn {
    font-weight: 700;
    font-size: 16px;
    padding-top: 10px;
}

/*================================================
Feedback Area CSS
=================================================*/


/*================================================
student registration Area CSS
=================================================*/

/*================================================
Committees Area CSS
=================================================*/
.committees-area {
    background: #efefef;
}

.committees-image img {
    height: 207px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.single-committees-box {
    text-align: center;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    height: 207px;
}

.single-committees-box .committees-image {
    position: relative;
}

.single-committees-box .committees-image .details-btn:hover {
    color: #ffffff;
    background-color: #121521;
}

.single-committees-box .committees-content {
    margin-top: 1px;
    position: absolute;
    width: 45%;
    right: 0;
    top: 20px;
    background: #f3f1ee;
    padding: 13px 15px;
    min-height: 149px;
    margin-right: 15px;
}

.single-committees-box .committees-content h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
}

.single-committees-box .committees-content h3 a {
    display: inline-block;
    border-bottom: 2px solid #474487;
}

.single-committees-box .committees-content span {
    display: block;
    color: #121521;
    font-size: 13px;
    margin-top: 10px;
    font-weight: 400;
}

.single-committees-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-committees-box:hover .committees-image .details-btn {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.single-committees-box:hover .committees-image::before {
    opacity: .90;
    visibility: visible;
}

.committees-slides .single-committees-box {
    margin-top: 30px;
}

.committees-slides.owl-theme .owl-nav {
    margin-top: 0;
}

.committees-slides.owl-theme .owl-nav [class*=owl-] {
    color: #121521;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background: #f0f0f0;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 19px;
    position: absolute;
    left: -60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.committees-slides.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #01362f;
    color: #ffffff;
}

.committees-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -60px;
}

.single-committees-box:before {
    content: '';
    position: absolute;
    z-index: -1;
    background: #ffffff;
    right: 0;
    left: 0;
    opacity: .90;
    height: 50%;
    bottom: -20px;
    left: 0;
    right: 0;
    border-radius: 3px;
    -webkit-box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.04);
    box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.04);
    margin-left: 20px;
    margin-right: 20px;
}

.single-committees-box:after {
    content: '';
    position: absolute;
    z-index: -1;
    background: #ffffff;
    -webkit-box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.03);
    box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.03);
    right: 0;
    left: 0;
    opacity: .70;
    height: 50%;
    bottom: -40px;
    left: 0;
    right: 0;
    border-radius: 3px;
    margin-left: 40px;
    margin-right: 40px;
}

/*================================================
Program Area CSS
=================================================*/
.glyphicon {
    margin-right: 4px !important;
    /*override*/
}

.pagination .glyphicon {
    margin-right: 0px !important;
    /*override*/
}

.pagination a {
    color: #555;
}

.panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.panel.panel-default {
    margin-top: 20px;
}

.news-item {
    padding: 4px 0;
    margin: 0;
    /*border-bottom: 1px dotted #555;*/
}

.blog-area {
    background: #f5f5f5;
}

.program {
    position: relative;
}

.news-item img {
    width: 300px;
    height: 70px;
    object-fit: cover;
}

.course-img {
    height: 183px;
    object-fit: cover;
}

.program h3 {
    position: absolute;
    bottom: 14px;
    left: 0;
    /* right: 0; */
    margin: 0 auto;
    text-align: center;
    font-size: 30px;
    color: #474487;
    font-weight: 700;
    background: #fff;
    padding: 0 32px;
}

.program:before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    background-image: linear-gradient(transparent, #474487c9);
}

/*================================================
Program Area CSS
=================================================*/
/*new*/
.copyright {
    padding: 14px;
    color: #f1f5f9;
    font-size: 12px;
    font-weight: 500;
}

.copyright a {
    color: #ea580c;
    font-weight: 700;
}

.ulink ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    text-transform: capitalize !important;
    letter-spacing: -.02em;
    line-height: 1.2em;
    font-weight: 600;
}

.ulink ul li a {
    color: #374151;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
}
.contact-list {
    display: flex;
    justify-content: start;
    gap: 12px;
    align-items: center;
    background: #ffedd5;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.captcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
button.reload {
    border: none;
    background: #4338ca;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}
/*new*/
/*================================================
Go Top CSS
=================================================*/
.go-top {
    position: fixed;
    cursor: pointer;
    top: 50%;
    right: 15px;
    background: #474487;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
    color: #ffffff;
    border-radius: 76px;
    font-size: 20px;
}

.go-top.active {
    top: 80%;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
}

.go-top:hover, .go-top:focus {
    color: #ffffff;
    background-color: #19ce67;
}

.cat-inage {
    /*height: 137px;*/
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.cat-heading {
    color: #374151;
    line-height: 21px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
}

.cat-details {
    color: #8a8a8a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 19px;
    margin-bottom: 6px;
    font-size: 14px;
}

.cat-time a {
    color: #545454;
    text-decoration: none;
    border-left: 1px solid #222;
    padding-left: 10px;
    font-weight: 600;
    font-size: 13px;
}

.cat-time span {
    color: #545454;
    font-weight: 600;
    font-size: 13px;
    padding-right: 10px;
}

.card-body {
    padding: 14px 16px;
}
.card {
    border: none;
    margin-top: 15px;
    background: #fff;
    border-radius: 8px;
}

/*news*/
/*======counter======*/
.counter-back-img {
    width: 100%;
    /*  height: 301px;*/
    object-fit: contain;
    position: absolute;
    top: 0;
    z-index: -1;
}

#counter {
    padding-top: 54px;
}

.counter-value {
    font-size: 3vw;
    color: #6f6f6f;
    font-weight: 600;
}

/*.counter:hover {
    color: #49c5b6!important;
    transition: all .3s;
}*/
#counter i {
    font-size: 50px;
    color: #5c5c5d;
}

/*.counter {
  height: 300px;
}*/
/*======counter======*/
/*======Common page======*/
/*.common-banner {*/
/*  position: relative;*/
/*  background: url(../img/Dhaka_University_Central_Library.jpg) no-repeat center top;*/
/*  background-size: cover;*/
/*  height: 170px;*/
/*}*/
.common-banner {
    position: relative;
    height: 160px;
    background: #ddd;
}

.common-banner img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-banner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #474487c2;
    z-index: 1;
}

.common-banner h1 {
    font-size: 47px;
    text-transform: capitalize;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    color: #ffffff;
    z-index: 1;
}

/*======Common page======*/
/*======member details page======*/
.name {
    margin-bottom: 0;
    margin-top: 14px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.designation {
    display: block;
    color: #474487;
    font-size: 15px;
    margin-top: 7px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 15px;
}

.social li a {
    display: block;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #474487;
    text-align: center;
    font-size: 14px;
}

.social li {
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
}

.social {
    padding-left: 0;
    text-align: center;
}

.member-details-image {
    background: #fff;
    padding: 13px;
    box-shadow: -1px 0 9px -1px rgba(0, 0, 0, 0.25);
}

/*======member details page======*/
/*======Course list page======*/
.cours-item {
    box-shadow: -1px 0 9px -1px rgba(0, 0, 0, 0.25);
}

/*======Course list page======*/
/*======Course Details page======*/
/*.member-details-image img {*/
/*  width: 100%;*/
/*  object-fit: contain;*/
/*  height: 100%;*/
/*}*/
/*.title-sm{*/
/*  display: inline-block;*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  color: #4a4a4a;*/
/*}*/
/*.cb i {*/
/*  font-size: 23px;*/
/*}*/





.page-title {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 0;
}

.indexx a {
    color: #fff;
    text-decoration: none;
}

.indexx i {
    color: #fff;
}

.indexx {
    text-align: right;
}

.rel-link {
    color: #505050;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 19px;
    margin-bottom: 6px;
}

.rel-com {
    font-size: 14px;
    color: #969696;
}

.rel-com a {
    color: #459373;
}

.rel-img {
    border-radius: 9px;
}

element.style {}

.common-page-img {
    height: 415px;
    object-fit: cover;
    border-radius: 10px;
}

.common-page-title {
    font-size: 25px;
    /* font-weight: 600; */
    color: #505050;
    padding: 15px 0;
    margin-bottom: 0;
}

.rel-list {
    font-weight: 600;
    position: relative;
    padding: 11px 0;
    column-count: 2;
}

.rel-list li {
    font-weight: bold;
    padding: 11px 0;
    padding-left: 15px;
    list-style: none;
    line-height: 19px;
    border-bottom: 1px dotted #cecece;
    margin: 0 15px;
}

.rel-list li a {
    color: #ffffff;
    font-size: 14px;
}

/*======Course Details page======*/
/*======Gallery page======*/
.gal-container {
    padding: 12px;
}

.gal-item {
    overflow: hidden;
    padding: 3px;
}

.gal-item .box {
    height: 350px;
    overflow: hidden;
}

.box img {
    height: 110%;
    width: 110%;
    top: -10%;
    object-fit: cover;
    -o-object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.box:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.gal-item a:focus {
    outline: none;
}

.gal-item a {
    cursor: pointer;
}

.gal-item a::after {
    content: "\ec97";
    font-family: "IcoFont";
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    right: 3px;
    left: 3px;
    top: 3px;
    bottom: 3px;
    text-align: center;
    line-height: 350px;
    font-size: 30px;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.gal-item a:hover:after {
    opacity: 1;
}

.modal-open .gal-container .modal {
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-open .gal-item .modal-body {
    padding: 0px;
}

.modal-open .gal-item button.close {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #000;
    opacity: 1;
    color: #fff;
    z-index: 999;
    right: -12px;
    top: -12px;
    border-radius: 50%;
    font-size: 15px;
    border: 2px solid #fff;
    line-height: 25px;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}

.modal-open .gal-item button.close:focus {
    outline: none;
}

.modal-open .gal-item button.close span {
    position: relative;
    top: -3px;
    font-weight: lighter;
    text-shadow: none;
}

.gal-container {
    width: 80%;
}


@media (min-width: 768px) {
    .gal-container .modal-dialog {
        width: 55%;
        margin: 50 auto;
    }
}

@media (max-width: 768px) {
    .gal-container .modal-content {
        height: 250px;
    }
}



/* Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

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

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/*======Gallery page======*/
/*======Contact page======*/
.contact-form input.error, .contact-form select.error, .contact-form textarea.error {
    border-color: red !important
}

.contact-page-form form {
    padding: 0px 40px !important;
    background: transparent !important;
    box-shadow: unset !important;
}

.inner-container {
    padding: 0px 20px;
}

.contact-form label.error {
    display: block;
    line-height: 24px;
    padding: 5px 0 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    color: red;
    font-weight: 500
}

.inner-column-info {
    background: #474487;
    color: #fff;
}
.contact-card {
    background: rgb(33 150 243 / 67%);
    padding: 20px;
    color: #fff;
}

.list-info {
    list-style: none;
}

.list-info li i {
    font-size: 20px;
}

.social-icon-four {
    list-style: none;
}

.social-icon-four li {
    position: relative;
    margin-right: 18px;
    display: inline-block;
}

.social-icon-four li a {
    color: #fff;
    font-size: 20px;
}

.list-info li i {
    font-size: 22px;
    padding-right: 8px;
}

.list-info li {
    padding-bottom: 13px;
}

.location-map {
    margin-top: 20px;
    border: 6px solid #e7f4ed;
}

/*======Contact page======*/
/*======News Ticker======*/
.announcements-container {
    width: 100%;
    background: #474487;
    overflow: hidden;
    top: 40%;
    left: 20%;
    display: inline-block;
    height: 35px;
    line-height: 40px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.announcements-container:hover {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.announcements-container .container-title {
    width: 13%;
    height: 100%;
    overflow: hidden;
    padding: 0 15px 0 15px;
    float: left;
    background: #474487;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.announcements-container .container-title img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin: -5px 3px 0 0;
}

.announcements-container ul.announcements {
    width: 67%;
    float: left;
    height: 14px;
    overflow: hidden;
    list-style-type: none;
    vertical-align: middle;
    margin-top: 15px;
}

.announcements-container ul.announcements li {
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    margin: -15px 0 0 0;
    vertical-align: middle;
    padding: 0;
    line-height: 42px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.announcements-container ul.announcements li a {
    width: 100%;
    text-decoration: none;
    color: #fff !important;
    -webkit-transition: color 0.5s ease-out;
    -moz-transition: color 0.5s ease-out;
    -o-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}

.announcements-container ul.announcements li a:hover {
    color: #03a9f4;
}

.announcements-container ul.announcements li a:visited {
    color: #616161;
}

.ticker {
    background: #474487;
}

/*======News Ticker======*/
/*======Feature item======*/
.feature {
    background: linear-gradient(0deg, var(--theme-ui-colors-omegaLighter, #f8f8f8), var(--theme-ui-colors-background, #edf2f7));
    padding: 90px 0;
}

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

.feature-text {
    color: #464646;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 22px;
}

.feature-icon {
    padding: 10px;
}

.feature-icon i {
    font-size: 66px;
    color: #474487;
}

.feature-heading {
    font-size: 18px;
    color: #474487;
}

/*======Feature item======*/
/*======Notice Board======*/
.notice-board {
    background: url(../img/2021-06-21.png) no-repeat center center fixed;
    position: relative;
}

.notice-board:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000a8;
    z-index: -1;
}

.notice-bg {
    background: #020202a1;
}

.notice-heading {
    text-align: center;
    font-size: 21px;
    padding-top: 32px;
    color: #fff;
}

/*======Notice Board======*/
/*======Countdown======*/
.coundown-box {
    border-radius: 8px;
}


.clockdiv {
    font-family: sans-serif;
    color: #ffffff;
    display: block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clockdiv>div {
    border-radius: 3px;
    margin: 0px 4px;
}

.clockdiv div>span {
    font-size: 16px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    padding: 5px 0;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    font-weight: 600;
}

/* .coundown {
    background: #0f172a;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 25px 0;
} */

.smalltext {
    margin-top: 5px;
    font-size: 13px;
}

.course-title {
    padding: 0 15px;
    color: #fff;
    font-size: 19px;
    text-align: center;
    margin-bottom: 0;
}



.box-color-1 {
    padding: 10px 0;
    background: #2563eb;
}

.box-color-1 span {
    background: #1e40af;
}

.box-color-2 {
    padding: 10px 0;
    background: #7c3aed;
}

.box-color-2 span {
    background: #5b21b6;
}

.box-color-3 {
    padding: 10px 0;
    background: #0d9488;
}

.box-color-3 span {
    background: #115e59;
}

.box-color-4 {
    padding: 10px 0;
    background: #d97706;
}

.box-color-4 span {
    background: #92400e;
}


.box-color-5 {
    padding: 10px 0;
    background: #16a34a;
}

.box-color-5 span {
    background: #166534;
}

.box-color-6 {
    padding: 10px 0;
    background: #4f46e5;
}

.box-color-6 span {
    background: #3730a3;
}
.box-color-7 {
    padding: 10px 0;
    background: #f43f5e;
}

.box-color-7 span {
    background: #be123c;
}
.box-color-8 {
    padding: 10px 0;
    background: #65a30d;
}

.box-color-8 span {
    background: #3f6212;
}

.mine-btn {
    display: block;
    background: #fff;
    width: 72%;
    margin: 0 auto;
    padding: 5px 5px;
    text-align: center;
    /* margin: 5px 0; */
    margin-top: 10px;
    border-radius: 5px;
}

.bg-gray-800 {
    background: #0f172a;
}

/*======Countdown======*/
/*======Registration form======*/



label {
    box-sizing: border-box;
    margin: 0px 0px 0.5rem;
    min-width: 0px;
    width: 100%;
    display: flex;
}
.form-control{
    border-radius: 6px;
}

.form-control:focus {
    background: #fff;
    border-color: #15803d;
    outline: 0;
    box-shadow: unset;
}
.content-heading-box {
    margin: 20px auto;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.custom-control {
    padding: 11px 24px;
}

.form-heading {
    text-transform: uppercase;
    font-weight: 600;
    color: #121521;
    font-size: 14px;
    padding-left: 0;
}

/*======Registration form======*/
/*======Notice Details page======*/
.notice-list {
    font-weight: 600;
    position: relative;
    padding: 11px 0;
}

.notice-list li {
    padding: 10px 0;
    list-style: none;
    line-height: 19px;
    border-bottom: 1px dotted #cecece;
    margin: 0 15px;
}

.notice-list li a {
    font-weight: 400;
}

/*======Notice Details page======*/
.error {
    color: #e43b3b;
}

/*=========For responsive========*/
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .main {
        width: 100%;
    }

    .tin-button {
        float: unset;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .inner-column-info {
        margin-top: 15px;
    }

    .common-page-img {
        height: auto;
    }

    .clockdiv div>span {
        width: 40px;
    }

    .cat-heading {
        font-size: 13px;
    }

    .notice {
        padding: 40px 0;
    }

    .coundown-box {
        margin-bottom: 15px;
        padding: 22px 10px;
    }

    div#navbarSupportedContent {
        text-align: center;
    }

    .common-banner h1 {
        font-size: 30px;
    }

    .content-heading-box {
        width: 100%;
    }

    .registration-form {
        width: 100%;
    }

    .navbar-toggler {
        position: initial;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .f-heading {
        margin-top: 5px;
    }

    .ulink {
        text-align: center;
    }

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

    .logo-igu {
        display: none;
    }

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

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {

    .main {
        width: 100%;
    }

    .tin-button {
        float: unset;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .inner-column-info {
        margin-top: 15px;
    }

    .clockdiv div>span {
        width: 40px;
    }

    .cat-heading {
        font-size: 13px;
    }

    .notice {
        padding: 40px 0;
    }

    .coundown-box {
        margin-bottom: 28px;
    }

    .navbar-toggler {
        position: absolute;
        left: 95%;
        width: 100%;
    }

    .ulink {
        text-align: center;
    }

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

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .main {
        width: 100%;
    }

    .clockdiv div>span {
        width: 40px;
    }

    .tin-button {
        float: unset;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .inner-column-info {
        margin-top: 15px;
    }

    .cat-heading {
        font-size: 13px;
    }

    .notice {
        padding: 40px 0;
    }

    .nav-link {
        font-size: 13px;
    }

    .coundown-box {
        margin-bottom: 28px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main {
        width: 100%;
    }

    .clockdiv div>span {
        width: 40px;
    }

    .cat-heading {
        font-size: 13px;
    }

    .notice {
        padding: 40px 0;
    }

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1365px) {
    .clockdiv div>span {
        width: 40px;
    }

    .nav-link {
        font-size: 14px;
    }

    .cat-heading {
        font-size: 13px;
    }
}

/*=========For responsive========*/
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}


.footer-area {
    background:#fff7ed;
}
.download-wrapper{
    background: url("../img/seminag-bg-vector.webp") no-repeat center center/cover;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}
.download-wrapper::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(15, 23, 42, 0.96);
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 20px;
}
.download-card{
    padding: 80px 30px;
}
.download-btn {
    font-size: 36px;
    color: #fff;
    background: #f97316;
    display: inline-block;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 11px;
    transition: .5s;
    border: none;
}
.download-btn:hover{
    background: #ea580c;
    color: #fff;
}
.footer-bottom{
    background: #0f172a;
}
.student-review-card .card-footer {
    padding: .75rem 1.25rem;
}
.student-review-card h6,p {
    margin-bottom: 0;
}

.review-card-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
@media (max-width: 767.98px) {
    .review-card-footer{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
}
.video-card {
    margin-bottom: 1.5rem;
}
.student-img {
    max-height: 450px;
    width: 100% !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.bg-black	{background-color: rgb(0 0 0)}
.bg-white	{background-color: rgb(255 255 255)}
.bg-slate-50	{background-color: rgb(248 250 252)}
.bg-slate-100	{background-color: rgb(241 245 249)}
.bg-slate-200	{background-color: rgb(226 232 240)}
.bg-slate-300	{background-color: rgb(203 213 225)}
.bg-slate-400	{background-color: rgb(148 163 184)}
.bg-slate-500	{background-color: rgb(100 116 139)}
.bg-slate-600	{background-color: rgb(71 85 105)}
.bg-slate-700	{background-color: rgb(51 65 85)}
.bg-slate-800	{background-color: rgb(30 41 59)}
.bg-slate-900	{background-color: rgb(15 23 42)}
.bg-slate-950	{background-color: rgb(2 6 23)}
.bg-gray-50	{background-color: rgb(249 250 251)}
.bg-gray-100	{background-color: rgb(243 244 246)}
.bg-gray-200	{background-color: rgb(229 231 235)}
.bg-gray-300	{background-color: rgb(209 213 219)}
.bg-gray-400	{background-color: rgb(156 163 175)}
.bg-gray-500	{background-color: rgb(107 114 128)}
.bg-gray-600	{background-color: rgb(75 85 99)}
.bg-gray-700	{background-color: rgb(55 65 81)}
.bg-gray-900	{background-color: rgb(17 24 39)}
.bg-gray-950	{background-color: rgb(3 7 18)}

.bg-red-700	{background-color: rgb(185 28 28)}
.bg-orange-700	{background-color: rgb(194 65 12)}
.bg-amber-700	{background-color: rgb(180 83 9)}
.bg-yellow-700	{background-color: rgb(161 98 7)}
.bg-lime-700	{background-color: rgb(77 124 15)}
.bg-green-700	{background-color: rgb(21 128 61)}
.bg-emerald-700	{background-color: rgb(4 120 87)}
.bg-teal-700	{background-color: rgb(15 118 110)}
.bg-cyan-700	{background-color: rgb(14 116 144)}
.bg-sky-700	{background-color: rgb(3 105 161)}
.bg-blue-700	{background-color: rgb(29 78 216)}
.bg-indigo-700	{background-color: rgb(67 56 202)}
.bg-violet-700	{background-color: rgb(109 40 217)}
.bg-purple-700	{background-color: rgb(126 34 206)}
.bg-fuchsia-700	{background-color: rgb(162 28 175)}
.bg-pink-700	{background-color: rgb(190 24 93)}
.bg-rose-700	{background-color: rgb(190 18 60)}
/*text colors*/
.text-white	{color: rgb(255 255 255);}
.text-slate-50	{color: rgb(248 250 252);}
.text-slate-100	{color: rgb(241 245 249);}
.text-slate-200	{color: rgb(226 232 240);}
.text-slate-300	{color: rgb(203 213 225);}
.text-slate-400	{color: rgb(148 163 184);}
.text-slate-500	{color: rgb(100 116 139);}
.text-slate-600	{color: rgb(71 85 105);}
.text-slate-700	{color: rgb(51 65 85);}
.text-slate-800	{color: rgb(30 41 59);}
.text-slate-900	{color: rgb(15 23 42);}
.text-slate-950	{color: rgb(2 6 23);}
.text-gray-50	{color: rgb(249 250 251);}
.text-gray-100	{color: rgb(243 244 246);}
.text-gray-200	{color: rgb(229 231 235);}
.text-gray-300	{color: rgb(209 213 219);}
.text-gray-400	{color: rgb(156 163 175);}
.text-gray-500	{color: rgb(107 114 128);}
.text-gray-600	{color: rgb(75 85 99);}
.text-gray-700	{color: rgb(55 65 81);}
.text-gray-800	{color: rgb(31 41 55);}
.text-gray-900	{color: rgb(17 24 39);}
