
html,body
{
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
}

h1,h2,h3,h4,h5,button
{
  font-family: "Rajdhani", sans-serif;
}

section
{
  position: relative;
  
}
h1 
{
  font-size: 70px;
}
h2 
{
  font-size: 55px;
}
h3 
{
  font-size: 45px;
}
h4 
{
  font-size: 35px;
}
h5 
{
  font-size: 25px;
}
p,a 
{
  line-height: 28px;
  color: #595959;
}
a 
{
  text-decoration: none;
}
.padd-top-100
{
  padding-top: 100px;
}
.padd-bottom-100
{
  padding-bottom: 100px;
}
a:hover
{
  color: #b91202;
}
.red-btn
{
  color: #fff;
  background-color: #b91202;
  border: 0px;
}

.red-text
{
  color: #b91202!important;
}
.fa-chevron-circle-right
    {
        color: #b91202;
    }
h3 
{
  font-weight: bold;
}






  header {
    position: fixed;
    top: 0px;
    background-color:#fff;
    width: 100%;
    z-index: 1000;
  }

  .logo-container {
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .nav-btn {
    flex: 3;
    display: flex;
  }
  
  .nav-links {
    flex: 2;
  }
  
  .log-sign {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; */
    padding: 12px 0px;
  }
  
  .logo {
    color: #31d850;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
  }
  
  .logo span {
    font-weight: 300;
  }
  
  .btn {
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid var(--clr-light);
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
  }
  
  .btn.solid,
  .btn.transparent:hover {
    background-color: var(--clr-light);
    color: var(--clr-btn);
  }
  
  .btn.transparent,
  .btn.solid:hover {
    background-color: transparent;
    color: var(--clr-light);
  }
  
  .nav-links > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  
  .nav-link {
    position: relative;padding: 20px 10px;
  }
  
  .nav-link > a {
    line-height: 3rem;
    color: #000;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
  }
  
  .nav-link > a > i {
    margin-left: .2rem;
  }
  
  .nav-link:hover > a {
    transform: scale(1.1);
  }
  
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 235px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
  }
  
  .dropdown ul {
    position: relative;
  }
  
  .dropdown-link > a {
    display: flex;
    background-color: #000;
    color:#fff;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
  }
  
  .dropdown-link:hover > a {
    background-color: #b91202;
    color: #fff;
  }
  
  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid #292929;
  }
  
  .dropdown-link i {
    transform: rotate(-90deg);
  }
  
  .arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: var(--clr-light);
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
  }
  
  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-dropdown);
  }
  
  .dropdown-link {
    position: relative;
  list-style-type: none;
  }
  
  .dropdown.second {
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
  }
  
  .dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
  }
  
  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #b91202;
    position: relative;
    z-index: 1001;
    transition: .5s;
  }
  
  .hamburger-menu div:before,
  .hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #b91202;
    border-radius: 3px;
    transition: .5s;
  }
  
  .hamburger-menu div:before {
    transform: translateY(-7px);
  }
  
  .hamburger-menu div:after {
    transform: translateY(7px);
  }
  
  #check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
  }
  
  #check:checked ~ .hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
  }
  
  #check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
  }
  
  #check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
  }
  
  @keyframes animation {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  
  @media (max-width: 920px) {
    .hamburger-menu-container {
      display: flex;
    }
  
    #check {
      display: block;
    }
  
    .nav-btn {
      position: fixed;
      height: calc(100vh - 3rem);
      top: 3rem;
      left: 0;
      width: 100%;
      background-color: #fff;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      overflow-x: hidden;
      overflow-y: auto;
      transform: translateX(100%);
      transition: .65s;
    }
  
    #check:checked ~ .nav-btn {
      transform: translateX(0);
    }
  
    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign {
      animation: animation .5s ease forwards var(--i);
    }
  
    .nav-links {
      flex: initial;
      width: 100%;
    }
  
    .nav-links > ul {
      flex-direction: column;
    }
  
    .nav-link {
      width: 100%;
      opacity: 0;
      transform: translateY(15px);
    }
  
    .nav-link > a {
      line-height: 1;
      
    }
  
    .nav-link:hover > a {
      transform: scale(1);
      background-color: var(--clr-nav-hover);
    }
  
    .dropdown,
    .dropdown.second {
      position: initial;
      top: initial;
      left: initial;
      transform: initial;
      opacity: 1;
      pointer-events: auto;
      width: 100%;
      padding: 0;
      background-color: var(--clr-dropdown-hov);
      display: none;
    }
  
    .nav-link:hover > .dropdown,
    .dropdown-link:hover>.dropdown {
      display: block;
    }
  
    .nav-link:hover > a > i,
    .dropdown-link:hover>a>i {
      transform: rotate(360deg);
    }
  
    .dropdown-link > a {
      background-color: transparent;
      color: var(--clr-light);
      padding: 1.2rem 2rem;
      line-height: 1;
    }
  
    .dropdown.second .dropdown-link > a {
      padding: 1.2rem 2rem 1.2rem 3rem;
    }
  
    .dropdown.second .dropdown.second .dropdown-link > a {
      padding: 1.2rem 2rem 1.2rem 4rem;
    }
  
    .dropdown-link:not(:nth-last-child(2)) {
      border-bottom: none;
    }
  
    .arrow {
      z-index: 1;
      background-color: var(--clr-btn);
      left: 10%;
      transform: scale(1.1) rotate(45deg);
      transition: .5s;
    }
  
    .nav-link:hover .arrow {
      background-color: var(--clr-nav-hover);
    }
  
    .dropdown .dropdown .arrow {
      display: none;
    }
  
    .dropdown-link:hover > a {
      background-color: var(--clr-dropdown-link-hov);
    }
  
    .dropdown-link:first-child:hover ~ .arrow {
      background-color: var(--clr-nav-hover);
    }
  
    .nav-link > a > i {
      font-size: 1.1rem;
      transform: rotate(-90deg);
      transition: .7s;
    }
  
    .dropdown i {
      font-size: 1rem;
      transition: .7s;
    }
  
    .log-sign {
      flex: initial;
      width: 100%;
      padding: 1.5rem 1.9rem;
      justify-content: flex-start;
      opacity: 0;
      transform: translateY(15px);
    }
  }



.banner-section
{
  margin-top: 80px;
}

.impact-section a 
{
  color: #fff;
}








header .fa-whatsapp
{
  color: #fff;
  background-color: #31d850;
  padding: 4px 5px;
  border-radius: 5px;
}
header .whatsapp-ico
{
  color: #000;
  text-decoration: none;
  font-size: 20px;
}

.star-svg1
{
  top: 50%;
    left: 90%;
   
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}



.star-svg2
{
  top: 50%;
    right: 50%;
   
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}







.red-btn
{
  color: #fff;
  background: linear-gradient(to right, #b91202 50%, #252525 50%);
    background-size: 200% 100%;
    background-position:left bottom;
   
    transition:all .5s ease;
  border-radius: 30px;
  width: 200px;
  padding: 15px;
  line-height: 30px;
}
.red-btn:hover
{
  background-position:right bottom;
}
  .banner-section .video-content
  {
color: #fff;
  }
  .banner-section h5
  {

  }




  .box-section .div1
  {
    background-color: #ffffff;
  padding: 40px 45px;position: relative;
  top: 0;
  transition: top ease 0.5s;
  -webkit-box-shadow: 0px 0px 35px -20px rgba(166,166,166,1);
-moz-box-shadow: 0px 0px 35px -20px rgba(166,166,166,1);
box-shadow: 0px 0px 35px -20px rgba(166,166,166,1);
  }
.box-section .div1:hover 
{
  top: -10px;
 
}
  .box-section .div1:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 0;
    height: 2px;
    bottom: 0px; /* Adjust as needed */
    background-color:#b91202;
    transition: width 0.3s ease;
  }
  
  .box-section .div1:hover:after {
    width: 100%;
  }
  .btn1
  {
    border-radius: 5px;
    padding: 15px 25px;
    background-color: #fff;
    border: 1px solid #000;
    font-weight: 600;
  }
  .btn2 
  {
    border-radius: 5px;
    padding: 15px 25px;
    background-color: #fff;
    border: 1px solid #b91202;
    font-weight: 600;
  }
  .bg-red
  {
    background-color: rgb(185 18 2);
    color: #fff;
    padding: 75px 0px;
  }
  .btn3 
  {
    background-color: #df2a19;
    color: #fff;
    border: 0px;
    padding: 15px 25px;
    border-radius: 5px;
  }
  @keyframes float-bob-x {
    0% {
        transform: translateX(-20px)
    }

    50% {
        transform: translateX(-10px)
    }

    to {
        transform: translateX(-20px)
    }
}

.animate-float-bob-x {
  animation: float-bob-x 2s linear infinite;
  object-fit: contain;
  height: 250px;
  position: absolute;
  right: 0px;
  width: 35%;
  bottom: 0px;
}
.swiper-pagination-bullet {
  display: none;
}

.impact-section .div1 
{
  position: relative;
}
.impact-section h5 
{
 
}
.impact-section p 
{
  color: #fff;
}
.impact-section .overlay
{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(25,0,133);
background: linear-gradient(180deg, rgba(25,0,133,0) 0%, rgba(185,18,2,0.6867121848739496) 50%, rgba(185,18,2,1) 100%);
}
.impact-section .content {
  position: absolute;
  bottom: 0px;
  color: #fff;
  padding: 0px 30px 20px;
}
.impact-section .div2 
{
  margin-top: 40px;
}
.impact-section img 
{
  border-radius: 8px;
}
.counter-section .item
{
  
}
.counter-section .item h1 
{
  -webkit-text-stroke: 1px rgb(68, 68, 68);
  -webkit-text-fill-color: white;
}
.counter-section .item p 
{
  margin: auto;
}
.counter-section .item
{
  background-color: #f4f5fa;
  padding: 10px 30px;
  position: relative;
}
.counter-section svg 
{
  background-color: #b91202;
  padding: 10px;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  top: 0px;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: inherit;
  bottom: 0;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 40%;
  right: 0px;
  left: 0px;
  margin: auto;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after
{
  content: '';
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after
{
  content: '';
}
.swiper-button-prev,.swiper-button-next 
{
  background-color: #b91202;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.testimonial-section .item1{
  background-color: #f4f5fa;
  padding: 25px;
}
.testimonial-section .item1 h5 
{
  font-weight: 700;
}
.testimonial-section .item1 i 
{
  color: #b91202;
  font-size: 11px;
}
.testimonial-section .swiper-wrapper 
{
  padding-bottom: 30px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill
{
  background-color: #b91202;;
}

.form-section .img-div
{
position: absolute;left: 0px;
top: 0px;
}
.form-section form 
{
 
}
.form-section .form-div
{
  position: relative;
  background-color: #ffffff;
  width: 100%;
  padding: 50px 50px;box-shadow: 0px 0px 35px -20px rgba(166, 166, 166, 1);
}



.blog-section h4
{
  color: #fff;
  background-color: #b91202;
  width: fit-content;
  font-size: 20px;
  padding: 6px 12px;
  
}
.blog-section a 
{
  text-decoration: none;
  color: #fff;
}


.grid {
	position: relative;
	
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 100%;
	max-width: 480px;
	max-height: 360px;
	width: 48%;
	background: #000000;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
  height: 400px;
  object-fit: cover;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;

	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
  font-size: 68.5%;
  color: #fff;
}

/* Individual effects */

/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.5;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
	text-align: left;
}

figure.effect-lily figcaption > div {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	height: 60%;
}

figure.effect-lily h2 {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

/* figure.effect-lily p {
	color: rgba(255,255,255,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
} */

figure.effect-lily:hover img,
figure.effect-lily:hover p {
	opacity: 1;
}

figure.effect-lily:hover img,
figure.effect-lily:hover h2{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* figure.effect-lily:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
} */






footer
{
  background-color: #f5f4fa;
}
footer ul li 
{
  list-style-type: none;
  line-height: 35px;
}
footer a 
{
  text-decoration: none;
}
footer ul.links  
{
  padding-left: 0px;
}
footer h4 
{
  font-size: 25px;
}
footer ul.links a 
{
  
  padding-left: 15px;
  color: #595959;
}
footer ul.social-icons li a
{
color: #fff;

}
footer ul.social-icons li
{
  float: left;
  padding: 0px 15px;
}
footer ul.social-icons 
{
  background-color: #b91202;
  width: fit-content;
  height: 30px;
  margin-left: 0px;
  padding-left: 0px;
  margin: 0px;
  line-height: 0px;
  border-radius: 5px;
  padding: 10px 0px 45px;
}

.footer-sub
{
  background-color: #f5f4fa;
  padding: 15px;
}
.footer-sub ul li 
{
  list-style-type: none;
  display: inline-block;
  padding-left: 22px;
  
}
.footer-sub p,.footer-sub ul
{
margin-bottom: 0px;
}
footer .address-div i 
{
  color: #b91202;
  border: 1px solid #686868;
  padding: 8px;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  margin-right: 10px;
}
footer .footer-blog h5
{
  font-size: 18px;
  padding-left: 15px;
}
footer .fa-calendar
{
  color: #b91202;
}
footer .footer-blog p 
{
  margin: 0px;
}






.about-section1,.service-section1
{
  padding: 150px 0px;
  margin-top: 95px;background-position: center top;
  position: relative;
  z-index: 0;
}
.overlay
{
  background: rgb(255,255,255);
background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5998600123643207) 35%, rgba(255,255,255,0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
}
.bnr-text
{
  position: relative;
  z-index: 5;
  font-weight: 600;
}
.Marquee {
  width: 100%;
 
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7px;
  color: #000000;
  font-weight: 200;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  
  align-items: center;
  overflow: hidden;
}
.Marquee-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  /* display: box; */
  display: flex;
  -webkit-animation: marquee 20s linear infinite running;
  -moz-animation: marquee 20s linear infinite running;
  -o-animation: marquee 20s linear infinite running;
  -ms-animation: marquee 20s linear infinite running;
  animation: marquee 20s linear infinite running;
}
.Marquee-content:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -ms-animation-play-state: paused;
  animation-play-state: paused;
}
.Marquee-tag {
 
  width: max-content;
  font-size: 45px;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.Marquee-tag img {
  margin-left: 10px;
  margin-right: 10px;
}

@-webkit-keyframes marquee {
 0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform:translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform:translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform:translate(-50%);
    transform: translate(-50%);
  }
}



.slider-section h4 
{
  font-size: 25px;
  font-weight: 700;
}
.slider-section .item
{padding: 40px 45px;
  background-color: #f5f4fa;
}
.slider-section svg 
{
  background: #b91202;
  color: #fff;
  border-radius: 50px;
}
.swiper-pagination-bullets {
 
}

.bar-fixed1 {
  
}
/* #bar-fixed.stickIt {
  position: fixed;
  top: 95px;
}
#bar-fixed1.stickIt 
{
  position: fixed;
  top: 195px;
} */
.bar-fixed
{
  background-color: #f5f4fa;
  padding: 40px;
}
.bar-fixed1
{
  background-color: #b91202;
  color: #fff;
  padding: 45px 0px;
}
.bar-fixed1 .fa-phone
{
  background-color: #fff;
  color: #b91202;
  padding: 10px;
  border-radius: 31px;
  margin-bottom: 20px;
}
.bar-fixed ul li 
{
  list-style-type: none;
  padding-bottom: 10px;
}
.bar-fixed ul
{
  padding-left: 0px;
}
.bar-fixed ul li svg 
{
  float: right;
}
.service-section2 ul.list1 
{
 
}
.service-section2 ul li 
{
 line-height: 28px;
 color: #595959;
}
.service-section2 .accordion-button:not(.collapsed)
{
  background-color: #b91202;
  color: #fff;
}
.service-section2 .accordion-body
{
  background-color: #eee;
}


.case-study-section1 .sidebar p 
{
  padding-top: 15px;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 80px;
}
.blog-section1 ul
{
  padding-left: 0px;
}
.blog-section1 ul li 
{
  padding-right: 25px;
  list-style-type: none;
  float: left;
}
i 
{
  
}
.required,.error-message
{
    color: red;
}
.mil-input-frame input
{
  height: 60px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #eee;
  padding-left: 30px;
  background: #f5f4fa;
}
textarea
{
  border: 1px solid #eee;
  padding-left: 30px;
  background: #f5f4fa!important;
}

.contact-section1 .address 
{
  background-image: url(../imgs/cont-ico1.png);
}
.contact-section1 .email 
{
  background-image: url(../imgs/cont-ico2.png);
}
.contact-section1 .phone 
{
  background-image: url(../imgs/cont-ico3.png);
}
.contact-section1 .cont-div
{
  background-repeat: no-repeat;
  padding-left: 80px;
  padding-bottom: 12px;
  padding-top: 12px;
}