@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Oswald:wght@200;300;400;500;600;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;1,700&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Oswald', sans-serif;
  text-shadow: 0px 5px 8px #686464;
  font-size: 122px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 62px;
  line-height: 1;
  color: #f1c055;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
    padding: 26px 0 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  /* z-index: 1000; */
  list-style: none;
  padding: 15px 0px;
  margin: 0;
  text-align: left;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 30px;
    font-size: 17px;
}





.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #f1c055;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-item.active img {
    width: 100%;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/


header.main_haider {
    position: absolute;
    width: 100%;
    z-index: 999;
    background: #00000096;
    backdrop-filter: blur(3px);
    padding: 20px 0;
}

/*top-bar*/

.top-contact a{
  display: flex;align-items: center;
  justify-content: space-between;
}
.top-contact a:first-child{
  margin-right:25px;
}
.top-contact a h5 {
    font-size: 20px;
    line-height: 1.3;
    font-family: 'Raleway';
    font-weight: 400;
    color: white;
}
.top-contact a p{
    font-size: 15px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: white;
}
.top-contact a > span i{
  color: #f1c055;
  font-size: 20px;
  transition: 0.3s all;
}
.top-contact a > span{
   margin-right: 10px;
   position: relative;
   width: 40px;
   display: flex;
   justify-content: center;
   transition: 0.3s all;
}
.top-contact a > span::before{
  position: absolute;
  content: "";
  background: orange;
  border-radius: 0px 0px 25px 25px;
  top: -20px;
  margin: auto;
  height: 0;
  width: 115%;
  z-index: -1;
  transition: 0.3s all;
}
.top-contact a:hover span::before{
  height: 65px;

}
.top-contact a:hover span{
  background: white;
  padding: 10px;
  border-radius: 50%;
}
.top-contact a:hover span i{
  color: #2250a8;
}
/*top-bar*/

/*menusec*/
a.header-logo.position-absolute {
    top: 20px;
}
.header-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: white;
    color: #a7161c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 3px;
    transition: 0.3s all ease-in-out;
}
.header-social a:hover{
  transform: rotate(360deg);
}
.text-orange{
  color: #f1c055;
}
.text-blue{
  color: #a7161c;
}
/*menusec*/

/*banner*/
.bg-blue{
  background: #a7161c;
}
.bg-orange{
  background: #f1c055;
}
.banner_text > span {
    background: #f1c055;
    color: #a7161c;
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    padding: 15px 40px;
    margin-bottom: 15px;
    display: inline-block;
}
.btn-theme{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    height: 45px;
    border-radius: 25px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    transition: 0.4s ease-out;
}

.btn-theme.bg-orange:hover{
  background: #cd6000;
  box-shadow: 0px 0px 12px white;
  color: white;
}
.btn-theme.bg-blue:hover{
  background: #df1e26;
  box-shadow: 0px 0px 12px white;
  color: white;
}
.btn-theme.bg-white.text-blue:hover{
  background: #a7161c !important;
  color:white !important;
  box-shadow: 0px 0px 12px white;
}
/*banner*/


/*after-banner-sec*/
.after-ban-box{
  text-align: center;
  border-radius: 25px;
  box-shadow: 0px 0px 12px lightblue;
  padding: 50px 20px;
  background: white;
  user-select: none;
}
.after-ban-box:hover{
  background: #a7161c;
}
.after-ban-box:hover img{
  filter: brightness(7);
}
.after-ban-box img{
  filter: invert(18%) sepia(75%) saturate(3543%) hue-rotate(346deg) brightness(71%) contrast(98%);
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 25px;
}
.after-ban-box h4{
  font-size: 35px;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}
section.after-banner {margin-top: -80px;position: relative;}
/*after-banner-sec*/

/*about-sec*/
img.abt-back {
    position: absolute;
    z-index: -1;
    width: 60%;
    height: 100%;
    top: 0;
    left: -7%;
    object-fit: contain;
}
.ptb-100{
  padding: 100px 0;
}
.abt-sec .container-fluid {
    padding-left: 10%;
}
.abt-img {
    float: right;
    width: 55%;
    height: 700px;
    overflow: hidden;
}
.abt-img:hover img{
  transform: scale(1.1);
}
.abt-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 1.5s ease-out;
}
.abt-content h5 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}
.abt-content p {
    width: 40%;
}
/*about-sec*/

/*service-sec*/
img.service-back {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.service-sec h2{
    font-size: 92px;
    line-height: 1;
    font-weight: 400;
}
.ser-img-box {
    width: 114%;
    z-index: 1;
    height: 400px;
    position: relative;
}
.ser-img-box > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.best-rates {
    background: #a7161c;
    width: 150px;
    bottom: -15%;
    left: -10%;
    position: absolute;
    color: white;
    padding: 20px;
    display: inline-block;
}
.best-rates h5{
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
}

.service-slider-box{
  background-image: url("../images/service-slider-back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 50px 50px 30%;
  filter: invert(18%) sepia(75%) saturate(3543%) hue-rotate(346deg) brightness(71%) contrast(98%);
}
.service-slider {
    margin-top: 30%;
}
.ser-name > span {
    font-size: 50px;
    width: 70px;
    line-height: 1;
    font-weight: 600;
    color: white;
    margin-right: 10px;
}
.ser-name h4{
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  margin-bottom: 0;
}
.ser-name:hover span, .ser-name:hover h4{
  color: #f1c055;
}
.service-slider-box .ser-name{
    margin: 20px 0;
}
/*service-sec*/

/*CLIENT FEEDBACK*/

.client_main_slider{
  border: 12px solid #a7161c;
  padding: 40px;
  width: 70%;
  margin-left: auto;
}
.client_main_slider .slick-list {
    overflow: visible;
}
.client_other_slider .slick-active {
    opacity: 1;
}
.clt_img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40%;
}
.client_one h3{
  font-size: 27px;
  margin-bottom: 30px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #a7161c;
}
.client_one p{
  font-size: 16px;
  font-weight: 500;
  color: #a7161c;
}
.clt_cont{
  padding: 50px 0 50px 70px;
}
.clt_cont > i{
  font-size: 80px;
  color: red;
  position: absolute;
  top: 16%;
  left: 20%;
}
.client_one{
  
 /* padding: 100px 100px 100px 300px;*/
  position: relative;
}
/*.client_one img{
  position: absolute;
  top: 10%;
  left: -30%;
}*/
.client_name_img{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.clients_feed_heading {
    padding-left: 20px;
    position: relative;
}
.clients_feed_heading::before{
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  background: #a7161c;
}
.client_img{
  margin-right: 15px;
  width: 35%;
}
.client_img img{
  width: 80px;
  height: 80px;
  border-radius: 50px;
  object-fit: cover;
}
.client_name h5{
  font-size: 22px;
  font-family: 'Raleway';
  color: #a7161c;
  font-weight: 500;
}
.client_txt p{
  font-weight: 500;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clients_feed_heading h2 {
    text-transform: uppercase;
}
.clt_img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.client_remaining {
    padding: 0px 20px;
}
.clients_feed_heading h6 {
    font-size: 16px;
    color: #a7161c;
    font-family: 'Raleway', sans-serif;
}
/*client-feedback*/


/*offer-sec*/
.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a7161cb3;
}
section.offer-sec{
    background-image: url(../images/offer-back.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 20%;
}
.offer-sec h3 {
    font-size: 38px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: #f1c055;
    display: flex;
    align-items: end;
    min-height: 80px;
}
.offer-sec p.text-white {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 40px;
}
a.be-client-btn {
    color: #f1c055;
    text-decoration: underline;
    font-weight: 600;
    font-size: 18px;
}
/*offer-sec*/

/*footer*/
img.foot-chart {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    z-index: -1;
}


.foot-social a {
    margin: 0 18px 0 0;
    font-size: 20px;
}

.foot-social a i.fab.fa-twitter {
    color: #00b9e6;
}

.foot-social a i.fab.fa-facebook-f {
    color: #0080ff;
}

.foot-social a i.fab.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


ul.footer-links::after {
    position: absolute;
    content: "";
    width: 150%;
    height: 1px;
    background: #cccccc;
    bottom: 0px;
    left: -30%;
}
.footer-links{
    padding: 20px 0;
}
.footer-links li a{
  
font-size: 18px;
  
margin-right: 30px;
  
font-family: 'Raleway', sans-serif;
  
color: #a7161c;
  
font-weight: bold;
  
text-transform: uppercase;
}
.foot-contact h4 {
    font-size: 29px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #a7161c;
    margin-bottom: 10px;
}
.foot-contact h6 {
    font-size: 19px;
    font-weight: 300;
    color: #a7161c;
    margin-bottom: 0;
    text-shadow: 0px 0px 4px lightgrey;
}
.foot-contact a{
  margin-bottom: 30px;
  display: block;
}
.foot-contact a:last-child{
  margin-bottom: 0;
}
.get-foot-from {
    margin-top: -20%;
    position: relative;
    background: #f1c055;
    padding: 40px;
}
.get-foot-from input, .get-foot-from textarea {
    width: 100%;
    height: 50px;
    text-indent: 20px;
    border: none;
    margin-bottom: 15px;
    background: #dda935;
    color: white;
}
.get-foot-from input::placeholder, .get-foot-from textarea::placeholder{
  color: #fae4d1;
  font-weight: 300;
}
.get-foot-from textarea {

  height: 100px;
}
.get-foot-from button{
  
display: inline-flex;
  
align-items: center;
  
justify-content: center;
  
width: 100%;
  
height: 50px;
  
font-weight: 500;
  
font-size: 24px;
  
background: #a7161c;
  
color: white;
  
border: none;
}
footer hr:not([size]) {
    height: 1px;
    margin: 0;
}
/*footer*/


/*inner baner start*/

section.inner-banner-sec {
    position: relative;
}

.inner-banner-txt {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}


.inner-banner-txt h1 {
  text-transform: uppercase;
}

.about-inner {
    margin: 0px 0 120px;
}

.blog-txt ul {
    align-items: center;
    justify-content: space-between;
}

.blog-txt ul li a {
    font-size: 15px;
    color: #242424;
    font-family: 'Poppins';
    font-weight: 600;
}

.blog-txt ul li span {
    color: #7a7a7a;
    font-size: 17px;
}

section.blog-sec {
    padding: 90px 0;
    margin: 0 0 120px;
}

.blog-img {
    margin: 0 0 50px;
}

/*Contact Us Start*/

.contact-detail ul {
    display: flex;
    align-items: center;
}

.contact-detail ul li i {
    color: #f1c055;
    font-size: 25px;
    margin: 0 20px 0 0;
}

.contactus-sec {
    padding: 70px 0;
    margin-bottom: 10%;
}

.contact-detail h2 {
    font-size: 50px;
    color: #000;
    font-weight: 500;
    margin-bottom: 3%;
    font-family: 'Oswald';
}
.contact-detail p {
    font-size: 13px;
    line-height: 26px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5%;
    font-family: 'Montserrat';
}
.contact-detail p span {
    display: block;
}
.contact-detail ul li h3 {
    font-size: 25px;
    font-family: 'Cabin';
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-detail ul li a {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
}
.contact-detail ul li a span {
    display: block;
}
ul.contact-social-icon {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 6%;
}
ul.contact-social-icon li a i {
    font-size: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #000;
}

ul.contact-social-icon li a i.fa.fa-facebook-f {
    background: #2250a8;
}

ul.contact-social-icon li a i.fa.fa-twitter {
    background: #0dcaf0;
}

ul.contact-social-icon li a i.fa.fa-google-plus {
    background: #ff0018;
}

ul.contact-social-icon li a i.fa.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.send-message h2 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    font-family: 'Cabin';
    margin-bottom: 5%;
}
.send-message input {
    width: 100%;
    height: 55px;
    border-radius: 0;
    margin-bottom: 4%;
    padding: 0px 20px;
    border: 1px solid #e0e0e0;
}
.row.chg {
    margin-bottom: 2%;
}
.send-message textarea {
    width: 100%;
    padding: 0px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    resize: none;
}
.send-message textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    resize: none;
    height: 200px;
    margin-bottom: 4%;
}
.send-message button {
    width: 40%;
    height: 55px;
    border-radius: 50px;
    background: #2250a8;
    border: none;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat';
}
.contact-detail ul {
    margin-bottom: 4%;
}
.send-message input::placeholder {
    font-size: 16px;
    font-family: 'Cabin';
    color: #777777;
    font-weight: 600;
}
.send-message textarea::placeholder {
    font-size: 16px;
    font-family: 'Cabin';
    color: #777777;
    font-weight: 600;
}
.contact-map-sec iframe {
    width: 100%;
    height: 450px;
    border-radius: 50px;
    border: 2px solid #55cf11;
}
.contact-map-sec {
    margin-bottom: 5%;
}

/*Contact Us End*/


section.service-iner-sec {
    padding: 90px 0;
    margin: 0 0 80px;
}


.mar-bottom {
    margin-bottom: 60px;
}

/* blog page ccs */

section.blog-page-sec {
  padding: 80px 0;
  margin: 0 0 120px;
}

.blog-sec-cntnt img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-sec-cntnt h5 {
  font-size: 20px;
  font-weight: 500;
  color: #191919;
  padding: 20px 0 30px;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 20px;
}

.blog-sec-cntnt ul {
  display: flex;
  align-items: center;
}

.blog-sec-cntnt ul li i {
  color: #f1c055;
  font-size: 22px;
  margin-right: 10px;
}

.blog-sec-cntnt ul li {
  margin-right: 20px;
}

.blog-sec-cntnt ul li a {
  font-size: 15px;
  color: #646464;
  font-weight: 500;
}

.blog-sec-cntnt {
  margin-bottom: 60px;
}

.blog-side-bar form {
  position: relative;
  width: 70%;
}

.blog-side-bar form input[type="text"] {
  height: 50px;
  border: 1px solid #E1E1E1;
  padding: 10px;
  width: 100%;
}

.blog-side-bar form button {
    position: absolute;
    height: 50px;
    border: 0;
    right: -58px;
    padding: 10px 20px;
    font-size: 19px;
    color: #646464;
}

.blog-side-bar h3 {
  font-size: 20px;
  font-family: 'Poppins';
  color: #191919;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid;
}



.blog-side-bar .cat-ull {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-side-bar .cat-ull li {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.blog-side-bar .cat-ull li a {
  font-size: 15px;
  color: black;
}

.recent-post-txt p {
  width: 80%;
  margin-bottom: 20px;
}

.recent-post-txt {
  margin-bottom: 30px;
  border-bottom: 1px solid #E1E1E1;
}

.recent-post-txt ul li i {
  font-size: 24px;
  color: #f1c055;
  margin-right: 10px;
}

.recent-post-txt ul li span {
  font-size: 15px;
  color: black;
  font-weight: 500;
}

.blog-side-bar {
  padding-left: 20px;
  border-left: 1px solid #E1E1E1;
  padding-bottom: 20px;
}


/*ssrvice detail start*/

.service-detail-img h2 {
  font-weight: 400;
}

.service-detail-img h2 span {
    font-weight: 600;
}

.service-detail-img img {
    width: 100%;
    height: 500px;
}

section.service-detail-sec {
    padding: 100px 0;
    margin-bottom: 100px;
}


.service-detail-txt h5 {
    font-size: 21px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Montserrat';
}

.service-detail-txt p {
    font-size: 14px;
    color: #8e8e8e;
    font-family: 'Montserrat';
}

.service-detail-txt input {
    width: 100%;
    border: 1px solid #6c757dc9;
    height: 55px;
    padding: 20px;
    margin: 0 0 20px;
}

.service-in {
    position: relative;
}

.service-in a i {
    position: absolute;
    top: 18%;
    right: 6%;
    font-size: 20px;
    color: #6c757d;
}

button.btn10 {
    font-size: 20px;
    font-family: 'Montserrat';
    background: #a7161c;
    color: #fff;
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 10px;
}

.service-detail-txt {
    background: #f7f7f7;
    padding: 50px;
    margin: 0 0 30px;
}

.service-related h5 {
    font-size: 14px;
    color: #797979;
    text-transform: uppercase;
}

.service-related ul li img {
    width: 93%;
}

.service-related ul li {
    width: 50%;
}

.service-related ul li h6 {
    font-size: 14px;
    color: #161616;
    text-transform: uppercase;
}

.service-related ul li a {
    font-size: 12px;
    color: #9b9b9b;
    text-transform: uppercase;
}

.ser-txt {
    margin: 30px 0 0;
}

.ser-txt p {
    font-size: 14px;
    color: #767676;
}

/*service detail End*/

.pd-0 {
  padding: 0;
}

.inner-abot-pd {
    width: 88%;
    margin: 30px 0;
}

.ser-inner-txt h4 {
    text-transform: uppercase;
}

.blog-txt {
    margin: 30px 0 0;
}

.blog-txt h4 {
    font-weight: 600;
}

.silder-number span {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #f1c055;
}
.silder-number g {
    padding: 0 10px;
    color: #fff;
}

.silder-number b {
  color: #f1c055;
}
.silder-number {
    position: absolute;
    right: 0;
    background: #a7161c;
    width: 22%;
    height: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
}