/* Font Link */
@import url('https://fonts.googleapis.com/css2?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');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #005aff;
  --theme-color-second: #ffffff;
  --theme-color-third: #000;

  /* Root Font */
  --heading-font: "horizon";
  --paragraph-font: "Poppins", sans-serif;
  /* --span-font: 'spanist'; */

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "horizon";
  src: url(../fonts/horizon.otf);
}

@font-face {
  font-family: "";
  src: url();
}

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: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
}

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: 54px;
  line-height: 1.1;
}

h2 {
  font-size: 38px;
  line-height: 1.1;
}

h3 {}

h4 {}

h5 {}

h6 {
  font-size: 16px;
}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-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%;
  }
}


.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: var(--theme-color);
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--theme-color);
  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;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: var(--theme-color-third);
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 5px;
  text-transform: uppercase;
  border-radius: 50px;
  width: 200px;
  text-align: center;
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: var(--theme-color-second);
}

a.comon-btn2 {
  background: var(--theme-color);
  color: var(--theme-color-second);
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 5px;
  text-transform: uppercase;
  border-radius: 50px;
  width: 200px;
  text-align: center;
}

a.comon-btn2:hover {
  background: var(--theme-color-second);
  color: var(--theme-color-third);
}

a.comon-btn3 {
  background: var(--theme-color);
  color: var(--theme-color-second);
  display: inline-block;
  font-size: 15px;
  padding: 12px 0;
  border-radius: 5px;
  text-transform: uppercase;
  border-radius: 50px;
  width: 200px;
  text-align: center;
}

a.comon-btn3:hover {
  background: var(--theme-color-third);
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
}


a.navbar-brand img {
  width: 200px;
}

.header_menu li a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 28px 14px;
  display: inline-block;
  font-weight: 500;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.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;
}

/* **Banner SEction** */
.banner_sec h1 {
  margin-bottom: 12px;
}

.banner_sec h6 {
  margin-bottom: 5px;
}

.banner_sec {
  padding: 225px 0;
}

/* ** Home Section 1** */
.home_sec1 h2 span {
  color: var(--theme-color);
}

.home_sec1 p span {
  font-size: 17px;
  font-weight: 500;
}

/* .home_sec1 {
  padding: 30px 0 80px;
} */
.home_sec1 {
  padding: 60px 0;
}

/* ** Home Section 2** */
.home_sec2 p span {
  font-size: 16px;
  font-weight: 500;
}

.home_sec2 p {
  font-size: 19px;
  line-height: 1.8;
}

/* ** Home Section 3** */
.home_sec3 p span {
  font-size: 21px;
  font-weight: 500;
}

.home_sec3 .content {
  padding: 25px 29px;
  border-radius: 10px;
}

.home_sec3 .content h5 {
  margin-bottom: 6px;
}

.home_sec3 .content p {
  margin-bottom: 11px;
  font-size: 15px;
  line-height: 1.7;
}

.home_sec3 .heading p {
  font-size: 21px;
}

.home_sec3 {
  background-position: bottom !important;
}

/* *********** */
.why_choose .why-left {
  flex: 1;
}

.why_choose .features {
  margin-bottom: 20px;
}

.why_choose .feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.why_choose .feature img {
  width: 60px;
  height: 60px;
}

F .why_choose .feature h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.why_choose .feature p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.why_choose .extra-text {
  font-size: 14px;
  color: #444;
  margin: 20px 0;
}

.why_choose .why-right {
  flex: 1;
  text-align: right;
}

.why_choose .why-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.why_choose h4 {
  margin-bottom: 5px;
  font-size: 20px;
}

/* ******* */
#home_sec1 {
  padding: 65px 0;
}


/* TESTIMONIAl SEC */

.testimonial .test-mat img {
  width: 45px !important;
  text-align: end;
  margin-left: auto !important;
  margin-bottom: 30px;
  display: block;
}

.testimonial .test-mat ul {
  gap: 6px;
  color: #fe8a02;
  margin-bottom: 0;
}

.testimonial .test-mat {
  background: #f7f7f9;
  padding: 39px 20px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid #5a6190;
}

.testimonial .owl-dots {
  display: none;
}

.testimonial .owl-nav img {
  width: 25px;
}

.testimonial .owl-nav {
  position: relative;
}

.testimonial .owl-prev {
  position: absolute;
  left: -60px;
  top: -220px;
}

.testimonial .owl-next {
  position: absolute;
  right: -60px;
  top: -220px;
}

.testimonial .test-mat p span {
  font-size: 15px;
  font-style: italic;
  line-height: 31px;
  font-weight: 400;
  margin-bottom: 7px;
  display: inline-block;
}

.testimonial .test-mat .btom_content h6 {
  font-size: 15px;
}

/* CONTACT SEC */

.contact_us .contact_form {
  /* background: #fff; */
  /* border-radius: 10px; */
  padding: 0 25px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.contact_us .contact_form input {
  width: 100%;
  padding: 15px;
  outline: none;
  border-radius: 4px;
  border: 1px solid #919191;
}

.contact_us .contact_form input::placeholder {
  font-size: 16px;
  opacity: 1;
}

.contact_us .contact_form textarea {
  width: 100%;
  padding: 11px;
  outline: none;
  border-radius: 4px;
  border: 1px solid #919191;
}

.contact_us .contact_form textarea::placeholder {
  font-size: 16px;
  opacity: 1;
}

.contact_us .contact_form button {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--theme-color);
  background: var(--theme-color);
  color: #fff;
  transition: 0.8s;
  font-size: 16px;
}

.contact_us .contact_form button:hover {
  border: 1px solid #000000;
  background: #000000;
  color: #fff;
  transition: 0.8s;
}

.contact_us .heading h3 {
  margin-bottom: 18px;
}

.contact_us .heading p {
  margin-bottom: 10px;
}

.contact_us .heading ul li {
  font-size: 17px;
  margin-bottom: 10px;
}

.contact_us .heading ul li a {
  color: #fff;
}

.contact_us .heading {
  padding-top: 36px;
}

.contact_us {
  background-position: bottom !important;
  border-bottom: 3px solid #fff;
}

.contact_us .contact_form h3 {
  font-size: 36px;
}

.contact_us .heading h4 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 7px;
  margin-top: 22px;
  font-size: 20px;
}

.contact_us .heading h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 48px;
}


/* BLOG PAGE STRAT */

.blog_page {
  color: #000;
}

.blog_page .center {
  text-align: center;
  margin-top: 40px;
}

.blog_page .pagination {
  display: inline-block;
}

.blog_page .pagination a {
  color: #000000;
  float: left;
  padding: 6px 14px;
  text-decoration: none;
  transition: background-color 0.5s;
  border: 1px solid #ddd;
  margin: 0 4px;
  font-size: 18px;
}

.blog_page .pagination a.active {
  background-color: #e25e1e;
  color: #ffffff;
  border: 1px solid #e25e1e;
}

.blog_page .pagination a:hover:not(.active) {
  background-color: #ddd;
}

.blog_page .service_content h6 {
  margin-top: 7px;
  color: #000;
  /* font-weight: 500; */
  font-size: 18px;
  line-height: 1.4;
  font-family: var(--paragraph-font);
}

.blog_page .service_content p {
  color: #404040;
}

.blog_page .service_by p {
  margin-bottom: 0;
}

.blog_page .service_by p span {
  color: #000;
}

.blog_page .service_by {
  display: flex;
  align-items: center;
  gap: 25px;
}

.blog_page .service_content {
  box-shadow: rgba(0, 0, 0, 0.24) 1px 2px 13px 0px;
  border-radius: 10px;
  padding: 10px;
}

.blog_page .service_content img {
  border-radius: 10px 10px 0px 0px;
}

.blog_page .blog_content {
  padding: 0;
  text-align: center;
}

.blog_page .blog_content .read_more {
  text-transform: uppercase;
  color: #e25e1e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 6px;
}

.blog_page .blog_content .read_more i {
  font-size: 19px;
}

.blog_page .blog_content .read_more:hover {
  letter-spacing: 2px;
}

.blog_page .blog_page h2 {
  font-weight: 500;
}

.blog_page .heading p {
  margin-bottom: 0;
}

.blog_page .service_content .top_img {
  border-radius: 7px;
  overflow: hidden;
  transition: 0.8s;
  margin-bottom: 14px;
}

.blog_page .service_content .top_img img {
  transform: scale(1);
  transition: 0.8s;
}

.blog_page .service_content:hover .top_img img {
  transform: scale(1.1);
  transition: 0.8s;
}

.blog_page .service_content span {
  font-size: 14px;
  color: #656565db;
  font-weight: 400;
}

.blog_page h2 {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--theme-color);
}


/* FOOTER SEC */

.footer_bg .lgo_ftr img {
  width: 220px;
}

.footer_bg {
  background: #000000;
  color: #cecece;
  padding: 80px 0;
}

.footer_top .content_top_pera {
  padding: 0 0 0 130px;
  color: #dbdbdb;

}

.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: #dbdbdb;
  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: var(--theme-color);
  font-family: var(--paragraph-font);
}

.ftr_contact2 ul li a {
  color: #dbdbdb;
  display: flex;
  margin-bottom: 13px;
  align-items: center;
  gap: 8px;
}

.ftr_contact2 ul {
  padding: 0;
  list-style: none;
}

.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: #ffffffe3;
  color: #000;
  display: inline-block;
  width: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 22px;
  border-radius: 50px;
  margin: 0 6px 0 0;
}

.social_ftr a:hover {
  background: var(--theme-color);
  color: var(--theme-color-second);
}

.social_ftr {
  margin-top: 10px;
}

.copyright {
  color: #dbdbdb;
  margin-top: 40px;
}

/* footer {
  padding: 70px 0px 60px;
} */

footer h3 {
  font-size: 34px;
  font-weight: 600;
}


/* inner_banner */
.inner_banner a {
  color: var(--theme-color);
}

.inner_banner {
  background: #000;
  padding: 99px 0 20px;
  color: #fff;
}

.inner_banner h1 {
  margin-bottom: 3px;
  font-size: 48px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.main-sec .heading a {
  color: var(--theme-color);
}

.main-sec h4 {
  font-size: 21px;
  /* margin-bottom: -25px; */
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 5px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* CONTACT US PAGE */

.contact .heading {
  text-align: center;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
  /* background: #e8e4e4 !important; */
  padding: 38px 0 27px;
  border: 1px solid #e8e4e4;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 9px 5px rgba(0, 0, 0, 0.08);
}

#contact .contact-info {
  text-align: center;
  color: #000;
}

#contact .contact-info .fa-map-marker {
  font-size: 39px;
}

#contact .contact-info h3 {
  text-transform: capitalize;
  color: #272727;
  margin: 22px 0 0;
  font-size: 17px;
  margin-bottom: 6px;
  text-transform: capitalize;
}

#contact address {
  margin-bottom: 16px;
  font-style: normal;
  line-height: inherit;
  color: #202020;
  font-weight: 400;
}

#contact .contact-info i {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--theme-color) !important;
}

#contact .contact-info .fa-envelope {
  font-size: 32px;
}

#contact .contact-info a {
  color: #202020;
  font-size: 15px;
}

#contact .con-form form input,
#contact .con-form form textarea {
  padding: 15px 8px;
  border-left: transparent;
  border-right: transparent;
  border-top: transparent;
  border-bottom: 1px solid #000;
  box-shadow: none;
  font-size: 15px;
  outline: none;
  width: 100%;
}

#contact .con-form form input {
  color: #000;
}

#contact .con-form form label {
  color: #00000080;
}

#contact .con-form form button[type="submit"] {
  background: #000;
  border: 0;
  padding: 16px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
}

#contact .con-form .contact-location .timing {
  gap: 10px;
  display: grid;
}

#contact .con-form form .form-btn-grp {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#contact .con-form a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

#contact .con-form .form-info {
  box-shadow: 1px 2px 35px 7px rgba(0, 0, 0, 0.11);
  padding: 30px 40px;
  border-radius: 6px;
}

#contact .con-form {
  padding: 20px 0px 0;
}


/* MAP SEC*/

.map {
  line-height: 0;
}

.map iframe {
  border-radius: 10px;
}

.why-right video {
  border-radius: 25px;
  height: 100vh;
}

.gallery_sec img {
  height: 280px;
  object-fit: cover;
}

/* faq-content */

.faq-contact .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;

}

.faq-contact .accordion-item {
  margin-bottom: 0;
  border-radius: 0px;
  overflow: hidden;
}

.faq-contact .get-intouch {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 24px;
  border: 1px solid #000;
  margin: 0 55px;
}

.faq-contact .get-intouch input {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
}

.faq-contact .get-intouch textarea {
  background-color: #e9e9e9;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 120px;
}

.faq-contact .get-intouch button {
  background-color: #001a32;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  color: #fff;
  text-transform: uppercase;
}

.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  font-size: 18px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: none;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  border-bottom: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  font-family: var(--paragraph-font);
  /* font-family: "Inter", sans-serif; */
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
  border-bottom: 1px solid #000 !important;

}

.faq-contact .accordion-body {
  padding: 0;
  padding-bottom: 20px;
}

.faq-contact .accordion-item p {
  margin-bottom: 0;
}

.faq-contact .accordion-button:focus {
  z-index: 3;
  border-color: none !important;
  outline: 0;
  box-shadow: none !important;
}

/*03.11.2025  */
form.wpcf7-form.init p {
    margin-bottom: 0;
}
.form-btn-grp p{
	width: 100% !important;
}

.inner-blog-left-sec .inner-blog-comment form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment #submit {
  color: #ffffff !important;
  background-color: #000 !important;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment #submit:hover {
  background: #005aff !important;
  border: 1px solid #005aff;
  color: #000;
  transition: 0.5s;
}
input#wp-comment-cookies-consent {
    width: 40px;
}