:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font:"Roboto", sans-serif;
    --color-black: #000;
    --color-white: #fff;
    --txt-color:#1b163e;
    --color-primary: #892522;
    --color-secondary: #008138;
}
body,html {
    overflow-x: hidden;
}
body {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 1.6;
    color: var(--color-black);
}

* {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 10px;
}

ul,
li,
ol {
    margin-bottom: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.nav-link:focus, .nav-link:hover  {
    color: var(--color-secondary);
}
img {
    max-width: 100%;
}

h1 {
    font-weight: 700;
    font-size: 72px;
    color: var(--txt-color);
}

h2 {
    font-weight: 700;
    font-size: 60px;
    color: var(--txt-color);
}

h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--txt-color);
}

ul {
    padding: 0;
}
.btn {
    border-radius: 40px;
    padding: 14px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    gap: 10px;
    border: 0;
    line-height: 0.8;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
}
.btn-primary:hover,.btn-primary:focus {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: transparent;
}
.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn-secondary:hover,.btn-secondary:focus {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: transparent;
}
.common-gap {
    padding: 65px 0;
}

.cmmn-hdr {
    margin-bottom: 40px;
}

.cmmn-hdr h2 {
    margin-bottom: 0;
}
/* header */
.navbar-expand-md .navbar-nav .nav-link {
padding: 0;
}
.header-top {
    padding: 10px 0;
    background: var(--color-primary);
}
.header-bottom {
    padding: 10px 0;
}
.header-top-otr ,.header-otr{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.header-top-otr p {
    color: var(--color-white);
    margin-bottom: 0;
    font-weight: 500;
}
.header-top-otr ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}
.header-top-otr ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
}
.header-top-otr ul li a {
    color: var(--color-white);
}
.header-top-otr ul li a:hover {
    color:var(--color-secondary);
}
.header.sticky {
    position: fixed !important;
    background: var(--color-white);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    -webkit-animation: slide-down 0.7s;
            animation: slide-down 0.7s;
    padding: 15px 0;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}
.logo-area {
    max-width: 150px;
    min-width: 150px;
    display: inline-block;
}
.navbar-toggler,
.close-icon {
    display: none;
}

.offcanvas-start {
    width: auto;
    border-right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: static;
    display: block;
    visibility: visible;
    background: transparent;
}

.logo {
    max-width: 298px;
    min-width: 298px;
}
.header-otr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 70px;
}
.navbar-expand-xl .navbar-nav .nav-link {
    padding: 0;
}

.navbar-nav {
    gap: 60px;
}
.dropdown-toggle:after {
    border: 0;
    content: '\f107';
    vertical-align: top;
    font-family: "FontAwesome";
    line-height: 1.4;
}
.navbar-nav li a {
    color: var(--color-black);
    font-weight: 500;
    padding-bottom: 0;
    display: block;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    border: 0;
    background: var(--color-white);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 0;
    border-radius: 0;
}
.dropdown-menu li a {
    padding: 12px 20px;
    color: var(--txt-color);
}
.dropdown-menu li a:hover,.dropdown-menu li a:focus {
    background: var(--color-secondary);
    color: var(--color-white);
}
.navbar-nav li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-white);
    bottom: -4px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    left: 0;
}
.navbar {
    padding: 0;
}
.sidebar-top {
    display: none;
}
/* banner */
.banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 100px 0;
}
.banner-content {
    max-width: 605px;
}
.banner-content h5 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-secondary);
}
.banner-content h1 {
    margin-bottom: 20px;
}
.banner-content p {
    font-size: 24px;
    color: var(--txt-color);
    margin-bottom: 0;
    line-height: 1.4;
}
/* services section */
.serv-img {
    margin-bottom: 30px;
    height: 91px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.services-sec p {
    color: #010101;
    margin-bottom: 20px;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
}
.learn-more {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--secondary-font);
    color: var(--txt-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
}
.learn-more:hover {
    color: var(--color-secondary);
}
/* business-capital-sec */
.business-capital-sec {
    background: var(--color-primary);
    position: relative;
    z-index: 1;
}
.business-capital-sec:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/back.png');
    z-index: -1;
}
.business-capital-img {
    overflow: hidden;
   border-radius: 32px;
   margin-bottom: 0;
   aspect-ratio: 7 / 6;
}
.business-capital-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.business-capital-content h2 {
    margin-bottom: 15px;
}
.business-capital-content h2.wh {
    color: var(--color-white);
}
.business-capital-content p {
    color: var(--color-white);
    max-width: 570px;
    margin-bottom: 30px;
}
.business-capital-img-otr {
    position: relative;
    z-index: 1;
}
.shape {
    position: absolute;
    top: -9%;
    left: -6%;
    z-index: -1;
}
/* news sec */
.news-sec {
    background: rgba(137,37,34,0.1);
}
.news-box {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}
.news-img {
    height: 225px;
}
.news-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.news-content {
    padding: 30px 40px;
}
.news-content p {
    color: #2c2c2c;
    margin-bottom: 20px;
    min-height: 154px;
}
.news-content .learn-more {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
/* footer */
.footer {
    background: var(--color-primary);
}
.footer-menu {
    padding: 60px 0 30px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.6);
    padding: 30px 0;
    text-align: center;
}
.footer-logo {
    max-width: 150px;
    min-width: 150px;
    margin-bottom: 15px;
}
.ft-para {
    color: var(--color-white);
    margin-bottom: 0;
    max-width: 335px;
}
.ft-hdr {
    margin-bottom: 25px;
    color: var(--color-white);
}
.ft-menu li a {
    color: var(--color-white);
}
.ft-menu li a:hover {
    color: var(--color-secondary);
}
.ft-menu li {
    margin-bottom: 18px;
    color: var(--color-white);
}
.ft-menu li:last-child {
    margin-bottom: 0;
}
.ft-menu.add-details li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}
.ft-menu.add-details li address {
    margin-bottom: 0;
    max-width: 282px;
}
.social-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
}
.social-menu li a {
    color: var(--color-white);
    font-size: 20px;
}
.social-menu li a:hover {
    color: var(--color-secondary);
}
.ft-menu.after li a {
    position: relative;
    padding-left: 20px;
    display: inline-block;
}
.ft-menu.after li a:after {
    position: absolute;
    content: '\f105';
    left: 0;
    top: 2.5px;
    font-family: "FontAwesome";
    font-size: 12px;
}
.footer-bottom p {
    margin-bottom: 0;
}
.footer-bottom p,.footer-bottom p a {
   color: var(--color-white);
}
.footer-bottom p a {
    text-decoration: underline;
}
.footer-bottom p a:hover {
    color: var(--color-secondary);
}
.footer-bottom p span {
    display: inline-block;
    padding: 0 12px;
}
.marquee span {
    margin: 0 12px;
}
.news-updated {
    background: rgba(137,37,34,0.1);
    padding: 15px 0;
}
/* responsive */
@media only screen and (max-width: 1600px) {
  body {
    font-size: 15px;
  }
  .logo-area {
  max-width: 120px;
  min-width: 120px;
}
.btn,.learn-more {
    font-size: 16px;
}
.banner-content h5 {
  font-size: 22px;
}
h1 {
  font-size: 60px;
}
.banner-content p {
  font-size: 20px;
  max-width: 440px;
}
h2 {
  font-size: 45px;
}
.news-content {
  padding: 30px 30px;
}
.ft-para {
  max-width: 285px;
}
}

@media only screen and (max-width: 1199px) {
    body {
    font-size: 14px;
  }
  .navbar-nav,.header-right {
  gap: 30px;
}
 .btn, .learn-more {
    font-size: 15px;
  }
   .logo-area {
    max-width: 100px;
    min-width: 100px;
  }
   .banner-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }
    h1 {
    font-size: 45px;
  }
  .banner-content h1 {
  margin-bottom: 13px;
}
 .banner-content p {
    font-size: 16px;
 }
 .banner-content {
  max-width: 450px;
}
.common-gap {
  padding: 50px 0;
}
 h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 991px) {
   .header-top-otr p,.header-top-otr li a {
    font-size: 12px;
   }
   .navbar-nav, .header-right {
    gap: 18px;
  }
  .dropdown-toggle::after {
  margin-left: .15em;
  }
  .btn {
  padding: 14px 30px;
  }
  .banner {
    padding: 55px 0;
  }
   .banner-content p {
    max-width: 320px;
  }
  .serv-img {
  margin-bottom: 20px;
  }
  .g-5, .gy-5 {
  --bs-gutter-y: 2rem;
}
.g-5, .gx-5 {
  --bs-gutter-x: 2rem;
}
 h3 {
    font-size: 19px;
  }
  h2 {
    font-size: 25px;
  }
  .business-capital-content p {
  margin-bottom: 20px;
}
.news-img {
  height: 160px;
}
 .news-content {
    padding: 15px;
  }
    .btn, .learn-more {
    font-size: 14px;
  }
  .footer-menu {
  padding: 40px 0 30px;
}
.footer-bottom {
  padding: 20px 0;
}
.ft-menu.after li a {
  padding-left: 14px;
}
.footer-logo {
  max-width: 120px;
  min-width: 120px;
}
}

@media only screen and (max-width: 767px) {
     .sidebar-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px;
  }
  .navbar-nav {
  padding: 20px;
}
    .header-top-otr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .navbar-toggler, .close-icon {
  display: block;
}
.navbar-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
}

.offcanvas-start {
    width: 100%;
    border-right: 1px solid rgba(0, 0, 0, .2);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    position: fixed;
    visibility: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
  .navbar-toggler {
    color: var(--color-white);
    background: var(--color-primary);
    font-size: .9375rem;
    border-radius: 30px;
    font-weight: 600;
    padding: .625rem 0.8rem;
}
 .navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.navbar-collapse {
    display: none;
}
.offcanvas {
    background: var(--color-white);
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 30px;
}
  .navbar-nav, .header-right {
    gap: 10px;
  }
  .header-bottom {
  padding: 5px 0;
}
 .btn {
    padding: 14px 20px;
  }
  .banner {
    background: none;
  }
   .banner {
    padding: 30px 0;
  }
.banner-content {
    max-width: 100%;
    text-align: center;
    padding: 30px 0 0;
  }
    .banner-content p {
    max-width: 100%;
  }
  h1 {
    font-size: 30px;
  }
   .banner-content h5 {
    font-size: 15px;
   }
    .banner-content p {
    font-size: 14px;
  }
  .common-gap {
    padding: 40px 0;
  }
    h2 {
    font-size: 21px;
  }
  .cmmn-hdr {
  margin-bottom: 25px;
}
.services-sec p {
  margin-bottom: 15px;
  max-width: 100%;
}
.learn-more {
    gap: 10px;
}
.business-capital-content {
  text-align: center;
}
.news-content {
    text-align: center;
}
.news-content p {
  margin-bottom: 15px;
  min-height: auto;
}
.news-content .learn-more {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
 .footer-menu {
    padding: 30px 0 30px;
    text-align: center;
  }
    .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
    .ft-para {
    max-width: 100%;
  }
  .ft-hdr {
    margin-bottom: 20px;
    margin-top: 25px;
  }
   .ft-menu.add-details li {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .social-menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.container {
  padding: 0 15px;
}
.news-img {
    aspect-ratio: 15 / 6;
    height: auto;
  }
  .navbar-nav {
    gap: 30px;
  }
  .navbar-nav li a {
    font-size: 18px;
  }
  .close-icon {
  font-size: 30px;
  cursor: pointer;
  }
  .ban-pic {
  aspect-ratio: 4 / 3;
}
.ban-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (max-width: 575px) {
      .logo-area {
    max-width: 80px;
    min-width: 80px;
  }
.navbar-toggler {
    padding: .5rem 0.6rem;
  }
    .btn {
    padding: 12px 15px;
  }
  h1 {
    font-size: 25px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .footer-bottom p span {
  padding: 0 5px;
}
}


.banner_sec {
  width: 100%;
  background-size: cover;
  position: relative;
}


.banner_sec .slick-nav i{
  background: url(../images/slid_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: -9px 0 0 -4px;
  height: 18px;
  z-index: 1;
}
.banner_sec .slick-nav:before, .banner_sec .slick-nav:after {
  background: var(--main-color);
  border: none;
}
  .slider,
  .slide {
    height: 768px;
  }


.slide {
  position: relative;
  transition: 1s;
}

.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.slide .slide__content.slide__content__left {
  left: 0%;
  transform: translate(0%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  letter-spacing: 0px;
}

.slide .slide__content--headings h5 {
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: var(--main-font);
  font-size: 22px;
  font-weight: 500;
  color: var(--white-color);
}

.slide .slide__content--headings .title {
  font-size: 80px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--white-color);
}
.slide .slide__content--headings h4 {
  color: var(--black-color);
  text-transform: uppercase;
  font-weight: 400;
}

.slide .slide__content--headings .title span {
  color: var(--green-color);
}
.slide__content--headings {
  position: relative;
  width: 60%;
}
.slidebottomleft {
  animation: fadeInUp 1.5s both 1.5s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}


/*-------- button Effect-------*/
.red_btn {
  display: flex;
  box-sizing: border-box;
  padding: 10px 26px;
  border-radius: 10px;
  position: relative;
  color: var(--white-color);
  background: var(--btn-color);
  text-transform: capitalize;
  text-decoration: none;
  overflow: hidden;
  border: none;
  align-items: center;
  justify-content: space-between;
}

.red_btn span {
  font-weight: 600;
  position: relative;
  font-family: var(--button-font);
  /* letter-spacing: 1px; */
  color: var(--white-color);
  font-size: 18px;
}
.red_btn .img_right_icon{
  padding: 4px;
  position: relative;
  display: flex;
  transition: all ease-in 0.3s;
  width: 27px;
  height: 27px;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--green-color);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}
.red_btn:hover img{
  transform: rotate(45deg);
  transition: all ease-in 0.3s;
}
.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  background: var(--white-color);
}

.red_btn.white_bg:before {
  background: rgb(255 255 255 / 50%);
}

.red_btn.white_bg span {
  color: var(--black-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}



/*-------- button Effect-------*/
.heading_hp h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
  letter-spacing: 0px;
  margin-bottom: 15px;
}

.heading_hp h6 {
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 15px;
  letter-spacing: 0px;
  font-size: 20px;
  position: relative;
  font-family: var(--sub-font);
}

.heading_hp p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}

.heading_hp.text_white h2,
.heading_hp.text_white p {
  color: var(--white-color);
}

.border_h2 h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.border_h2 h2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: var(--main-color);
}
.left_line{
  width: 60px;
  height: 2px;
  display: inline-block;
  background: var(--main-color);
  vertical-align: middle;
}


.right_box{
  position: relative;
  display: flex;
  justify-content: end;
}
.one_box{
  width: 400px;
  padding: 20px 90px 20px 20px;
  margin-top: -50px;
  display: flex;
  background: var(--btn-color);
  align-items: center;
  border-radius: 15px 0 0 15px;
}

.call_icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.call_icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.call_text h4{
  font-size: 15px;
  font-family: var(--sub-font);
  margin-bottom: 0;
}
.call_text a{
  color: var(--white-color);
  font-size: 25px;
  font-weight: 600;
}


/*---- about ----*/

.about_sec{
  padding: 45px 0 0px 0px;
}
.left_abt_box{
  border: 1px solid var(--btn-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all ease-in 0.3s;
}
.abt_icon_img{
  margin-bottom: 30px;
}
.left_abt_box h4{
  font-size: 24px;
  color: var(--heading-color);
  font-weight: 600;
}

.left_abt_box:hover .abt_icon_img{
  transform: translate(0, 0%);
  -webkit-animation: leftmover 2s infinite alternate;
  animation: leftmover 2s infinite alternate;
}

@-webkit-keyframes leftmover {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20px); }
}
@keyframes leftmover {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20px); }
}

.abt_ul{
  position: relative;
  list-style: none;
  padding-left: 0;
}
.abt_ul li{
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 15px;
}
.abt_ul li:before{
  content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    width: 25px;
    height: 25px;
    background: var(--heading-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/*---- about ----*/

/*---- who we are ----*/

/* gallry page css video  */
.modal-dialog {
  max-width: 1200px;
  margin: 30px auto;
}

.modal-body {
  position: relative;
  padding: 0px;
}

.close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 32px;
  font-weight: normal;
  color: red;
  opacity: 1;
  background: white;
}

.play-btn {
  width: 100px;
  height: 100px;
  background: var(--btn-color);
  border-radius: 50%;
  position: relative;
  display: block;
  /* margin: 40px 0px; */
  box-shadow: 0px 0px 25px 3px #fff;
  user-select: none;
  -webkit-user-drag: none;
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--white-color);
  z-index: 1;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid var(--white-color);
  top: -25%;
  left: -25%;
  background: rgba(198, 16, 0, 0);
}


/*---- services ----*/
.services_sec{
  padding: 80px 0;
}
.ser_padding{
  padding: 15px 15px;
}
.ser_box{
  background: var(--white-color);
  width: 100%;
  display: block;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 3px 16px rgb(0 0 0 / 12%);
  text-align: center;
  border: 1px solid var(--btn-color);
}
.ser_box img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.ser_text span {
  position: relative;
  margin: -50px auto 15px;
  width: 70px;
  height: 70px;
  background: var(--white-color);
  display: block;
  padding: 13px;
  border-radius: 50%;
  border: 3px solid var(--btn-color);
}
.ser_text span img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.ser_text h4{
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
}
.ser_text p{
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
}
.ser_text .readmore{
  color: var(--btn-color);
  font-size: 16px;
  font-weight: 600;
}

.ser_text{
  padding: 15px 0 0;
}
.services_sec .slick-nav i{
  background: url(../images/slid_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: -9px 0 0 -4px;
  height: 18px;
  z-index: 1;
}
.services_sec .slick-nav.next-arrow{
  right: -3%;
}
.services_sec .slick-nav.prev-arrow{
  left: -3%;
}
.services_sec .slick-nav:before, .services_sec .slick-nav:after{
  background: var(--main-color);
  border: none;
}
.services_sec .slick-nav:hover:before, .services_sec .slick-nav:hover:after{
  background: var(--main-color);
}

.services_sec .slick-nav:hover i{
  filter:  brightness(0) invert(1);
}
/*---- services ----*/


/*------ contact page ------*/

.contact_us {
  position: relative;
}

.contact_wrap_main {
  margin: 50px 0px 0;
}
.contact_left{
  margin-bottom: 80px;
}

.contact_left p {
  font-size: 15px;
}

.contact_form {
  margin: 20px 0px;
  padding: 0px 0px 0px 0px;
}

.contact_us .form_group_wrap {
  margin: 0px 0px 15px;
}
.contact_us .form_group_wrap p{
  margin-bottom:5px;
}
.contact_us .contact_form .form-control {
  padding: 10px 10px;
}

.contact_us .contact_form .send-msg .btn {
  background: var(--main-color);
  color: var(--white-color);
  font-size: 16px;
  box-shadow: none;
  outline: none;
  padding: 10px 0px;
  width: 100%;
}

.contact_right {
  position: relative;  
  margin-top: 0px;
}

.contact_info {
  padding: 30px 25px;
  border-bottom: 5px solid var(--btn-color);
  box-shadow: 10px 25px 50px rgb(0 0 0 / 13%);
  border-radius: 10px;
  background: #fff;
  min-height: 135px;
}

.contact_us .con_icon {
  width: 45px;
  height: 45px;
  background: var(--main-color);
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  text-align: center;
  margin-right: 10px;
}

.contact_us .con_text {
  margin-top: 0px;
}

.contact_us .con_text a {
  color: #161723;
  text-decoration: none;
  font-size: 17px;
}

.contact_us .con_text h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.contact_us .con_text p{
  margin-bottom: 0;
}