@import "font-awesome";

@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&family=Lato:wght@100;300;400;500;700;900&display=swap";
:root {
  --body-font: "Lato", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --theme-color: #e6af5d;
  --theme-bg-light: #f9fbfe;
  --body-text-color: #757f95;
  --color-white: #ffffff;
  --color-dark: #212121;
  --color-dark2: #030722;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: rgba(0, 0, 0, 0.15);
  --footer-bg2: #071125;
  --footer-text-color: #f5faff;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

 
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  color: #242424;
  font-family: "Lato", sans-serif !important; font-size:16px
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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;
  color: var(--theme-color);
  position: relative;
  border-bottom: 2px solid var(--theme-color);
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
 font-weight: 600;
    text-transform: capitalize;
    font-size: 32px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;

}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  width: 90px;
  height: 10px;
  border: 3px solid #212e54;
  border-right-color: transparent;
}

.heading-divider.light {
  border-color: rgba(255, 255, 255, 0.2);
  border-right-color: transparent;
}

.heading-divider::after {
  position: absolute;
  content: "";
  width: 30px;
  background-color: var(--theme-color);
  top: 0;
  bottom: 0;
  left: 18px;
}

.theme-btn {
  margin-top: 0px;
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #e6af5d;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  position: absolute;
  content: "";
  /*background: var(--color-dark2);*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transition: var(--transition);
  z-index: -1;
}

.theme-btn:hover:before {
  transform: scaleY(1);
  transition: var(--transition);
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark2);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 92%;
  }
}

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}
@media (max-width: 1200px) {
  .hero-single {
    height: calc(100vh - 136px);
  }
}
.header-top {
  padding: 4px 0 4px;
  position: relative;
  z-index: 1;
  width: 100%;
  background: #241f20;
  overflow: hidden;
  position: relative;
}
.header-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 56%;
  height: 101%;
  background: #e6af5d;
  transform: skew(-20deg);
  z-index: -1;
}
.main-navigation {
  box-shadow: 0px 0px 5px 0px #0000004d;
}
/* .navbar::before {
  content: "";
  position: absolute;
  left: 19%;
  top: 0;
  bottom: -1px;
  width: 75%;
  background: rgb(0 0 0 / 5%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  z-index: -1;
} */

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-contact a {
  color: var(--color-white);
  font-size: 15px;
}.header-top-contact a:hover {
  color: var(--color-white)!important;
  font-size: 15px;
}
.accordion-body span {
  padding-right: 10px;
}
.header-top-contact a i {
  color: #9fb771;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-link a {
  color: var(--color-white);
  margin-right: 12px;
}

.header-top-link a:hover {
  color: var(--theme-color);
}

.header-top-social span {
  color: var(--color-white);
}

.header-top-social a {
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
  margin-left: 14px;
  transition: var(--transition);
}

.header-top-social a:hover {
  color: var(--color-white)!important;
}

@media all and (max-width: 1199px) {
  .header-top-contact ul {
    gap: 10px;
  }

  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }

  .header-top-left {
    margin-right: 5px;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}

.navbar {
  background: var(--color-white);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.custom-nav {
  background: var(--color-white);
  border-radius: 10px;
  position: relative;
}

.navbar.fixed-top {
  background: var(--color-white) !important;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 150px;
}

/*.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'font awesome 5 Free';
    content: "\f0dd";
    font-weight: 600;
    border: none;
    font-size: 14px
}*/

@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

 
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 16px;
    padding: 35px 7px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    width: 246px;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0;
    border-bottom: 4px solid var(--theme-color);
    background: var(--color-white);
    box-shadow: var(--box-shadow);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid var(--border-info-color);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    /* padding: 8px 25px; */
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: 0 0;
    color: var(--theme-color);
    /* padding-left: 32px */
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    /* content: "//"; */
    /* position: absolute;
        left: 15px;
        top: 8px;
        color: var(--theme-color);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1 */
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #e6af5d;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: end;
  }

  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: 45px;
  }

  .nav-right-link {
    position: relative;
    font-size: 20px;
    color: var(--color-dark);
    transition: var(--transition);
  }

  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }

  .nav-right .sidebar-btn .nav-right-link,
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: 0 0;
    color: var(--color-dark);
    font-size: 28px;
    padding-right: 0;
  }

  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }

  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }

  .nav-right .cart-btn span {
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
  }
}

.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 120px;
  }

  .navbar-collapse {
    /* max-height: 220px; */
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu-right .nav-right-link {
    background: 0 0;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
  }

  .mobile-menu-right .nav-right-link:hover {
    color: var(--theme-color);
  }

  .search-area.open {
    top: 50px !important;
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color: var(--color-dark);
    font-weight: 500;
  }

  .navbar .dropdown-menu {
    border-radius: 0;
  }

 
}

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: 0 0;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}

.search-area {
  position: absolute;
  top: 85px;
  right: 0;
  background: var(--color-white);
  padding: 15px;
  -webkit-box-shadow: 0 5px 15px rgb(0 0 0/10%);
  box-shadow: 0 5px 15px rgb(0 0 0/10%);
  width: 340px;
  visibility: hidden;
  opacity: 0;
  border-radius: 0;
  border-bottom: 3px solid var(--theme-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
}

.search-area.open {
  visibility: visible;
  opacity: 1;
  top: 78px;
}

.search-area .form-group {
  position: relative;
}

.search-area .form-control {
  padding: 12px 45px 12px 20px;
  border-radius: 8px;
  box-shadow: none;
}

.search-area .form-control:focus {
  border-color: var(--theme-color);
}

.search-area .search-icon-btn {
  position: absolute;
  right: 8px;
  top: 6px;
  background: 0 0;
  border: none;
  font-size: 20px;
}

.main {
  margin-top: 0;
}

.hero-section {
  position: relative;
}
/*
.hero-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 40px;
    background: var(--theme-color);
    clip-path: polygon(100% 0,0 0,0 100%);
    z-index: 3
}*/

/*.hero-shape-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 60px;
    background: var(--theme-color);
    clip-path: polygon(100% 0,0 0,0 100%);
    opacity: .5;
    z-index: 3
}*/

/*.hero-shape-3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 60px;
    background: var(--theme-color);
    clip-path: polygon(100% 0,0 100%,100% 100%);
    z-index: 3
}

.hero-shape-4 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
    height: 80px;
    background: var(--theme-color);
    clip-path: polygon(100% 0,0 100%,100% 100%);
    opacity: .5;
    z-index: 3
}

.hero-shape-5 {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 40px;
    background: var(--theme-color);
    clip-path: polygon(100% 0,0 0,100% 100%);
    z-index: 3
}

.hero-shape-6 {
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
    height: 60px;
    background: var(--theme-color);
    clip-path: polygon(100% 0,0 0,100% 100%);
    opacity: .5;
    z-index: 3
}*/

.hero-single {
  padding-top: 150px;
  padding-bottom: 250px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  /*height: calc(100vh - 190px);*/
  background-attachment: fixed !important;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: linear-gradient(
    to bottom right,
    rgb(0 0 0 / 42%) 20%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
  /* width: 66%; */
  /* padding: 143px; */
  padding-left: 60px;
  /* transform: translateX(-93%); */
  min-height: 318px;
}
.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 46px;
  margin: 10px 0;
  text-transform: capitalize;
  padding-top: 70px;
  line-height: 60px;
}

.hero-single .hero-content .hero-title span {
  color:#e6af5d;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 800;
  padding-top: 30px;
  position: relative;
  text-transform: uppercase;
  border-bottom: 3px solid var(--theme-color);
}

.hero-single .hero-content p {
  color: var(--color-white);
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}

.hero-single .hero-img {
  position: absolute;
  right: 110px;
  bottom: -30px;
  width: 41%;
  z-index: 1;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0;
}

.hero-slider.owl-theme .owl-nav [class*="owl-"] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}

.hero-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 40px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

  .hero-single .hero-img {
    width: 46%;
    right: 20px;
  }
}

@media all and (max-width: 991px) {
  .hero-shape-1 {
    width: 50%;
    height: 80px;
  }

  .hero-shape-2 {
    width: 50%;
    height: 100px;
  }

  .hero-shape-3,
  .hero-shape-4 {
    display: none;
  }

  .hero-shape-5 {
    width: 50%;
    height: 80px;
  }

  .hero-shape-6 {
    width: 50%;
    height: 100px;
  }

  .hero-single {
    padding-bottom: 120px;
  }

  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    bottom: 10px !important;
  }

  .appointment {
    margin-top: 0 !important;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

.appointment {
  position: relative;
  margin-top: -100px;
  z-index: 1;
}

.appointment-form {
  background: var(--theme-color);
  padding: 20px 30px;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--box-shadow);
}

.appointment-form .form-group {
  margin: 10px 0;
}

.appointment-form .form-control {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
}

.appointment-form .form-select {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  box-shadow: none;
}

.appointment-form .theme-btn {
  width: 100%;
  background: var(--color-dark2);
}

.appointment-form .theme-btn:hover {
  color: var(--theme-color);
}

.appointment-form .theme-btn::before {
  background: var(--color-white);
}

.appointment-form .form-control::placeholder {
  color: #212529;
}

.appointment-form input[type="date"]::-webkit-calendar-picker-indicator {
  background: url(../img/icon/calendar.png) no-repeat;
  background-size: 20px 20px;
}

.about-left {
  position: relative;
  z-index: 1;
}

.py-120 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-experience {
  text-align: center;
  background: var(--theme-color);
  padding: 14px 20px 15px 15px;
  color: var(--color-white);
  box-shadow: 0 0 40px 5px rgb(0 0 0/10%);
  position: relative;
}

.about-experience-icon {
  color: var(--theme-color);
  /* font-size: 65px; */
  width: 68px;
  height: 67px;
  line-height: 67px;
  text-align: center;
  margin: auto;
  background: var(--color-white);
  border-radius: 50px;
  position: relative;
  left: -89px;
  margin-bottom: 5px;
}
.icon-ab {
  height: 39px;
}
.main-text {
  display: flex;
  margin: auto;
  text-align: left;
  float: rrigh;
  float: right;
  position: relative;
  top: -66px;
  left: -152px;
  line-height: 27px;
  font-size: 20px;
}

.about-left img {
  width: 100%;
  height: 100%;
  position: relative;
  /* border-radius: 10px */
}
.text-start {
  text-align: left !important;
}
.bg-abt1 {
    background-image: url(../img/bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}.bg-abt1::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;  
}
.bg-abt { 
  background-size: cover;
  background-repeat: no-repeat;
  /* position: relative;*/
  padding-top: 80px;
  padding-bottom: 50px;
}

.bg-abt::before {
  /*content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom right,rgb(255 251 251 / 85%) 20%,rgb(255 255 255 / 37%) 100%);
    opacity: 3.7;*/
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-content {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}
.about-experience-1 {
  position: absolute;
  top: 223px;
  left: 37px;
  text-align: center;
  background: var(--theme-color);
  padding: 15px 20px 15px 15px;
  border-radius: 20px;
  color: var(--color-white);
  box-shadow: 0 0 40px 5px rgb(0 0 0/10%);
  z-index: 1;
}
.about-experience-icon-1 {
  color: var(--theme-color);
  font-size: 65px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  margin: auto;
  background: var(--color-white);
  border-radius: 50px;
  margin-bottom: 5px;
}
.about-item {
  display: block;
  margin: auto;
  float: right;
  width: 69%;
  align-items: center;
  justify-content: center;
  padding: absolute;
  position: relative;
  left: 79px;
  right: 0px;
  top: 0px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  padding: 20px;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
  font-weight: 500;
  color: #242424;
}

.about-list li::before {
  content: "\f061";
  position: absolute;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  color: var(--theme-color);
}

/* features */
.ft-bg::before {
  content: "";
  position: absolute;
  background: url(../../assets/img/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	
}

.ft-bg {
  position: relative;background: url(../../assets/img/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  z-index: -1;

}

.feature-area {
  position: relative !important;
  z-index: 1;
}

.feature-item {
  padding: 15px;
  position: relative;
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
    min-height: 377px;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item::before {
  content: "";
  position: absolute;
  height: 3px;
  left: 20px;
  right: 20px;
  bottom: 0;
  background: #34401d;
}

.feature-item .count {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.feature-icon {
  width: 100px;
  height: 100px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: #e2e7db;
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
    line-height: 30px;
}

@media all and (max-width: 1199px) {
  .feature-area {
    margin-top: -20px;
  }
}

.cont1 {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.item1 {
  align-items: center !important;
  /* background-color: tomato; */
  color: white;
  display: flex;
  justify-content: center;
}

.portfolio-item {
  position: relative;
  width: 100%;
  padding: 3px;
}

.portfolio-img img {
  width: 100%;
  border-radius: 10px;
}

.portfolio-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.portfolio-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: #e6af5d96;

  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-content:hover::before {
  opacity: 0.9;
  visibility: visible;
}

.portfolio-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(--color-white);
}

.portfolio-link:hover {
  color: var(--color-white);
}

.portfolio-content:hover .portfolio-link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-info {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  background: var(--color-white);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #000;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.38) !important;
}
.owl-nav button:focus {
  outline: none;
}

/* counter section */
.counter-area {
  position: relative;
  background: var(--theme-color);
  z-index: 1;
}

.counter-area::before {
  content: "";
  position: absolute;
  background-image: url(../img/02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
}

.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: 110px;
  height: 110px;
  line-height: 97px;
  color: var(--color-white);
  background: var(--color-dark);
  border: 5px solid var(--color-white);
  border-radius: 50px;
}

span.counter {
  display: block;
  line-height: 1;
  color: white !important;
  font-size: 50px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pt-50 {
  padding-top: 50px !important;
}
h6.title {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: white;
}
@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}
.mt1 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.process-single {
  position: relative;
}
.process-area {
  background: #ebefe5;
}
.process-single .icon {
  height: 140px;
  width: 140px;
  display: inline-block;
  position: relative;
  line-height: 135px;
  background: #c5d1ae;
  box-shadow: var(--box-shadow);
  border-radius: 50%;
  margin-bottom: 30px;
  font-size: 75px;
  color: var(--theme-color);
}

.process-single span {
  position: absolute;
  height: 40px;
  width: 40px;
  font-size: 14px;
  background: var(--theme-color);
  line-height: 40px;
  border-radius: 50%;
  color: var(--color-white);
  left: -3px;
  top: -5px;
  font-weight: 600;
}

.process-single h4 {
  margin-bottom: 10px;
}

.process-single::before {
  content: url(../img/05.png);
  position: absolute;
  right: -72px;
  top: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-single::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-single::before {
    display: none;
  }
}

.process-area .col-lg-3:last-child .process-single::before {
  display: none;
}

.quote-wrapper {
  background: var(--color-white);
  border-right: 5px solid var(--theme-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.quote-img img {
  border-radius: 10px 0 0 10px;
}

.quote-content {
  padding: 30px;
}

.quote-content .quote-header h6 {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--theme-color);
  font-size: 18px;
  letter-spacing: 2px;
}

.quote-content .quote-header h2 {
  color: var(--color-dark);
  font-size: 40px;
  margin-bottom: 30px;
  margin-top: 10px;
  font-weight: 700;
}

.quote-content .form-group {
  margin-bottom: 20px;
}

.quote-content .form-group .form-control {
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 8px;
  background-color: var(--theme-bg-light);
  border: none;
  box-shadow: none;
}

.quote-content .form-group .form-select {
  padding: 15px 22px;
  background-color: var(--theme-bg-light);
  border: none;
  box-shadow: none;
  border-radius: 0;
}

@media all and (max-width: 1199px) {
  .quote-content .quote-header h2 {
    font-size: 25px;
  }
}

@media all and (max-width: 991px) {
  .quote-img img {
    width: 100%;
  }
}

/* testimopnial starts here */
.ts-bg {
   
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.ts-bg::before {
 background: url(../../assets/img/test-bg.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.03;

}
.testimonial-single {
  background: var(--color-white);
  padding: 15px;
  margin: 5px 6px 20px 6px;
  position: relative;
  border-radius: 20px;
    box-shadow: 0 0 10px #e2e2e2;
}
.testimonial-single::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -5px;
  height: 5px;
  background: var(--theme-color);
  border-radius: 0 0 15px 15px;
}
.testimonial-author-img {
  width: 75px;
  padding: 4px;
  border-radius: 50px;
  border: 3px solid var(--theme-color);
}
.testimonial-author-info {
  margin: 15px 0 10px 0;
}
.testimonial-author-info h4 {
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 2px;
}
.testimonial-author-info p {
  color: #e6af5d;
}
.testimonial-author-img img {
  border-radius: 50%;
}
.testimonial-rate {
  color: var(--theme-color);
  margin-bottom: 10px;
}
.testimonial-quote p {
  color: var(--color-dark);
}
.testimonial-content .testimonial-author-img .testimonial-quote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
section.dg-inc {
    /* background: #04bee9; */
    padding: 70px 0 60px;
    background: linear-gradient(87deg, #bb8330 0%, #af7929 100%);
}

.dgi-desc h5 {
    font-size: 56px;
    margin-bottom: 0;
    font-weight: 600;
}

.dgi-desc p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.dgi-desc {
    margin-left: 15px;
}

.dgi-box {
    width: 100%;
    border-right: 1px solid #fff;
}

.dgi-box:last-child {
    border-right: none !important;
}.f-color {
    color: #fff;
}

.testimonial-quote-icon {
  position: absolute;
  right: 30px;
  bottom: 0px;
  color: var(--theme-color);
  font-size: 70px;
}
.testimonial-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
/* clients area */
.brands_img1 h4 {
  padding: 20px;
  box-shadow: 0 0 10px #e2e2e2;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  line-height: 26px;
  border-radius: 10px;
  background: #09142b;
  color: #fff;
}
.clients-area {
  background: #fff2e8 !important;
}
.pt-20 {
  padding-top: 26px !important;
}
/* team section */
.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  margin-bottom: 25px;
  margin-bottom: 75px;
  position: relative;
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img {
  /* margin-top: -50px; */
  border-radius: 10px;
}
.bg-p {
  font-size: 15px;
  line-height: 25px;
}
.ap-btn1 {
  display: block;
  margin: auto;
}
.team-content {
  position: relative;
  background: var(--color-white);
  border-right: 5px solid var(--theme-color);
  border-radius: 0 10px 10px 10px;
  padding: 12px 25px;
  margin-right: 30px;
  margin-top: -7px;
  box-shadow: var(--box-shadow);
}

.team-bio h5 {
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio span {
  font-size: 13px;
  font-weight: 500;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-bio h5 a:hover {
  color: var(--theme-color);
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  left: 0px;
  bottom: 100px;
  opacity: 0;
  transition: var(--transition);
}

.team-item:hover .team-social {
  opacity: 1;
  left: 30px;
}

.team-social a {
  display: inline-block;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 2px 2px 10px 2px;
  border-radius: 10px;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
}

.team-social a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.team-social h6 {
  margin-top: 28px;
  color: var(--color-white);
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transform: rotate(-90deg);
}

.team-social h6::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--color-white);
  left: -50px;
  top: 7px;
}

.team-area2 .team-item::before,
.team-area2 .team-item::after {
  display: none;
}

/* footer section starts here  */

.footer-area {
  background-image: url(../img/map.png);
  position: relative;
  z-index: 1;
  padding-top: 0px;
  background-blend-mode: overlay;
  background-color: #0e0e0e;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 280px;
  margin-bottom: 15px;
}

.copyright {
  position: relative;
  padding: 10px 0;
  background: #0c0c0cc7;
  border-bottom: 4px solid var(--theme-color);
  z-index: 1;
}
  

.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 {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 90px;
  height: 3px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 30px;
  height: 3px;
  border-radius: 50px;
  background: var(--theme-color);
  bottom: 0;
  left: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
    font-size: 16px;
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.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: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}.footer-contact li a:hover {
  color: #fff; 
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 5px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: var(--theme-color);
}

.subscribe-form .theme-btn::before {
  background: var(--color-white);
}

.subscribe-form .theme-btn:hover::after {
  border-color: var(--theme-color);
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before,
  .copyright::after {
    display: none;
  }

  .copyright .copyright-text a {
    color: var(--theme-color);
  }
}

#container1 {
  /* width: 900px; */
  height: 100px;
  overflow: auto;
  position: relative;
  /* left: 200px; */
  top: 50px;
}
.pre {
  font-family: monospace;
  border: 1px solid;
  border-radius: 3px;
  padding: 3px;
}
.heder1 {
  background: rgb(252, 239, 205);
}

.wrapper {
  width: 100vw;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}
.header-st {
  position: fixed;
}

.image-1 {
  border-radius: 40px;
}
.header-st,
.section1 {
  width: 100%;
  padding: 1em 3em;
  box-sizing: border-box;
  position: relative;
  z-index: 99;
}
.s-sticky {
  min-height: 89vh;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  z-index: 9;
}

.header-st {
  height: 90vh;
  color: white;
  background: rgba(127, 127, 127, 0.2);
  background-image: radial-gradient(black 33%, transparent 33%);
  background-size: 2px 2px;
}

.section1 {
  color: white;
}
.section--s1 {
  /* background: #f1e6d7; */
  top: 40px;
  max-height: calc(100vh - 40px);
}
.section--s2 {
  background: #ffffff;
  top: 39px;
  max-height: calc(100vh - 80px);
}
.section--s3 {
  background: #f1e6d7;
  top: 120px;
  max-height: calc(100vh - 120px);
}

.section--s4 {
  background: #ffffff;
  top: 40px;
  max-height: calc(100vh - 120px);
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
  visibility: visible !important;
}

.flip-box {
  background-color: transparent;
  /* width: 100%;
    height: 400px; */
  /* border: 1px solid #f1f1f1; */
  perspective: 1000px;
}

.flip-box-inner {
  /*position: relative;
    width: 500px;
    height: 400px;*/
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  margin-inline: auto;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
  /*  position: absolute;*/
  /* width: 100%;
    height: 100%; */
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
/* .flip-box-front {
    background-color: #13315c;
    color: black;
  } */
.flip-box-front img {
}
.pb-60 {
  padding-bottom: 60px;
}
/* Style the back side */
.flip-box-back {
  background-color: #ffffff;
  color: rgb(17, 17, 17);
  transform: rotateY(180deg);
  padding: 10px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.flip-box-back {
 background-color: #e6af5d;
    color: #fff !important;
}
.flip-box-back h2 {
  color: #fff !important;
}
.flip-box-back p {
  color: #fff !important;
      font-size: 16px !important;
    line-height: 22px !important;
}
.flip-box-back:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  top: 0;
  left: 0;
  content: "";
  border: 10px solid #fff;
}
.flip-box-back h2 {
  color: #e6af5d ;
  font-size: 23px;
  /* position: absolute; */
  /* top: 23%; */
  text-align: center;
  /* left: 36%; */
  width: 100%;
}
.flip-box-back p {
  color: #121111 ;
  font-weight: 700;
  font-size: 20px;
  /* padding-top: 40%; */
  width: 100%;
}

.bgflip1 {
  background-image: url(../img/digi2.png);
  background-size: cover;
  background-position: top;
  position: relative;
}
.bgflip1 p {
  color: white !important;
}
.overlay1 ::before {
  background-color: #00000071 !important;
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  opacity: 0.01;
  z-index: 999;
}
.imgbf {
  background: #fff2e8;
  padding: 19px;
  border-radius: 30%;
  position: relative;
  height: 87px;
}

.feature-icon1 {
  width: 100px;
  height: 100px;
  line-height: 90px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: #fff;
  /* margin-bottom: 37px; */
  position: relative;
  transition: var(--transition);
  left: 18px;
  top: 20px;
}
.new-1 {
  padding-bottom: 10px;
}

.new-con {
  padding: 10px;
}

.new-con h1 {
  font-size: 26px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.about-side1 img {
  border-radius: 20px !important;
}

.new-con p {
  font-size: 17px;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
  margin: 0;
  color: #242424;
  padding-right: 58px;
  visibility: visible;
}

.content-area1 h1 {
  color: white;
}

.content-area1 {
  display: block;
  margin: auto;
  text-align: center;
  padding: 50px;
}

.content-area1 p {
  color: white;
  padding-top: 30px;
  font-family: "Lato", sans-serif;
}

.site-breadcrumb {
  display: flex;
  box-shadow: 0px 0px 5px 0px #0000004d;
  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: 90px 0;*/
  z-index: 1;
  background-blend-mode: overlay;
  background-color: #f7f7f7 !important;
  background-attachment: fixed !important;
}
.text-left {
  text-align: left;
}
.site-breadcrumb .breadcrumb-title {
  font-size: 60px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-align: left;
}

.site-breadcrumb p {
  color: #e6af5d;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  font-size: 21px;
  line-height: 29px;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  /*background: var(--hero-overlay-color);*/
  opacity: 0.7;
  z-index: -1;
}

/*====================
40. Faq css 
======================*/
.faq-right.wow.fadeInLeft {
  visibility: visible !important;
}
div#accordionExample {
  visibility: visible !important;
}
.faq-area .accordion-item {
  border: none;
  margin-bottom: 30px;
  background: var(--color-white);
  border-radius: 10px !important;
  box-shadow: var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-dark);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-img img {
  border-radius: 10px;
  height: 322px;
  width: 450px;
}
.accordion-body {
  padding: 7px 16px;
  color: black !important;
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-bottom: 50px;
  }

  .accordion-button {
    font-size: 16px;
  }
}

.car-btn {
  padding: 6px 16px !important;
  margin: 16px 0px 10px;
}

.top11 {
  margin-top: 23px;
  margin-bottom: 40px;
}

.accordion-button {
  padding: 2px 20px;
}

.bg-image11 {
  background-image: url(../img/phil-large.jpg);
}

.bg-color {
  background: rgb(208, 209, 214);
  background: linear-gradient(
    90deg,
    rgb(234 234 234 / 97%) 0%,
    rgba(255, 255, 255, 1) 19%,
    rgba(254, 254, 254, 1) 41%,
    rgb(211 210 210 / 99%) 56%
  );
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none !important;
  border-radius: 0.25rem;
  background: none;
  top: 3%;
}

.team-body {
  flex: 1 1 auto;
  padding: 3rem 3rem !important;
}

.team-title {
  margin-bottom: 1rem;
  font-size: 2.2rem !important;
}

.team-sub {
  color: #dc3545 !important;
}

.team-img1 {
  position: relative;
  /* top: 16%; */
  height: 500px;
  width: auto;
}

.bg-color1 {
  background: radial-gradient(
    circle,
    rgb(238 238 238) 51%,
    rgb(222 217 217) 66%,
    rgb(194 194 194) 77%
  );
  /* height: 600px; */

  padding-top: 10px;
}

.team-img11 {
  left: 31%;
  /* height: 560px!important; */
  bottom: 0%;
  position: relative;
}
.team-img14 {
  height: 500px;
  width: auto;
  position: relative;
}

.team-img15 {
  height: 500px;
  width: auto;
}

.icon-team a {
  padding-right: 26px;
  padding-top: 25px;
}

/* timeline */
#timeline {
  background: #f2f2f2;
}
.main-timeline {
  position: relative;
}
.main-timeline:before,
.main-timeline:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.main-timeline:before {
  content: "";
  width: 3px;
  height: 100%;
  background: #dc6b75;
  position: absolute;
  top: 0;
  left: 50%;
  /* z-index: 2; */
}
.main-timeline .timeline {
  width: 50%;
  float: left;
  position: relative;
  z-index: 1;
}
.main-timeline .timeline:before,
.main-timeline .timeline:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.main-timeline .timeline:first-child:before,
.main-timeline .timeline:last-child:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #dc3545;
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 1;
}
.main-timeline .timeline:last-child:before {
  top: auto;
  bottom: 0;
}
.main-timeline .timeline:last-child:nth-child(even):before {
  right: auto;
  left: -12px;
  bottom: -2px;
}
.main-timeline .timeline-content {
  text-align: center;
  margin-top: 8px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.main-timeline .timeline-content:before {
  content: "";
  width: 100%;
  height: 5px;
  background: rgb(220 107 117);
  position: absolute;
  top: 88px;
  left: 0;
  z-index: -1;
}
.main-timeline .circle {
  width: 180px;
  height: 180px;
  border-radius: 7px 40px;
  background: #fff;
  border: 8px solid rgb(210 26 38);
  float: left;
  margin-right: 25px;
  position: relative;
}
.main-timeline .circle:before {
  content: "";
  width: 26px;
  height: 30px;
  background: rgb(210 26 38);
  margin: auto;
  position: absolute;
  top: 0;
  right: -33px;
  bottom: 0;
  z-index: -1;
  box-shadow: inset 7px 0 9px -7px #444;
}
.main-timeline .circle span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px 40px;
  line-height: 268px;
  font-size: 80px;
  color: #454344;
}
.main-timeline .circle span:before,
.main-timeline .circle span:after {
  content: "";
  width: 28px;
  height: 50px;
  background: #fff;
  border-radius: 0 0 0 21px;
  margin: auto;
  position: absolute;
  top: -54px;
  right: -33px;
  bottom: 0;
  z-index: -1;
}
.main-timeline .circle span:after {
  border-radius: 21px 0 0 0;
  top: 0;
  bottom: -56px;
}
.main-timeline .circle .img {
  vertical-align: initial;
  border-radius: 0px 30px;
}
.main-timeline .content {
  display: table;
  padding-right: 40px;
  position: relative;
}
.main-timeline .year {
  display: block;
  padding: 2px;
  margin: 29px 0 29px 0;
  background: rgb(210 26 38 / 8%);
  border-radius: 16px 16px;
  font-size: 16px;
  color: rgb(210 26 38);
  max-width: 120px;
  border: 2px solid rgb(210 26 38);
  font-weight: 900;
}
.main-timeline .title {
  font-size: 18px;

  font-weight: bold;
  color: rgb(0 0 0);
  text-align: left;
  margin-top: 0;
}
.main-timeline .description {
  font-size: 16px;
  margin: 0;
  color: #242424;
  font-family: "Roboto", sans-serif !important;
  text-align: justify;
}
.main-timeline .icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid rgb(220 53 69);
  position: absolute;
  top: 78px;
  right: -14px;
}
.main-timeline .icon:before {
  content: "";
  width: 15px;
  height: 25px;
  background: rgb(210 26 38);
  margin: auto;
  position: absolute;
  top: -1px;
  left: -15px;
  bottom: 0;
  z-index: -1;
}
.main-timeline .icon span:before,
.main-timeline .icon span:after {
  content: "";
  width: 21px;
  height: 25px;
  background: #fff;
  border-radius: 0 0 21px 0;
  margin: auto;
  position: absolute;
  top: -30px;
  left: -15px;
  bottom: 0;
  z-index: -1;
}
.main-timeline .icon span:after {
  border-radius: 0 21px 0 0;
  top: 0;
  left: -15px;
  bottom: -30px;
}
.main-timeline .timeline:nth-child(2n) .timeline-content,
.main-timeline .timeline:nth-child(2n) .circle {
  float: right;
}
.main-timeline .timeline:nth-child(2n) .circle {
  margin: 0 0 0 25px;
}
.main-timeline .timeline:nth-child(2n) .circle:before {
  right: auto;
  left: -33px;
  box-shadow: -7px 0 9px -7px #444 inset;
}
.main-timeline .timeline:nth-child(2n) .circle span:before,
.main-timeline .timeline:nth-child(2n) .circle span:after {
  right: auto;
  left: -33px;
  border-radius: 0 0 21px 0;
}
.main-timeline .timeline:nth-child(2n) .circle span:after {
  border-radius: 0 21px 0 0;
}
.main-timeline .timeline:nth-child(2n) .content {
  padding: 0 0 0 40px;
  margin-left: 2px;
}
.main-timeline .timeline:nth-child(2n) .icon {
  right: auto;
  left: -14px;
}
.main-timeline .timeline:nth-child(2n) .icon:before,
.main-timeline .timeline:nth-child(2n) .icon span:before,
.main-timeline .timeline:nth-child(2n) .icon span:after {
  left: auto;
  right: -15px;
}
.main-timeline .timeline:nth-child(2n) .icon span:before {
  border-radius: 0 0 0 21px;
}
.main-timeline .timeline:nth-child(2n) .icon span:after {
  border-radius: 21px 0 0 0;
}
.main-timeline .timeline:nth-child(2) {
  margin-top: 180px;
}
.main-timeline .timeline:nth-child(odd) {
  margin: -175px 0 0 0;
}
.main-timeline .timeline:nth-child(even) {
  margin-bottom: 180px;
}
.main-timeline .timeline:first-child,
.main-timeline .timeline:last-child:nth-child(even) {
  margin: 0;
}
@media only screen and (max-width: 990px) {
  .main-timeline:before {
    left: 100%;
  }
  .main-timeline .timeline {
    width: 100%;
    float: none;
    margin-bottom: 20px !important;
  }
  .main-timeline .timeline:first-child:before,
  .main-timeline .timeline:last-child:before {
    left: auto !important;
    right: -13px !important;
  }
  .main-timeline .timeline:nth-child(2n) .circle {
    float: left;
    margin: 0 25px 0 0;
  }
  .main-timeline .timeline:nth-child(2n) .circle:before {
    right: -33px;
    left: auto;
    box-shadow: 7px 0 9px -7px #444 inset;
  }
  .main-timeline .timeline:nth-child(2n) .circle span:before,
  .main-timeline .timeline:nth-child(2n) .circle span:after {
    right: -33px;
    left: auto;
    border-radius: 0 0 0 21px;
  }
  .main-timeline .timeline:nth-child(2n) .circle span:after {
    border-radius: 21px 0 0 0;
  }
  .main-timeline .timeline:nth-child(2n) .content {
    padding: 0 40px 0 0;
    margin-left: 0;
  }
  .main-timeline .timeline:nth-child(2n) .icon {
    right: -14px;
    left: auto;
  }
  .main-timeline .timeline:nth-child(2n) .icon:before,
  .main-timeline .timeline:nth-child(2n) .icon span:before,
  .main-timeline .timeline:nth-child(2n) .icon span:after {
    left: -15px;
    right: auto;
  }
  .main-timeline .timeline:nth-child(2n) .icon span:before {
    border-radius: 0 0 21px 0;
  }
  .main-timeline .timeline:nth-child(2n) .icon span:after {
    border-radius: 0 21px 0 0;
  }
  .main-timeline .timeline:nth-child(2),
  .main-timeline .timeline:nth-child(odd),
  .main-timeline .timeline:nth-child(even) {
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .main-timeline:before {
    left: 0;
  }
  .main-timeline .timeline:first-child:before,
  .main-timeline .timeline:last-child:before {
    left: -12px !important;
    right: auto !important;
  }
  .main-timeline .circle,
  .main-timeline .timeline:nth-child(2n) .circle {
    width: 130px;
    height: 130px;
    float: none;
    margin: 0 auto;
  }
  .main-timeline .timeline-content:before {
    width: 99.5%;
    top: 68px;
    left: 0.5%;
  }
  .main-timeline .circle span {
    line-height: 115px;
    font-size: 60px;
  }
  .main-timeline .circle:before,
  .main-timeline .circle span:before,
  .main-timeline .circle span:after,
  .main-timeline .icon {
    display: none;
  }
  .main-timeline .content,
  .main-timeline .timeline:nth-child(2n) .content {
    padding: 0 10px;
  }
  .main-timeline .year {
    margin-bottom: 15px;
  }
  .main-timeline .description {
    text-align: center;
  }
}

.bg-time1 {
  background: #fff9f2;
  padding: 20px;
  box-shadow: 0 0 10px #00000020;
  border-radius: 0 0 40px 40px;
}

.call-area {
  background-image: url(../img/bg-about-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.call-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to left,
    rgba(210, 26, 3, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.call-content {
  padding: 40px;
  position: relative;
  /* background: var(--color-white); */
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  z-index: 3;
  padding-top: 10px;
  height: 265px;
}

.call-content::before {
  content: "";
  position: absolute;
  border: 5px solid var(--theme-color);
  border-radius: 20px;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  z-index: -1;
  -webkit-mask: 
    conic-gradient(from 180deg at top 8px right 8px, #0000 90deg,#000 0)
     var(--_i,200%) 0  /200% var(--_i,8px) border-box no-repeat,
    conic-gradient(at bottom 8px left  8px,  #0000 90deg,#000 0)
     0   var(--_i,200%)/var(--_i,8px) 200% border-box no-repeat,
    linear-gradient(#000 0 0) padding-box no-repeat;
  transition: .3s, -webkit-mask-position .3s .3s;
}

.call-content::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 10px;
  width: 80px;
  height: 10px;
  background: var(--color-white);
  z-index: -1;
}

.call-content span {
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 500;
}

.call-content h1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.emergency-call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.emergency-call-icon {
  width: 80px;
  height: 80px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 45px;
  text-align: center;
  border-radius: 50%;
}

.emergency-call-info h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--theme-color);
  font-size: 23px;
}

.emergency-call-icon img {
  width: 50px;
}

.m-p {
  line-height: 21px !important;
  font-size: 16px !important;
  margin-top: 10px;
}

.mission-list li {
  margin: 0;
  color: #242424;
  font-family: "Roboto", sans-serif !important;
  list-style: disc;
  line-height: 22px;
  font-size: 16px;
}

.bgcard11 {
  background-color: rgb(255 255 255);
  font-size: 14px;
  line-height: 20px;
  padding: 20px;
  margin-bottom: 10px;
  color: #181717;
  font-weight: 500;
  height: 150px;
  box-shadow: 0 3px 10px rgb(197 197 197 / 20%);
}

ul.list-ser li {
  display: flex;
  padding-bottom: 12px;
  color: #201f1f;
  font-size: 16px;
}
ul.list-ser {
  margin-top: 20px;
}

ul.list-ser img {
  height: 24px;
  /* position: relative; */
  /* top: 9%; */
  margin-right: 10px;
}

.about-left1 img { 
  border-radius: 20px;
  border: 3px solid #e6af5d;
}
.newh{
    font-size: 4.125rem!important;}

.bg-listmain {
  background: #fff2db;
}

.pt-main {
  padding-top: 50px;
  padding-bottom: 40px;
}

.mainul1 {
  padding-top: 7px;
  padding-bottom: 20px;
}

.headli {
  font-size: 17px;
  color: #e6af5d;
}

.ulfastimg {
  height: 13px;
}

ul.mainul1 li {
  font-size: 15px;
  /* padding-bottom: 15px; */
  line-height: 30px;
  /* margin-bottom: 30px; */
  padding-bottom: 4px;
  color: #201f1f;
  left: 43px;
  position: relative;
}

/*===================
37. Contact us css 
=====================*/

.contact-wrapper {
  background: var(--color-white);
  border-radius: 10px;
  border-right: 5px solid var(--theme-color);
  box-shadow: var(--box-shadow);
}

.contact-img img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.contact-form {
  padding: 25px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}
 .down{ font-size:17px; text-align:center; padding-top:10px;}
 .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 20px 20px;
  position: relative;
  margin-bottom: 35px;
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  /* min-height: 242px; */
}
.contact-info::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  background: var(--theme-color);
  border-radius: 10px;
  height: 20px;
  z-index: -1;
}

.contact-info-icon {
  font-size: 35px;
  color: var(--color-white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  margin-inline: auto;
  margin-bottom: 20px;
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: -12px;
  bottom: -12px;

  border-radius: 50px;
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.contact-info p {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 18px;
  line-height: 33px;
}
.career {
  padding: 15px;
  box-shadow: 0 0 10px #e2e2e2;
  margin-bottom: 20px;
}
.careerh {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  font-size: 20px;
  padding-bottom: 10px;
}
@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}

.map-section {
  background-color: white;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  padding: 10px;
}

.mb-con {
  margin-bottom: 40px;
}

@media (min-width: 1600px) {
  .hero-slider .container {
    max-width: 1580px;
  }
}

.pt-100 {
  padding-top: 70px !important;
  padding: 20px;
}

.container-scroll .section1 {
  position: relative;
  width: 100%;

  background-blend-mode: overlay;
  background-image: url(../img/bb.jpg);
  background-size: 100% 100vh;
  background-attachment: fixed;
}
.container-scroll .section2 {
  position: relative;
  width: 100%;

  background-blend-mode: overlay;
  background-image: url(../img/bb.jpg);
  background-size: 100% 100vh;
  background-attachment: fixed;
}
.container-scroll .section3 {
  position: relative;
  width: 100%;

  background-blend-mode: overlay;
  background-image: url(../img/bb.jpg);
  background-size: 100% 100vh;
  background-attachment: fixed;
}

.container-scroll section {
  padding: 150px;
}
.container-scroll .section1 {
  position: relative;
  width: 100%;
  height: 100vh;
}
.container-scroll .section2 {
  position: relative;
  width: 100%;
  height: 100vh;
}
.container-scroll .section3 {
  position: relative;
  width: 100%;
  height: 100vh;
}

.about-area-v1 .about-img {
  position: relative;
  margin-left: 20px;
}
.about-area-v1 .about-img:before {
  position: absolute;
  top: 0;
  left: -20px;
  content: "";
  width: 10px;
  height: 100%;
  background-color: #e6af5d;
}
.about-area-v1 .about-img img {
  width: 100%;
  height: 100%;
  /* max-height: 530px !important; */
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-v1 .about-img img {
    width: 88%;
  }
}
@media (max-width: 767px) {
  .about-area-v1 .about-img img {
    width: 100%;
  }
}
.about-area-v1 .about-img .play-content {
  position: absolute;
  top: 115px;
  right: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-img .play-content {
    right: 25px;
  }
}
.about-area-v1 .about-img .play-content .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background-color: #e6af5d;
  z-index: 1;
}
.about-area-v1 .about-img .play-content .video-popup:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #e6af5d;
  animation: play 1500ms ease-out infinite;
  z-index: 1;
}
.about-area-v1 .about-img .experience-box {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 33px 20px;
  max-width: 33%;
  background-color: #e6af5d;
  border-radius: 0px 30px 0px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-img .experience-box {
    max-width: 65%;
  }
  .about-area-v1 .about-img img {
    width: 100%;
    height: 100%;
    /* min-height: 650px; */
    object-fit: cover;
}
}
@media (max-width: 767px) {
  .about-area-v1 .about-img .experience-box {
    max-width: 65%;
  }
}
.about-area-v1 .about-img .experience-box p {
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 22px;
}
.about-area-v1 .about-img .experience-box p span.big-text {
  font-size: 44px;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.about-area-v1 .about-content-box p {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-content-box p {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-content-box .section-title {
    margin-bottom: 10px;
  }
  .about-area-v1 .about-content-box .section-title span.span {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-content-box .about-box .box {
    margin-bottom: 10px;
  }
}
.about-area-v1 .about-content-box .about-box .box .icon i {
  width: 40px;
  height: 40px;
  line-height: 1;
  color: #e6af5d;
  font-size: 40px;
}
.about-area-v1 .about-content-box .about-box .box .info {
  margin-left: 15px;
  margin-top: -5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-content-box .about-box .box .info {
    margin-left: 10px;
  }
}
.about-area-v1 .about-content-box .about-box .box .info h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v1 .about-content-box .about-box .box .info h5 {
    font-size: 14px;
    line-height: 24px;
  }
}

.about-area-v2 .about-img {
  position: relative;
  margin-right: 20px;
}
.about-area-v2 .about-img img {
  width: 100%;
}
.about-area-v2 .about-img .experience-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #e6af5d;
  border: 5px solid #fff;
  border-radius: 50%;
}
.about-area-v2 .about-img .experience-box h4 {
  color: #fff;
  line-height: 1.4;
}
.about-area-v2 .about-img .experience-box h4 span {
  font-size: 16px;
  display: contents;
}
.about-area-v2 .about-content-box {
  margin-top: -7px;
}
.about-area-v2 .about-content-box p {
  margin-bottom: 30px;
}
.about-area-v2 .about-content-box .counter-wrapper {
  background-color: #fff;
  box-shadow: 0px 8px 25px 0px rgba(174, 184, 198, 0.35);
  padding: 20px 35px;
}
.about-area-v2 .about-content-box .counter-wrapper .counter-column {
  position: relative;
}
.about-area-v2
  .about-content-box
  .counter-wrapper
  .counter-column:last-child:after {
  display: none;
}
.about-area-v2 .about-content-box .counter-wrapper .counter-column:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e6af5d;
}
@media (max-width: 991px) {
  .about-area-v2 .about-content-box .counter-wrapper .counter-column:after {
    display: none;
  }
}
.about-area-v2 .about-content-box .counter-wrapper .counter-item {
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .about-area-v2 .about-content-box .counter-wrapper .counter-item {
    margin-bottom: 30px;
  }
}
.about-area-v2 .about-content-box .counter-wrapper .counter-item .icon {
  margin-bottom: 5px;
}
.about-area-v2 .about-content-box .counter-wrapper .counter-item .icon i {
  font-size: 30px;
  width: 30px;
  height: 30px;
  line-height: 1;
  color: #e6af5d;
}
.about-area-v2 .about-content-box .counter-wrapper .counter-item .content h2 {
  font-size: 22px;
  line-height: 32px;
}
.about-area-v2
  .about-content-box
  .counter-wrapper
  .counter-item
  .content
  p.title {
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-v2
    .about-content-box
    .counter-wrapper
    .counter-item
    .content
    p.title {
    font-size: 14px;
  }
}
.section-title span {
  color: #e6af5d;
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title span:before,
.section-title span:after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #e6af5d;
  vertical-align: middle;
}
.section-title span:before {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .section-title span:before {
    margin-right: 10px;
  }
}
.section-title span:after {
  margin-left: 20px;
}
@media (max-width: 575px) {
  .section-title span:after {
    margin-left: 10px;
  }
}
.section-title h2 {
  margin-bottom: 15px;
  font-size: 44px;
  line-height: 56px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.section-title.section-title-left span:after {
  display: none;
}

 
.section-title h2 {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 50px;
}
.mart{ margin-top:40px;}
.newwsh{
  margin-bottom: 0px;
  font-size: 30px;
  line-height: 40px;
}
.about-text1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #e6af5d;
}
.pb-90 {
  padding-bottom: 90px;
}
.main-btn:hover,
.main-btn:focus {
  background: #0e1b2c;
  color: #fff;
}
.main-btn {
  display: inline-block;
  padding: 14px 45px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: #e6af5d;
  text-transform: capitalize;
  border-radius: 28px;
  transition: all 0.3s ease-out 0s;
}
.main-btn:hover,
.main-btn:focus {
  background: #0e1b2c;
  color: #fff;
}

button {
  border: none;
}
.float-right {
  float: right !important;
}
.team-area-v1 {
  position: relative;
}
.team-area-v1 #shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.team-area-v1 #shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.team-area-v1 .team-item {
  position: relative;
  padding: 0px 40px 40px;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-area-v1 .team-item {
    padding: 0px 30px 40px;
  }
}
@media (max-width: 575px) {
  .team-area-v1 .team-item {
    padding: 0px 30px 40px;
  }
}
.team-area-v1 .team-item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 65%;
  background-color: #fff;
  box-shadow: 0px 12px 30px 0px rgba(174, 184, 198, 0.2);
  z-index: -1;
  transition: all 0.3s ease-out 0s;
}
.team-area-v1 .team-item:hover:after {
  background-color: #ff7554;
}
.team-area-v1 .team-item:hover .team-info h4 {
  color: #fff;
}
.team-area-v1 .team-item:hover .team-info p.position {
  color: #fff;
}
.team-area-v1 .team-item:hover .team-info ul.social-link li a {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.team-area-v1 .team-item:hover .team-info ul.social-link li a:hover,
.team-area-v1 .team-item:hover .team-info ul.social-link li a:focus {
  background-color: #fff;
  color: #ff7554;
}
.team-area-v1 .team-item .team-img {
  margin-bottom: 35px;
}
.team-area-v1 .team-item .team-img img {
  border-radius: 50%;
  width: 270px;
  height: 270px;
  border: 10px solid #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-area-v1 .team-item .team-img img {
    width: 230px;
    height: 230px;
  }
}
@media (max-width: 575px) {
  .team-area-v1 .team-item .team-img img {
    width: 200px;
    height: 200px;
  }
}
.team-area-v1 .team-item .team-info p.position {
  color: #ff7554;
  margin-bottom: 15px;
}
.team-area-v1 .team-item .team-info ul.social-link li {
  margin-left: 7px;
  margin-right: 7px;
}
.team-area-v1 .team-item .team-info ul.social-link li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  line-height: 40px;
  background-color: #f4f4f4;
  color: #fff;
  color: #0e1b2c;
  transition: all 0.3s ease-out 0s;
}
.team-area-v1 .team-item .team-info ul.social-link li a:hover,
.team-area-v1 .team-item .team-info ul.social-link li a:focus {
  background-color: #ff7554;
  color: #fff;
}

.team-area-v2 {
  position: relative;
  z-index: 1;
}
.team-area-v2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 27, 44, 0.75);
  z-index: -1;
}
.team-area-v2 .team-item:hover .team-img .team-overlay {
  visibility: visible;
  opacity: 1;
}
.team-area-v2 .team-item:hover .team-img .team-overlay .team-content {
  transform: translateY(-40px);
}
.team-area-v2 .team-item:hover .team-info {
  background-color: #ff7554;
}
.team-area-v2 .team-item:hover .team-info h3.title,
.team-area-v2 .team-item:hover .team-info p.position {
  color: #fff;
}
.team-area-v2 .team-item .team-img {
  position: relative;
  overflow: hidden;
}
.team-area-v2 .team-item .team-img img {
  width: 100%;
}
.team-area-v2 .team-item .team-img .team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: rgba(14, 27, 44, 0.75);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out 0s;
}
.team-area-v2 .team-item .team-img .team-overlay .team-content {
  transform: translateY(80px);
  transition: all 0.3s ease-out 0s;
}
.team-area-v2
  .team-item
  .team-img
  .team-overlay
  .team-content
  ul.social-link
  li {
  margin-left: 5px;
  margin-right: 5px;
}
.team-area-v2
  .team-item
  .team-img
  .team-overlay
  .team-content
  ul.social-link
  li
  a {
  width: 40px;
  display: block;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #ff7554;
}
.team-area-v2 .team-item .team-info {
  background-color: #fff;
  padding: 30px 25px 25px;
  transition: all 0.3s ease-out 0s;
}
.team-area-v2 .team-item .team-info h3.title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-area-v2 .team-item .team-info h3.title {
    font-size: 18px;
    line-height: 28px;
  }
}
.team-area-v2 .team-item .team-info p.position {
  color: #ff7554;
}

@media (max-width: 991px) {
  .team-details-section .team-item {
    margin-bottom: 40px;
  }
}
.team-details-section .team-item .team-img img {
  width: 100%;
}
.team-details-section .team-item .team-info {
  background-color: #fff;
  padding: 30px 30px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-section .team-item .team-info {
    padding: 30px 15px 40px;
  }
}
@media (max-width: 991px) {
  .team-details-section .team-item .team-info {
    padding: 30px 15px 40px;
  }
}
.team-details-section .team-item .team-info h4 {
  font-weight: 600;
}
.team-details-section .team-item .team-info p.position {
  color: #ff7554;
  margin-bottom: 23px;
}
.team-details-section .team-item .team-info ul.social-link li {
  margin-left: 8px;
  margin-right: 8px;
}
.team-details-section .team-item .team-info ul.social-link li a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #ff7554;
}
.team-details-section .team-item .team-info ul.social-link li a.facebook {
  background-color: #395197;
}
.team-details-section .team-item .team-info ul.social-link li a.twitter {
  background-color: #00a8ff;
}
.team-details-section .team-item .team-info ul.social-link li a.linkedin {
  background-color: #3d83d9;
}
.team-details-section .team-item .team-info ul.social-link li a.pinterest {
  background-color: #d40c17;
}
.team-details-section .team-details-wrapper .box {
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 33px;
}
.team-details-section .team-details-wrapper .box:last-child {
  margin-bottom: 0px;
  border-bottom: none;
  padding-bottom: 0px;
}
.team-details-section .team-details-wrapper .box h3.title {
  margin-bottom: 17px;
}
@media (max-width: 991px) {
  .team-details-section .team-details-wrapper .box h3.title {
    font-size: 24px;
    line-height: 34px;
  }
}
.team-details-section .team-details-wrapper .box p {
  margin-bottom: 20px;
}
.team-details-section .team-details-wrapper .box.bio-box p {
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-section .team-details-wrapper .box.bio-box p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .team-details-section .team-details-wrapper .box.bio-box p {
    font-size: 14px;
  }
}
.team-details-section .team-details-wrapper .box.bio-box p span {
  margin-right: 35px;
  font-weight: 600;
  color: #0e1b2c;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-section .team-details-wrapper .box.bio-box p span {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .team-details-section .team-details-wrapper .box.bio-box p span {
    margin-right: 10px;
  }
}
.team-details-section .team-details-wrapper .box.expertise-box .expertise-item {
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 991px) {
  .team-details-section
    .team-details-wrapper
    .box.expertise-box
    .expertise-item {
    margin-bottom: 40px;
  }
}
.team-details-section
  .team-details-wrapper
  .box.expertise-box
  .expertise-item
  .icon {
  margin-bottom: 15px;
}
.team-details-section
  .team-details-wrapper
  .box.expertise-box
  .expertise-item
  .icon
  i {
  color: #ff7554;
  width: 40px;
  height: 40px;
  line-height: 1;
  font-size: 40px;
}
.team-details-section
  .team-details-wrapper
  .box.expertise-box
  .expertise-item
  .info
  h5 {
  font-weight: 600;
  line-height: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-section
    .team-details-wrapper
    .box.expertise-box
    .expertise-item
    .info
    h5 {
    font-size: 14px;
    line-height: 24px;
  }
}
.team-details-section .team-details-wrapper .box.contact-box .form_group {
  margin-bottom: 30px;
}
.team-details-section
  .team-details-wrapper
  .box.contact-box
  .form_group
  textarea.form_control {
  height: 150px;
  padding-top: 15px;
}
.team-area-v1 {
  position: relative;
}
.light-bg {
  background: #f7f7f7;
}
.pb-90 {
  padding-bottom: 90px;
}
.pt-110 {
  padding-top: 60px;
}
.pt-40 {
  padding-top: 40px;
}
.features-area-v3 {
  position: relative;
  z-index: 1;
  background-color: #e6af5d;
}
.features-area-v3 .section-title span.span {
  margin-bottom: 0;
}
.features-area-v3:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/dotted_circle.png) no-repeat left;
  z-index: -1;
}
.pb-60 {
  padding-bottom: 60px;
}.pb-30 {
  padding-bottom: 30px;
}
.pt-120 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .features-area-v3:before {
    display: none;
  }
}
.features-area-v3 .features-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 991px) {
  .features-area-v3 .features-bg {
    width: 100%;
  }
}
.features-area-v3 .features-bg:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
.features-area-v3 .features-img {
  margin-right: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-area-v3 .features-img {
    margin-right: 0px;
  }
}
@media (max-width: 991px) {
  .features-area-v3 .features-img {
    margin-right: 0px;
  }
}
.features-area-v3 .features-content-box p { 
  margin-bottom: 10px;
}
.features-area-v3 .features-content-box .features-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .features-area-v3 .features-content-box .features-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.features-area-v3 .features-content-box .features-item:last-child {
  margin-bottom: 0px;
}
.features-area-v3 .features-content-box .features-item .chart_1 {
  min-width: 130px;
  max-width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-area-v3 .features-content-box .features-item .chart_1 canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.features-area-v3 .features-content-box .features-item .chart_1 h2 {
  color: #fff;
  font-size: 16px;
}
.features-area-v3 .features-content-box .features-item .chart_1 h2 span {
  font-size: 44px;
  line-height: 10;
}
.features-area-v3 .features-content-box .features-item .info {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .features-area-v3 .features-content-box .features-item .info {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.features-area-v3 .features-content-box .features-item .info h4 {
  color: #fff;
  margin-bottom: 5px;
}
.features-area-v3 .features-content-box .features-item .info p {
  margin-bottom: 0px;
}

/* Counter section css */
.counter-area-v1 {
  position: relative;
  margin-bottom: -130px;
}
.counter-area-v1 .counter-wrapper {
  padding: 60px 60px 30px;
  background-color: #fff;
  box-shadow: 0px 12px 30px 0px rgba(174, 184, 198, 0.2);
  border-radius: 125px;
}
.counter-area-v1 .counter-wrapper .counter-item .icon {
  margin-bottom: 5px;
}
.counter-area-v1 .counter-wrapper .counter-item .icon i {
  font-size: 40px;
  width: 40px;
  height: 40px;
  line-height: 1;
  color: #ff7554;
}

.counter-area-v2 .counter-column:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #e5e5e5;
}
@media (max-width: 991px) {
  .counter-area-v2 .counter-column:after {
    display: none;
  }
}
.counter-area-v2 .counter-column:last-child:after {
  display: none;
}
@media (max-width: 991px) {
  .counter-area-v2 .counter-column .counter-item {
    margin-bottom: 40px;
  }
}
.counter-area-v2 .counter-column .counter-item .icon {
  margin-bottom: 5px;
}
.counter-area-v2 .counter-column .counter-item .icon i {
  width: 40px;
  height: 40px;
  line-height: 1;
  font-size: 40px;
  color: #ff7554;
}

/* Intro section css */
.bebsa-intro-seciton {
  position: relative;
  z-index: 1;
}
.bebsa-intro-seciton:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 27, 44, 0.75);
  z-index: -1;
}
.bebsa-intro-seciton .intro-content .video-popup {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 22px;
  color: #ff7554;
  margin: auto;
  margin-bottom: 40px;
}
.bebsa-intro-seciton .intro-content h2 {
  color: #fff;
}
@media (max-width: 767px) {
  .bebsa-intro-seciton .intro-content h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.timeline_wrap {
  overflow: hidden;
}
#timeline_slider {
  display: flex;
  overflow-x: scroll;
  padding-bottom: 20px;
  transform: translatey(20px);
}
.timeline {
  width: 2px;
  position: absolute;
  background: transparent;
  height: 100%;
  /* left:50%; */
}
.timeline_line {
  position: absolute;
  max-width: 90%;
  right: 0;
  height: 2px;
  top: 118px;
  background: black;
  width: 100%;
}
.timeline_slide {
  min-width: 300px;
  opacity: 1;
  max-width: 10px;
  cursor: grab;
}
.timeline_fadebox {
  position: absolute;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(238 238 238) 100%
  );
  z-index: 9999;
  width: 10%;
  height: 100%;
  left: 0;
  top: 0;
}
.timeline_nav {
  margin: auto;
  position: absolute;
  right: 10%;
  z-index: 99999;
  top: 115px;
  width: fit-content;
}
.timeline_nav button span {
  /*  Keep the user from selecting the chevrons. You could just use an image instead of an icon instead.   */
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 100%;
  pointer-events: none;
  border: 2px solid white;
  font-size: 40px;
  color: #e6af5d;
  background: none;
  border: none;
}

.blueback {
  background: #f2f2f2;
}
.timeline_nav button {
  background: transparent;
  border: none;
}

.timeline_nav button:hover {
  transform: scale(1.1);
}
/* Overlay in case you want to add a background image */
.green_overlay {
  background: #eeeeee;
}

.timeline_dot {
  background: rgb(78, 106, 82);
  width: 20px;
  height: 20px;
  border: 2px solid #e7c568;
  border-radius: 100%;
  padding: 5px;
  margin: 10px auto;
}
.timeline_dot_center {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: white;
}
.timeline_item_content {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.timeline_item_content strong {
  font-size: 18px;
  text-decoration: underline;
  /*color: red;*/
}

.yellow {
  color: #e6af5d;
  font-weight: 800;
}

@media only screen and (max-width: 1200px) {
  .timeline_nav {
    width: 90%;
    z-index: 999999;
    left: 5%;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  .timeline_line {
    min-width: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 10%,
      rgba(255, 255, 255, 1) 90%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .timeline_nav span {
    background: transparent;
  }
}
@media only screen and (min-width: 768px) {
  #timeline_slider {
    padding-left: 10%;
  }
  .timeline_left_line {
    width: 2px;
    background: black;
    left: 10%;
    height: 118px;
    position: absolute;
    top: 0;
  }
  .timeline_header {
    position: relative;
    width: fit-content;
    padding: 0 20px;
    margin-left: 10%;
    font-weight: bold;
  }
  .timeline_top {
    max-width: 90%;
    overflow: hidden;
    padding: 50px 0;
    margin-left: auto;
  }
  .tl_line {
    position: absolute;
    background: black;
  }
  .tl_line_mid {
    width: 100%;
    height: 2px;
    top: 50%;
  }
  .tl_line_left {
    width: 2px;
    height: 400px;
    left: 0;
    top: 50%;
    z-index: 900000;
  }
}

.block-parallax-1 {
  overflow: hidden;
  position: relative;
}
.block-parallax-1 .parallax-bg {
  background-attachment: fixed;
  background-image: url("../img/bg-1.jpg");
  background-position: 0px 0px;
  background-repeat: repeat;
  height: 100%;
  position: absolute;
  width: 100%;
  min-width: 1170px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.block-parallax-1 .md-box {
  padding: 150px 0 150px;
  /*background: rgba(0, 0, 0, 0.75);*/
  position: relative;
  height: 100%;
  overflow: hidden;
}
.block-parallax-1 .md-box h1 {
  color: #fff;
}

.block-parallax-2 .parallax-bg {
  background-image: url("../img/bg-3.png");
}

.block-parallax-3 .parallax-bg {
  background-image: url("../img/bg-1.jpg");
}
.flip-box-back ul {
  font-size: 20px;
  padding-top: 0px;
  overflow: hidden;
  display: flex !important;
  justify-content: center !important;
  line-height: 30px;
  flex-direction: column !important;
}
.flip-box-front1 {
  background: #fff;
  border-radius: 7px 7px 7px 7px;
  overflow: hidden;
  height: 200px !important;
  display: flex !important;
  justify-content: center !important;
  flex-direction: column !important;
  width: 100%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.flip-box-front1 h2 {
  font-size: 23px;
}

.section--large {
  padding: 4em 0 4em 0;
}
.test--csstransforms .headline {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 500ms;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 500ms;
  -moz-animation-fill-mode: both;
  -o-animation-duration: 500ms;
  -o-animation-fill-mode: both;
  animation-duration: 500ms;
  animation-fill-mode: both;
  -webkit-animation-delay: 125ms;
  -moz-animation-delay: 125ms;
  -o-animation-delay: 125ms;
  animation-delay: 125ms;
}
.headline {
  width: 85%;
}
.headline {
  position: relative;
  margin: 5em auto 0 auto;
  width: 92.5%;
  max-width: 1233px;
}
.headline--about {
  margin-top: 2.25em;
}
.headline:before {
  width: 16em;
}
.headline:before {
  display: block;
}

.headline:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  /* display: none;*/
  width: 14em;
  height: 2em;
  background: #252525;
  background: currentColor;
  transform: translateY(-50%);
}
.headline:before {
  width: 16em;
}
.headline__content {
  /* float: right; */
  /*    max-width: 32em;*/
}

.headline__content {
  text-align: center;
}
.headline__title {
  margin-bottom: 0.3em;
  text-align: center;
}
.title-heading {
  font-size: 3rem !important;
  color: #fff;
}
.section--red {
  color: #fff;
  background-color: #d62323;
}
.title-subheading {
  padding-left: 0.125em;
  font-size: 7.125rem;
  color: #fff;
  font-weight: 500;
}
.headline__intro {
  padding: 0 1.25em;
}
.headline__intro {
    font-size: 1rem;
    line-height: 24px;
}
/* .section--red {
  color: #fff;
  background-color: #d62323;
} */
.section--red {
  color: #fff;
  background: url(../img/inner-banner-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}.inner-about {
  color: #fff;
  background: url(../img/inner-banner-about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}.inner-news {
  color: #fff;
  background: url(../img/inner-banner-news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}.inner-team {
  color: #fff;
  background: url(../img/inner-banner-team.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}.inner-csr {
  color: #fff;
  background: url(../img/inner-banner-csr.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}.inner-career {
  color: #fff;
  background: url(../img/inner-banner-career.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}.inner-contact {
  color: #fff;
  background: url(../img/inner-banner-contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.sub_banner1 {
  /* float: left; */
  width: 100%;
  padding: 70px 0;
  background: url(../img/inner-banner-1.jpg);
  background-size: 100% 100%;
  min-height: 495px;
  display: flex;
  align-items: center;
}
.sub_banner1 h3 {
  text-align: center;
  color: #fff;font-size: 35px;
    padding-bottom: 18px;
}
.img-responsive{ width:100%}
.sub_banner1 p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
h1.headline__title span {
  display: block; 
}
.ot-lst {
  background: #dd112b;
  padding: 30px 0;
}
.ot-lst p {
  text-transform: uppercase;
  letter-spacing: 0.125em;
  margin-top: 0;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.ot-lst p a {
  color: #e3e3e3;
  text-decoration: underline;
}
.ot-lst p a:hover {
  color: #fff !important;
  text-decoration: none;
}
.item a {
  width: 100%;
  height: 100%;
}
.ab-icon {
  max-width: 70px;
  max-height: 70px;
  margin-inline: auto;
}

.enquir_wrap {
  float: left;
  width: 100%;
  position: relative;
  background: #fff;
  border-style: solid;
  border-width: 15px 0px 0px 0px;
  border-color: #e6af5d;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 32px 30px 30px 30px;
  box-shadow: 0px -4px 31px 3px rgb(37 56 87 / 22%);
}

.enquir_wrap .sub_header1 {
  text-align: left;
  color: #000;
}

.enquir_wrap .main_header {
  text-align: left;
  color: #e63552;
  font-weight: bold;
  font-size: 28px;
  padding-bottom: 10px;
  margin-top: 0;
}

.enquir_wrap .main_header span {
  color: #000;
}

.enquir_col2 {
  float: left;
  width: 60%;
  position: relative;
  padding: 50px 31px 50px 106px;
}

.enquir_col2 .sub_header1 {
  text-align: left;
}

.enquir_col2 .main_header {
  text-align: left;
  margin-bottom: 10px;
}

.main_parag2 {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 27px;
  margin: 0 0 10px;
}

.feture_col1 {
  float: left;
  width: 50%;
  position: relative;
  padding: 15px;
}

.feture_colw {
  float: left;
  width: 100%;
  position: relative;
  padding: 0 0 0 75px;
}

.feture_colw span {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 0;
  box-shadow: 0 2px 12px 0 rgba(26, 47, 106, 0.2);
  margin-top: 4px;
}

.feture_colw span img {
  margin: auto;
  position: relative;
  display: table;
  top: 50%;
  transform: translateY(-50%);
  max-width: 47px;
}

.feture_colw h3 {
  position: relative;
  font-size: 19px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 4px;
}

.feture_colw p {
  color: #555;
  line-height: 24px;
  margin: 0;
}

.viewmore_b3 {
  width: 190px;
  height: 52px;
  font-size: 13px;
  border-radius: 6px;
  color: #fff;
  border: 2px solid #ef4438;
  background: #ef4438;
  outline: 0;
  margin: 10px auto 0;
  text-transform: uppercase;
  font-weight: 700;
}

.enquir_wrap .form {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #c6c6c6;
  margin-bottom: 8px;
  color: #727272 !important;
  font-size: 16px;
  transition: all 0.4s;
}

.enquir_wrap .form:hover {
  border: 1px solid #555;
}

.enquir_wrap .form:focus {
  color: #fff;
  outline: 0;
  border: 1px solid #555;
}

.enquir_wrap .textarea {
  height: 140px;
  max-width: 100%;
}

.enquir_btn1 {
  padding: 5px 25px;
  background: transparent;
  border: 1px solid #006bb3;
  color: #006bb3;
  font-size: 20px;
}

.enquir_btn1:hover,
.enquir_btn1:focus {
  outline: none;
  border: 1px solid #006bb3;
  background: #fff;
  color: #000;
}

.tab_inner_content h5 {
  font-size: 18px;
  line-height: 32px;
  color: #e6af5d;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0px;
}

.tab_inner_content {
  display: inline-block;
  width: 100%;
}

.tab-content1 ul {
  padding-left: 0px;
}

.tab-content ul {
  padding-left: 0px;
}

.tab_inner_content hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #e6af5d2b;
}

.tab_inner_content ul li i {
  position: absolute;
  left: -10px;
  color: #0d55a6;
  top: 14px;
  font-size: 6px;
}

.tab_inner_content ul {
  padding-left: 10px !important;
}

.apply_btn {
  padding: 10px 15px;
  font-size: 14px;
  margin-top: 0px;
  color: #fff !important;
}

.apply_btn:hover {
  color: #fff;
}
.main_banner_btn {
  padding: 13px 30px;
  font-size: 14px;
  line-height: 1.3333333;
  font-family: Poppins,sans-serif;
  font-weight: 500;
  border-radius: 3px;
  background-color: #0d55a6;
  text-transform: capitalize;
  border-color: #0d55a6;
  outline: 0;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  letter-spacing: .5px;
  -webkit-user-select: none;
  background-image: none;
  border: 1px solid transparent;
  margin: 20px auto;
  color: #fff;
}

.main_banner_btn.info {
  background-color: #e6af5d;
  margin-top: 20px!important;
}

.tab-content1 p{
  padding-top: 9px;
}

.tab-content1 img{

  left: -7px;
    position: relative;
    top: -3px;
}

.custom-file-input::before {
  content: 'Upload Your Resume';
  display: inline-block;
  background: linear-gradient(top,#f9f9f9,#e3e3e3);
  border: 1px solid #727272;
  border-radius: 0;
  padding: 10px 10px;
  outline: 0;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  color: #727272;
  font-size: 10pt;
}


.custom-file-input::-webkit-file-upload-button{visibility:hidden!important;}

.one-one{
    display: block;
    /* margin: auto; */
    width: 18%!important;
    height: auto!important;
    position: relative;
    left: 41%;
    bottom: 9%;
}

.about-area .owl-stage {
  width: 100% !important;
  max-width: 100%;
  flex-wrap: nowrap !important;
  display: flex;
}
.about-area .owl-item {
  width: 100% !important;
}
@media(max-width:1399px){
  .flip-box-front1 {
    height: 150px !important;

}
.ab-icon {
  max-width: 60px;
  max-height: 60px;
}
}
section.h-cus-sec {
    background: url(../img/banner/banner-z2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}
.flip-box-inner-contnt {
  row-gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
 .digicom-slider, .carousel-caption{
  top: 40% !important;
  bottom: -80% !important
}
.newh1{ font-size:18px; padding-top:15px ; text-align:center}
.dgs-slide {
  box-shadow: 0 0 10px #00000020;
  border-radius: 6px;
  padding: 20px;
  margin: 16px;
}
.dgs-content {
  margin-top: 20px;
}
.dgs-icon {
  display: flex;
  justify-content: center;
}
.dgs-content h5 {
  line-height: 28px;
  font-size: 20px;
}
.dgs-slide:hover {
  background: #dd112b;
  transition: .5s;
}
.dgs-slide:hover .dgs-icon img {
  filter: brightness(0) invert(1);
  transition: .5s;
}
.dgs-slide:hover .dgs-content h5 {
  color: #fff;
  transition: .5s;
}
.StoneRailingImg {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-content: center;
  row-gap: 20px;
}
.fancy-box {
  width: 32.55%;
  padding: 15px;
  box-shadow: 0 0 10px #e2e2e2;
  background: #fff;
}
.StoneRailingImg img {
  /* padding: 10px; */
  /* margin: 0 15px 15px 0; */
  width: 100%;
} 
 
@media(max-width:1650px){
  .dgs-content h5 {
    line-height: 28px; 
    font-size: 22px;
    color: #e6af5d;

}
}
@media(max-width:1199px){
 .dgs-content h5 {
    line-height: 28px;
    font-size: 16px;
}
.fancy-box {
  width: 31% !important;
}
}
@media(max-width:991px){
  .fancy-box {
    width: 48% !important;
}
}
@media(max-width:575px){
  .dgs-slide {
    padding: 16px;
    margin: 10px;
}
.fancy-box {
    width: 100% !important;
}
}

@media(max-width:1875px){
  .fancy-box {
    width: 32%;
}
}
.flip-box-inner-contnt p {
    text-align: center;
}
.call-content:hover:before {
  border: 5px solid #000;
  transition: .5s;
  --_i: 100%;
  color: #CC333F;
  transition: .3s, -webkit-mask-size .3s .3s;
}
.call-content:hover .emergency-call-icon{
  background-color: #000;
  transition: 0.5s;
}
.call-content:hover .emergency-call-info h5{
  color: #000;
}
.cl-main:before {
  content: "";
  position: absolute;
  width: 96%;
  height: 92%;
  border: 4px solid  red;
  border-radius: 20px;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cl-main {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
  border-radius: 20px;
}
.con-map {
  display: flex;
  column-gap: 20px;
  width: 100%;
}
.cm-content, .cm-map {
  width: 100%;
}
.contact-img {
  width: 100%;
  height: 100%;
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: right;
}
@media(max-width:575px){
  .con-map {
    column-gap: 0px;
    flex-wrap: wrap;
    row-gap: 20px;
}
}
.box-s{
    background: var(--color-white) !important;
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
    padding: 30px 20px;
    border-top: 4px solid #e4b064;
    margin: 20px 0;
}
.box-s h5{
margin-bottom: 10px;
}
.box-s p{
  margin-bottom: 0px !important;
}

.imh-h1 img{
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
/*      border-radius: 500px 0 0 0;*/
}
.imh-h2 img{
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
/*     border-radius: 0 500px 0 0;;*/
}
.box-s1{
      background: var(--color-white) !important;
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
    padding: 30px 20px;
/*    border-left: 2px inset #e4b064;*/
    margin: 20px 0;
    border-radius: 10px;
/*    border-radius: 500px 0 0 0;*/
}
.box-s2{
         background: var(--color-white) !important;
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
    padding: 30px 20px;
/*    border-right: 2px inset #e4b064;*/
    margin: 20px 0;
    border-radius: 10px;
/*    border-radius: 0 500px 0 0;;*/
}