@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');

:root {
  --theme-color: #000000;
  --theme-color-second: #ff7500;
  --theme-color-third: #000;

  --heading-font: "Poppins", serif;
  --paragraph-font: "Inter", serif;
  --span-font: 'spanist';



  --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: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Inter", 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: 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: 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: 80px;
}
h1 b{
  font-size: 102px;
}
h2 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 600;
}

h3 {
 font-size: 45px;
}

h4{
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 600;

}

h5{}

h6{}


.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: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  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: 0px;
  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: 276px;
}

.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: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--theme-color-second);
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color);
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
  border: 1px solid var(--theme-color);
}
a.call-btn{
  background-color: #1daac6;
  color: #fff;
  display: flex;
  height: 55px;
  width: 55px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
}
.header_menu li a {
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 14px;
  display: inline-block;
  font-weight: 500;
}

.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);
	width: 266px;
}




.navbar li:hover .dropdown-menu{
	padding:0 !important;
}
.navbar li:hover .dropdown-menu a{
	padding: 10px;
    color:#000;
    border-bottom: 1px solid #c1c0bd;
    margin: 0 0 0 0;
}
ul.dropdown-menu li a{
	color: #fff !important;
    background: var(--theme-color-second) !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);
}

#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: 256px;
  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;
}


/* banner */

.banner {
  padding: 105px 0;
}

/* .about-contact */

.about-contact .contact-bg{
  height: 100%;
}


.about-contact .contact-bg h4 {
  color: #000000;
}
.about-contact .contact-bg p {
  margin:0;
}

.about-contact h2{
  color:#000;
}

.about-contact input, .about-contact select, .about-contact textarea{
  padding: 10px;
  color: #767676;
}
.about-contact textarea{
  height: 120px;
}
.info1 .info1-right-content  li {
  display: none;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}


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

/* service-box */

.our-service .service-box{
  height: 100%;
  border: 1px solid #000;
  background: #fff;
  transition: 0.6s;
  color: #000;
  overflow: hidden;
  background: url(../image/white-service.png);
}

.our-service .service-box:hover{
  transition: 0.6s;
  color: #ffffff;
  background: url(../image/service-3.png);
}

.our-service .service-box .img-box{
  width: 70px;
  position: relative;
  margin-bottom: 25px;
}

.our-service .service-box .img-box .show-img{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: 0.6s;
}

.our-service .service-box:hover .show-img{
  
  opacity: 0;
  transition: 0.6s;
}

.our-service .service-box h5{
  font-family: var(--heading-font-bold);
  font-size: 18px;
  
}

.our-service .service-box p{
  font-size: 16px;
  line-height: normal;
}

.our-service .service-box .content{
  margin-bottom: 15px;
}

a.service-btn {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: var(--theme-color-second);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--theme-color-second);
}

a.service-btn i{
  color: var(--theme-color);
}

.our-service .service-box:hover a.service-btn {
  background-color: #fff;
  border: 1px solid var(--theme-color);
  color: #000000;
}

.our-service .service-box:hover a.service-btn i{
  color: var(--theme-color-second);
}

.our-service a.comon-btn{
  width: 14rem;
  font-size: 15px;
}

.our-service h2{
  color: var(--theme-color-second);
}

/* home-sec-bg-2 */

.home-sec-bg-2 {
  padding: 100px 0;
}
/* why-choose */
.why-choose .info-area{
  display: flex;
  gap: 15px;
  align-items: start;
}

.why-choose h3{
  text-transform: uppercase;
  color: var(--theme-color-second);
  font-weight: 600;
}

.why-choose .info-area h4 {
  text-transform: capitalize;
  font-size: 18px;
  color: var(--theme-color-second);
  margin-bottom: 5px;
}

.why-choose .info-area p{
  font-size: 14px;
  line-height: 25px;
  margin: 0;
}


.area-bg a.area-btn{
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  font-weight: 500;
}

.area-bg a.area-btn i {
  color: #ffffff;
  font-size: 15px;
}

/* customer-review */
.customer-review h2{
  color: var(--theme-color-second);
}
.customer-review .owl-card {
  padding: 15px 20px;
  border: 1px solid var(--theme-color-second);
  border-radius: 5px;
  margin-bottom: 10px;
  background: #dddada;
}

.customer-review .owl-card img{
  width: 35px!important;
  margin-bottom: 35px;
}

.customer-review .owl-card .content{
  overflow-y: scroll;
  height: 120px;
  margin-bottom: 35px;
  padding-right: 15px;
}

.customer-review .owl-card .content p{
  font-size: 15px;
  line-height: normal;
}

.customer-review .owl-card .author-name p{
  font-weight: 600;
  font-size: 13px;
 color: var(--theme-color-second);
}

.customer-review .owl-dots .owl-dot span{
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 60px;
  background-color: #0099ff54;
}
.customer-review .owl-dots{
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.customer-review .owl-dots .owl-dot.active span{
  background-color: var(--theme-color-second);
}

.home-sec-4 h2{
  color: var(--theme-color-second);
}

.footer{
  background-color: #0c0c0c;
  padding: 80px 0;
  color: #ced4da;
}

.footer .ft-lofo img{
  width: 55%;
  margin: 0 auto;
}
.footer .ft-lofo{
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.footer .f-list{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  text-transform: uppercase;
  justify-content: center;
  margin-top: 15px;
}

.footer .f-list li a{
  color: var(--theme-color-second);
  font-weight: 600;
}

.footer  h5{
  text-transform: uppercase;
  font-size: 25px;
}

.footer .heading a{
  color: #ced4da;
}

.footer .heading ul li{
  margin-bottom: 15px;
}
.footer .heading ul li a{
  font-size: 15px;
}
.footer .heading .call-info{
  display: block;
  color: #fff;
  font-size: 22px;
}

.footer .heading a{
  font-size: 14px;
}

.footer  a{
  color: #ced4da;
}


.about-company-2 .heading {
  background-color: rgba(255, 255, 255, 0.49);
  padding: 15px 22px;
  border-radius: 5px;
}

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


#contact .contact-address, #contact .contact-phone, #contact .contact-email {
	margin-bottom: 20px;
	padding: 20px 0;
	border: 1px solid #e8e4e4;
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
	margin-bottom: 20px;
	padding: 20px 0;
	border: 1px solid #e8e4e4;
	width: 100%;
  text-align: center;
	height: 100%;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
	margin-bottom: 20px;
	background: #e8e4e4 !important;
	padding: 20px 0;
	border: 1px solid #e8e4e4;
}
#contact .contact-info i {
	font-size: 45px;
	display: inline-block;
	margin-bottom: 9px;
	color: #1d1d1d !important;
}
#contact .contact-info i {
	font-size: 45px;
	display: inline-block;
	margin-bottom: 9px;
	color: #141414;
}
#contact .contact-info .fa-map-marker {
	font-size: 39px;
}

#contact .contact-info h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: #6c6c6c;
	margin: 12px 0 8px;
}

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

#contact form {
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 30px;
	background: #fff;
}

#contact form input, #contact form textarea {
	padding: 16px 14px;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
  outline: none;
  width: 100%;
  border: 1px solid #565656;
}
#contact form select {
	padding: 16px 14px;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
	outline: none;
	width: 100%;
	border: 1px solid #565656;
	background-color: #fff;
	color: #747474;
}

#contact form textarea {
	padding: 16px 14px;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
  outline: none;
  width: 100%;
  border: 1px solid #565656;
  height: 145px;
}

#contact form button {
	background: #121212;
	border: 0;
	padding: 16px 30px;
	color:#fff;
	transition: 0.4s;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 100%;
	font-weight: 500;
}

.map{
  line-height: 0;
}


/* our-blog */

.our-blog .img-box{
  position: relative;
}


.our-blog .img-box .head-date {
  position: absolute;
  width: 120px;
  height: 120px;
  text-align: center;
  box-shadow: var(--shadow-large);
  background-color: #FFF;
  border-radius: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

 .our-blog .img-box .head-date p{
  font-size: 14px;
}
.our-blog .img-box .head-date p span{
  font-size: 17px;
  letter-spacing: 2px;
}

.our-blog .img-box {
  margin-bottom: 15px;
}
.our-blog .blog-box p{
  font-weight: 600;
}
.our-blog .blog-box a{
  color: #1e1e1e;
  font-weight: 600;
}

.blog .date-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.our-blog  ul.pagination {
  justify-content: center;
}
.our-blog .active > .page-link, .our-blog  .page-link.active {
  z-index: 3;
  color: #000000;
  background-color: #f9e8ce;
  border-color: #f9e8ce;
}

.our-blog  .page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid
  var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
  border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-weight: 800;
  color: #000000;
}


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


/* contact-call */

.contact-call .phne{
  display: flex;
  align-items: center;
  gap: 35px;
  color: #fff;
}

.contact-call .phne img{
  width:125px; 
}

.contact-call .phne h6{
  text-transform: uppercase;
  font-size: 22px;
  margin: 0;
}

.contact-call .phne h6 span{
  font-weight: 100;
  font-family: var(--paragraph-font);
 
}

.contact-call .phne a{
  font-size: 55px;
  color: #000000;
  font-family: var(--heading-font);
}


.info1 .info1-right-content {
  background: var(--theme-color-second);
  padding: 25px;
  height: 100%;
  border-radius: 11px;
}

.info1 .info1-right-content  li{
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}

.info1 .info1-right-content  li a{
  color: #000000;
  font-size: 22px;
}


/* .get-in-touch */

.get-in-touch input[type="text"] {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
}
.get-in-touch input[type="tel"] {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
}


.get-in-touch input[type="email"] {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
}

.get-in-touch select {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  outline: none;
  color: #767676;
}

.get-in-touch textarea {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 120px;
  outline: none;
}

.get-in-touch input[type=submit] {
  background-color: var(--theme-color);
  padding: 14px;
  border-radius: 5px;
  width: 100%;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  outline: none;
  font-weight: 600;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}
input[type="radio"] {
  width: 16px;
}

#contact form input[type="radio"] {
  width: 16px;
}

#area a i{
  color: var(--theme-color-second)!important;
}

#area a.area-btn{
  color: #000;
}
.fixed-button {
  display: none;
  position: fixed;
  bottom: 0;
}
.fixed-button a {
  background-color: var(--theme-color-second);
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  padding: 3% 10%;
  display: block;
  text-align: center;
}

.radio-box br{
	display:none;
}

.contfrm p{
	margin:0;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: var(--theme-color);
    padding: 14px;
    border-radius: 5px;
    width: 100%;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
}

/* new css code for single blog page reply */
a.comment-reply-link {
    color: black;
    background-color: white;
    margin: 5px;
    display: inline-block;
    border: 3px solid black;
    padding: 5px;
}
/*  css code for post comment buttn */
input#submit {
    background-color: black;
    color: white;
}