@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

 :root {
    --main-color: #006838;
    --main-2-color: #FDA31B;

    --primary-color: #19232B;
    --second-color: #ffffff;
    --third-color: #263238;
    --fourth-color: #F2F3F5;

    --border-color: #E4E4E7;
}

ul, li {
    list-style: none;
    margin: 0;
}

a {
    color: var(--primary-color);
    outline: none !important; 
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

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

input:focus, textarea:focus, select:focus {
    outline: none;
}

button {
    border: none;
    border-radius: 0;
}

.adm-glyphicon span {
	background: url('./img/setting.png');
	background-size: cover;
	width: 12px;
	height: 12px;
	display: block;
    float: left;
}

.wrap {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.wrap-img {
  display: block;
}

.img-100 {
  position: relative;
  height: 0;
  overflow: hidden;
  display: block;
}

.img-100 > img {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
}

/* -----------header-------------------- */
.header {
    top: 0;
    position: fixed;
    width: 100%;
    background: var(--second-color);
    z-index: 999;
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.07);
}

.header .logo {
    padding: 5px 0;
    height: 95px;
}

.header .logo img {
    width: auto;
}

.menu {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: end;
}

.menu .menu-item {
    float: left;
    position: relative;
}

.menu .menu-item>a {
    font-size: 17px;
    line-height: 28px;
    float: left;
    padding: 33.5px 11px;
    font-weight: 700;
}

.menu .menu-item>a:hover {
    color: var(--main-2-color);
}

.menu .menu-item:hover .menu-child-wrap {
    opacity: 1;
    visibility: visible;
}

.menu .menu-item a svg {
    margin-bottom: 2px;
}

.menu .menu-child-wrap {
    position: fixed;
    padding: 10px 0;
    top: 95px;
    left: 0;
    right: 0;
    background-color: var(--main-color);
    opacity: 0;
    visibility: hidden;
    transition: all .2s linear;
    max-height: 80vh;
    overflow-y: scroll;
}

.menu .menu-child-container {
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.menu .menu-child {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 15px;
}

.menu .menu-child .child-item>a {
    font-size: 14px;
    line-height: 18px;
    padding: 5px 0;
    display: inline-block;
    color: var(--second-color);
    font-weight: 500;
}

.menu .menu-child .child-item a:hover {
    color: var(--main-2-color);
    text-decoration: underline;
}

.menu .menu-child .child-item.group {
    border-bottom: 1px solid var(--second-color);

}

.menu .menu-child .child-item.group a {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--main-2-color);
}   

.menu .menu-child .child-item.group-heading a {
    color: var(--main-2-color);
}

.header-wrap,
.menu-tool
{
    display: flex;
    align-items: center;
    justify-content: end;
}

.menu-tool .tool-item {
    margin-left: 20px;
}

.menu-tool .tool-item svg {
    margin-bottom: -3px;
}

.menu-tool .icon-menu {
    align-items: center;
    justify-content: center;
    display: none;
}

.menu-tool .icon-menu svg {
  margin-bottom: -15px;
  color: var(--primary-color);
}

/* ----------------------menu-mobile---------------------------- */
.menu-mobile {
  position: absolute;
  top: 100%;
  width: 100%;
  background: var(--main-color);
  max-height: 600px;
  overflow: auto;
}

.menu-mobile .menu-mobile-item {
  position: relative;
  padding: 0 15px;
  border-bottom: 1px solid #f3f3f3;
}

.menu-mobile .menu-mobile-item .menu-m-wrap a {
  position: relative;
  display: block;
  padding: 10px 10px;
  line-height: 18px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--second-color);
}

.menu-mobile .menu-child-item a {
    padding: 5px 0;
    border-bottom: 1px solid var(--second-color);
    font-size: 14px;
    display: block;
}

.menu-mobile .menu-child-item.group a {
    font-weight: 700;
    color: var(--main-2-color);
}

.menu-mobile .menu-child-item.group-heading a {
    color: var(--main-2-color);
}

.menu-mobile .btn-dropdown {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 99999;
  background-color: transparent;
  right: 0;
  box-sizing: unset;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--second-color);
}

.menu-m-wrap {
  position: relative;
}

.menu-mobile .menu-m-child {
  padding-left: 20px;
  margin-bottom: 20px;
}

.menu-mobile .menu-m {
  padding: 25px 0;
}

/* ------------------modal-search----------------------------- */
#modal-search .modal-dialog {
    width: 40%;
    top: 40%;
}

#modal-search .form-search
{
    position: relative;
}

#modal-search input
{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    color: var(--second-color);
    padding: 20px 60px 20px 0;
    font-size: 16px;
    letter-spacing: 2.25px;
}

#modal-search input::placeholder
{
    color: var(--border-color);
    text-transform: uppercase;
}

#modal-search .form-search svg
{
    position: absolute;
    top: 0;
    right: 0;
    margin: 22px 0;
    cursor: pointer;
    color: var(--second-color);
    transition: all .2s linear;
}

#modal-search .form-search svg:hover {
    color: #A6A09C;
}

#modal-search .search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    transition: opacity 0.3s linear 1s, top .3s linear 1s, background-color .3s linear;
    cursor: pointer;
}

#modal-search .search-close svg {
    color: #B2A69B;
}

#modal-search .search-close:hover {
    background-color: var(--main-2-color);
}

/* ---------------------------------------home------------------------------------ */
.slider {
    /* margin-top: 95px; */
    margin-top: 135px;
    min-height: calc(100vh - 95px);
}

.slider-item {
    position: relative;
    padding-top: 150px;
    padding-bottom: 240px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.slider-item .slider-content {
    color: var(--second-color);
}

.slider-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -0.5px;
    top: 0;
    background: rgba(11, 28, 57, .7);
    z-index: 1;
}

.slider-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.slider-item .slider-content h2 {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}

.slider-item .slider-content h3 {
    margin: 20px 0;
    font-size: 72px;
    font-weight: 500;
    text-transform: capitalize;
}

.slider-item .slider-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 30px;
}

.slider-btn-item {
    padding: 12px 20px;
    border-radius: 10px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: all .2s linear;
}

.slider-btn-item svg {
    margin-left: 4px;
}

.slider-btn .slider-btn-item:first-child {
    background-color: var(--main-2-color);
    color: var(--second-color);
}

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

.slider-btn .slider-btn-item:hover {
    background-color: var(--main-color);
    color: var(--second-color);
}

.slider-owl .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--second-color) !important;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.2) !important;
    display: inline-block;
    cursor: pointer;
    height: 55px;
    width: 55px;
    line-height: 55px;
    border-radius: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
    z-index: 9;
}

.slider-owl .owl-nav button svg {
    transform: translateY(4px);
}

.slider-owl .owl-nav button:hover {
    background: var(--second-color) !important;
    color: var(--main-color) !important;
}

.slider-owl .owl-next {
    right: 40px;
}

.slider-owl .owl-prev {
    left: 40px;
}

.toiuu .owl-carousel {
    display: block;
}

.toiuu .owl-carousel .slider-item
{
    display: none;
}

.toiuu .owl-carousel .slider-item:first-child  {
    display: block !important;
}

/* ---------------------------------------home------------------------------------ */
.featured-area {
    margin-top: -150px;
    margin-right: 20px;
}

.feature-item {
    position: relative;
    padding: 20px 25px;
    background: var(--second-color);
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    margin-top: 24px;
}

.feature-item .count {
    position: absolute;
    right: 30px;
    top: 0px;
    line-height: 90px;
    font-size: 50px;
    font-weight: 800;
    -webkit-text-stroke: 2px var(--main-color);
    -webkit-text-fill-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    color: var(--second-color);
    font-size: 60px;
    background: var(--main-color);
    margin-bottom: 25px;
    box-shadow: 5px 5px 0 #F2F3F5;
    position: relative;
    transition: all .5s ease-in-out;
}

.feature-icon img {
    width: 48px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-out 0s;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

/* ---------------------------------------introduce------------------------------------ */
.introhome-wrap {
    display: flex;
    
}

.introduce-home {
	padding-top: 120px;
	padding-bottom: 120px;
}

.intro-text {
    position: relative;
	display: inline-block;
	width: calc(100% - 601px);
	padding-top: 15px;
    margin-left: 46px;
}

.introimg-wrap {
	float: left;
	position: relative;
    width: 555px;
    border-radius: 20px;
    overflow: hidden;
}

.introhome-title div:first-child {
	font-size: 18px;
	color: var(--primary-color);
	letter-spacing: 2.2px;
    font-weight: 700;
	padding-bottom: 10px;
}

.introhome-title h2 {
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
	padding-bottom: 7px;
}

.introhome-des {
    margin-top: 16px;
	font-size: 16px;
	color: var(--third-color);
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 26px;
	font-weight: 400;
}

.introhome-des p{
	margin: 0;
}

.introduce-home .slider-btn-item {
    background-color: var(--main-2-color);
    color: var(--second-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.introduce-home .slider-btn-item:hover {
    background-color: var(--main-color);
}

/* ---------------------------------------counter------------------------------------ */
.counter-area {
    position: relative;
    padding: 60px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.counter-area::before {
    content: "";
    position: absolute;
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    z-index: -1;
}

.counter-area .col-cus {
    width: calc(100% / 5);
    padding: 0 15px;
}

.counter-area .clearfix {
    display: none;
}

.counter-row {
    display: flex;
    margin: 0 -15px;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  width: 100px;
  height: 100px;
  line-height: 88px;
  color: var(--second-color);
  background:  var(--main-color);
  border-radius: 100%;
}

.counter-box .icon img{
  width: 60px;
  filter: brightness(0) invert(1);
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--second-color);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--second-color);
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

/* ---------------------------------------course------------------------------------ */
.course-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

.course-area .news-item {
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.site-title-tagline i{
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 55px;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.site-title span{
  color: var(--main-2-color);
}

.site-heading p {
  margin-top: 15px;
  color: var(--third-color);
}

.news-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--second-color);
    border-radius: 15px;
    /* box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); */
}

.news-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-img.wrap-img {
  padding-bottom: 66.57%;
}

.news-title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-info p {
    color: var(--third-color);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-btn {
  margin-top: 20px;
}

.news-btn .theme-btn {
  padding: 5px 15px;
  font-size: 16px;
  color: var(--second-color);
  background-color: var(--main-2-color);
  border-radius: 10px;
}

.news-btn:hover a {
    background-color: var(--main-color);
}

.news-title:hover a {
    color: var(--main-color);
}

.news-btn .slider-btn-item {
    background-color: var(--main-2-color);
    color: var(--second-color);
}

.news-description {
  display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------------------------------------gallery------------------------------------ */
.gallery-area {
    padding-bottom: 120px;
    padding-top: 120px;
    background-color: var(--fourth-color);
}

.gallery-item {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.gallery-img {
  height: 100%;
}

.gallery-img img {
  width: 100%;
  border-radius: 20px;
}

.gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.gallery-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--main-2-color);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.gallery-content:hover::before {
  opacity: 0.9;
  visibility: visible
}

.gallery-link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 60px;
  color: var(--second-color);
}

.gallery-link:hover {
  color: var(--second-color);
}

.gallery-content:hover .gallery-link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* ---------------------------------------cta------------------------------------ */
.cta-area{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta-content{
  position: relative;
  padding: 80px 40px;
  margin-top: -40px;
  z-index: 1;
}

.cta-content::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main-2-color);
  border-radius: 20px;
  z-index: -1;
}

.cta-content::after{
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  right: 8px;
  border: 8px double var(--second-color);
  border-radius: 20px;
  z-index: -1;
}

.cta-content h2{
  color: var(--second-color);
  font-size: 45px;
}

.cta-content p{
  color: var(--second-color);
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-btn .slider-btn-item {
    background: var(--second-color);
    color: var(--primary-color);
}

.cta-btn .slider-btn-item:hover {
    background-color: var(--main-color);
    color: var(--second-color);
}

/* ---------------------------------------event------------------------------------ */
.event-area {
    padding-top: 120px;
    padding-bottom: 120px;
    /* background-color: var(--fourth-color); */
}

.event-area .slider-btn-item {
    background: var(--main-2-color);
    color: var(--second-color);
}

.event-area .slider-btn-item:hover {
    background-color: var(--main-color);
}

.news-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.news-slider .owl-dots .owl-dot span {
  background: var(--main-2-color);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.news-slider .owl-dots .owl-dot.active span {
  background-color: var(--main-2-color);
  width: 20px;
}

/* ---------------------------------------department------------------------------------ */
.department-area {
    padding: 120px 0;
    background-color: var(--fourth-color);
}

.department-item{
  position: relative;
  background: var(--second-color);
  border-radius: 10px;
  border: 1px solid var(--main-color);
  padding: 30px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  margin-bottom: 10px;
}

.department-icon{
  margin-bottom: 20px;
  text-align: center;
  height: 60px;
}

.department-icon img{
    display: inline-block !important;
  width: 60px !important;
}

.department-title{
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 55px;
  font-weight: 700;
}

.department-title:hover{
  color: var(--main-2-color);
}

.department-btn{
  margin-top: 10px;
}

.department-btn a{
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.department-btn a:hover{
  color: var(--main-2-color);
}

.department-btn svg {
    margin-bottom: -4px;
    margin-left: 4px;
}

.department-slider .department-item{
  box-shadow: none;
  margin-bottom: 0;
}

.department-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.department-slider .owl-dots .owl-dot span {
  background: var(--main-2-color);
  border-radius: 50px;
  margin: 5px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.department-slider .owl-dots .owl-dot.active span {
  background-color: var(--main-2-color);
  width: 20px;
}

.department-info p {
    color: var(--third-color);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------------------------------------partner------------------------------------ */
.partner-area {
    padding: 50px 0;
    background-color: var(--fourth-color);
}

.partner-slider img {
  width: 110px !important;
}


/* ---------------------------------------footer------------------------------------ */
.footer-area {
  background: var(--fourth-color);
  position: relative;
  z-index: 1;
}

.footer-shape{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: -1;
}

.footer-widget-box {
    padding-top: 100px;
  margin-bottom: 20px;
}

.footer-widget-box.about-us {
    padding-top: 0;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 170px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-widget-wrapper {
    padding-bottom: 70px;
}

.copyright {
    background-color: #006838;
  position: relative;
}

.copyright .copyright-wrapper{
  padding: 25px 0;
  border-top: 1px solid transparent;
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: var(--main-2-color);
}

.copyright .copyright-text {
  margin-bottom: 0px;
  font-size: 16px;
  color: var(--second-color);
  line-height: 38px;
}

.copyright .copyright-text a {
  color: var(--main-2-color);
  font-weight: 500;
}

.footer-widget-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 700;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--main-2-color);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  transition: all .5s ease-in-out;
}

.footer-list li a svg {
  margin-bottom: -2px;
  color: var(--main-2-color);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--main-2-color);
}

.footer-widget-box p {
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px;
  background: var(--second-color);
  color: var(--main-2-color);
  transition: all .5s ease-in-out;
}

.footer-social li a:hover {
  background: var(--main-2-color);
  color: var(--second-color);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px;
  background: var(--main-2-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--second-color);
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
  min-height: 56px;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  color: var(--second-color);
  background-color: var(--main-2-color);
  transition: all .2s linear;
}

.subscribe-form .theme-btn:hover {
  background-color: var(--main-color);
}

/* ---------------------------------------site-breadcrumb------------------------------------ */
.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 170px;
  padding-bottom: 150px;
  z-index: 1;
  margin-top: 95px;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000000;
  opacity: 0.65;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 45px;
  color: var(--second-color);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--second-color);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--second-color);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '>';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--second-color);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--main-color);
}

.site-breadcrumb .breadcrumb-menu li:last-child a {
  color: var(--main-2-color);
}

.paging-n {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.paging-n div a,
.paging-n div.prev
{
  border: none;
  background:  var(--main-2-color);
  color: var(--second-color);
  margin: 0 10px;
  border-radius: 12px !important;
  width: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.paging-n div a:hover,
.paging-n div.current a {
  background: var(--main-color);
  color: var(--second-color);
}

/* ----------------------------------------blog-------------------------------------- */
.blog-single-area {
    padding: 120px 0;
}

.blog-area {
    padding: 120px 0;
}

.blog-single-content img{
  border-radius: 20px;
}

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
  color: var(--third-color);
}

.blog-meta svg {
    margin-bottom: -2px;
  margin-right: 5px;
  color: var(--main-2-color);
}

.blog-meta a {
  color: #757F95;
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--main-color);
}

.blog-details-title {
  font-size: 34px;
  margin-bottom: 20px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: #F2F3F5;
  color:  var(--color-dark);
  padding: 6px 18px;
  border-radius: 8px;
  transition: all 0.5s ease-in-out;;
}

.blog-details-tags ul a:hover {
  background: var(--main-color);
  color: var(--second-color);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--second-color);
  border-radius: 50px 50px 50px 0;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img{
  border-radius: 40px 40px 40px 0;
}

.author-name {
  font-size: 22px;
  color: var(--main-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--main-color);
  transition: all 0.5s ease-in-out;;
}

.author-social a:hover {
  color: var(--second-color);
  background: var(--main-color);
}

.blog-comments {
    margin-top: 50px;
  margin-bottom: 50px;
}

.blog-comments h3 {
    font-weight: 700;
    font-size: 28px;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-single img {
  border-radius: 50%;
  width: 80px;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--main-2-color);
  font-weight: 500;
}

.blog-comments-content span svg {
    margin-bottom: -2px;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--main-2-color);
}

.blog-comments-content a:hover {
  color: var(--main-color);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 20px;
  background: #F2F3F5;
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
  min-height: 56px;
}

.blog-comments-form .form-control:focus {
  border-color: var(--main-2-color);
}

.blog-comments-form .theme-btn {
    margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
  color: var(--second-color);
  background-color: var(--main-2-color);
  transition: all .2s linear;
}

.blog-comments-form .theme-btn svg {
    margin-left: 4px;
}

.blog-comments-form .theme-btn:hover {
    background-color: var(--main-color);
}

#content p {
    color: var(--third-color);
    margin-bottom: 10px;
}

#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6
{
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

#content h2 {
    font-size: 37px;
}
#content h3 {
    font-size: 33px;
}
#content h4 {
    font-size: 30px;
}
#content h5 {
    font-size: 27px;
}
#content h6 {
    font-size: 25px;
}

#content img {
  margin: 10px 0;
  width: 100% !important;
  height: auto !important;
}

#content ul,
#content ol
{
    padding-left: 20px;
}

#content ul li {
  list-style: disc;
}

#content ul li,
#content ol li
{
    margin-bottom: 12px;
}

/* -------------------------------------------sidebar------------------------------------ */
.widget {
  background: #F2F3F5;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--main-2-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--main-2-color);
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 8px;
  box-shadow: none;
  height: 50px;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--main-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--main-2-color);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: all .5s linear;
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--main-2-color);
}

.widget .category-list a svg {
  margin-right: 5px;
  margin-bottom: -2px;
  color: var(--main-2-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.widget .recent-post-bio {
  width: calc(100% - 80px);
}

.widget .recent-post-bio h6 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--main-2-color);
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--main-2-color);
}

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--second-color);
  background-color: var(--main-2-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  transition: all .5s linear;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.page-detail {
  padding: 120px 0;
}
/* ---------------------------------------Giangcss-team------------------------------------ */
.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    /* padding: 0 15px; */
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 100px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-filter {
    background-color: #fff;
    border-radius: 10px;
    /* Slight rounding */
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    outline: none !important;
    box-shadow: none !important;
}
.btn-item.active-dropdown-item,
.btn-filter:hover {
    background-color: #f9f9f9;
}

/* Color specific filter buttons */
.btn-bct {
    border-color: #f5c6cb;
    color: #555;
}

.btn-bbt {
    border-color: #b8daff;
    color: #555;
}

/* Active Red Button */
.btn-active-red {
    background-color: #d9534f;
    color: white;
    border-color: #d43f3a;
}

.btn-active-red:hover,
.btn-active-red:focus {
    background-color: #c9302c;
    color: white;
}

/* Tiny colored square icons inside buttons */
.color-box {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 2px;
}

.box-red-light {
    background-color: #f9dede;
    border: 1px solid #e0b4b4;
}

.box-blue-light {
    background-color: transparent;
    border: 1px solid #e0b4b4;
}

.box-white {
    background-color: #fff;
}

/* Search Box */
.search-container {
    flex-grow: 1;
    /* max-width: 400px; */
    display: flex;
    justify-content: flex-end;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px;
    background-color: #fff;
    width: 100%;
}

.search-box i {
    color: #999;
    font-size: 16px;
}

.search-box input {
    border: none;
    outline: none;
    box-shadow: none;
    padding-left: 10px;
    width: 100%;
    font-size: 16px;
    color: #555;
}

.search-box input::placeholder {
    color: #aaa;
}

/* --- Grid & Cards --- */
/* Override Bootstrap col padding slightly for tighter grid */
.grid-col {

    margin-bottom: 30px;
}

.profile-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    padding: 20px;
    background-color: var(--second-color);
    border-radius: 15px;
}

.card-image-wrapper {
    background-color: #fbf5eb;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.card-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    object-position: top;
    object-fit: cover;
}


.profile-name {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-title {
    color: var(--third-color);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 28px;
}

/* Star icon styling */
.team-list {
    padding: 40px 0;
}

.custom-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    
}
.custom-modal-body {
    padding: 60px 50px;
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
    scrollbar-width: thin;
    scrollbar-color: #F5B8C0 #fff;
}

.btn-close-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ccc !important;
    background: #fff;
    color: #999;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 10;
    outline: none;
    transition: all 0.2s;
    font-weight: 300;
}

.btn-close-custom:hover {
    color: #333;
    border-color: #999;
}

.modal-top-section {
    display: flex;
    gap: 35px;
    margin-bottom: 25px;
}

.modal-image-box {
    background-color: #fbf5eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.modal-image-box img {
    width: 192px;
    height: auto;
    aspect-ratio: 3 / 4;
    background-color: #fbf5eb;
    border-radius: 10px;
}

.modal-info-box{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.modal-title-small {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.modal-name {
    color: #b5272d;
    /* Màu đỏ đặc trưng */
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-row {
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}

.info-row strong {
    font-weight: 600;
}

.modal-bottom-section {
    padding-top: 10px;
}

.section-heading {
    color: #b5272d;
    font-size: 15px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

.modal-bottom-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.modal-bottom-section ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Chấm vuông đỏ đằng trước danh sách */
.modal-bottom-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    background-color: #b5272d;
}

.modal-divider {
    border-top: 1px dashed #e0e0e0;
    margin: 20px 0;
}
/* Tùy chỉnh Dropdown theo thiết kế */
.custom-dropdown .dropdown-menu {
    /* Ép hiển thị dạng block để CSS Transition hoạt động được */
    display: block !important; 
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px); /* Đẩy menu tụt xuống 15px khi đang ẩn */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none; /* Vô hiệu hóa click chuột khi menu đang tàng hình */
    
    /* Các thuộc tính bo góc, viền cũ giữ nguyên */
    border-radius: 8px;
    padding: 0;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 240px;
    overflow: hidden; 
    margin-top: 8px;
}
.custom-dropdown.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); /* Trượt menu về vị trí gốc */
    pointer-events: auto; /* Cho phép click chuột lại */
}
.custom-dropdown .dropdown-menu > li > a {
    padding: 12px 16px;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: background-color 0.2s;
}
.custom-dropdown .dropdown-menu > li:last-child > a {
    border-bottom: none;
}
.custom-dropdown .dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
}
/* Style cho mục đang được chọn (Màu đỏ) */
.custom-dropdown .dropdown-menu > li > a.active-dropdown-item {
    background-color: #d9534f;
    color: white;
}
.custom-dropdown .dropdown-menu > li > a.active-dropdown-item:hover {
    background-color: #c9302c;
}
.custom-dropdown .btn-filter svg {
    transition: transform 0.3s ease; /* Thời gian xoay 0.3 giây */
    margin-left: 8px; /* Tạo khoảng cách với đoạn text phía trước */
    vertical-align: middle; /* Căn giữa svg với chữ */
}

/* Khi mở menu (có class .open), mũi tên SVG sẽ lộn ngược lại */
.custom-dropdown.open .btn-filter svg {
    transform: rotate(180deg);
}
/* dora-even */
.dora-even {}
.dora-e-item{ 
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  margin-bottom: 30px;
}

.dora-e-item .even-title{
  display: flex;
  align-items: center;
}
.dora-e-item .even-time{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    color: white;
    background: var(--main-color);
    padding: 5px;
    font-size: 20px;
    line-height: 22px;
    margin-right: 15px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.dora-e-item .even-time span {
    display: block;
    height: 1px;
    width: 50%;
    background: #fff;
    margin: 2px auto;
}
.dora-e-item .even-time p {
  font-size: 16px;
}
.dora-e-item h3 {
  width: calc(100% - 75px);
}
.dora-e-item h3 a{
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .2s linear;
}
.dora-e-item h3:hover a {
  color: var(--main-color);
}
.even-des{
  color: var(--third-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.youtobe-carousel {
  margin-top: 15px;
}
.youtobe-carousel .video-item {
  overflow: hidden;
}
.youtobe-carousel img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: .2s linear;
  cursor: pointer;
}
.youtobe-carousel img:hover {
  transform: scale(1.1);
}

/* --------------------------------------- faq-home --------------------------------------- */
.faq-home{
    /* background: var(--fourth-color); */
    padding: 120px 0;
}

.faq-home-header {
    margin-bottom: 120px;
}

.faq-home-heading{
    margin-bottom: 15px;
    font-size: 52px;
    font-weight: 700;
}

.faq-home-content{
    font-size: 16px;
    color: var(--third-color);
}

.faq-home-btn {}

.faq-home-btn a{
    padding: 12px 20px;
    border-radius: 10px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.2s linear;
    background: var(--main-2-color);
    color: var(--second-color);
    margin-top: 25px;
    display: inline-block;
}

.faq-list {}

.faq-list .faq-item{
    border: none;
    box-shadow: none;
    padding: 25px 20px;
    background: var(--second-color);
    margin-bottom: 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.faq-header{cursor: pointer;}

.faq-header .faq-title{
    /* border: none; */
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 60px;
}

.faq-header .faq-icon{position: absolute;left: 0;top: 50%;transform: translate(0, -40%);}

.faq-header .faq-title span{
    float: right;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.faq-header .faq-title span svg{}

.faq-wrap{}

.faq-wrap > div{
    padding: 15px 0 0px;
}
@media (max-width: 1366px) {
  
}

@media (max-width: 1366px) {
  
}

@media (max-width: 1280px) {

}
@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 230px;
  }
}

@media (max-width: 768px) {
    .site-breadcrumb {
      margin-top: 60px;
    }
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 50px;
    }

    .search-container {
        max-width: 100%;
        justify-content: center;
    }

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

    .modal-top-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .custom-bullet-list li {
        text-align: left;
    }

    .section-heading {
        text-align: left;
    }
    .profile-name{
        font-size: 18px;
    }
    .custom-modal-body{
        padding: 25px;
    }
    .menu-tool .icon-menu {
        display: flex;
    }

    .menu-search svg {
      width: 25px;
      margin-bottom: -7px !important;
      height: 25px;
    }

    .menu {
        display: none;
    }
    
    .header {
        /* padding: 10px 0; */
    }

    .header .logo {
        height: 60px;
    }

    .header .logo img {
      height: 100%;
    }

    .header-wrap {
      line-height: 60px;
    }

    .slider {
        margin-top: 60px;
    }

    .slider img {
        height: calc(100vh - 60px);
    }

    .slider-item .slider-content h2 {
        font-size: 18px;
        line-height: 22px;
    }

    .slider-item .slider-content h3 {
        font-size: 44px;
    }

    .slider-owl .owl-nav button {
        top: unset;
        bottom: 30px !important;
    }

    .slider-owl .owl-prev {
        left: unset;
        right: 120px;
    }

    .featured-area {
        margin-right: 0;
        padding: 0 24px;
        margin-top: -70px;
    }

    .introhome-wrap {
        display: block;
    }

    .introimg-wrap,
    .intro-text
    {
        display: block;
        float: none;
        width: 100%;
    }

    .intro-text {
        margin-left: 0;
    }

    .introduce-home .slider-btn-item {
        position: relative;
        margin-top: 20px;
    }

    .counter-area .col-cus {
        width: 100%;
    }

    .copyright .copyright-text {
      font-size: 14px;
    }

    .news-slider .owl-dots {
      margin-top: 15px;
    }

    .counter-row {
        display: block;
    }

    .counter-box {
        margin: 40px 0;
    }

    .counter-area .col-wrap {
        width: 100%;
    }

    .counter-area .clearfix {
        display: block;
    }

    .footer-widget-box {
        padding-top: 20px;
    }

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

    .menu-mobile .menu-m-child {
      margin-bottom: 0;
    }

    .menu-mobile .menu-child-item a {
      color: var(--second-color);
    }

    .menu-mobile .menu-child-item.group a {
      font-size: 18px;
    }

    .menu-mobile .menu-child-item:last-child a {
      border-bottom: none;
    }

    #modal-search .modal-dialog {
      width: 90%;
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-logo img {
      width: 160px;
    }
    .faq-header .faq-title {
      padding-left: 50px;
      padding-right: 10px;
    }
    .btn-filter {
      width: 100%;
      justify-content: center;
    }
    .filter-group,.btn-group{
      width: 100%;
    }
}


