@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --blue: #1457a6;
  --dark-blue: #141f45;
  --gray-blue: #003c72;
  --white: #ffffff;
  --orange: #f49f00;
  --purple: #7678ed;
  --black: #000000;
  --light: #dddddd80;
  --text-font-size: 16px;
  --header-font-size: 32px;
  --sub-header-font-size: 22px;
  --poppins: "Poppins", sans-serif;
  --Roboto: "Roboto Condensed", sans-serif;
  --Noto-MM: "Noto Sans Myanmar", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--poppins);
}

#glt-translate-trigger {
    position: fixed;
    bottom: 0px;
    top: auto;
    right: 60px !important;
    z-index: 200002;
    padding: 5px 20px !important;
    font-size: var(--text-font-size) !important;
    font-family: Arial;
    font-weight: 500 !important;
    color: #fff;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    text-align: center;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.3);
    box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    background: linear-gradient(center top, #fbb450, #f89406);
    background: -webkit-gradient(linear, center top, center bottom, from(#fbb450), to(#f89406));
    background: -webkit-linear-gradient(#fbb450, #f89406);
    background: -moz-linear-gradient(#fbb450, #f89406);
    background: -o-linear-gradient(#fbb450, #f89406);
    background: -ms-linear-gradient(#fbb450, #f89406);
    background: linear-gradient(#fbb450, #f89406);
    background: -o-linear-gradientcenter(center top, #fbb450, #f89406);
}

.pagination .page-item .page-link, .pagination .page-numbers {
  color: var(--black) !important;
  border: 1px solid var(--dark-blue);
  border-radius: 5px;
/*   padding: 3px 8px; */
  width: 27px;
  height: 27px;
  text-align: center;
  font-size: var(--text-font-size);
  margin: 0 4px;
  background-color: transparent;
  text-decoration: none;
}

.pagination .page-item .page-link.next, .pagination .next.page-numbers, .pagination .prev.page-numbers {
/*   padding: 1px; */
}

.pagination .next.page-numbers img,
.pagination .prev.page-numbers img{
	width: 17px;
}

.pagination .prev.page-numbers img{
  transform: rotate(180deg);
}


.pagination .page-item .page-link.active, .pagination .page-numbers.current {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white) !important;
}


@media screen and (max-width:767px){
	#glt-translate-trigger {
		padding: 4px 10px !important;
	}
}

header {
  background-color: var(--purple);
}

.brand-logo {
  width: 250px;
}

.nav-w {
  width: 80%;
}

header .navbar-nav .nav-item .nav-link {
  font-size: var(--text-font-size);
  color: var(--white);
  padding: 27px 10px;
  font-weight: 500;
  border-bottom: 5px solid transparent;
  white-space: nowrap;
  transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}

header .navbar-nav .nav-item .nav-link.active,
header .navbar-nav .nav-item .nav-link:hover {
  border-bottom: 5px solid var(--white);
}

.navbar-toggler {
  padding: 4px;
  border-radius: 3px;
  border-color: var(--blue);
}

.dropdown-menu.lang-menu {
    background: none;
    border: none;
    width: max-content;
	min-width: max-content;
}

.lang-btn {
    padding: 8px 10px;
    border: 1px solid var(--white);
    background: #00000033;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
	display: flex;
	align-items: center;
}

.dropdown-menu.lang-menu .dropdown-item{
	padding: 7px 20px;
    border: none;
    background: #3D3D3D;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 300;
	display: flex;
	align-items: center;
	color: var(--white);
	margin: 2px 0;
}

footer {
  background-color: var(--gray-blue);
}

.hero {
  height: 850px;
  position: relative;
  z-index: 1;
}

.girl-img-box {
  width: 65%;
  height: 100%;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: var(--white);
  border-radius: 50%;
  z-index: 2;
  bottom: 5%;
  left: 5%;
}

/* service */
.services {
  margin-top: -73px;
  position: relative;
  z-index: 2;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-box {
  background-color: var(--gray-blue);
  padding: 40px 15px;
  text-align: center;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out;
}

.service-logo {
  width: 100px;
  transform: scale(1);
  transition: transform 0.4s ease-in-out;
}

.service-header {
  font-size: 19px;
  color: var(--white);
  font-family: var(--Roboto);
  line-height: 1.45;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.service-box:hover {
  background-color: var(--blue);
}

.service-box:hover .service-logo {
  transform: scale(1.2);
}

.service-box:hover .service-header {
  transform: translateY(10px);
}

.service-detail .all-text,
.service-detail p,
.service-detail li {
  line-height: 2;
  font-weight: 400;
  font-size: var(--text-font-size);
  /* font-family: var(--Noto-MM); */
  /* font-style: normal; */
}

/* about us  */

.about-top-header {
  font-size: var(--text-font-size);
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-weight: 700;
  padding-left: 11px;
  border-left: 11px solid var(--orange);
  line-height: 2.3;
}

.main-header {
  font-size: var(--header-font-size);
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 20px;
}

.all-text {
  font-size: var(--text-font-size);
  color: var(--black);
  text-align: justify;
  line-height: 1.7;
}

.see-more-btn {
  background-color: var(--dark-blue);
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 10px 30px;
  border: none;
  font-size: 18px;
  font-weight: 300;
  transition: background-color 0.3s ease-in-out;
}

.see-more-btn::before {
  content: "";
  background-color: var(--blue);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  transition: left 0.3s ease-in-out;
}

.see-more-btn:hover::before {
  left: 0;
}

.see-more-btn:hover {
  background-color: var(--blue);
}

.v-m-box {
  background-color: var(--blue);
}

.v-m-list li {
  color: var(--white);
  font-size: var(--text-font-size);
  line-height: 1.7;
}

.core-header,
.service-detail-header {
  color: var(--blue);
  font-size: var(--sub-header-font-size);
  font-weight: 600;
}

.core ul,
.core ol {
  padding-left: 0px;
}

.core li {
  color: var(--black);
  font-size: var(--text-font-size);
  line-height: 1.7;
  list-style: none;
}

/* .core li::marker {
  content: "➤";
} */

.core li::before,
.core p::before {
  content: "➤";
  margin-right: 2px;
}

/* activities  */
.home-activity-img {
  aspect-ratio: 16/10.4;
  object-fit: cover;
}

.act-img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.slide-img{
	aspect-ratio: 1 / 1;
    object-position: center;
    object-fit: cover;
}

.activity-header {
  color: var(--dark-blue);
  font-size: var(--sub-header-font-size);
  font-weight: 600;
  line-height: 1.7;
}

.our-activities .all-text {
  line-height: 1.7;
}

.divider {
  border: 0;
  border-top: 2px solid #d9d9d9;
}

/* feedback  */
.feedback-box {
  margin-bottom: 100px;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
}

.chat-box {
  background: var(--white);
  padding: 50px 25px 40px 25px;
  border-radius: 40px;
  position: relative;
  font-size: 14px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  padding-top: 50px;
  z-index: 1;
  min-height: 325px;
}

.chat-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
    background: inherit;
    z-index: 10;
}

.chat-box::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) skew(10deg, 10deg);
  width: 50px;
  height: 50px;
  background: inherit;
/*   clip-path: polygon(100% 0, 0 100%, 100% 100%); */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.feedback-box .feedback-icon {
  width: 27px;
}

.feedback-box .name {
  font-weight: 600;
  color: var(--blue);
  font-size: 18px;
  text-decoration: underline;
}

.feedback-box .message {
  font-size: 15px;
  color: var(--black);
  text-align: left;
  line-height: 1.7;
  /* font-family: var(--Noto-MM); */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.message p{
  margin-bottom: 0;
}

/* contact us  */
.contact-us .form-control,
.contact-us .form-control::placeholder {
  color: #000000b2;
  font-weight: 300;
  font-size: var(--text-font-size);
}

.contact-us .form-control {
  padding-left: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #d9d9d9;
}

.contact-us .form-control:focus {
  border-bottom-color: var(--blue);
  box-shadow: none;
}

.contact-us .footer-text,
.contact-us .footer-header {
  color: var(--black);
}

.contact-us .footer-text {
  font-weight: 400;
}

.contact-us iframe {
  width: 100%;
}
/* footer  */
.footer-header {
  color: var(--white);
  font-weight: 700;
}

.footer-text {
  color: var(--white);
  font-size: var(--text-font-size);
  line-height: 1.7;
  font-weight: 300;
}

.footer-icon {
  width: 25px;
}

.social-icon {
  width: 30px;
}

.btn-icon {
  width: 25px;
}

.footer-links {
  padding-left: 16px;
  color: var(--white);
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: var(--text-font-size);
  line-height: 2;
  font-weight: 300;
}

.newletter-form .form-control {
  background-color: var(--white);
  border: none;
  color: var(--black);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: var(--text-font-size);
}

.newletter-form .form-control::placeholder {
  color: var(--black);
}

.subscribe-btn {
  background-color: var(--blue);
  color: var(--white);
  padding: 10px 35px;
  border: none;
  border-radius: 25px;
  font-size: var(--text-font-size);
  font-weight: 400;
}

.newletter-text {
  color: var(--light);
  font-size: var(--text-font-size);
}

.banner-img {
  aspect-ratio: 2 / 0.4;
}

@media screen and (max-width:1025px) and (min-width:993px) {
  .nav-w {
    width: 88%;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --text-font-size: 15px;
    --header-font-size: 27px;
    --sub-header-font-size: 18px;
  }

  header .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 0;
    display: inline-block;
    font-weight: 400;
  }

  .w-sm-100 {
    width: 100%;
  }

  .service-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-box {
    padding: 30px 15px;
  }

  .service-logo {
    width: 80px;
  }

  .service-header {
    font-size: 17px;
  }

  .banner-img {
    aspect-ratio: 2 / 0.5;
  }
	
  .hero {
    height: 400px;
  }

  .girl-img-box {
    height: 400px;
  }
  .services {
    margin-top: -80px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --text-font-size: 14px;
    --header-font-size: 21px;
    --sub-header-font-size: 16px;
  }

  .footer-header {
    font-size: 16px;
  }

  .service-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-box {
    padding: 20px 15px;
  }

  .service-logo {
    width: 55px;
  }

  .service-header {
    font-size: 15px;
  }

  .hero::before {
    width: 200px;
    height: 300px;
    bottom: -10%;
    left: -1%;
  }

  .girl-img-box,
  .hero {
    height: 250px;
  }

  .services {
    margin-top: 50px;
  }

  .brand-logo {
    width: 200px;
  }

  .banner-img {
    aspect-ratio: 2 / 0.7;
  }

  .contact-us iframe {
    height: 300px;
  }

  .footer-icon {
    width: 22px;
  }

  .see-more-btn {
    padding: 7px 20px;
  }

  .newletter-form .form-control {
    color: var(--black);
    padding: 7px 20px;
  }

  .subscribe-btn {
    padding: 7px 27px;
  }
}

@media screen and (max-width: 325px) {
  .hero::before {
    bottom: -10%;
    left: -14%;
  }

  .girl-img-box {
    width: 73%;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fade 1s backwards linear;
}