@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {

  font-family: "Montserrat", sans-serif;

  --primary: #0f59a3;
  --secondry: #eb1534;
  --red: #eb1534;
  --white: #fff;
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: normal;
  background-color: #f4f4f4;
  font-style: normal;
  overflow-x: hidden;
}

.text-justify {
  text-align: justify;
}

a {
  text-decoration: none !important;
}

ul {
  padding-left: 0px !important;
}

.top-header {
  background-color: var(--primary);
  color: var(--white);
}

.top-contact {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}

.top-contact a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;


}

.top-contact a i {
  margin-right: 6px;
  color: var(--secondry);
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  /* display: flex; */
  text-align: center;

}

.hedaer-social a {
  margin: 0px 0px 0px 10px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  box-shadow: 3.716px 3.346px 40px 0px rgba(43, 43, 43, 0.1);
}

.menu-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section .logo {
  width: 280px;
}

a.header-btn {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

a.header-btn.track-btn {
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
}

.home-slider .item {

  position: relative;
}

.home-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: fadeInLeft;
  animation-delay: 0.2s;
}

.home-slider .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.home-slider .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
  max-width: 70%
}

.home-slider .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.home-slider .item .cover .header-content h2 {
  font-weight: 800;
  font-size: 48px;
  color: #fff;
}

.home-slider .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}

.home-slider .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
  margin: 0px 0px 30px 0px;
}

.home-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.home-slider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

.home-slider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.home-slider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

.home-slider .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.home-slider .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

.home-slider .owl-nav .owl-prev:focus {
  outline: 0;
}

.home-slider .owl-nav .owl-prev:hover {
  background: #000 !important;
}

.home-slider .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.home-slider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.home-slider .owl-nav .owl-next:focus {
  outline: 0;
}

.home-slider .owl-nav .owl-next:hover {
  background: #000 !important;
}

.home-slider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

.home-slider:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.home-slider a.theme-btn {
  display: inline-flex;
  color: #fff;
  text-align: center;
  font-weight: 700;
  z-index: 1;
  transition: all .5s ease-out;
  font-size: 18px;
  align-items: center;
  gap: 36px;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
  background-image: linear-gradient(45deg, rgb(238 56 38) 25%, #f99f41 100%);
  position: relative;
  overflow: hidden;
}

.home-slider .owl-item.active .slider-btn {
  animation-name: fadeInUp;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.hero_hompage{
  color: white;
  position: relative;
  min-height: 620px;
  display: flex;
  padding-bottom: 0;
  background-image: url(../images/banner.jpg);
  background-color: #000000;
  overflow: hidden;
}
.hero_gear{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: block;
  z-index: 2;
}

a.theme-btn {
  display: inline-flex;
  color: #fff;
  padding: 10px 25px;
  border-radius: 0px;
  text-decoration: none;
  font-size: 16px;
  background:var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .5s ease-out;
  align-items: center;
  gap: 36px;

}

.theme-btn.secondry-btn {
  background-color:var(--primary) !important;
}


a.theme-btn:hover {
  transition: all .5s ease-out;
}

a.theme-btn:before {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background:var(--red);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: -1;
  transition: all .5s ease-out;
}

a.theme-btn:hover:before {
  height: 350%;
  transition: all .5s linear;
  background-color: transparent;
}

.menu-section .navbar li a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin: 0px 12px;
  text-transform: capitalize;
}
.menu-section .navbar li a:hover {
  color: var(--red);
}
.hedaer-social a:hover i {
 background-color: var(--red);
 color: #fff;
}
.menu-section .navbar li a.active {
  color: #f00;
}

.section-layer {
  padding: 100px 0px 90px 0px;
}

.welcome-section h5 {
  color: #f00;
  font-size: 18px;
}

.welcome-section h1 {
  font-size: 52px;
  font-weight: 700;
}

ul.about-points {
  display: flex;
  padding-left: 0;
}

ul.about-points li {
  width: 50%;
  list-style: none;
  font-weight: 700;
  font-size: 16px;
}

ul.about-points li i {
  color: #f00;
  margin-right: 5px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.section-title p {
  text-align: center;
  font-weight: 500;
}

.top-footer {
  padding: 60px 0px;
  background-image:linear-gradient(#0f59a3b0, #0f59a38c), url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-widget.footer-logo-section {
  color: var(--white);
}

img.footer-logo {
  height: 70px;
}

.footer-social a {
  background: var(--secondry);
  padding: 10px;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  height: 30px;
  width: 30px;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social {
  display: flex;
}
.footer-social a:hover {
  background: var(--red);
}

.footer-widget h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

ul.footer-links li {
  font-size: 17px;
  list-style: none;
  color: var(--white) !important;
  margin-bottom: 10px;
}

ul.footer-links li a {
  color: var(--white) !important;
  position: relative;
  padding-left: 20px;
}

ul.footer-links li a:hover {
  color: var(--secondry) !important
}

ul.footer-links li a:before {
  left: 0;
  top: 1px;
  font-size: 13px;
  content: "\f101";
  font-weight: 400;
  color: var(--secondry);
  position: absolute;
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: 'FontAwesome';
}

.footer-address p {
  color: var(--white);
}

.footer-contact-section i {
  color: var(--white);
  margin-right: 10px;
  color: var(--secondry);
}

.footer-contact-section a {
  color: var(--white);
}

.footer-contact-section {
  display: flex;
  align-items: flex-start;
}

.footer-contact-section.footer-phone {
  display: flex;
  align-items: center;
}

.footer-bottom {
  background-color: #202020;
}

.footer-bottom-content {
  position: relative;
  padding: 18px 0px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c5c5c5;
  display: flex;
  justify-content: space-between;
}

.footer-bottom .copyright {
  position: relative;
  color: #c5c5c5;
  color: var(--white);
  font-size: 16px;
}

.footer-bottom a {
  color: #afafaf;
}

.counter-up {
  padding: 80px;
  background-image: url(../images/counter-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.counter-up:before {
  content: "";
  background: var(--primary);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  opacity: 0.95;
}

.counter-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.counter-icon {
  font-size: 45px;
  height: 90px;
  width: 90px;
  min-width: 90px;
  margin-right: 25px;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.counter-number h2 {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--white);
  /* line-height: 55px; */
  font-size: 36px;
  font-weight: bold;
}

.counter-number h4 {
  font-weight: 600;
  color: var(--white);
}

.single-service {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 2px 16px #cccccc38;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.single-service-content.mt-2 {
  text-align: center;
}

.services-list {
  margin-top: 60px;
}

.single-service:hover {
  transform: translate(0px, -10px);
}
/*
.single-service:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  border-radius: 12px;
  border: 6px solid var(--red);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
*/
.single-service:hover:before {
  opacity: 1;
}

.service-shape {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  height: calc(100% - 39px);
  z-index: -99;
  background: -webkit-repeating-linear-gradient(135deg, #fff, #fff 2.5px, var(--red) 4px, var(--red) 0);
  background: -o-repeating-linear-gradient(135deg, #fff, #fff 2.5px, var(--red) 4px, var(--red) 0);
  background: repeating-linear-gradient(-45deg, #fff, #fff 2.5px, var(--red) 4px, var(--red) 0);
}

.why-choose-list {
  margin-top: 60px;
}

.why-choose-icon i {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  background-image: -webkit-linear-gradient(45deg, rgb(238 56 38) 0%, #f99f41 100%);
  margin-bottom: 20px;
}

.why-single-list {
  margin-top: 30px;
}

.why-single-list.right {
  text-align: right;
}

.why-choose-img img {
  box-shadow: 0px 2px 12px #ccc;
  border-radius: 10px;
}

.cta-section {
  background-image: url('../images/cta.webp');
  background-position: bottom;
  color: var(--white);
  position: relative;
}
.cta-section:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  content: "";
  background: rgb(24, 56, 98);
  background: linear-gradient(90deg, rgb(74, 143, 197, 0.8) 30%, rgb(74, 143, 197, 0.8) 20%, rgb(74, 143, 197, 0) 70%);
  z-index:;
  
}
.cta-content {
  z-index: 99;
  position: relative;
}

.faq .accordion-header {
  border-radius: 10px;
  margin: 10px 0px;
  background: #fff;
  box-shadow: 0px 2px 12px #cccccc52;
}

.faq .accordion-header .accordion-button {
  border-radius: 10px !important;
  margin: 15px 0px;
  background: #fff;
  box-shadow: 0px 2px 12px #cccccc8c;
  border-left: 2px solid var(--red);
  font-weight: 700;
}

.faq .accordion-item {
  border: none;
}

.faq-inner-section {
  margin-top: 60px !important;
}

.faq-inner-section {
  align-items: center;
}

.info-single {
  display: flex;
}

.info-icon.me-3 i {
  color: var(--secondry);
  font-size: 36px;
}

.info-content h4 {
  font-size: 20px;
  font-weight: 700;
}

.info-content a {
  font-size: 16px;
  color: #000;
}

.contact-social a {
  background: var(--secondry);
  padding: 10px;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  height: 30px;
  width: 30px;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-social {
  display: flex;
}
.contact-info {
  margin: 40px 0px 20px 0px;
}

.faq-section.section-layer {
  position: relative;
}

img.side-image {
  position: absolute;
  bottom: 30px;
  right: 50px;
  width: 250px;
}

a.theme-btn.secondry-btn .btn {
  color: var(--white);
  padding: 0;
}

.contact-us {
  /* background-image: url('../images/contact-bg.jpg'); */
  background-position: bottom;
  background-repeat: no-repeat;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  box-shadow: 0px 2px 16px #cccccc40;
  border-radius: 10px;
}

.contact-details h2 {
  font-size: 48px;
  font-weight: 700;
}

.partner-carousel .item img {
  max-width: 150px;
}

.clients-section {
  padding: 50px 0px;
  background-image: url('../images/contact-bg.jpg');
}

.clients-section h2 {
  font-size: 48px;
  font-weight: 700;
}

h2 span {
  color: var(--red);
}

.counter-number h2 span {
  color: var(--white) !important;
  font-weight: 900;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: none !important;
  outline: 0;
  box-shadow:none !important;
}
.contact-img {
  border-radius: 15px;
  box-shadow: 0px 2px 20px #f2f2f2;
}
/*  Breadcrumb Section */
.Breadcrumb-section {
  background-image:linear-gradient(#0000,#000), url('../images/cta-background.jpg');
  padding: 100px 0px;
  background-position: center center;

}
.title-box .page-title-heading h1 {
  font-weight: bold;
  text-transform: capitalize;
  font-size: 48px;
  line-height: 50px;
  color: var(--white);
  margin-bottom: 0;
}
.breadcrumb-wrapper span {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
}
.breadcrumb-wrapper i {
  color: var(--red);
}
.breadcrumb-wrapper span:last-child {
color: var(--red);
}
.breadcrumb-wrapper span a {
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}
.breadcrumb-wrapper span a i {
  
  color: var(--white);
  
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.welcome-section h2 {
  font-size: 48px;
    font-weight: 700;
}
.key-benefits {
  background-image: url('../images/benefits-bg.jpg');
}
.benefits-list {
  margin-top: 60px;
}
.single-benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-benefit h5 {
  font-weight: 700;
}
.services-inner-single {
  margin-top: 50px;
}
.services-inner{
  background: #fAF9F6;
}
.services-inner-single {
  background: var(--white);
}
.services-inner-content {
  padding: 40px 40px 40px 25px;
}
.services-inner-content h4 {
  font-weight: 700;
}




/* arun-------------------------- */
.servcs_banner{
  margin-top: -65px;
  position: relative;
}
.srvce_wrapper .ser_head{
  background-color: var(--red);
}
.srvce_wrapper .ser_head i{
  font-size: 28px;
  transform: rotate(-45deg);
  color: #fff;
}
.srvce_wrapper{
  border-radius: 12px;
  overflow: hidden;
}
.srvce_wrapper .img_wrap img {
  filter: grayscale(1);
}
.srvce_wrapper:hover .img_wrap img {
  filter: grayscale(0);
}
.header-content{
  padding-top: 60px;
}
.contact-us .card i {
  font-size: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  background: var(--red);
  color: #fff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  margin-right: 18px;
}

.form-control:focus {
  color: #212529;
  border: 1px solid;
  border-color: var(--red) !important;
  box-shadow: unset !important;
}