:root {
  --primary-brown: #0b9444;
  --primary:#ff7a00;
  --text-meta:#666 ;
  --white:#fff;
  --text-primary:#2a2a2a;
}
html {
  overflow-x: hidden;
}

.close-menu, .menu-toggle{
  display:none;
}
.header-wapper {
  display: flex;
  height: 80px;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.header-img {
  height: 80px;
  width: 106px;
  padding: 5px 0;
}


.menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.menu-item {
  position: relative;
}

.menu-item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color:var(--primary-brown);
  font-family: Quicksand, sans-serif;
  text-decoration: none;
}

.menu-item > a i {
  font-size: 10px;
  transition: transform 0.3s;
}

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

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 4px;
  background: var(--primary);
  z-index: 2;
}

.menu-item:hover::after {
  width: 100%;
}

.menu-item > a[active]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 4px;
  background: var(--primary);
  z-index: 2;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 99;
  padding: 0;
}

.dropdown li {
  list-style: none;
  padding: 0 10px;
}

.dropdown li:not(:last-child) a {
  border-bottom: 1px dashed var(--primary);
}

.dropdown a {
  display: block;
  padding: 12px 0;
  color: var(--text-meta);
  font-size: 14px;
  text-decoration: none;
}

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

.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  background: #fff;
  border: 1px solid var(--primary);
  padding: 0 10px ;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: .3s;
  z-index: 99;
}

.has-dropdown.mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col {
  display: flex;
  flex-direction: column;
  width: 260px;
  background: var(--white);
}

.mega-item {
  position: relative;
}

.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0px;
  color: var(--text-meta);
  text-decoration: none;
  font-size: 14px;
  background: var(--white);
}
.mega-link:hover {
  color:var(--primary);
}
.mega-item:not(:last-child) {
  border-bottom:1px dashed var(--primary);
}

.mega-link.active {
  color: var(--primary);
  font-weight: 600;
}

.mega-link .arrow {
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mega-item:hover .arrow {
  transform: rotate(135deg);
}

.mega-item ul {
  position: absolute;
  top: 20px;
  left: 102%;
  width: 320px;
  min-height: 100%;
  background: var(--white);
  padding: 0 15px;
  margin: 0;
  border: 1px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all 0.25s ease;
  z-index: 99;
}

.mega-item:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mega-item li {
  list-style: none;
  padding: 10px 0;
}

.mega-item li:not(:last-child) {
  border-bottom: 1px dashed var(--primary);
}

.mega-item li a {
  color: var(--text-meta);
  text-decoration: none;
  font-size: 14px;
}

.mega-item li a:hover {
  color: var(--primary);
  transition: 0.2s;
}


@media (max-width: 991px) {
  .menu-item.open > a i {
    transform: rotate(180deg);
  }

  .menu-toggle {
    display: block !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .menu {
    position: relative;
  }

  .menu-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 9998;
    overflow-y:auto;
  }
  .menu-list.active {
    transform: translateX(0);
  }

  .menu-item {
    width: 100%;
  }

  .menu-item > a {
    width: 100%;
    padding: 15px 20px;
    justify-content: space-between;
  }

  .menu-item::after {
    display: none;
  }

  /* close icon */
  .close-menu {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    display: none;
  }

  .close-menu.active {
    display: block;
  }

  .menu-search {
    display: none;
  }
.menu-item > a::after {
  display:none;
}
.menu-item > a[active] {
  color: var(--primary);
}
 .dropdown {
    padding-left: 30px;
  }
  .dropdown,
  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    display: none;
  }
  .menu-item.open > .dropdown,
  .menu-item.open > .mega-menu {
    display: block;
  }

  .mega-col {
    display: block;       
    padding-left: 30px;
  }

  .mega-item h4 {
    border: none;
    padding: 0;
    font-size: 14px;
  }

  .mega-item ul {
    margin-left: 10px;
    border: none;
    padding: 0;
  }

  .mega-item li:not(:last-child) {
    border-bottom: 1px dashed var(--primary);
  }
  .arrow{
    display:none;
  }
}


//search
.menu-search i {
    cursor: pointer;
}


.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    position: relative;
    width: 600px;
    max-width: 90%;
}

.search-box input {
    width: 100%;
    height: 56px;
    border-radius: 30px;
    border: none;
    padding: 0 60px 0 24px;
    font-size: 16px;
    outline: none;
}

.search-box p {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
}
.close-search {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
}

.banner-slide {
  width: 100%;
}

.banner-img {
  height: 550px;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

.section-about {
  background: url(https://suadienlanh1.mauthemewp.com/wp-content/uploads/2022/04/bg-department.jpg)
    center / cover no-repeat;
}
.bg-section-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}
.section-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-section {
  
  width: 100%;    
  max-width: 400px; 
  height: auto;     
  box-shadow: 0 8px 22px rgb(0 0 0 / 10%);
  border-radius: 15px;
  background: var(--white);
  padding: 10px;
  margin: 15px auto;  

}
.card-section img {
  height: 60px;
  width: 60px;
  margin: 10px;
}
.card-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-block h3 {
  font-size: 19px;
}
.card-block span {
  font-size: 15px;
  color: var(--text-primary);
}
.section-about-item{
	max-height:700px;
}
.section-about-item .h-sub {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-brown);
}
.title-intro {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-meta);
  padding-top: 10px;
  line-height: 1.4;
}
.section-about-item p {
  color: var(--text-meta);
  font-size: 15px;
  text-align:justify;
}
.btn-about {
  margin-top: 10px;
  margin-top: 40px;
}
.btn-about a {
  background: var(--primary-brown);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 10px;
}
.btn-about span {
  color: var(--white);
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.col-info {
  padding: 0 30px 30px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-brown);
  margin-bottom: 15px;
  padding-bottom: 8px;
}

.info-item h3 {
  font-size: 19px;
  color: var(--primary-brown);
  text-transform: uppercase;
  margin: 0;
}

.info-item span a {
  font-size: 13px;
  color: #00aae7;
  text-decoration: none;
}

/* ===============================
   CARD
================================ */
.info-section-item {
  width: 100%;
  background: var(--white);
  box-shadow: 0 5px 10px #ddd;
  margin-top: 15px;
  overflow: hidden;
  border-radius:10px;
}

.card-info {
  display: flex;
  height: 200px;
}


.card-info img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.card-info-item {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

.card-info-item > a {
  font-size: 20px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
}

.card-info-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50%;
  height: 2px;
  background: #222;
}
.desc-card {
  color: var(--text-meta);
  margin-top: 20px;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}
.card-info-item a:hover{
  color:var(--primary-brown);
}

@media (max-width: 991px) {
  .info-section {
    padding: 20px 15px;
  }

  .col-info {
    padding: 0 15px 25px;
  }

  .card-info {
    height: auto;
  }

  .card-info img {
    width: 180px;
    height: auto;
  }

  .card-info-item a {
    font-size: 18px;
  }

  .card-info-item span {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
	.info-section-item{
		border-radius:10px;
	}
  .info-section {
    padding: 15px;
  }
  .title-intro{
    font-size: 26px;
  }
  .col-info {
    padding: 10px;
  }

  .info-item h3 {
    font-size: 16px;
  }

  .card-info {
    flex-direction: column;
  }

  .card-info img {
    width: 100%;
    height: 100%;
	padding:10px 20px;
  }

  .card-info-item {
    padding: 15px;
  }

  .card-info-item a {
    font-size: 17px;
  }

  .card-info-item a::after {
    width: 40%;
  }

  .card-info-item span {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }
}


.section-content {
  padding: 50px 0;
  background: url(https://suadienlanh1.mauthemewp.com/wp-content/uploads/2022/04/section_project_bg.jpg)
    center / cover no-repeat;
}

.section-content-bg {
  max-width: 1200px;
  margin: 0 auto;
}


.section-content-tt {
  display: flex;
  padding: 30px 70px;
  position: relative;
}

.section-content-tt .content-tt {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.section-content-tt .content-tt-item {
  color: var(--primary-brown);
}

.section-content-tt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 70px;
  width: 40%;
  border-bottom: 1px dashed var(--primary-brown);
}

.wrapper {
  padding: 40px 0;
}

.my-slider {
  padding: 0 70px;
  position: relative;
}
.my-slider .slick-prev{
  left: 0;
}
.my-slider .slick-next{
  right: 0px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  background: #2ecc71;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.my-slider:hover .slick-prev,
.my-slider:hover .slick-next {
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  color: var(--white);
  font-size: 18px;
}


.card-slick {
  text-align: center;
  padding: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: transparent;
  height: 100%;
}

.card-slick:hover {
  background: var(--white);
  border-color: #2ecc71;
}

.slick-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}


.slick-title a {
   font-size: 17px;
  line-height: 1.4;         
  color: var(--white);
  text-decoration: none;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  white-space: normal;      
  padding: 0;  }

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


.slick-title-item {
  color: var(--white);
  transition: color .1s ease;
}

.card-slick:hover .slick-title-item {
  color: var(--text-primary);
}

.slick-title-item span {
  color: var(--primary-brown);
  font-weight: 600;
}


@media (max-width: 991px) {
  .section-content-bg {
    max-width: 100%;
    padding: 0 15px;
  }
  .section-about{
    padding: 0 10px;
  }

  .section-content-tt {
    padding: 20px 20px;
  }

  .section-content-tt::after {
    left: 20px;
    width: 60%;
  }

  .my-slider {
    padding: 0 30px;
  }
}


@media (max-width: 576px) {
  .section-content {
    padding: 30px 0;
  }

  .section-content-tt {
    padding: 15px;
    justify-content: center;
    text-align: center;
  }

  .section-content-tt::after {
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
  }

  .section-content-tt .content-tt {
    font-size: 24px;
  }

  .my-slider {
    padding: 0 10px;
  }

  .slick-item img {
    height:100%;
	padding:10px;
  }
.slick-title a{
	font-size:28px;
}.slick-title-item{
	font-size:18px;
}
  
}


.section-news {
  text-align: center;
  padding: 50px 10px;
}
.section-news-tt {
  font-size: 36px;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}
.section-news-tt::after {
  content: "";
  position: absolute;
  bottom: -50px;
  width: 180%;
  height: 1px;
  border-bottom: 1px dashed var(--primary-brown);
  margin: 0 auto;
  left: -80px;
  background-image: url(https://suadienlanh1.mauthemewp.com/wp-content/uploads/2022/04/budding-leaves2.webp);
}
.section-news-tt::before {
  content: "";
  position: absolute;
  bottom: -50px;
  width: 200%;
  height: 30px;
  left: -100px;
  background: url("https://suadienlanh1.mauthemewp.com/wp-content/uploads/2022/04/budding-leaves2.webp")
    center / contain no-repeat;
}
.section-news-tt span {
  font-size: 36px;
  color: var(--primary-brown);
}
.card-news {
  max-width: 1200px;
  margin: 100px auto 50px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.card-news-item {
  width: 275px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom:20px;
}
.card-news-item img {
  width: 100%;
  height: 220px;
}
.card-news-item h3 {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: bold;
  padding: 15px 15px 0;
}
.card-news-item span {
  color:var(--text-primary) ;
  font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;  
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 15px;
    text-align:justify ;
}

.section-comment {
  position: relative;
  background-image: url(https://suadienlanh1.mauthemewp.com/wp-content/uploads/2022/04/feedback-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 20px;
}
.section-comment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.01);
}

.section-comment * {
  position: relative;
  z-index: 2;
}

.comment-title {
  text-align: center;
  margin-bottom: 40px;
}

.comment-title i {
  font-size: 30px;
  color: var(--primary-brown);
}

.comment-title h3 {
  font-size: 36px;
  color: var(--white);
  margin-top: 10px;
}
.comment-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 200px;
  height: 2px;
  border-bottom: 1px dashed var(--primary-brown);
  left: 50%;
  transform: translateX(-50%);
}
.wrapper-comment {
  max-width: 60%;
  margin: 0 auto;
}

.wrapper-comment-title {
  text-align: center;
}
.wrapper-comment-title .slick-prev {
  margin-left: -260px;
}
.wrapper-comment-title .slick-next {
  margin-right: -260px;
}

.slick-comment span {
  display: block;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-meta);
  margin-bottom: 20px;
}

.slick-comment p {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}
.wrapper-comment-title .slick-prev,
.wrapper-comment-title .slick-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
.wrapper-comment-title:hover .slick-prev,
.wrapper-comment-title:hover .slick-next {
  opacity: 1;
}


.wrapper-comment-title .slick-prev:before,
.wrapper-comment-title .slick-next:before {
  font-size: 20px;
  color: var(--text-primary);
}


.wrapper-comment-title .slick-prev {
  left: -80px;
}

.wrapper-comment-title .slick-next {
  right: -80px;
}


.wrapper-comment-title .slick-prev:hover,
.wrapper-comment-title .slick-next:hover {
  background: var(--primary-brown);
}

.wrapper-comment-title .slick-prev:hover:before,
.wrapper-comment-title .slick-next:hover:before {
  color: var(--white);
}
//
.wrapper-comment-title .slick-dots {
  bottom: -40px;
}

.wrapper-comment-title .slick-dots li button:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  opacity: 1;
}

.wrapper-comment-title .slick-dots li.slick-active button:before {
  background: var(--primary-brown);
}

.partner-section {
  position: relative;
  padding: 50px 0;
  color: var(--white);
}

.partner-bg {
  position: absolute;
  inset: 0;
  background: url("https://suadienlanh1.mauthemewp.com/wp-content/uploads/2022/04/bg-partner.webp")
    center / cover no-repeat;
}

.partner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 90, 120, 0.7);
}

.partner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.partner-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.partner-text p {
  font-size: 19px;
  color: var(--white);
  text-align: center;
}

/* SLIDER */

.ppartner-track {
  align-items: center;
  padding: 15px;
}
.partner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  margin-left: 10px;
}

.partner-item img {
  height: 50px;
  width: 100%;
}

/* animation */
/* @keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
} */

/* responsive */
/* @media (max-width: 768px) {
  .partner-text p {
    font-size: 16px;
  }

  .partner-item {
    min-width: 140px;
  }

  .partner-item img {
    height: 40px;
  }
} */
.ppartner-track .slick-prev,
.ppartner-track .slick-next {
  opacity: 1;
}

.ft-top {
  padding: 30px;
  background: linear-gradient(90deg, #1f9a3a 0%, #f39c34 100%);
  color: var(--white);
}

.ft-top_container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft-top__left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ft-top__left p {
  font-size: 15px;
}

.ft-top_right {
  display: flex;
  gap: 30px;
}

.ft-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.ft-item img {
  width: 60px;
}

.ft-item span {
  margin-top: 8px;
  font-size: 15px;
}


/* .footer {
  background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQoMTldpyXvUDOkmfOiljDp-056Aw--7nKwgg&s")
    center/cover no-repeat;
  color: var(--white);
} */
.footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
}


.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    
  object-position: center; 
  z-index: 0;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.footer-main {
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  padding: 50px 15px;
  position: relative;
  z-index: 2;
}

.footer-col {
  flex: 1;
  padding: 15px;
}

.footer-info img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-info h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-info li {
  margin-bottom: 10px;
}

.footer-info i {
  color: #2ecc71;
  margin-right: 8px;
}


.footer-menu h3,
.footer-map h3 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

.footer-menu h3::after,
.footer-map h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #1f9a3a, #f39c34);
}

.footer-menu ul {
  list-style: square;
  padding-left: 20px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--white);
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--primary-brown);
}


.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}


.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #26282e;
  font-size: 14px;
  color: var(--text-meta);
}

@media (max-width: 576px) {
  .ft-top_container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .ft-top__left{
	text-align:left;
  }

  .ft-top_right {
    justify-content: left;
	align-item:center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .footer-menu h3::after,
  .footer-map h3::after {
    left: 50%;
    transform: translateX(-50%);
	width:100%;
  }
  .footer-map h3{
	text-align:left;
  }
}

@media (max-width: 576px) {
  .ft-item img {
    width: 48px;
  }
  .footer-menu{
	text-align:left;
  }
  .footer-info h4 {
    font-size: 28px;
	text-align:left;
  }
  .footer-info ul {
    font-size: 18px;
	text-align:left;
  }

  .footer-map iframe {
    height: 180px;
  }
}

.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: var(--text-primary);
  text-decoration: none;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
  cursor: pointer;
}

.banner-page{
  position:relative;
}
.banner-page-img{
  width:100%;
  max-height:200px
}
.banner-page-title{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  text-align:center;
  color:var(--white);
}
.banner-page-title h1{
  font-size:38px;
}
.banner-page-title p{
	padding-top:10px;
  font-size:19px;
}
.banner-page-img img{
  width:100%;
}
.banner-page {
  position: relative;
  width: 100%;
  overflow: hidden;
}


@media (max-width: 992px) {

  .banner-page-img img {
    height: 300px;
  }

  .banner-page-title h1 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
 .banner-img{
    max-height: 210px;
  }
}
}
@media (max-width: 450px) {
  .bg-section-about{
  padding: 0;
  }
  .banner-img{
    max-height: 110px;
  }
  .banner-page-img img {
    height: 220px;
  }

  .banner-page-title h1 {
    font-size: 20px;
  }

  .banner-page-title p {
    font-size: 14px;
  }
}

.content-main{
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}
/* Contact */
.bg-contact-form{
  background:  #29abe3;
  padding:10px 10px;
}
.contact-banner{
  position:relative;
}
.contact-banner-img{
  width:100%;
}
.contact-banner-img img{
  width:100%;
  height:200px
}
.contact-banner-title{
  position:absolute;
  top:50%;
  left:24%;
  transform: translate(-50%,-50%);
  color:var(--white);
}
.contact-banner-title h1{
  font-size:38px;
}
.contact-banner-title p{
  font-size:19px;
}

.contact-article {
	margin-bottom: 3rem;
}

.contact-input {
	position: relative;
	margin-bottom: 15px;
}

.contact-input textarea {
	resize: none;
	height: 150px;
}

.contact-input .custom-file-label::after {
	content: attr(title);
}

.contact-map {
	position: relative;
	height: 500px;
}

.contact-map iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100% !important;
	height: 100% !important;
}
.video-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.video-grid-5 .video-item:nth-child(1),
.video-grid-5 .video-item:nth-child(2) {
  grid-column: span 3;
}

.video-grid-5 .video-item:nth-child(n+3) {
  grid-column: span 2;
}

.video-grid-5 iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .video-grid-5 {
    grid-template-columns: 1fr;
  }

  .video-grid-5 .video-item {
    grid-column: auto !important;
  }
}
@media (max-width: 991px) {
  .card-news {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-news-item {
    width: 100%;
  }

  .section-news-tt,
  .section-news-tt span {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .card-news {
    display: grid !important;
    grid-template-columns: 1fr; 
    gap: 20px;
    margin: 80px auto 30px;
  }

  .card-news-item {
    width: 100%;
    padding: 10px;
  }

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

  .section-news-tt,
  .section-news-tt span {
    font-size: 26px;
  }

  .section-news-tt::before,
  .section-news-tt::after {
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
  }
}

.breadCrumbs {
    margin-top: 0px;
    background-color: transparent;
}
.breadCrumbs .wrap-content .breadcrumb-item.active a {
  color: var(--primary);
}
.breadcrumb-item+.breadcrumb-item::before{
  content:">";
  color: var(--white);
}
