@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
:root {
  --theme-color: #0170b0;
  --theme-color-second:#020635;
  --theme-color-third: #000;

  --heading-font-bold: 'head-font';
  --heading-font-medium:'head-font-2';
  --heading-font-semibold:'head-font-3';
  --paragraph-font:"Source Sans 3", 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;

}

@font-face {
  font-family:'head-font' ;
  src: url(../fonts/Gilroy-Black.ttf);
}

@font-face {
  font-family: 'head-font-2';
  src: url(../fonts/Gilroy-Medium.ttf);
}
@font-face {
  font-family: 'head-font-3';
  src: url(../fonts/Gilroy-SemiBold.ttf);
}

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:"Source Sans 3", 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;
  font-family: "DM Sans", serif;
}



.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: 80px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 75px;
  margin-bottom: 9px;
}

h2 {
  font-size: 50px;
  font-weight: 600;
}

h3 {
  font-size: 40px;

}

h4{}

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

.header_menu li a {
  color: #000000;
  font-size: 17px;
  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: #020635;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 14px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  border: none;
}

a.btn-dark{
  background-color: var(--theme-color);
}

a.btn-2{
  background-color: var(--theme-color-second);
  color: #000000;
}

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

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #ffffff;
  font-size: 17px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color:#fff;
}

.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: #fff;
  }

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

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header{
  background-color: #020635;
}

#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: #020635 !important;
  z-index: 9999999999999;
}


/* banner */

.banner {
  background-position: bottom!important ;
 
  padding: 200px 0px 120px;
}

.banner h1{
 
    font-weight: 800;
    text-transform: uppercase;
    color: #3371B0;
}

.banner h4 span{

    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    color: #212529;

}


/* about-contact */

.about-contact .contact-box{
  padding: 50px 0;
}

.about-contact input , .about-contact textarea, .about-contact select{
  padding: 10px;
  border-radius: 5px;
}

.about-contact textarea{
  height: 150px;
}
 .about-contact select {

  color: #787878;
}
.about-contact button {
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  border: none;
  background-color: var(--theme-color-second);
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 3px;
}


/* service-box */

.our-service .service-box{
  height: 100%;
  border: 2px solid var(--theme-color-second);
  background: #fff;
  transition: 0.6s;
  color: #000;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
}

.our-service .service-box img{
  border-radius: 15px;
}

.our-service .service-box:hover{
  transition: 0.6s;
  color: #ffffff;
  background:var(--theme-color);
}

.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-size: 22px;
  color: var(--theme-color);
}


.our-service .service-box h3 {
  	font-size: 22px;
  	color: var(--theme-color);
	margin: 0;
    margin-bottom: 15px;
    font-family: "DM Sans", serif;
}

.our-service .service-box:hover h3{
  color: #fff;
}

.our-service .service-box:hover h5{
  color: #fff;
}
.our-service .service-box ul{
  list-style: disc;
  padding-left: 25px;
}

.our-service .service-box ul li::marker {
  font-size: 21px;
  position: relative;
  top: 5px;
}
.our-service .service-box p {
  font-size: 18px;
  line-height: normal;
}

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

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

.our-service .service-box:hover a.service-btn {
  background-color: #fff;
  color: #000000;
}

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

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

.why-choose-1 .info-box h6{
  font-size: 26px; 
  margin-bottom: 10px;
}

.why-choose-1 .info-box h3 {
	    font-size: 26px;
    margin-bottom: 10px;
	    margin: 0;
    font-family: "DM Sans", serif;
	    font-weight: 500;
    line-height: 1.2;
}

.why-choose-1 .info-box {
  gap: 25px;
  align-items: start;
  background: var(--theme-color);
  padding: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
}
.why-choose-1 .w-100{
  border-radius: 10px;
}

.area-sec .comon-btn{
  padding: 8px ;
}


/* home-bg-2 */

.home-bg-2 ul li i {
  color:var(--theme-color);
  font-weight: bold;
}

.home-bg-2 ul li{
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: start;
  gap: 5px;
}

#homearea a.area-btn{
  background: transparent;
  color: var(--theme-color);
}

a.area-btn{
  border-radius: 60px;
  border: 1px solid var(--theme-color);
}

#homearea  a.area-btn:hover{
  background-color: #000000;
  color: #fff;
}

a.area-btn:hover{
  border-radius: 60px;
  border: 1px solid var(--theme-color-second);
  background: transparent;
}




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

.faq-contact .accordion-body {
  padding: 1rem 1.25rem;
  background-color: #dedede;
}
.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;
  
  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: 4px;
  
}

.faq-contact .accordion-item .heading {
  border-left: 2px solid #000;
  padding-left: 24px;
} 



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


.get-in-touch-home {
  padding-top: 415px;
  padding-bottom: 50px;
}

/* footer */

.footer {
  padding: 93px 0;
  background: #020635;
  color: #fff;
}

.footer h6 {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color);
}

.footer .menu-list li a{
  color: #ffffff;
  font-size: 17px;
}

.footer .menu-list li{
  margin-bottom: 10px;
}

.footer .contact-details li a{
  display: flex;
  gap: 9px;
  align-items: start;
}

.footer .contact-details .phone-ft {
  font-weight: 600;
  font-size: 22px;
  color: var(--theme-color);
}

.footer .contact-details li a i{
  color:#fff;
  font-size: 18px;
}

.footer hr{
  color: var(--theme-color);
  opacity: 1;
}

.footer .head-social a{
  display: flex;
  height: 45px;
  width: 45px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  color: #fff;
}
.footer .head-social a:hover{
  background-color: var(--theme-color);
}

/* inner-banner */

.inner-banner h1{
  color: #fff;
  font-family: var(--heading-font-bold);
  font-size: 50px;
}

/* contact page */



/* Contact Page */

.contact-info-content {
  background: var(--theme-color-second);
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

.contact-info-content .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  margin: auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-second);
  font-size: 30px;
}

.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4 {
  color: #fff;
  margin-bottom: 4px !important;
  font-weight: 400;
}

.contact-info-content .icon-info p {
  color: #eee;
  font-size: 16px;
  font-weight: 400;
  word-break: break-all;
}

.contact-info-content .icon-info p a {
  color: #fff;
  font-weight: 400;
}

.contact-info span {
  color: #cb1818;
  font-size: 16px;
  /* font-family: "Pacifico", cursive; */
  font-weight: 300;
  letter-spacing: 1.6px;
}

.contact-page-form h2 {
  color: #111;
  font-size: 40px;
}

.map {
  line-height: 0;
}

.contact-info input {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info select {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.input:focus {
  color: #5F656F;
  background-color: #fff;
  border-color: #5F656F;
  outline: 0;
  box-shadow: none;
}

.contact-info textarea {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info button {
  padding: 15px 0px;
  background: #000000;
  color: #fff;
  border: none;
  letter-spacing: 1px;
  transition: 1s;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
}

.form-check input {
  width: 25px;
}

.form-check {
  display: flex;
  align-items: baseline;
  padding-left: 0;
  /* justify-content: center; */
}


/* pricing */

.pricing .price-box{
  background-color: #e9eef1;
  border: none;
  border-right: 10px solid var(--theme-color);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pricing .price-box h5{
  font-weight: bold;
  font-size: 18px;
  color: var(--theme-color);
}

.pricing .price-box h3 {
  font-size: 20px;
 
  font-weight: bold;
  min-height: 60px;
}

.pricing .price-box p{
  font-size: 15px;
  line-height: normal;
  text-align: justify;
}

.pricing .price-box .content{
  margin-bottom: 25px;
}

/* inner-area */


.inner-area-banner h1{
  font-size: 55px;
  font-family: var(--heading-font-bold);
}

.map iframe{
  width: 100%;
}
.map{
  line-height: 0;
}

.info1{
  color: #fff;
}

.info1 .info1-right-content {
  background: var(--theme-color);
  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: #fff;
  font-size: 22px;
}

/* .inner-banner{
  background-color: #000!important;
} */


.fixed-button {
  display: none;
  position: fixed;
  bottom: 0;
}

.fixed-button a {
  background-color: var(--theme-color);
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  padding: 3% 10%;
  display: block;
  text-align: center;
}



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


.about h2 span{
  color: var(--theme-color);
}

.about h2{
  margin-bottom: 0;
}

.about h2:nth-of-type(2) {
	text-transform: uppercase;
    font-weight: 700;
	margin: 0;
    margin-bottom: 15px;
    font-family: "DM Sans", serif;
	font-size: 1.5rem;
}

.about h4{
  text-transform: uppercase;
  font-weight: 700;
}

.testimonial .rating{
  gap: 5px;
  align-items: center;
}

.testimonial .g-rate{
  font-size: 25px;
}

.testimonial .review-box .item-box{
 width: 100px;
 margin: 0 auto;
 margin-bottom: 25px;
}

.testimonial .review-box ul{
  color: orangered;
}

.testimonial .review-box a{
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #0170b0;
}

.testimonial .author-name p{
  font-size: 14px;
  color: #1e1e1e;
}

.testimonial .owl-nav img{
  width: 35px;

}

.testimonial .owl-nav{
  margin-top: 25px;
  display: flex;
  gap: 25px;
  justify-content: center;
}
.testimonial  .owl-dots{
  display: none;
}



.contact-form-2 #form-action input {
  padding: 13px;
  background-color: #dbdbdb;
  border: 1px solid #686868;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
}

.contact-form-2 #form-action input::placeholder {
  opacity: 1 !important;
  color: #000000;
}

.input:focus {
  color: #5F656F;
  background-color: #f2e0e2;
  border-color: #5F656F;
  outline: 0;
  box-shadow: none;
}

.contact-form-2 #form-action textarea {
  padding: 13px;
  /* color: #000000; */
  background-color: #dbdbdb;
  border: 1px solid #686868;
  border: 1px solid #686868;
  outline: 0;
  color: #000000;
  box-shadow: none;
  width: 100%;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
}

.contact-form-2 #form-action textarea::placeholder {
  opacity: 1 !important;
  color: #000000;
}

.contact-form-2 #form-action button {
  padding: 12px 0px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  letter-spacing: 2px;
  transition: 1s;
  width: 100%;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--theme-color);
}


.contact-form-2 ul li a{
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--theme-color-second);
}

#main_header .call-info {
  border-left: 1px solid #fff;
  padding-left: 15px;
  padding-top: 4px;
}

#main_header .call-info p {
  color: #fff;
  font-size: 15px;
  line-height: 16px;
}

#main_header .call-info a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}


.banner_sec {

	padding: 170px 0 230px;
	
}
.banner_heading h1 span {
	font-weight: 300;
	font-size: 65px;
	display: block;
}

.object-fit {
  object-fit: cover;
}

.area-sec h3 a{
  color: var(--theme-color-second);
}

.area-sec h3 a b{
  color: var(--theme-color);
}

.bg-light{
  background-color: #dedede!important;
}

.why-choose-1 .pic {
  position: relative;
}

.why-choose-1 .call {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 20px;
  top: 510px;
  left: 70px;
}
.why-choose-1 a i{
  font-size: 35px;
  font-weight: 800;
  margin: 0;
  color: #0170b0;
}
.why-choose-1 h4 {
  font-size: 35px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  color: #111;
}

section.inner-area-banner.bg-cover {
  padding: 275px 0;
}

.info1 .box {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  color: #fff;
  font-size: 18px;
}

.info1 .box a{
  font-size: 28px;
  color: #fff;
}

.info1 .box h4{
  margin-bottom: 0;
}


/* Contact Form  */

form.wpcf7-form.init p {
    margin-bottom: 0px;
}


/* Blog Pagination */

.center {
  display: table;
  margin: 35px auto;
}

a.page-numbers {
    color: #000000;
    padding: 9px 16px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
    margin: 0 0px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #0170B0;
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 0px;
    font-size: 18px;
        z-index: 3; 
}


/*Blog Comment Section  */

#respond {

    margin: 0 auto;
}
#respond #reply-title small a{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
        border: none;
}
#respond form p{
        color: #6d6d6d;
      margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color:#0170B0;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
    color: #0f3ca1 !important;
    text-decoration: underline;
    display: inline-block !important;
}
#comments .comment-author a{
    color: #000 !important;
}
#comments .comment-metadata a{
    color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
    color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px !important;
}

.search-form label {
    width: 100%;
}

.page-id-7 .ti-rating.ti-rating-large,
.page-id-7 .ti-rating-text span,
.page-id-7 .ti-rating-text span strong {
    color: #fff !important;
}

.gallery-item.hidden {
        display: none;
}

.comon2-btn{
	background: #020635;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 14px 6px;
    border-radius: 5px;
    width: 13rem;
    text-align: center;
    text-transform: uppercase;
    border: none;
}

.testimonial p {
	margin: 0;
    margin-bottom: 15px;
    font-family: "DM Sans", serif;
	        font-size: 1.5rem;
	    font-weight: 500;
    line-height: 1.2;
}

.area-sec-3 h2 {
	font-size: 40px;
	margin: 0;
    margin-bottom: 15px;
    font-family: "DM Sans", serif;
	font-weight: 500;
    line-height: 1.2;
}

.why-choose-1 .call p {
    font-size: 35px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    color: #111;
	font-family: "DM Sans", serif;
	line-height: 1.2;
}
.why-choose-1 .info-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
	font-family: "DM Sans", serif;
	font-weight: 500;
    line-height: 1.2;
}

.info1 .box p {
    margin-bottom: 0;
	margin: 0;
    font-family: "DM Sans", serif;
	        font-size: 1.5rem;
	    font-weight: 500;
    line-height: 1.2;
}
.service-details-page ul li {
    margin-bottom: 0px;
    list-style-type: disc;
    margin-left: 60px;
}
.service-details-img img{
	    width: 100% !important;
    height: auto !important;
}
.service-details-page {
	background: linear-gradient(273deg, rgba(255, 255, 255, 1) 0%, rgba(235, 255, 255, 1) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 30px 51px;
    padding: 38px 48px;
    border-radius: 20px;
}

@media screen and (max-width: 992px) {
  .service-details-page {
    background: linear-gradient(273deg, rgba(255, 255, 255, 1) 0%, rgba(235, 255, 255, 1) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 30px 5px;
    padding: 38px 14px;
    border-radius: 20px;
}
	.service-details-page ul li {
    margin-bottom: 0px;
    list-style-type: disc;
    margin-left: 17px;
}
}