/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: "my-font1";
  src: url(../fonts/Charlotte.otf);
}

:root {
  --theme-color: #000;
  --theme-color-second: #000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 15px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 15px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 52px;
  font-weight: 700;
}

h2 {
  font-size: 46px;
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 70px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

/* navbar */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #8f251c;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #8f251c;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Small Header */
.small {
  display: none;
}

/* Main Header */
.header_menu {
  background: transparent;
}

a.navbar-brand img {
  width: 170px;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 8px;
}

a.comon-btn {
  background: #23385a;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 3px;
  text-transform: uppercase;
  width: 205px;
  text-align: center;
}

a.comon-btn:hover {
  background: #121212;
  color: #fff;
}

a.comon-btn2 {
  background: #8f251c;
  color: #fff;
  display: flex;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 3px;
  text-transform: uppercase;
  width: 205px;
  text-align: center;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

a.comon-btn2:hover {
  background: #121212;
  color: #fff;
}


.header_menu li a {
  color: #000;
  font-size: 14px;
  text-transform: capitalize;
  padding: 28px 17px;
  display: inline-block;
}


.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 10px !important;
}

.call-btn .btom_content p {
  color: #000;
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.call-btn .btom_content p span {
  font-size: 15px;
  letter-spacing: 0px;
  font-weight: 500;
}

.call-btn img {
  width: 25px;
}

/* Banner section */
.banner_sec h1 span {

  color: #8f251c;
}

.banner_sec .banner_heading p {
  font-size: 18px;
  font-weight: 500;
}

.banner_sec h1 {
  color: #23385a;
  line-height: 1;
}

.banner_sec {
  border-bottom: 1px solid #b2b2b2;
  border-top: 1px solid #b2b2b2;
}


.comon-btn2 img {
  width: 17px;
  height: 100%;
}

/* Home Section 1 */
.home_section1 .heading img {
  width: 125px;
  margin-bottom: 16px;
}

.home_section1 h2 span {
  color: #8f251c;
}

.home_section1 h2 {
  color: #23385a;
}

.home_section1 h5 {
  font-size: 21px;
  color: #23385a;
  margin-bottom: 21px;
}

.home_section1 ul {
  margin-bottom: 0;
}

.home_section1 ul li span {
  font-size: 16px;
  font-weight: 600;
  margin-right: 4px;
  color: #8f251c;
}

.home_section1 ul li {
  display: flex;
  align-items: start;
  gap: 3px;
  margin-bottom: 14px;
}

/*  */

.home_section2 h2 span {
  font-size: 148px;
  color: #8f251c;
}

.home_section2 h2 {
  color: #23385a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 58px;
  line-height: 0.9;
}

.home_section2 h3 {
  font-family: "my-font1";
  font-size: 68px;
  color: #23385a;
  margin-bottom: -20px;
}

/*  */
.home_section3 {
  background: linear-gradient(180deg, rgba(132, 44, 41, 1) 0%, rgba(49, 53, 83, 1) 100%);
}

.home_section3 .comon-btn2 {
  width: 300px;
}

/* services_sec */
.services_sec h2 {
  color: #23385a;
}

.services_sec .services_content img {
  margin-bottom: 18px;
  width: 60px;
}

.services_sec .services_content h5 {
  color: #23385a;
  font-size: 19px;
  font-weight: 500;
}

.services_sec .services_content {
  box-shadow: rgba(100, 100, 111, 0.26) 0px 0 6px 4px;
  padding: 32px 16px;
  border-radius: 8px;
  height: 100%;
}

.services_sec .services_content p {
  font-size: 14px;
}

.services_sec .services_content ul li img {
  width: 15px;
}

.services_sec .services_content ul li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* why_choose_sec */
.why_choose_sec .content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 19px;
}

.why_choose_sec .content ul li p {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 14px;
}

.why_choose_sec .content ul li .btom_content h6 {
  font-size: 18px;
  margin-bottom: 7px;
}

.why_choose_sec .content ul li img {
  width: 80px;
}

.why_choose_sec .content.content2 {
  border-right: 1px solid #fff;
  padding-right: 35px;
}

.why_choose_sec .content.content3 {
  padding-left: 15px;
}

.why_choose_sec .comon-btn2 {
  background: #fff;
  color: #000;
}

/* Home Sec 4 */
.home_sec4 h2 {
  color: #23385a;
}

.home_sec4 h3 {
  color: #8f251c;
}

.home_sec4 .rigth_content {
  position: relative;
}

.home_sec4 .rigth_content .btom_content {
  position: relative;
}

.home_sec4 .rigth_content .btom_content img {
  width: 95px;
}

.home_sec4 .rigth_content .btom_content {
  position: absolute;
  bottom: 0;
  left: -20px;
}

.home_sec5 .content ul li {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 23px;
  font-weight: 500;
  color: #23385a;

}

.home_sec5 .content ul li img {
  width: 22px;
}

.home_sec5 .content2 {
  padding-right: 55px;
  border-right: 1px solid #666;
}

.home_sec5 .content3 {
  padding-left: 20px;
}

.home_sec5 .content3 ul li {
  color: #000;

}

.home_sec5 .comon-btn2 {
  width: 300px;
}

.home_sec5 h6 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.home_sec5 .content3 h6 a {
  color: #8f251c;
}

/* home_sec6 */
.home_sec6 {
  padding-bottom: 440px;
  background-position: bottom !important;
}

.home_sec6 h2 {
  color: #23385a;
}

.home_sec6 h3 {
  color: #8f251c;
}

/* FAQ SEC */

.faq_section .accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 6px;
}

.faq_section .accordion-item {
  border: none;
  /* box-shadow: 0px 2px 10px rgb(179 175 175 / 50%); */
}

.faq_section .accordion button {
  position: relative;
  display: flex;
  text-align: left;
  width: 100%;
  padding: 4px 19px;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 400;
  border: none;
  /* background: none; */
  outline: none;
  transition: all 0.6s ease-in-out;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  align-items: center;
}

.faq_section .accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #707070;
}

.faq_section .accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #fff;
  border: none;
}

.faq_section .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.faq_section .accordion button .icon {
  display: inline-block;
  position: absolute;
  background: url(../image/mark-img-icon.png) no-repeat center;
  width: 70px;
  height: 26px;
  right: 0;
  background-size: 26px;
}

.faq_section .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  /* top: 9px;
left: 5px;
width: 10px;
height: 2px; */
  background: currentColor;
}

.faq_section .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../image/mark-img-icon.png);
}

.faq_section .accordion button[aria-expanded="true"] {
  background: #23385a;
  color: #fff;
}

.faq_section .accordion button[aria-expanded="true"] .icon::after {
  background: url(../image/cross-image-icon.png) no-repeat center;
  width: 69px;
  height: 26px;
  right: 0;
  background-size: 26px;
}

.faq_section .accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background: #23385a;
  color: #fff;
}

.faq_section .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.faq_section .accordion .accordion-content p {
  font-size: 15px !important;
  font-weight: 400;
  margin: 0px 21px 21px;
  line-height: 25px;
  text-align: left;
  color: #f0f0f0;
}

/* CONTACT US */

.contact_sec form input {
  width: 100%;
  outline: none;
  border: 1px solid #ebede9;
  border-radius: 6px;
  padding: 15px 13px;
  font-size: 15px;
  color: #000000c2;
  font-weight: 400;
  background: #ebede9;
}

.contact_sec form textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ebede9;
  border-radius: 6px;
  padding: 13px;
  font-size: 15px;
  color: #000000c2;
  font-weight: 400;
  background: #ebede9;
}

/* .contact_sec form select {
  width: 100%;
  outline: none;
  border: 1px solid #000000d6;
  border-radius: 6px;
  padding: 14px 13px;
  font-size: 15px;
  color: #000000c2;
  font-weight: 400;
  opacity: 0.6;
} */

.contact_sec form .form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.contact_sec form button {
  background: #802725;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 16px 0px;
  border-radius: 7px;
  font-weight: 300;
  border: none;
  transition: 0.8s;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0;
}

.contact_sec form button:hover {
  background: #121212;
  color: #fff;
}

.contact_sec .right_img .contact_number h3 {
  font-weight: 600;
  text-transform: uppercase;
}

.contact_sec p {
  color: #747474;
}

.contact_sec .location_content p {
  margin-bottom: 9px;
}

.contact_sec .location_content a {
  color: #747474;
}

.contact_sec .content {
  margin-bottom: 30px;
}

.contact_sec .opening_hours {
  padding-top: 30px;
}

.contact_sec h5 {
  font-size: 21px;
}

.contact_sec .heading a {
  color: #000;
}

.contact_sec h3 {
  margin-bottom: 3px;
  font-weight: 600;
}

.contact_sec .right_content {
  position: relative;

}

.contact_sec .right_content .btom_content {
  padding-left: 29px !important;
  padding: 50px 0;
  border-radius: 15px;
}



/* .contact_sec .right_content .btom_content {
  position: absolute;
  bottom: 22px;
  text-align: end;
  right: 30px;
  transform: translate(0);
} */

.contact_sec .right_content .btom_content p {
  color: #fff;
  line-height: 1.8;
}

.contact_sec .right_content .btom_content .call_btn {
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: start;
}

.contact_sec .right_content .btom_content .call_btn img {
  width: 55px;
  border-right: 1px solid #32cd32;
  padding-right: 17px;
}

.contact_sec .right_content .btom_content .call_btn a {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.contact_sec .right_content .btom_content ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact_sec .right_content .btom_content ul li img {
  width: 19px;
}

.contact_sec .right_content .btom_content ul li a {
  color: #fff;
}

.contact_sec .right_content .btom_content ul {
  margin-top: 28px;
  margin-bottom: 24px;
}

.contact_sec h2 {
  line-height: 1;
}

/* FOOTER SEC */

.footer_bg .lgo_ftr img {
  width: 370px;
}

.footer_bg {
  background: #000000;
  color: #fff;
  padding: 60px 0;
}


.footer_top .content_top_pera {
  padding: 0 0 0 130px;
  color: #fff;

}

.footer_top .container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bbb;
  padding-bottom: 35px;
  margin-bottom: 48px;
}

.ftr_contact ul {
  display: inline-table;
  width: 140px;
}

.ftr_contact h5 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: #000000d9;
}

.ftr_contact ul li a {
  color: #fff;
  display: block;
  margin-bottom: 9px;
}

.ftr_contact ul {
  list-style: none;
  padding: 0;
}

.ftr_contact2 h5 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 26px;
  color: #fff;
}

.ftr_contact2 ul li a {
  color: #fff;
  display: flex;
  margin-bottom: 13px;
  align-items: center;
}

.ftr_contact2 ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.ftr_contact2 ul li i {
  font-size: 19px;
  margin: 0 16px 0 10px;
}

.ftr_contact2 ul li {
  display: flex;
  align-items: center;
}

a.link-ftr {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
  text-decoration: underline;
  letter-spacing: 1px;
  margin-top: 23px;
}

.social_ftr a {
  background: transparent;
  color: #fff;
  display: inline-block;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  border-radius: 50px;
  margin: 0 6px 0 0;
  border: 1px solid #fff;
  height: 40px;
}

/* .social_ftr a:hover {
  background: #fb4100;
} */

.social_ftr {
  margin-top: 10px;
}

.copyright {
  color: #fff;
  margin-top: 40px;
}

.footer_bg .ftr_contact h3 {
  margin-bottom: 18px;
}

/* footer {
  padding: 70px 0px 60px;
} */

footer h3 {
  font-size: 34px;
  font-weight: 600;
}

.footer_bg .comon-btn2 {
  background: #fff;
  color: #000;
}

.footer_bg .ftr_contact {
  padding-right: 37px;
}

/* Inner Banner */
.inner-banner {
  background: #23385a;
}

.inner-banner h1 {
  line-height: 1;
  text-transform: uppercase;
}

/* CONTACT PAGE */

.contact_sec2 .contact-form {
  background: #23385a;
  padding: 43px 18px;
  border-radius: 10px;
  border: 1px solid #23385a;
  height: 100%;
}

.contact_sec2 .contact-form input {
  height: 55px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: rgba(174, 174, 174, 0.21) 0px 0 15px 0px;
  font-size: 15px;
  background: #00000008;
}

.contact_sec2 .contact-form input::placeholder {
  opacity: 1;
  color: #fff;
}

.contact_sec2 .contact-form select {
  height: 55px;
  border-radius: 4px;
  color: #666666;
  border: 1px solid #fff;
  box-shadow: rgba(174, 174, 174, 0.21) 0px 0 15px 0px;
  background: #00000008;
}

.contact_sec2 .contact-form textarea {
  border-radius: 4px;
  color: #666666;
  font-size: 17px;
  border: 1px solid #fff;
  box-shadow: rgba(174, 174, 174, 0.21) 0px 0 15px 0px;
  background: #00000008;
}

.contact_sec2 .contact-form textarea::placeholder {
  opacity: 1;
  color: #fff;
}

.contact_sec2 .contact-info-top h4 {
  color: #171717;
  font-size: 22px;
  margin-bottom: 12px;
}

.contact_sec2 .contact-form button {
  background: #8f251d;
  border: 1px solid #8f251d;
  padding: 14px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  width: 280px;
  transition: all 0.5s ease-in-out;
}

.contact_sec2 .contact-form button:hover {
  background: #000;
  border: 1px solid #000000;
  color: #fff;
}

.contact_sec2 .contact-top {
  background: #fff;
  padding: 33px 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #838383;
}

.contact_sec2 .contact-icon {
  position: relative;
}

.contact_sec2 .contact-info-top a {
  color: #2f2f2f;
  font-size: 16px;
}

.contact_sec2 .contact-info-top p {
  color: #2f2f2f;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 0;
}

.contact_sec2 .contact-icon i {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.contact_sec2 .contact-left-el {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.contact_sec2 .contact-left-el1 {
  margin-bottom: 26px;
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
}

.contact_sec2 .contact-left-el,
.contact-left-el1 a {
  color: #777777;
  transition: all .3s ease-in-out;
}

.contact_sec2 .contact-icon {
  margin-bottom: 15px;
}

.contact_sec2 .contact-left {
  background: #fff;
  padding: 35px 25px;
  width: 100%;
  height: 100%;
}

.contact_sec2 .contact-left-el,
.contact-left-el1 a:hover {
  color: #2e2e2e;
}

.home_map {
  height: 100%;
}

.home_map iframe {
  height: 100%;
  border-radius: 10px;
}

.map {
  line-height: 0;
}

/* CONTACT US PAGE */

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #2e2e2e;
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb a {
  color: #2e2e2e;
}

#inner-banner-heading h1 {
  margin-bottom: 11px;
}

.contact .contact-top {
  background: #23385a;
  padding: 35px 25px;
  width: 100%;
  height: 100%;
  border: 1px solid #23385a;
  box-shadow: 0 4px 16px #dedede;
  border-radius: 10px;
  color: #fff;
}

.contact .contact-icon {
  position: relative;
}

.contact .contact-info-top a {
  color: #dbdbdb;
  font-size: 15px;
}

.contact .contact-info-top p {
  color: #2f2f2f;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 0;
}

.contact .contact-icon i {
  width: 65px;
  height: 65px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  background: #8f251d;
  margin-bottom: 15px;
}

.contact .contact-top .contact-info-top h4 {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
}

.contact .fa.fa-clock-o {
  font-size: 28px !important;
}

.what_we_do_for_you_sec .top_img .btom_content a h5 {
  color: #000;
}

.home_sec6 .img_box h6 {
  font-size: 17px;
}
.dg .home_section2 h3 {
    font-size: 50px;
}
.dg .home_section2 h2 {
    font-size: 34px;
}
.dg .home_section2 h2 span {
    font-size: 60px;
}