@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --brand: #cc7a18;
  --yellow: #f5be03;
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --black: #252525;
  --dark: #000;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #222;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Roboto", sans-serif; 
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font) !important;
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color); 
  padding-right: 0 !important;
}
.page-content a, .service-content a {
  color: var(--brand);text-decoration: underline; 
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
  object-fit: cover;
}
.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal; 
}
.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal; 
}
.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #F5F5F5 !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.ff-sg {
  font-family: var(--second-font);
}

strong {
  font-weight: 700;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:hover, .btn-dark:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-dark:hover svg, .btn-dark:focus svg {
  color: var(--white);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}
 
@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.25rem;
  border: 1px solid var(--white);
  height: 2.25rem;
  border-radius: 50%;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--brand);
  position: absolute;
  bottom: 0;
  left: 0%;
  border-radius: 20px;
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .inner__icon {
  position: relative;
}
.navbar .inner__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23222' d='m13.292 12l-4.6-4.6l.708-.708L14.708 12L9.4 17.308l-.708-.708z'/%3E%3C/svg%3E") no-repeat center center/1.75rem;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  position: relative; 
	padding:2px;background:var(--white);border-color:var(--white);
}
.navbar .navbar-toggler svg {
  position: relative;
  left: 1px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}
.navbar.fixed-top .navbar-brand img {
  max-height: 3rem;
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 1rem;
    background-color: var(--brand);z-index: 9999;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 0 0 1rem 1rem;
  }
  .navbar .navbar-collapse .nav-link {
    width: auto;
    display: inline-block;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
    width: auto;
  }
}
 
footer .link, footer address {
  color: #E4E4E4;
}
footer .link:hover, footer .link:focus, footer .link:active {
  color: var(--white);
  text-decoration: underline;
}
footer a { 
  font-size: 1rem;
}
footer a:hover, footer a:focus, footer a:active {
  color: var(--white);
  text-decoration: underline;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}
.social__box a {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #F8F9FA;
}
.social__box a:hover, .social__box a:focus {
  background-color: var(--brand);
}
.social__box a:hover svg path, .social__box a:focus svg path {
  fill: var(--white);
}
.social__box.footer a:hover, .social__box.footer a:focus {
  background-color: var(--dark);
}

.logo__box img {
  width: 100%;
  height: 5rem;
  object-fit: contain;
  padding: 0.25rem;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.logo__box:hover img {
  filter: none;
}

.curve__top {
  border-radius: 3rem 3rem 0 0;
}

.go__top {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}
 

@media (max-width: 991px) {
  .research__wrapper.bg-light {
    background-color: transparent !important;
  }
}
.why__choose__us .icon__box {
  width: 4rem;
  height: 4rem;
}
.why__choose__us .icon__box svg {
  width: 2.5rem;
  height: 2.5rem;
}
.why__choose__us:hover {
  border-color: var(--brand) !important;
}

.chooseCarousel .owl-stage, .serviceCarousel .owl-stage {
  display: flex;
}
.chooseCarousel .owl-stage .owl-item, .serviceCarousel .owl-stage .owl-item {
  display: flex;
  padding: 1px;
}

.border-primary {
  border-color: var(--brand) !important;
}

.data__table td {
  border: 0;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.data__table td:first-child {
  border-right: 1px solid #e9e6e7;
}

.contact__form .form-control, .contact__form .form-select {
  height: 3.5rem;
  padding: 1rem 1.5rem;
}

.promo__wrapper .btn-primary:hover, .promo__wrapper .btn-primary:focus, .promo__wrapper .btn-primary:active {
  background-color: #fff;
  color: var(--brand);
}
.promo__wrapper .btn-primary:hover svg path, .promo__wrapper .btn-primary:focus svg path, .promo__wrapper .btn-primary:active svg path {
  fill: var(--brand);
}
.promo__wrapper .btn-white:hover svg path, .promo__wrapper .btn-white:focus svg path, .promo__wrapper .btn-white:active svg path {
  fill: var(--white);
}

.galleryItem img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.inner__list {
  padding-left: 1rem;
}
.inner__list li {
  list-style-type: disc;
}

.tab__select {
  height: 3.5rem;
  border: 2px solid var(--black);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .tab-content.bg-white {
    background-color: transparent !important;
  }
}
.info__card {
  background-color: #F5F5F5;
}
.info__card:hover {
  box-shadow: 0px 6px 11px rgba(141, 141, 141, 0.1607843137);
  border-color: rgba(141, 141, 141, 0.1607843137);
  transform: translateY(-5px);
}

.itemHeight .carousel-item {
  min-height: 19rem;
}

.contact__list li .icon {
  width: 2rem;
}
.contact__list li .icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.form-control {
  background-color: #F5F5F5;
  border-color: rgba(227, 227, 227, 0.3921568627);
  height: 4.5rem;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.form-control::placeholder {
  color: #8D8D8D;
  font-size: 0.937rem;
  font-weight: 400;
  text-transform: uppercase;
}

textarea.form-control {
  height: auto;
} 

.authore__avatar img {
  border-radius: 50% !important;width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.post__detail__wrapper h2 { margin-top: 2.5em; }
.post__detail__wrapper h3 { margin-top: 1.75em; }
.post__detail__wrapper h4 { margin-top: 1em; }
.post__detail__wrapper img { border-radius: 1rem; }
 
.back__btn {
  left: -5rem;background-color: #fff;
}
.back__btn:hover, .back__btn:focus, .back__btn:active {
  background-color: #dcdcdc;
}
@media (max-width: 991px) {
  .back__btn {
    left: 3rem;position: fixed !important;top: 7rem !important;
  }
}
@media (max-width: 575px) {
  .back__btn {
    left: 2rem;top: 5rem !important;
  }
}

.service-item .service-thumbnail a img {
  width: 100%;max-width: 100%;aspect-ratio: 4 / 3;object-fit: cover;
}
 
.homepage-content article {
  position: relative;padding-top: 3rem;
}
.homepage-content article .hero_marquee {
  position: absolute;top: 0%;left: 0%;width: 100%;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}
.page-template-front-page .site-header {
  display: none;
}
.page-template-front-page .container {
  max-width: 800px;
}

.service-card .thumbnail img {
  aspect-ratio: 4/3;width: 100%;object-fit: cover;
}
.service-card .service-content {
  background-image: linear-gradient(to bottom, #6f2c025e, #622600);
}

.posts-grid {
  display: grid;
}
.post-navigation a {
 display: block;padding: 1rem;font-size: 1.25rem;font-weight: 600;color: var(--brand);
 text-decoration: underline;
}
 
.sidebar {
	background:#f8f8f8;
}
.sidebar h2 {
	font-size:1.25rem;
}
.sidebar .wp-block-latest-posts { padding-left:1rem; }
.sidebar .wp-block-latest-posts li { list-style-type:disc; }
.sidebar .wp-block-search__button { padding:.25rem .75rem; }

.sub_box ul li .info p {
	 
}

.sub_box ul li .info .name { 
	color: #454545;   
}

.sub_box ul li .info .grade {
	color: #e6e6e6; 
}

.sub_box ul li .info .grade span {
	color: #ababab; 
}

.sub_box ul li .info .grade em {
	color: #ffa709; 
}

.sub_box ul li .info .grade i {
	display: inline-block;  
	position: relative;
	top: .03rem;
	margin-right: 0;
}

.sub_box ul li .info .txt {
	color: #02af27; 
	font-weight: 700; 
}

.sub_box ul li .num {
	display: block;
	 
	font-weight: 700; 
	color: #cecece; 
	text-align: center;
	position: relative;
	top: .35rem;
	left: 0;
	margin-right: .15rem
}

.sub_box ul li .btn {
	display: block;   
	text-align: center;  
	font-weight: 700;
	cursor: pointer;
	border-radius: 5px;
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--white);
}

.download__btn {
	animation: rotate .5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
