
:root {
  --theme-color: #173f84;
  --theme-color-second: #FFAA17;
  --theme-color-third: #000;

  /* --heading-font: "Urbanist", sans-serif;
  --paragraph-font: "Urbanist", sans-serif;
  --span-font: "Oswald", sans-serif; */


  --border-radius-small: 3.2px;  /* 0.2rem */
  --border-radius-base: 8px;   /* 0.5rem */
  --border-radius-large: 16px; /* 1rem */

  --transition-duration: 0.3s;
  --transition-timing-function: ease-in-out;

  --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);
}
a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
  display: inline-block;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom:15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}
.span-font{
  font-family: var(--span-font);
}
p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 17px;
}

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: 65px;
}
h2 {
  font-size: 58px;
  font-weight: 600;
}

h3 {
  font-size: 43px;
  font-weight: 600;
}

h4 {
  font-weight: 600;
  font-size: 25px;
}

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

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

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

/* 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: 70px;
  right: 20px;
  width: 50px;
  height: 50px;
  background:var(--theme-color-second);
  border-radius: 25px;
  text-align: center;
  border: 2px solidvar(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}
.m-backtotop.active {
  bottom: 70px;
  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: 70px;
  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;
}

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


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
  position: relative;
  top: -18px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}
.header_menu li a:hover{
  color: var(--theme-color-second);
}
.hd_info {
  display: flex;
  align-items: center;
gap: 10px;

flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #000000;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 15px;
}
a.comon-btn:hover{
  background: var(--theme-color-second);
  color: #fff;
}

a.btn-white{
  background: #fff;
  color: #1e1e1e;
}
.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: capitalize;
  padding: 16px 19px;
  display: inline-block;
  font-weight: 500;
  border: none!important;
  font-family: var(--span-font);
}
.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);
  border: none!important;

  
}
@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);
  border: none!important;

}

.dropdown:focus-visible, .dropdown a:focus-visible{
 outline: none!important;

}

#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: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
	top: -9px !important;
}
.link-sm-2{
  position: relative;
}

.sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
  }
  .sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
  }

.fixed-btn{
  display: none;
}
a.call-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}

a.call-btn img{
  width: 45px;
}
a.border-btn {
  border: 1px solid var(--theme-color-second);
  background: transparent;
}

.top-header {
  padding: 5px 0 0;
}
.top-header ul {
  display: flex;
  justify-content: end;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.top-header ul li a{
  color: #1e1e1e;
  font-weight: 600;
}

.top-header ul li a span{
  color: #ef762f;
}

.know-about .heading {
  padding: 45px 25px;
  background-color: #ffffffd1;
  border-radius: 12px;
}

.know-about a.call-btn{
  border-radius: 600px;
}
.know-about .heading {
  text-align: center;
}

.know-about .heading .hd_info{
  justify-content: center;
}
.know-about .heading h2 {
  color: #ef762f;
  text-shadow: 2px 1px 1px #fff;
}
.know-about .heading h5{
  margin: 0;
}



.faq-contact .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: var(--theme-color-second);
  box-shadow: none;
  border: none !important;
}

.faq-contact .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
}

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

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

.faq-contact .accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-align: start;
  background:  var(--theme-color-second);
  color: #000000;
  border: none;
}

.faq-contact .get-intouch button:hover {
  background-color: #000;
  color: #fff;
}

.faq-contact .accordion-item h2 {
  line-height: 22px;
  font-size: 18px;
}

.faq-contact .accordion-item p {
  color: #000000;
  font-weight: 600;
  padding-left: 24px;
  border-left: 2px solid #000;
}

.faq-contact .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  padding-top: 0;
}

.faq-contact .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 19px 20px;
  font-size: 17px;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #e7e7e7;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}

footer{
  padding: 80px 0 0;
}
footer .contact-info li a {
  display: flex;
  gap: 5px;
  align-items: self-start;
  color: #7d7d7d;
  font-size: 16px;
}

footer .contact-info li {
  margin-bottom: 10px;
}

.our-blog .blog-box a {
  color: #1e1e1e;
  font-weight: 600;
}



.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 19px 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;
}


/* 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;
  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);
}


/* about-page-1 */

.about-page-1 h5{
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}


/* about-page-2 */

.about-page-2 h3{
  color: var(--theme-color-second);
}



.inner_service_sec4 {
  background: url('../image/inner-service-bg.jpg') no-repeat center;
  background-size: cover;
}

.inner_service_sec4 .heading {
  padding: 85px 20px;
  text-align: center;
  background-color: #1c1c1c;
  color: #fff;
}

.inner_service_sec4 {
  background: url('../image/inner-service-bg.jpg') no-repeat center;
  background-size: cover;
}

.inner_service_sec4 .heading {
  padding: 85px 20px;
  text-align: center;
  background-color: #173f84;
  color: #fff;
}
header#main_header {
  position: relative;
  z-index: 999999;
  background: #fff;
}



/* contact page */

.contact-info .info-box {
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 25px 20px;
	text-align: center;
  background-color:var(--theme-color);
}
.contact-info .blue {
	background-color:var(--theme-color-second);
	text-align: center;
}
.contact-info .dark-blue {
	background-color:var(--theme-color);
	text-align: center;
}

.contact-info .info-box i {
	font-size: 35px;
}
.contact-info h4 {
  font-size: 24px;
  color: #ffff;
}
.contact-info a{
  color: #fff;
  word-break: break-all;
}


.contact  input[type="text"] {
  padding: 11px;
 
  border-radius: 10px;
}
.contact  input[type="email"] {
  padding: 11px;
 
  border-radius: 10px;
}
.contact  textarea {
  padding: 11px;
 
  border-radius: 10px;
  height: 110px;
}

.contact   button {
  padding: 11px;
  border: none;
  border-radius: 10px;
  background-color: #ffaa17;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
}

a.btn-black{
  background-color: #111214;
  color: #fff;
}