*{
	margin:0px;
    padding:0px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

p {
    margin: 0;
}
/* end-edit */
html.has-scroll-smooth {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;  
} 
body.no-scroll {
    overflow: hidden;
}
html {
  scroll-behavior: smooth;
}


body {
  transition: background 1s ease;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: #fff; 
    width:10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(192, 38, 53, 1); 
    border-radius: 60px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background:rgba(192, 38, 53, 1); 
}



/* common style */


.about_page .title h5 {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 10px;
    color: #5b4144;
}
.title h2{
    color: rgba(88, 66, 68, 1);
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.title p{
    color: rgba(83, 83, 83, 1);
    font-size: 16px;
    font-weight: 400;
}
.section{
    padding:50px 0;
    position: relative;
}

.learn_btn{
    color: #FFF;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1.5px solid;
    padding-bottom: 5px;
}
.learn_btn:hover {
    color:#fff;
}
.learn_btn:hover svg{
    margin-left:25px;
}
.learn_btn svg{
    margin-left: 15px;
    transition: 0.4s;
}

.btn_dr{
    background: rgba(192, 38, 53, 1);
    color: #fff;
    padding: 12px 25px ;
    font-weight: 500;
    text-align: center;
    border-radius:10px;
    text-decoration: none;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.6s;
    min-width: 140px;
    display: inline-block;
}
.btn_dr:hover {
    color:rgba(192, 38, 53, 1);
    box-shadow: inset 0 -4em 0 0 #fff !important;
}  
.btn_dr2{
    color: rgba(192, 38, 53, 1);
    background: transparent;
    padding: 12px ;
    font-weight: 500;
    text-align: center;
    border-radius:10px;
    text-decoration: none;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.6s;
    min-width: 140px;
    display: inline-block;
}
.btn_dr2:hover {
    color:#fff;
    box-shadow: inset 0 -4em 0 0 rgba(192, 38, 53, 1) !important;
}  
.menu_animation {
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
}
.menu_animation:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #eb5b0e;
  transform: translateX(-110%);
  content: '';
  position: absolute;
  transition: transform .6s ease;
}
.menu_animation:hover:before {
  transform: translateX(0);
}

.logo img {
    height: 70px;

}.logo img.logo1 {
    height: 50px;

}
.navbar-animation{
  padding-bottom: 5px;
  overflow: hidden;
 position: relative;
  
}
.navbar-animation:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #112959;
  transform: translateX(-110%);  content: '';
  position: absolute;
  transition: transform .5s ease;
}
.navbar-animation:hover:before {
  transform: translateX(0);
}

header{
    width: 100%;
    transition: 0.5s all;
    position: relative;
    top: 0;
    background: #fff;
    padding: 10px 0;
    left: 0;
    z-index: 99;  
}
header.sticky {
    /*background: #000000db;*/
    position: sticky;
}
.navbar-brand.logo {
    margin: 0;
}

header .navbar-brand span {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin-left: 10px;
}
.menu {
    display: inline-flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    column-gap: 40px;
    margin: 0;
    align-items: center;
}
.menu a {
    display: block;
    text-decoration: none;
    transition: 0.4s;
    text-transform: capitalize;
    text-align: center;
    font-weight:500;
    color: rgba(113, 72, 76, 1);
    padding: 22px 0;
    font-size: 16px;
}
.menu a:hover {
    color: #b91328;
}
.menu .sub-menu a {
    font-size: 20px;
}
.menu li {
    position: relative;
    margin: 0 10px;
}
.search_btn {
    color: #fff;
    margin-left: 20px;
}
.side_bar{
    padding: 8px;
    margin-left: 40px;
    width: 45px;
    height: 40px;
    display: none;
    align-items: center;
    flex-wrap: wrap; 
    z-index: 10;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.side_bar span {
    display: block;
    height:2px;
    width: 100%;
    background: #272727;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}



.side_bar span:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .side_bar span:nth-child(2) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .side_bar span:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    width: 80%;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
   
  
  .side_bar.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(-1px, -3px);
    -moz-transform: rotate(45deg) translate(-1px, -3px);
    -o-transform: rotate(45deg) translate(-1px, -3px);
    transform: rotate(45deg) translate(-1px, -3px);
    top:0%;
    left: 0;
  }
  .side_bar.open span:nth-child(2) {
    /*width: 0%;*/
    opacity: 0;
  }
  .side_bar.open span:before {
    content:unset;
}
  .side_bar.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width:100%;
  }


.menu li {
    margin: 0;
}

.footer_logo .newsletter h4{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 15px;
}
.footer_logo {
    padding-left: 60px;
}
.footer_logo p {
    color: #D8D8D8;
    font-size: 14px;
    font-weight: 400;
}
footer .custom-logo {
    height: 90px;
    object-fit: contain;
}
footer .logo1{
    height: 65px;
    object-fit: contain;
}
footer{
    position: relative;
    bottom: 0;
    background: rgba(245, 243, 240, 1);
    padding-top: 40px;
} 

footer .footer_item h4 {
    color: #272727;
    font-size: 20px;
    font-weight: 600;
}
footer .footer_item li a {
    text-decoration: none;
    margin: 12px 0;
    display: block;
    color: rgba(113, 72, 76, 1);
    font-size: 16px;
    font-weight: 500;
}
footer .footer_item li a:hover {
    color: #b91328;
}
footer .footer_item ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 40px;
}
.footer_menu{
    padding-left:80px;
}
.newsletter input{
    box-shadow: none !important;
    border-radius: 0;
}
.footer-bottom-bar .container {
    border-top: 1px solid rgba(113, 72, 76, 1);
    padding-top: 20px;
}
.footer-bottom-bar {
    background: rgba(245, 243, 240, 1);
    padding: 15px 0;color: #555555;
    font-size: 14px;
}
.footer-bottom-bar .copy a:hover {
    color: #F1681A;
}
.footer-bottom-bar .copy a{
    color: #D8D8D8;
    margin: 0 5px;
    padding: 0 5px;
    text-decoration: none;
}
.footer-bottom-bar .credit-text a {
    color: #555555;
    text-decoration: none;
}

.footer-bottom-bar ul{
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
    color: #000;
}
.footer-bottom-bar ul a{
    color: #535353;
    text-decoration: none;
    font-size: 14px;
    PADDING: 0 10px;
}

footer .footer_item p {
    font-size: 15px;
}
.social-links a{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s;
    text-decoration: none;
    background: #fff;
    border-radius: 50%;    
    height: 40px;
    width: 40px;
    border: 1px solid rgba(198, 187, 187, 1);
}  
.social-links a svg{
    height: 32px;
    width: 32px;
} 
.social-links a.linkedin svg{
    height: 18px;
    width: 18px;
} 
.social-links a:hover{
    transform: translateY(-10px);
}  
.social-links {
    width: 100%;
    margin-bottom: 30px;
}
.footer_conten p{
    font-size: 15px;
    font-weight: 400;
    color: rgba(113, 72, 76, 1);
    margin-bottom: 25px;
}
.footer_conten h4 {
    color: #272727;
    font-size: 16px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 20px;
}
ul.social_link {
    display: inline-flex;
    gap: 12px;
}
ul.social_link li a {
    background: #36393E;
    width: 42px;
    height: 42px;
    justify-content: center;
    font-size: 18px !important;
    border-radius: 50%;
}
ul.social_link li a:hover {
    background: #1490E9;
}
p.designed a {
    text-decoration: none;
    color: #2D2928;
}



section.main_bnner {
    width: 100%;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
section.main_bnner img{
    height: 100%;
    width: 100%;
    object-fit:cover;
}
section.main_bnner .swiper-slide:before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    background: rgb(0 0 0 / 50%);
}
section.main_bnner .swiper-slide {
    width: 100%; 
    height: 600px;
    overflow: hidden; 
    position: relative;
    display: flex;
    align-items: center;
}
section.main_bnner .swiper-slide .banner_content{
    position: absolute;
    width: 60%;
    z-index: 1;
    text-align: center;
    color:#fff;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}
section.main_bnner .swiper-slide .banner_content h1{
    font-weight: 600;
    font-size: 52px;
}
section.main_bnner .swiper-slide .banner_content h1 span{
    font-weight: 600;
    font-size: 100px;
}
section.main_bnner .swiper-slide .banner_content p{
    font-weight: 500;
    font-size: 16px;
}
.main_bnner .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
}
.search_box {
    background:rgba(192, 38, 53, 1);
    padding:20px;
}

.search_box .container {
    background: #fff;
    border-radius: 10px;
    padding: 8px;
}
.search_box .container .input_fl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 46%;
    padding: 0 25px;
}
.search_box .container .input_fl:first-child{
    border-right: 1px solid  rgba(170, 152, 154, 1);
}
.search_box .container .input_fl input {
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}
.img_about {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}
.mss_img {
    width: 80%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}


.news_card .news_img{
    margin-bottom: 15px;
    border-radius: 10px;
    height: 240px;
    overflow: hidden;
}
.news_card .news_img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    object-fit: cover;
}.news_card:hover .news_img img{

    scale: 1.1;
}
  a.news_card{
    margin-bottom: 25px;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: 0.4s;
}  a.news_card:hover{
}
.news_card p{
    color: rgba(136, 136, 136, 1);
    font-weight: 400;
    font-size: 14px;
}
.news_card h4{
    color: rgba(43, 42, 41, 1);
    margin: 10px 0 15px 0;
    font-size: 20px;
    font-weight: 500;
}
.news_card span{
    color: rgba(192, 38, 53, 1);
    font-size: 16px;
    font-weight: 500;
}
.job_card {
    color: rgba(88, 66, 68, 1);
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.job_card h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
}
.job_card svg {
    margin-right: 5px;
}
.feat_job_loc {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid rgba(235, 221, 222, 1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.job_card p {
    font-size: 16px;
    color: rgba(83, 83, 83, 1);
    margin-bottom: 20px;
}


#wall_slider img {
    border: 1px solid rgba(235, 221, 222, 1);
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 20px;
    border-radius: 10px;
}


.wall_nav {
    position: unset;
    opacity: 1;
    background: rgba(192, 38, 53, 1);
    border-radius: 40px;
    width: 70px;
}.wall_nav svg {
    height: 16px;
}
.wall_nav:after{
    content: none;
}
.swiper-button-prev.wall_nav {
    rotate: 180deg;
}

.feat_job {
    background: rgba(192, 38, 53, 1);
}
.feat_job .title h2,
.feat_job .title p {
    color: #fff;
}
.employee img {
    border: 1px solid rgba(235, 221, 222, 1);
    width: 100%;
    height: 168px;
    object-fit: contain;
    padding: 20px;
    border-radius: 10px;
    transition: 0.6s;
}
.employee img:hover{
    scale: 1.1;
}
.empl_form {
    border: 1px solid rgba(235, 221, 222, 1);
    background: rgba(245, 243, 240, 1);
    padding: 20px 40px;
    border-radius: 10px;
}
.log_pagi  .swiper-pagination-bullet-active {
    background: #C02635;
}
.log_pagi span{
    width: 10px;
    height: 10px;
}
.empl_form h4{
    color: rgba(88, 66, 68, 1);
    font-weight: 600;
    font-size: 20px;
    margin:20px 0;
}
.empl_form input {
    border: 1px solid rgba(235, 221, 222, 1);
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.testimonial{
    background: rgba(245, 243, 240, 1);
}

.testimonial .nav-pills {
    display: flex;
    border: 1px solid rgba(192, 38, 53, 1);
    border-radius: 8px;
    width: 80%;
    margin: auto;
}
.testimonial .nav-item {
    width: 50%;
}
.testimonial .nav-item button{
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #cf1937;
}
.testimonial .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background: rgba(192, 38, 53, 1);
}
.test_content img {
    height: 125px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    padding: 10px;
    margin: auto;
    background: #fff;
    display: flex;
    margin-bottom: 25px;
    border: 1px solid rgba(198, 198, 198, 1);
}
.test_content p {
    color: rgba(113, 72, 76, 1);
}
.testimonial .swiper-slide{
    display: inline-flex;
    gap: 40px;
    padding: 0 10px;
}
.test_content {
    width: 60%;
}
.test_img {
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    width: 40%;
}
.test_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.test_img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.test_nav {
    position: unset;
    opacity: 1;
    background: rgba(192, 38, 53, 1);
    border-radius: 40px;
    width: 70px;
}.test_nav svg {
    height: 16px;
}
.test_nav:after{
    content: none;
}
.swiper-button-prev.test_nav {
    rotate: 180deg;
}



.student_nav {
    position: unset;
    opacity: 1;
    background: rgba(192, 38, 53, 1);
    border-radius: 40px;
    width: 70px;
}.student_nav svg {
    height: 16px;
}
.student_nav:after{
    content: none;
}
.swiper-button-prev.student_nav {
    rotate: 180deg;
}


.recruit{
    background: rgba(192, 38, 53, 1);

}
.recruit .title h2, .recruit .title p {
    color: #fff;
}


.recruit svg path{
    transition: 0.6s;
    fill: #fff;
}
.recruit .rec_ani {    
    margin: auto;
    position: relative;
    text-align: center;
    border-top: 1px solid #fff;
}
.recruit .rec_content p {
    font-size: 20px;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    display:none;
    margin-top: 40px;
}

.recruit .rec_content p.active {
    display:block;
}
.rec_title img{
    height: 65px;
}
.rec_title p {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #584244;
    margin-top: 10px;
}
.rec_title {
    position: absolute;
    top: 14%;
    left: 22%;
}
.rec_title:nth-child(2) {
    top: 32%;
    left: 47%;
}
.rec_title:nth-child(3) {
    top: 15%;
    left: 72%;
}
.rec_ani svg path.active {
    fill: #311A1D;
}
.rec_title.active img{
    filter: brightness(100);
}
.rec_title.active p {
    color:#fff;
}


/*inner page*/


section.inner_bnner {
    width: 100%;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
section.inner_bnner img{
    height: 100%;
    width: 100%;
    object-fit:cover;
}
section.inner_bnner .swiper-slide:before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    background: rgb(0 0 0 / 50%);
}
section.inner_bnner .swiper-slide {
    width: 100%; 
    height: 350px;
    overflow: hidden; 
    position: relative;
    display: flex;
    align-items: center;
}
section.inner_bnner .swiper-slide .banner_content{
    position: absolute;
    width: 60%;
    z-index: 1;
    text-align: center;
    color:#fff;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}
section.inner_bnner .swiper-slide .banner_content h1{
    font-weight: 600;
    font-size: 52px;
}
section.inner_bnner .swiper-slide .banner_content h1 span{
    font-weight: 600;
    font-size: 100px;
}
section.inner_bnner .swiper-slide .banner_content p{
    font-weight: 500;
    font-size: 16px;
}
.inner_bnner .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
}
.mission_vission {
    display: flex;
    justify-content: center;
}
.mv_card {
    background: #B3E4CCBD;
    border-radius: 50%;
    height: 520px;
    aspect-ratio: 1 / 1;
    align-content: center;
    text-align: center;
    padding: 60px;
    margin: 0 -20px;
}
.mv_card:last-child {
    background: #E4DFB3BD;
}
.mv_card h4{
    color: #584244;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.mv_card p{
    color: #584244;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
}

.pill_nav {
    position: unset;
    opacity: 1;
    background: rgba(192, 38, 53, 1);
    border-radius: 40px;
    width: 70px;
}.pill_nav svg {
    height: 16px;
}
.pill_nav:after{
    content: none;
}
.swiper-button-prev.pill_nav {
    rotate: 180deg;
}
#piller_slider .swiper-slide {
    border: 1px solid #EBDDDE;
    border-radius: 10px;
    padding: 40px;
}
#piller_slider .swiper-slide img {
    height: 60px;
    margin-bottom: 25px;
}
#piller_slider .swiper-slide h4{
    color: #272727;
    font-weight: 500;
    font-size: 26px;
}
#piller_slider .swiper-slide p{
    color:#535353;
}






.train_card .train_img{
    margin-bottom: 15px;
    border-radius: 10px;
    height: 220px;
    overflow: hidden;
}
.train_card .train_img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    object-fit: cover;
}.train_card:hover .train_img img{

    scale: 1.1;
}
  a.train_card{
    display: block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
} 
.train_card h4{
    color: #584244;
    margin: 10px 0 15px 0;
    font-size: 20px;
    font-weight: 500;
}
.team_head{
    font-size:30px;
    color: rgba(88, 66, 68, 1);
    font-weight: 600;
    text-transform: uppercase;
}




.team_card .team_img{
    margin-bottom: 15px;
    border-radius: 10px;
    height: 320px;
    overflow: hidden;
    border: 1px solid #C2C2C2;
}
.team_card .team_img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    object-fit: cover;
}.team_card:hover .team_img img{

    scale: 1.1;
}
  a.team_card{
    display: block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
} 
.team_card h4{
    color: #584244;
    font-size: 16px;
    font-weight: 500;
}
.team_card p{
    color: #535353;
    font-size: 14px;
}





.cert_card .cert_img{
    margin-bottom: 15px;
    border-radius: 10px;
    height: 280px;
    overflow: hidden;    background: #F5F5F5;
}
.cert_card .cert_img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    object-fit: contain;
}.cert_card:hover .cert_img img{

    scale: 1.1;
}
  a.cert_card{
    margin-bottom: 15px;
    display: block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
} 
.cert_card h4{
    color: #584244;
    font-size: 16px;
    font-weight: 600;
}


.journey{
    background: #F5F3F0;
}
.paddLeft{
    padding:20px 0;
    height: 380px !important;
}
.timeline-slide {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    /*transition: 0.6s;*/
}
.timeline-slide:hover {
    background: #cf1937;
    color: #fff;
}
.timeline-slide:hover h2{
    color: #fff;
}
.timeline-slide:hover p{
    color: #fff;
}
.timeline-container {
  display: flex;
  margin: 40px auto;
  /*padding: 20px;*/
    /*gap: 40px;*/
    overflow: auto;
    flex-direction: column;
    height: 480px;
}
.timeline-slide h2 {
    margin-bottom: 0px;
    color: #584244;
    border-right: 3px solid;
    padding: 20px 30px 20px 0;
    font-weight: 700;
    font-size: 24px;
}.timeline-slide p {
    color: #535353;
    font-weight: 400;
    font-size: 16px;
}
.timeline_bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 20px;
}
/* Left Years */
.swiper-years {
  width: 120px;
    padding-right: 35px;
  /*border-right: 2px solid #e5e5e5;*/
  position: relative;
}
.swiper-years:after {
    content: "";
    width: 3px;
    height: 100%;
    background: #CBCBCB;
    position: absolute;
    right: 5px;
    top: 0;
}
.swiper-years .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-end;  
  font-size: 20px;
  font-weight: 700;
  color: #584244;
  cursor: pointer;
  transition: color 0.3s;
}
.swiper-years .swiper-slide-thumb-active {
  color: #c3002f;
  position: relative;
}
.swiper-years .swiper-slide:hover {
  color: #c3002f;
}.swiper-years .swiper-slide:hover:after {
  background: #c3002f;
}
.swiper-years .swiper-slide::after {
  content: "";
  width: 14px;
  height: 14px;
  transition: 0.3s;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: -35px;
    z-index: 9;
}
.swiper-years .swiper-slide-thumb-active:after {
  background: #c3002f;
}
/* Right Content */
.swiper-content {
  flex: 1;
    padding: 40px 0px 0 120px;
}
.swiper-content h2 {
    margin-bottom: 40px;
    color: #584244;
    font-weight: 700;
    font-size: 24px;
}
.swiper-content ul {
  padding-left: 20px;
}
.swiper-content ul li {
    color: #535353;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 16px;
}

.swiper-content p {
    color: #535353;
    font-weight: 400;
    font-size: 16px;
}




.vacancies_card {
    background: #F5F3F0;
    border: 1px solid #EBDDDE;
    border-radius: 10px;
    padding: 40px;
}
.vacancies_card h4{
    color: #584244;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}
.vacancies_card p{
    color: #535353;
    font-weight: 400;
    font-size: 16px;
}

.vacancies_head_loc{
    display: flex;
    gap: 40px;
}

.vacancies_card .vacancies_head_loc{
    color: #71484C;
}
.vacancies_card .vacancies_head_loc svg {
    margin-right: 10px;
}
.vacancies_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(235, 221, 222, 1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.application_card {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.application_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.application_card:before {
    width: 100%;
    content:"";
    position:absolute;
    height: 100%;
    background: linear-gradient(89.97deg, #C02635 40.66%, rgba(192, 38, 53, 0.79) 48.17%, rgba(192, 38, 53, 0.74) 52.51%, rgba(192, 38, 53, 0) 68.18%);
}
.application_card .title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    width: 46%;
}

.application_card .title h2, .application_card .title p{
    color: #fff;
}
.vacancies_detail_card h4{
    color: rgba(88, 66, 68, 1);
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.vacancies_detail_card .vacancies_head_loc {
    color: #71484C;
}
.vacancies_detail_card .vacancies_head_loc svg {
    margin-right: 10px;
}
.vacancies_detail_card .vacancies_head {
    padding-bottom: 40px;
    margin-bottom: 25px;
}
.vacancies_detail_card p {
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
}
.vacancies_detail_card h5 {
    color: #584244;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}
.vacancies_detail_card .job_des {
    display:flex;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    gap: 15px;
    color: #71484C;
}

.vacancies_detail_card  .job_des li {
    font-size: 16px;
    color: #71484C;
}
.job_des_list li{
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
}
.job_des_list ul {
    list-style: decimal;
    padding-left: 20px;
}
.large_card .row {
    background: #F5F3F0;
    border-radius: 10px;
    padding: 40px;
}
.large_card .news_card  {
    display: flex;
    gap: 60px;
    margin: 0;
    align-items: center;
}
.large_card .news_card .news_img {
    width: 50%;
    height: 320px;
}
.large_card .news_content {
    width: 50%;
}
.large_card .news_card h4 {
    font-size: 26px;
}
.news_card p.news_des{
    margin-bottom: 40px;
    font-size: 16px;
    color: #535353;

}
.news_detail:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 350px;
    background: #C02635;
    left: 0;
    top: 0;
    z-index: -1;
}
.news_detail h1{
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    color: #fff;
}
.news_detail img {
    width: 100%;
    height: 480px;
    margin: 40px 0;
    object-fit: cover;
    border-radius: 20px;
}
.news_content_page span{
    font-weight: 400;
    font-size: 14px;
    color: #C02635;
  
}.news_content_page {
    width: 85%;
    margin: auto;
}
.news_content_box {
    border-top: 1px solid #CECECE;
    border-bottom: 1px solid #CECECE;
    padding: 40px 0;
}

.contact_page .row{
    background: #C02635;
    border-radius: 10px;
    color: #fff;
    padding: 60px;
    
}
.contact_form input {
    border: 1px solid rgba(235, 221, 222, 1);
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    margin-bottom: 15px;
}
.contact_form input::placeholder {
    color: #fff;
}

.contact_detail h2 {
    font-weight: 600;
    border-bottom: 1px solid #D45C68;
    font-size: 20px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.contact_detail h6 {
    font-weight: 400;
    font-size: 16px;
}
.contact_detail p {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 10px;
}


















































@media (max-width: 992px){    
    .side_menu{
        display:inline-block;
    }
    header  .navbar-brand img {
        height: 60px;
    }
    header.sticky  .navbar-brand img {
        width: 100px;
    }
    	header {
        padding: 8px 0;
    }
    .side_bar{
        display:inline-flex;
    }
    header  .menu{
        left: 0;
        top:0;
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index:9;
        padding: 15px 8%;
        display:none;
        background-color: #fff;
        /*transition: 0.9s all ease-in-out !important;*/
        /* box-shadow: -10px 0px 20px #0000005e; */
    }
    .menu a {
        padding: 15px 0;
    }
    header  .menu ul {
        margin-top: 50px;
    }
    
    
    header  .menu.kk{
        display: grid;
        place-content: center;
    }
    header .menu a {
        color: #000 !important;
    }
    
    header  .menu ul {
        display: block;
    }
    header  .menu ul {
        display: block;
    }
    .menu li {
        margin: 0;
    }
    .logo img {
          height: 32px;
    }
    
    .logo img.logo1 {
          height: 32px;
    }
    .side_bar.open span:nth-child(3) {
        transform: rotate(-45deg) translate(2px ,2px);
    }
    .side_bar.open span:nth-child(1) {
        transform: rotate(45deg) translate(2px ,-2px);
    }
    
    .section {
        padding: 40px 0;
    }
    .title h2 {
        font-size: 28px;
    }
    .title p {
        font-size: 14px;
    }
    
    section.main_bnner .banner_content h2 {
        font-size: 24px;
    }
    section.main_bnner .banner_content p {
        font-size: 14px;
        width: 100%;
    }
    
    section.main_bnner .container-fluid{
        height: 100%!important;
    }
    section.main_bnner .row{
        height: 100%!important;
    position: relative;
    }
    section.main_bnner {
        height: auto;
    }
    section.main_bnner .banner_content {
        padding: 0 4%;
        position: relative;
        width: 90%;
        text-align: center;
    }
    section.main_bnner .swiper-slide {
        height: 380px;
    }
    section.main_bnner .swiper-slide .banner_content {
        width: 100%;
        bottom: 50px;
    }
    footer {
        padding: 40px 0 10px;
        position: unset;
    }
    footer p {
        padding-right: 0;
        font-size: 15px;
        justify-content: center;
    }
    footer .logo img {
        height: 52px;
    }
    .footer_logo {
        width: 100%;
    padding: 0;

        margin-bottom: 15px;
    }
    footer .col-md-8.d-flex{
        flex-wrap: wrap;
    }
    .footer_item {
        width: 100% !important;
        padding: 0px 0 !important;
    }
    footer .col-md-12 .align-items-center.d-inline-flex {
        padding: 10px 0 0;
        flex-wrap: wrap;
        text-align: center;
        margin: 20px 0 0 !important;
    }
    footer p.copy {
        width: 100%;
    }
    footer p a {
         padding-right: 0 !important;
        font-size: 15px ;
    }
    footer .designed{
        padding-right: 0 !important;
        justify-content: start;
        width: 100%;
        order: -1;
    }
    .footer-bottom-bar .justify-content-between {
        flex-wrap: wrap;
    text-align: center;
    }
    footer h4 {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .footer_menu li a {
        font-size: 15px !important;
    }
    .footer-bottom-bar .align-items-center{
        margin: auto;
    }
    section.main_bnner .swiper-slide .banner_content h1 {
        font-size: 32px;
    }
    .search_box {
        padding: 10px;
    }
    .search_box .container .input_fl {
        width: 100%;
        padding: 10px;
    }
     .container .input_fl:first-child {
        border-bottom: 1px solid rgba(170, 152, 154, 1);
        border-right:none;
    }
    .search_box .btn_dr{
        margin: 10px auto 0;
    }
    .search_box .d-flex.justify-content-between {
        flex-wrap: wrap;
    }
    .mb-4 {
        margin-bottom: 1rem !important;
    }.img_about {
        height: auto;
    }
    .about  .mt-5.align-items-center {
        margin-top: 0rem !important;
    }
    .mss_img {
        width: 100%;
    }
    #wall_slider img {
    padding: 15px;
        height: 100px;
    }
    .employee img {
        height: 120px;
        padding: 15px;
    }
    
    .empl_form {
        padding: 20px;
    }
    .testimonial .nav-pills {
        width: 100%;
    }
    .testimonial .swiper-slide {
        gap: 20px;
        flex-wrap: wrap;
    }
    .test_content {
        width: 100%;
    }.test_img {
        height: 420px;
        width: 100%;
    }
    footer .footer_item ul {
        gap: 0 25px;
        flex-wrap: wrap;
    }
    .footer-bottom-bar .d-inline-flex.w-100 {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .credit-text {
        text-align: center;
        margin: 10px 0 0;
    }
    footer .custom-logo {
        height: 45px;
    }
    footer .logo1 {
        height: 45px;
    }
    
    section.main_bnner .swiper-slide .banner_content h1 span {
        font-size: 48px;
    }
    
    .news_card h4 {
        font-size: 16px;
    }
    .recruit .rec_content p {
        font-size: 16px;
    margin-top: 20px;
    }
    
    .rec_title img {
        height: 25px;
    }
    .rec_title p {    margin-top: 2px;
        font-size: 14px;
    }
    .rec_title {
        top: 8%;
        left: 20%;
    }
    .rec_title:nth-child(2) {
        top: 15%;
        left: 45%;
    }.rec_title:nth-child(3) {
        top: 5%;
        left: 68%;
    }
    .news_card .news_img {
        max-height: 240px;
        height: auto;
    }
    .job_card {
        padding: 20px;
    }
    
    .about  {
        overflow: hidden;
    }
    
    section.inner_bnner .swiper-slide .banner_content {
        width: 100%;
        bottom: 60px;
    }section.inner_bnner .swiper-slide .banner_content h1 {
        font-size: 32px;
    }
    .mission_vission {
        flex-direction: column;
        margin-top: 40px;
    }
    
    .mv_card {
        height: 320px;
        padding: 40px;
        margin: -20px auto;
    }
    .mv_card h4 {
        font-size: 22px;
    }
    .mv_card p {
        font-size: 16px;
    }
    
    #piller_slider .swiper-slide {
        padding: 25px;
    }
    #piller_slider .swiper-slide h4 {
        font-size: 22px;
    }
    .timeline-container {
        margin: 20px auto;
        padding: 0;
        height: auto;
    }
    .swiper-years {
        width: 90px;
    }
    .swiper-content {
        padding: 10px 0px 0 25px;
    }
    .team_head {
        font-size: 24px;
    }
    
    section.inner_bnner .swiper-slide .banner_content p {
        width: 95%;
    }
    
    .vacancies_card {
        padding: 20px;
    }
    .vacancies_head {
        gap: 20px;
        align-items: start;
        flex-direction: column;
    }
    
    .application_card .title {
        left: 6%;
        width: 85%;
    }
    .vacancies_detail_card h4 {
        font-size: 24px;
    }
    .vacancies_detail_card .job_des {
        flex-wrap: wrap;
    }
    .job_des_list li {
        margin-bottom: 10px;
    }
    .vacancies_detail_card p {
        margin-bottom: 20px;
    }
    .large_card .row {
        padding: 20px 0;
    }
    .large_card .news_card {
        gap: 00px;
    flex-direction: column;
    }.large_card .news_card .news_img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
    .large_card .news_content {
        width: 100%;
    }
    .large_card .news_card h4 {
        font-size: 24px;
    }
    .news_card p.news_des {
        margin-bottom: 20px;
    }
      .news_detail h1 {
        font-size: 24px;
    }
    
    .news_detail img {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
    .news_content_page .d-flex.justify-content-between{
        flex-direction: column;
        gap: 15px;
    }
    .news_content_page {
        width: 100%;
        margin: auto;
    }
    .news_content_box {
        padding: 20px 0;
    }
    
    
    .social-links {
        margin-bottom: 20px;
    }
    .news_detail:before {
        height: 280px;
    }
    
    .contact_page .row {
        padding: 20px 0;
    }
    .contact_detail h2 {
        font-size: 18px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .contact_detail.pe-5 {
        padding-right: 0 !important;
        margin-bottom: 25px;
    }
    .contact_detail p {
        font-size: 18px;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .contact_page  {
        margin: 0 10px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}


@media only screen and (max-width: 760px) {
    
}

@media only screen and (max-width: 1100px) and (min-width: 992px) {
    
}
.error{
    color: #fefefe;
    font-size: 12px;
    font-weight: 600;
}