@import url("https://fonts.googleapis.com/css2?&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --primary-color: #fd9f03;
    --body-color: #1a1a1a;
}

body {
    color: var(--body-color);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a,
a:hover {
    text-decoration: none;
}
a {
    color: #fd9303;
}
p > a{
    color: var(--primary-color);
    font-weight: 500;
}

p > a:hover{
    color: var(--body-color);
}

img {
    width: 100%;
    display: block;
}

.filter-white {
    -ms-filter: brightness(50);
    filter: brightness(50);
}
.invert{
    filter: invert(1) !important;
}

.object-cover{
    object-fit: cover;
}
a:hover {
    color: #000000;
}
.gap-row{
    row-gap: 30px;
}

.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.text-primary{
    color: var(--primary-color) !important;
}

.bg-primary-bgcolor {
    background-color: var(--ms-primary-bgcolor);
    color: var(--ms-light);
}

.bg-primary-blue-bgcolor {
    background-color: var(--primary-color);
    color: var(--ms-light);
}

.bg-secondary-bgcolor-light {
    background-color:var(--ms-secondary-bgcolor-light) !important;
}
.bg-secondary-bgcolor {
    color: var(--ms-light);
    background-color:var(--ms-secondary-bgcolor) !important;
}

.bg-lightgray {
    background-color:var(--ms-lightgray) !important;
}
.bg-image{
    min-height: 500px;
    background: center / cover no-repeat fixed;
    position: relative;
    z-index: 1;
}

.bg-image::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
    z-index: -1;
}

.bg-none{background: none !important;}

/*header*/
.header {
    width: 100%;
    background-color: #fff;
    position:fixed;
    top: 0;
    z-index: 999;
    transition: all 300ms ease-in-out;
}
.header.fixed {
    background:#fff;
	box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
    backdrop-filter: blur(10px);
    position: fixed;
}

.logo {
    width: 180px;
    position: relative;
    min-height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease-in-out;
}

.header.fixed .logo{
    padding: 0;
    width: 106px;
}

.header > .d-flex{
    justify-content: space-between;
    align-items: center;
}


.navi a{
    color: var(--ms-dark);
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
}

.navi a:hover{
    text-decoration: underline;
}

.navi > ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navi ul li{
    position: relative;
    flex-grow: 1;
}

.navi ul li a{
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2rem 1rem;
}

.navi ul li:hover > a{
    color: var(--primary-color);
    text-decoration: none;
}

.header.fixed .navi > ul > li > a{
    font-size: 1rem;
    padding: 1rem;
}

.navi li a i{
  font-size: 75%;
}

.navi .dropdown{
	width: 220px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	border-top: 4px solid var(--primary-color);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 300ms ease-in-out;
}

.navi li:hover .dropdown{
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.dropdown ul li a{
    padding: 1rem;
    color: var(--body-color);
    border-bottom:1px solid rgba(0, 0, 0, 0.14);
    transition:all 300ms ease;
    font-size: 1rem;
}

.menuBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.menuBtn span {
  width: 30px;
  height: 2px;
  background-color: var(--body-color);
  position: relative;
  transition: all 400ms ease-in-out;
  z-index: 1;
}
.menuBtn span::before,
.menuBtn span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-color: var(--body-color);
  border-radius: var(--primary-radius);
  transition: all 400ms ease-in-out;
}
.menuBtn:hover span {
  background: var(--primary-color);
}
.menuBtn:hover span::before,
.menuBtn:hover span::after {
  background: var(--primary-color);
}
.menuBtn span::before {
  top: -9px;
}
.menuBtn span::after {
  bottom: -9px;
}
.menuBtn.closeMenuBtn span {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  background-color: var(--primary-color);
}
.menuBtn.closeMenuBtn span::before {
  opacity: 0;
}
.menuBtn.closeMenuBtn span::after {
  -webkit-transform: rotate(-90deg) translateX(9px);
  transform: rotate(-90deg) translateX(9px);
  background-color: var(--primary-color);
}

.mbMenuContainer{
  position: fixed;
  top: 12px;
  width: 300px;
  right: 0;
  overflow: auto;
  background-color: #fff;
  padding: 70px 20px 20px;
  box-shadow: 0 0 2rem rgb(0 0 0 / 15%);
  display: none;
  z-index: 99;
}
.mbMenuContainer ul li a{
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--body-color);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
} 

.dropdown-mob{
	display:none;
	background-color: var(--primary-color);
}

.mbMenuContainer.active{
  display: block;
}
/* header */

div[class^='swiper-button'] {
    width: 50px;
    height: 50px;
    margin-top: -20px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

div[class^='swiper-button']:hover{
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0px 18px rgb(0 0 0 / 40%);
}

div[class^='swiper-button']:after{
    color: inherit;
    font-size: 13px;
}

.menuContainer{
	position:fixed;
	top:0;
	right:0;
	width:250px;
	padding:50px 20px 20px;
	background:rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(2px) brightness(2);
	box-shadow:0 0 10px rgba(0,0,0,0.41);
	z-index:998;
	display:none;
}

.menuContainer section{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.menuContainer ul{
	width:100%;
	padding:20px 0;
	border-top:1px solid rgb(255 255 255 / 20%);
}

.menuContainer .menu{
    border-top: none;
    padding: 30px 0 60px;
}

.menuContainer li{
	width:100%;
	margin-bottom:20px;
}

.menuContainer .menu li a{
	font-weight:300;
    font-size: 18px;
    line-height: 1;
	text-transform:uppercase;
}

.menuContainer li a{
	color:#fff;
	position:relative;
	-webkit-transition:all 300ms ease-in-out;
	-moz-transition:all 300ms ease-in-out;
	-ms-transition:all 300ms ease-in-out;
	-o-transition:all 300ms ease-in-out;
	transition:all 300ms ease-in-out;
}

.menuContainer .menu li a{
	font-size:15px;
    letter-spacing: 2px;
}

.menuContainer li:last-child{
	margin-bottom:0;
}

.menuContainer .menu li a::before{
	content:"";
	position:absolute;
	left:-15px;
	top:50%;
	width:10px;
	height:1px;
	background:var(--ms-primary-color-dark);
	opacity:0;
	-webkit-transition:all 300ms ease-in-out;
	-moz-transition:all 300ms ease-in-out;
	-ms-transition:all 300ms ease-in-out;
	-o-transition:all 300ms ease-in-out;
	transition:all 300ms ease-in-out;
}

.menuContainer li:hover > a{
	padding-left:15px;
	color:var(--ms-primary-color-dark);
}

.menuContainer .menu li:hover > a::before{
	left:0;
	opacity:1;
}

.menuContainer .topSocial{
    display: flex;
    gap: 30px;
}

.menuContainer .topSocial li{
	width:auto;
	display:inline-block;
	vertical-align:middle;
	margin-bottom:0;
}

.menuContainer .topSocial li a{
	font-size:15px;
	padding-left:0;
    color: var(--ms-primary-color-dark);
}

.menuContainer .topSocial li a:hover{
    color: var(--ms-primary-bgcolor);
}

.menuContainer .topSocial li a::before{
	content:none;
}
/*header*/

.carousel-item img{
    object-fit: cover;
}

.banner {
    height: calc(100vh - 84px);
    margin-top: 84px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.banner::after{
    content: '';
    width: 100%;
    height: 10px;
    background: var(--ms-silver-grad);
    display: block;
}

.scrollDown {
    position: absolute;
    left: 5vw;
    bottom: 50px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--ms-light);
    z-index: 9;
}

/* overview */
.hm-overview-img img{
    filter: drop-shadow(10px 10px 0 #bbb);
}
/* overview */

/* facilities */
.toggleHeader{
    display: flex;
    flex-wrap: wrap;
}

.toggleBtn{
    background-color: transparent;
    border: 0;
    padding: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    transition: all 300ms ease-in-out;
}

.toggleBtn:hover{
    -webkit-filter: grayscale(1) brightness(0.5);
    filter: grayscale(1) brightness(0.5);
}

.toggleBtn.active{
    -webkit-filter: none;
    filter: none;
    background-color: #fff;
}

.toggleBtn .icon{
    width: 40px;
}

.toggleWrapper{
    min-height: 285px;
    background-color: #fff;
}

.toggleContainer:not(.show){
    display: none;
}
/* facilities */

/* Grades */
/* Grades */

/* Products */
.productsBox article:not(:last-of-type){
    margin-bottom: 2rem;
}
/* Products */

/* contact */
#contact
{
    border-bottom: 1px solid #fff;
    padding: 2rem;
    margin-bottom: 10px;
}
.contactBox:not(:last-of-type){
    border-right: 1px dashed rgb(255 255 255 / 20%);
}

.contactBox .inner{
    padding: 0 2rem;
}

.contactBox:first-of-type .inner{
    padding-left: 0;
}

.contactBox:last-of-type .inner{
    padding-right: 0;
}

.contactBox .inner li{
    margin-bottom: 10px;
}

.contactBox .inner li a{
    color: #ffffff;
    display: flex;
    gap: 10px;
    align-items: baseline;
    text-align: left;
}

.contactBox .inner li a:hover,
.contactBox .inner li a i{
    color: var(--primary-color);
}
/* contact */

/*Footer*/
.footer-area {
    background-color:var(--body-color);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 14px;
    position: relative; 
    z-index: 1;
}
/*Footer*/


.headingContainer{
  margin-bottom: 2rem;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.heading h6 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.heading h2 {
  line-height: 1.4;
}

.readmore{
    margin-top: 1.25rem;
}

.readmore .button {
    display: block;
    align-items: baseline;
    width: max-content;
    font-weight: 600;
    padding: 5px 10px;
    background: #000;
    transition: all ease-in-out 500ms;
}
.readmore .button:hover {
    color: #000;
    background:var(--primary-color);
    transition: all ease-in-out 500ms;
}

.readmore .button i{
    font-size: .75em;
}

.readmore1{
    margin-top: 1.25rem;
}

.readmore1 .button{
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    font-weight: 600;
    margin: auto;
    background: #000;
    padding: 5px 10px;
    transition: all ease-in-out 500ms;
}
.readmore1 .button:hover{
    color: #000;
    background:var(--primary-color);
    transition: all ease-in-out 500ms;
}

.readmore1 .button i{
    font-size: .75em;
}

/* Custom Modal */
.modal-backdrop.show{opacity: 1;}
.modal-backdrop{
    background-color: rgb(0 0 0 / 80%);
    backdrop-filter: blur(10px);
}
.modal-header{
    flex-direction: column;
}
.modal-header h4{
    font-weight: 800;
    font-size: 14px;
    color: var(--ms-primary-color-dark);
    margin-bottom: 0;
}
.modal-title{
    font-weight: 600;
    font-size: 12px;
}

.modal-body  .form-group{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body  .form-group img{
    max-width: 25px;
    flex: 0 0 25px;
}

.modal-body .form-control{
    border-radius: 0;
    border: none;
    padding: 5px 0;
    border-bottom: 1px solid rgb(0 0 0 / 23%);
}

.modal-body .form-control:focus{
    box-shadow: none;
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}
/* Custom Modal */


/*transformation Animation*/
.leftTranslate {
    -webkit-transform: translate(-200px, 0);
    transform: translate(-200px, 0);
    opacity: 0;
    -webkit-transition: all 1000ms;
    transition: all 1000ms;
}

.rightTranslate {
    -webkit-transform: translate(200px, 0);
    transform: translate(200px, 0);
    opacity: 0;
    -webkit-transition: all 1000ms;
    transition: all 1000ms;
}

.topTranslate {
    -webkit-transform: translate(0, -200px);
    transform: translate(0, -200px);
    opacity: 0;
    -webkit-transition: all 1000ms;
    transition: all 1000ms;
}

.bottomTranslate {
    -webkit-transform: translate(0, 200px);
    transform: translate(0, 200px);
    opacity: 0;
    -webkit-transition: all 1000ms;
    transition: all 1000ms;
}

.doneTranslate {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.hidden {
    opacity: 0;
    -webkit-transition: opacity 1s linear;
    transition: opacity 1s linear;
}

.visible {
    opacity: 1;
}

.doneBeat {
    animation: beating 1.5s linear infinite;
}

@keyframes beating {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}
/*transformation Animation*/

.list{
    padding-left: 20px;
}

.list li:not(:last-of-type){
    margin-bottom: 10px;
}

.list li::marker{
    color: var(--primary-color);
    font-weight: 600;
}

/* Inside page */
.insideBanner{
  margin-top: 84px;
  position: relative;
  overflow: hidden;
  background-color: var(--body-color);
  color: #fff;
}

.pageHead{
  text-align: center;
}

.page-title{
  font-size: 3.5rem;
  font-weight: 700;
}

.breadcrumb{
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  justify-content: center;
}

.breadcrumb li a, .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
  font-weight: 600;
}

.breadcrumb li a:hover{
  color: var(--primary-color);
}

.breadcrumb li.active{
  color: var(--primary-color);
}

.emptyBox{height: 51px;}

th{
    color: var(--primary-color);
}
/* inside pages */
.statsBox h2
{
    color: #fd9f03;
}
.statsBox h2 span
{
    font-size: 120%;
    color: #000000;
    display: block;
}
.statsBox p
{

}
.addressKalinga
{
    margin: 0;
    text-align: center;
    margin-top:1rem;
    color: #535353;
}
.hm-overview-img12 img
{
    filter: none;
    border: 1px solid #e7e7e7;
}

.contact-form .readmore .button {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 15px;
    min-width: 140px;
    color: #ffffff;
    background-color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: all ease-in-out 0.3s;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    border: none;
}
.contact-form .readmore .button:hover
{
    background-color: #000000;
}
.form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
    background: none;
}
.form-control {
    font-size: 14px;
    padding: 12px 10px;
    height: auto;
    background: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 40%);
    margin-bottom: 1rem;
    border-radius: 0;
    transition: all 300ms ease;
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: var(--body-color);
}
.contact-form li
{
    margin-bottom: 1rem;
    color: #000;

}
.contact-form li a
{
    color: #000;
    display: flex;
    gap: 10px;
    align-items: baseline;
    text-align: left;

}
.contact-form select {
    word-wrap: normal;
    font-size: 14px;
    padding: 12px 10px;
    height: auto;
    background: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 40%);
    margin-bottom: 1rem;
    border-radius: 0;
    transition: all 300ms ease;
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: var(--body-color);
    width: 100%;
}

.contact-form textarea {
    word-wrap: normal;
    font-size: 14px;
    padding: 12px 10px;
    height: auto;
    background: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 40%);
    margin-bottom: 1rem;
    border-radius: 0;
    transition: all 300ms ease;
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: var(--body-color);
    width: 100%;
}
.carousel-caption {
    bottom: 43%;
}
.carousel-caption h2 {
    font-size: 3.25rem;
}
.carousel-caption h5 {
    font-size: 2rem;
}
/*responsive*/

@media (max-width: 1200px) {
    .banner{height: auto;}
}

@media (max-width: 1024px) {
	.heading h2{font-size:20px; font-weight:600;}
}

@media (max-width: 991.9px) {
    body{text-align: justify; text-align-last: center;}
    .container-lg{padding-left: 20px; padding-right: 20px;}
    .contactBox .inner, .list{text-align-last: left;}
	.logo { width: 110px;}
    .navi ul li a{padding: 10px;}
    .header.fixed .navi ul li a{padding: 5px 10px;}
    .banner, .insideBanner{margin-top: 49px;}
    .heading{margin-left: auto; margin-right: auto;}
    .contactBox .inner{padding: 0 1.25rem;}
}

@media (max-width: 767.9px) {
    html{font-size: 87.5%;}
	.navi ul li a {font-size: 13px;}
    .heading{margin-bottom: 30px;}
    div[class^='swiper-button']{width: 30px; height: 30px;}
}

@media (max-width: 717px) {
}

@media (max-width: 525px) {
	.header.fixed .logo{ width:80px;}
	p{ font-size:12px;}
    .heading{margin-bottom: 20px;}
    .heading h2{font-size: 16px;padding: 0 5px;}
    .heading h6{font-size: 13px;}
    .padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.product-img
{
    margin-bottom: 1rem;
        background: #f5f5f5;
}
.product-img p
{
        margin-bottom: 10px !important;
}
.product-img a
{
    display: block;
}
.team_sec p {
    text-align: center;
    text-align-last: center;
}
#contact {
    padding: 1rem;
}
.contactBox:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px dashed rgb(255 255 255 / 20%);
    padding-bottom: 10px;
}
    .contactBox .inner {
        padding: 0;
    }
    .QuickLinks
     {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
    .QuickLinks li {
        display: table;
        background: #292929;
        padding: 4px;
        margin-bottom: 0px !important;
}
.readmore .button
{
    margin: auto;
    
}
.page-title {
    font-size: 2.5rem;
}
    .table, .contact-form li a, .contact-form li, .form-control {
        text-align: left;
        text-align-last: left;
    }
    .carousel-caption h2 {
    font-size: 1.25rem;
}
.carousel-caption h5 {
    font-size: 1rem;
}
.carousel-caption {
    bottom: 29%;
}
.ourmanagement
{
    width: 50% !important;
}
.team_sec p {
    margin-bottom: 0;
}
}
@media (max-width: 375px) {
}

@media (max-width: 360px) {
}

/* Team Section CSS Start */

.w-full {
    width: 100%;
    border-radius: 50%;
}
.h-full {
    height: 100%;
}
.object-center {
    object-position: center;
}
.object-cover {
    object-fit: cover;
}
.h-80 {
    height: 20rem;
}
.team_sec {
    /* display: flex; */
    width: 100%;
    border-radius: 0.5rem;
    /* background-color: rgb(235 235 235); */
    /* box-shadow: 0rem 0.5rem 1rem rgb(17 24 39 / 0.1); */
}
.text-gray-400 {  
    color: rgb(56 56 56);
}
.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
}
.font-normal {
    font-weight: 400;
}
.font-medium {font-weight: 500;}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.font-bold {
    font-weight: bold;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem* calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem* var(--tw-space-y-reverse));
}
@media screen and (min-width: 768px) {
    .md\:p-4 {
        padding: 1rem;
    }
    .md\:w-3\/5 {
        width: 60%;
    }
    .md\:w-2\/5 {
        width: 40%;
    }
}
.team_sec img {
    border-radius: 50%;
    background: #fd9303;
    padding: 10px;
}
.team_sec a:hover {
    color: var(--primary-color);
 }

 .modal_member img {display: flex;
    margin: 0 auto;
    border: 4px solid #ffffff;
    border-radius: 15px;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 40%);}
.popup_content .intro-title {font-size: 24px;color:var(--body-color);font-weight: 600;letter-spacing: 0.5px;}
.popup_content .designation {font-size: 18px;margin-bottom: 20px;color:#E7AD03; }
.popup_content ul {margin-bottom: 0px;
    line-height: 22px;
    font-size: 14px;
    text-align: justify;
    list-style: none;}
.popup_content ul li img {width: auto; height: 16px;margin-right: 5px;margin-top: 2px;}
.popup_content i {font-size: 32px;color: #c3bfbf;}
.popup_content ul li {
    margin-bottom: 15px;display: flex;
}
button.btn-close {
    font-size: 10px;
    font-weight: 800;
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #d5d5d5;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
}
.modal-dialog.modal-dialog-centered {
    max-width: 980px;
}

@media screen and (max-width: 768px) {
    .team_sec {
        flex-direction: column;
        margin-bottom: 15px;
    }
    .text-left {
        text-align: left !important;
        text-align-last: left;
    }
    .p-6 {
        padding: 1rem;
    }
    .popup_content {
        text-align-last: left;
        height: 300px;
        overflow-y: auto;
    }
    .modal_member img {
        margin-bottom: 20px;
    }
    button.btn-close {
        right: 2px;
        top: 5px;
    }
}

.text-left {
    text-align: left !important;
}
.team_sec p {
    text-align: center;
}