:root {
  --primary: #1258d8;
  --secondary: #D1A75F;
  --grey: #EFEFE8;
  --white: #ffffff;
  --black: #000000;
  --dark: #042A2D;
  --light: #F3E8D5;
  --dark-green: #019297;
  --primary-font: "Outfit", sans-serif;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
}
@media (max-width: 1499px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}

* a {
  text-decoration: none;
}

header nav {
  background-color: var(--white);
}
@media (max-width: 1400px) {
  header .navbar-brand img {
    max-height: 50px;
  }
}
header .btn-type1 {
  height: 40px;
}
header .dropdown-toggle::after {
  vertical-align: middle !important;
}

footer .nav-link:hover, footer .nav-link:focus,
footer a:hover,
footer a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

.btn-type1 {
  background-color: var(--primary);
  color: var(--white);
}
.btn-type1:hover, .btn-type1:focus {
  background-color: #003eb1;
  color: var(--white);
}

.btn-type2 {
  background-color: var(--secondary);
  color: var(--white);
}
.btn-type2:hover, .btn-type2:focus {
  background-color: #ac7a25;
  color: var(--white);
}

.font-primary {
  font-family: var(--primary-font);
}

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

.text-color-secondary {
  color: var(--secondary);
}

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

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

.text-color-grey {
  color: var(--grey);
}

.primary-gradient {
  background: var(--primary-gradient);
}

.secondary-gradient {
  background: var(--secondary-gradient);
}

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

.secondary-bg {
  background-color: var(--secondary);
}

.light-bg {
  background-color: var(--light);
}

.grey-bg {
  background-color: var(--grey);
}

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

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

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

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

.square {
  aspect-ratio: 1/1;
}

.bg-img.bg-norepeate {
  background-repeat: no-repeat;
}
.bg-img.bg-auto {
  background-size: auto;
}
.bg-img.bg-100 {
  background-size: 100%;
}
.bg-img.bg-cover {
  background-size: cover;
}
.bg-img.bg-contain {
  background-size: contain;
}
.bg-img.bg-center {
  background-position: center;
}

.link-type1 {
  color: var(--black);
}
.link-type1:hover {
  color: var(--primary);
}

.navbar-nav .nav-link {
  line-height: 1;
  font-weight: 400;
  font-size: 15px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .nav-link:active, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
  color: var(--primary);
}

@media (min-width: 1024px) {
  header {
    transition: top 0.5s ease-in-out;
    -webkit-transition: top 0.5s ease-in-out;
    -moz-transition: top 0.5s ease-in-out;
    -ms-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
  }
  header .dropdown-menu .dropdown-item {
    background-color: var(--secondary) !important;
  }
  header .dropdown-menu .dropdown-item:hover, header .dropdown-menu .dropdown-item:focus, header .dropdown-menu .dropdown-item:active, header .dropdown-menu .dropdown-item.active {
    background: var(--primary-gradient);
    color: var(--white);
  }
  header li.nav-item {
    padding: 25px 5px;
  }
  header li.nav-item.dropdown.showhide .dropdown-menu, header li.nav-item.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  header li.nav-item.dropdown.showhide .dropdown-toggle::after, header li.nav-item.dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  header li.nav-item.dropdown .dropdown-menu {
    display: block;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    opacity: 0;
    top: 100%;
    visibility: hidden;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  }
  header li.nav-item.dropdown .dropdown-menu .dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 15px 15px !important;
    min-width: 250px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
  }
  header li.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    padding-left: 25px !important;
  }
  .nav-up {
    top: -165px;
  }
}
@media (max-width: 1023px) {
  header li.nav-item.dropdown.showhide .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  header li.nav-item.dropdown.showhide .dropdown-menu {
    display: block;
  }
  .offcanvas {
    overflow-y: auto;
    padding: 0;
  }
  .offcanvas .navbar-nav {
    padding: 0 50px 50px;
  }
  .offcanvas .navbar-nav .nav-link {
    font-size: 16px !important;
    padding: 20px 0 20px 15px !important;
  }
  .offcanvas .navbar-nav .nav-link.active {
    font-weight: 700 !important;
  }
  .offcanvas .navbar-nav .dropdown-item {
    font-size: 14px !important;
    padding: 20px 0 20px 35px !important;
  }
  .offcanvas .navbar-nav .dropdown-item.active {
    background-color: transparent;
    font-weight: 700 !important;
  }
  .offcanvas .navbar-nav .nav-link,
  .offcanvas .navbar-nav .dropdown-item {
    font-weight: 300;
    border-bottom: 1px solid rgba(209, 167, 95, 0.25);
  }
  .offcanvas .navbar-nav .nav-link:hover,
  .offcanvas .navbar-nav .dropdown-item:hover {
    background-color: transparent;
  }
  .offcanvas .navbar-nav .dropdown-menu {
    background-color: transparent;
  }
  .overlay-icon {
    display: none;
  }
}
.container-fluid {
  max-width: 2000px;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  color: var(--secondary);
}
.navbar-toggler .navbar-toggler-icon i {
  font-size: 30px;
}
.navbar-toggler:hover .navbar-toggler-icon, .navbar-toggler:active .navbar-toggler-icon {
  color: var(--light);
}

@media (max-width: 1023px) {
  .offcanvas .navbar-nav {
    padding: 0 50px 50px;
  }
  .offcanvas .navbar-nav .nav-link {
    font-size: 16px !important;
    font-weight: 400;
    padding: 20px 0;
  }
}
.team-card {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-card .team-info-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: var(--white);
  background-color: var(--primary);
  line-height: 1;
  font-weight: 400;
}
.team-card .team-info-link h5 {
  font-size: 18px;
  margin: 0;
}
.team-card .team-info-link .link-icon {
  background-image: url("../images/arrow-sprite.svg");
  min-width: 46px;
  max-width: 45px;
  height: 45px;
  overflow: hidden;
  background-size: cover;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (max-width: 1199px) {
  .team-card .team-info-link .link-icon {
    min-width: 40px;
    height: 40px;
  }
}
@media (min-width: 1500px) {
  .team-card .team-info-link .link-icon {
    min-width: 54px;
    max-width: 54px;
    height: 54px;
  }
  .team-card .team-info-link:hover .link-icon {
    background-position: -56px 0px;
  }
}
@media (min-width: 1199px) and (max-width: 1499px) {
  .team-card .team-info-link:hover .link-icon {
    background-position: -46px 0px;
  }
}
@media (max-width: 1199px) {
  .team-card .team-info-link h5 {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .team-card .team-info-link {
    gap: 10px;
  }
  .team-card .team-info-link h5 {
    font-size: 15px;
  }
}

.service-card .srvc-icon {
  max-width: 75px;
  aspect-ratio: 1/1;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-slider .item {
  padding: 1px;
}

.test-logo {
  max-height: 60px;
}

.news-slider .owl-stage {
  display: flex;
}
.news-slider .owl-stage .item {
  height: 100%;
}
.news-slider .owl-stage .item .news-card {
  height: 100%;
}

.news-card {
  border: 1px solid var(--grey);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.news-card .news-featured-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.news-card a {
  color: var(--black);
}
.news-card:hover {
  background-color: var(--grey);
}
.news-card:hover .news-featured-img {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
}
.news-card:hover a {
  color: var(--primary);
}

@media (min-width: 992px) {
  .owl-carousel .owl-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    bottom: 50%;
    margin-bottom: -20px;
    margin-top: 0;
  }
  .owl-carousel .owl-nav button {
    background: none !important;
    opacity: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    position: relative;
  }
  .owl-carousel .owl-nav button span {
    display: none;
  }
  .owl-carousel .owl-nav button::before {
    font-family: "Bootstrap-icons";
    font-size: 20px;
    color: var(--black);
    background: var(--grey);
    min-width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .owl-carousel .owl-nav button.owl-prev {
    left: -30px;
  }
  .owl-carousel .owl-nav button.owl-prev::before {
    content: "\f284";
  }
  .owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }
  .owl-carousel .owl-nav button.owl-next::before {
    content: "\f285";
  }
}
@media (max-width: 991px) {
  .owl-theme .owl-dots .owl-dot span {
    background: var(--secondary);
    height: 5px;
    width: 5px;
    transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
    -moz-transition: 0.5s linear;
    -ms-transition: 0.5s linear;
    -o-transition: 0.5s linear;
  }
  .owl-theme .owl-dots .owl-dot.active span {
    background: var(--secondary);
    width: 30px;
    height: 5px;
  }
}
.faq-accordion .accordion-item {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  overflow: hidden;
  background-color: var(--grey);
}
.faq-accordion .accordion-button {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
}
.faq-accordion .accordion-button::after {
  content: "\f63b";
  font-family: "Bootstrap-icons";
  background-image: none;
  background-color: var(--white);
  display: flex;
  aspect-ratio: 1/1;
  min-width: 45px;
  height: 45px;
  margin-left: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.faq-accordion .accordion-button.collapsed::after {
  content: "\f64d";
}

.inner-page-panner {
  min-height: 10vmax;
}

.faq-inner.faq-accordion .accordion-item {
  background-color: var(--white);
}
.faq-inner.faq-accordion .accordion-button::after {
  background-color: var(--grey);
  color: var(--primary);
}

.service-item {
  aspect-ratio: 8/9;
  position: relative;
}
.service-item .srvc-cont {
  position: absolute;
  width: 100%;
  top: 70%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: var(--grey);
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
.service-item .srvc-cont .srvc-list {
  opacity: 0;
  transition: 0.6s all;
  -webkit-transition: 0.6s all;
  -moz-transition: 0.6s all;
  -ms-transition: 0.6s all;
  -o-transition: 0.6s all;
}
.service-item:hover .srvc-cont {
  background-color: rgba(209, 167, 95, 0.9);
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-item:hover .srvc-cont .srvc-list {
  opacity: 1;
}

@media (max-width: 1199px) {
  .service-item h5 {
    font-size: 18px !important;
  }
  .service-item.open .srvc-cont {
    background-color: rgba(209, 167, 95, 0.9);
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-item.open .srvc-cont .srvc-list {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .service-item h5 {
    font-size: 18px !important;
  }
  .service-item .srvc-cont {
    top: 80%;
  }
}
.career-item {
  background-color: var(--grey);
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}
.career-item a {
  color: var(--black);
}
.career-item:hover {
  background-color: var(--primary);
  color: var(--white);
}
.career-item:hover a {
  color: var(--white);
}

.form-floating textarea ~ label::after {
  background-color: transparent !important;
}

@media (min-width: 1025px) {
  header.scrolled {
    max-width: 90% !important;
  }
}
@media (min-width: 992px) {
  header {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
  }
  header.scrolled {
    max-width: 97vw;
    margin: 0 auto;
    padding: 10px 0;
  }
  header.scrolled nav {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  header.scrolled nav .navbar-brand img {
    max-width: 75%;
  }
  header.scrolled nav .navbar-nav > li.nav-item {
    padding: 0 5px;
  }
  header nav {
    transition: 0.5s all;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
  }
  header nav .navbar-brand img {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
  }
  header nav .navbar-nav > li.nav-item {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
  }
}
/* #Progress
================================================== */
.progress-wrap {
  position: fixed;
  background-color: var(--light);
  border-color: var(--grey);
  right: 50px;
  bottom: 50px;
  height: 47px;
  width: 47px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--light);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
  transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
}
@media (max-width: 991px) {
  .progress-wrap {
    right: 20px;
    bottom: 20px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "bootstrap-icons";
  content: "\f145";
  text-align: center;
  line-height: 46px;
  font-size: 25px;
  color: var(--black);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover {
  background: var(--primary);
}
.progress-wrap:hover::after {
  font-size: 25px;
  color: var(--light);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #77716D;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}/*# sourceMappingURL=style.css.map */