/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --transition: all 0.3s ease;
     --buttons :#fa4842;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:"DM Sans",sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.slidrbutton {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    background-color: #fa4842;
    cursor: pointer;
    border: none;
    font-weight: 500;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 18px;
    line-height: 20px;
    font-family:"DM Sans",sans-serif;
     border: #f33b34 2px solid;
}

.slidrbutton:hover {
    background-color: #f33a3400; 
    color:#ffffff; 
    border: #f33b34 2px solid;
}


.slidrbutton1 {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    background-color: #fa4842;
    cursor: pointer;
    border: none;
    font-weight: 500;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 18px;
    line-height: 20px;
    font-family:"DM Sans",sans-serif;
     border: #f33b34 2px solid;
}

.slidrbutton1:hover {
    background-color: #f33a3400; 
    color:#000000; 
    border: #f33b34 2px solid;
}

/* Header */
.header {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .logo img {
    height: 60px;
}

}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color:#fff!important;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-family: "DM Sans",sans-serif;
    font-size: 18px;
}

.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.scrolled .mobile-menu-btn {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: auto;
    position: relative;
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: "DM Sans",sans-serif;
    font-weight: 600;


}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: "DM Sans",sans-serif;

}

.swiper-button-next, .swiper-button-prev {
    color: #fff!important;
    line-height:20px!important;
   
}

/* Hero Section */
/* Tablet styles (up to 768px) */
@media (max-width: 768px) {
    .hero-slide {
      height: 80vh;  /* Reduce height on tablets */
    }
  }
  
  /* Mobile styles (up to 480px) */
  @media (max-width: 480px) {
    .hero-slide {
      height: 100vh;  /* Further reduce height on mobile */
    }
  }





/* About Section */
.about {
    padding:3rem 0rem 0rem 0rem;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "DM Sans",sans-serif;

}
.aboutsubtext{
  color: #f33b34 !important;
  font-size: 20px;
  font-weight: 600;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .about-content h2 {
    color: #000;
    font-size: 32px;
    font-weight: 600;
    text-align: center;

}
}







.about-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: "DM Sans",sans-serif;

}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: "DM Sans",sans-serif;
    font-size: 18px;

}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 480px;
 
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #333333;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top i {
  font-size: 20px;
}




/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        display: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        color: var(--text-color) !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
  }
    /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hero-content h1{
    font-size: 24px;

  }
  .hero-slide {
    height: 60vh;  /* Further reduce height on mobile */
  }

  .hero-content p {
    font-size: 16px !important;
}




    .hero-content p {
        font-size: 1.25rem;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
    }

}


.titlewhychooseus{
    font-family: "DM Sans", sans-serif;
    font-size: 46px;
    text-align: center;
	font-weight: 700;
   line-height: 50px;
   margin-top: 40px;

}
.subwhychooseus{
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    text-align: center;
	font-weight: 500;
  
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
  .titlewhychooseus{
    color: #000;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-top: 0px;
    line-height: 34px;
  
  }
}









main {
	width: 100%;
	height: auto;
	flex-direction: row;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  }

  #carouselExampleCaptions {
	width: 80vw;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  }

  .carousel-inner {
	  width: 100%;
  }

  .card {
	  width: 100%;
	  height: 100%;
	  border-radius: 10px;
	  border: none;
	  transition: filter 0.5s ease;
	  background: none;
	  
  }




/* Controls */

i.fa-arrow-right,
i.fa-arrow-left {
    background: none !important;
    border: 2px solid #fa4842 !important;
    color: #fa4842!important;
    padding: 10px !important;
    border-radius: 100% !important;
}


  i.fa-arrow-right:hover,
  i.fa-arrow-left:hover {
	background: rgb(110, 6, 110);
	color: white;
   
  }

  .carousel-control-next {
	  margin: 0 3em;
  }

  .control-btn {
	  position: absolute;
	  top: 1.5em;
	  right: 5em;
  }

  .control-btn i.fa-arrow-left {
	  position: absolute;
	  right: 6em;
  } 
  .titleOurProducts{
	font-family: "DM Sans", sans-serif;
    font-size: 46px;
    
	text-align: center;
	font-weight: 700;
   line-height: 50px;
   margin-bottom: 30px;
}



/* Mobile-specific styles */
@media screen and (max-width: 768px) {
	.titleOurProducts {
	  font-size: 28px;  /* Smaller font size for mobile */
	  line-height: 34px;  /* Adjust line height for mobile */
	  margin-bottom: 10px;  /* Reduce bottom margin for mobile */
	}
  }
  
  /* Optional: Extra small devices (e.g., phones in portrait mode) */
  @media screen and (max-width: 480px) {
	.titleOurProducts {
	  font-size: 28px;  /* Further reduce font size for small phones */
	  line-height: 30px;  /* Adjust line height */
	  margin-bottom: 8px;  /* Adjust bottom margin for very small screens */
	}

   
    }
    @media screen and (max-width: 480px) {
        #carouselExampleCaptions {
            width: 95vw;
            height: 95vw;
          }
        }

  

  /* Indicators */

  .carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 100%;
	border: 2px solid  rgb(110, 6, 110);
  }

  .carousel-indicators .active {
	  opacity: 1;
	  background-color: rgb(110, 6, 110)
  }

@media screen and (max-width: 900px){
  #carouselExampleCaptions {
	width: 70vw;
	height: 70vw;
  }

  .card img {
	  width: 100%;
	  height: 10em;
  }

  }

  @media screen and (max-width: 576px) {
  .carousel-item .card .caption {
		position: absolute;
		top: 20px;
		left: 10px;
		background-color: rgba(255, 255, 255, 0.9);
		border-radius: 10px;
		padding: 10px;
  }
}





/*==================================================================
  [ Form ]*/
  
  .contact100-form {
	width: 100%;
  }
  
  .contact100-form-title {
	display: block;
	font-size: 30px;
	color: #43383e;
	line-height: 1.2;
	text-align: left;
	padding-bottom: 35px;
	font-family: "DM Sans", sans-serif;
  }
  
  
  
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input100 {
	width: 100%;
	position: relative;
	background-color: #fff;
	margin-bottom: 17px;
  }
  
  
	.label-input100 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 58px;
		height: 62px;
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
		font-size: 18px;
		color: #999999;
		font-family: "DM Sans", sans-serif;
	}
  
  .input100 {
	display: block;
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	color: #43383e;
	line-height: 1.2;
	padding: 0 5px;
  }
  
  
  /*---------------------------------------------*/
  input.input100 {
	height: 62px;
	padding: 0 20px 0 58px;
  }
  
  
  textarea.input100 {
	min-height: 199px;
	padding: 19px 20px 0 23px;
  }
  
  
  /*==================================================================
  [ Restyle Checkbox ]*/
  
  .contact100-form-checkbox {
	padding-top: 12px;
	padding-bottom: 20px;
  }
  
  .input-checkbox100 {
	display: none;
  }
  
  .label-checkbox100 {
	display: block;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	color: #43383e;
	line-height: 1.2;
  }
  
  .label-checkbox100::before {
	content: "\f00c";
	font-family: FontAwesome;
	font-size: 15px;
	color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 2px;
	background: #fff;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
  }
  
  .input-checkbox100:checked + .label-checkbox100::before {
	color: #555555;
  }
  
  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-contact100-form-btn {
	display: flex;
	flex-wrap: wrap;
	padding-top: 13px;
  }
  
  .wrap-contact100-form-btn {
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 31px;
	overflow: hidden;
  }
  
  .contact100-form-bgbtn {
	position: absolute;
	z-index: -1;
	width: 300%;
	height: 100%;
	background: #fa4842;
	top: 0;
	left: -100%;
  }
  
  .contact100-form-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	min-width: 160px;
	height: 62px;
	font-size: 18px;
	color: #fff;
	line-height: 1.2;
  background-color: #fa4842;
  }
  .validate-input {
	position: relative;
  }
  
  .alert-validate::before {
	content: attr(data-validate);
	position: absolute;
	max-width: 70%;
	background-color: #fff;
	border: 1px solid #c80000;
	border-radius: 2px;
	padding: 4px 25px 4px 10px;
	top: 50%;
	right: 2px;
	pointer-events: none;
  font-family: "DM Sans", sans-serif;
	color: #c80000;
	font-size: 13px;
	line-height: 1.4;
	text-align: left;
  visibility: hidden;
	opacity: 0;
  
  }
  
  .alert-validate::after {
	content: "\f06a";
	font-family: FontAwesome;
	display: block;
	position: absolute;
	color: #c80000;
	font-size: 16px;
	top: 50%;
	right: 8px;
  }
  
  .alert-validate:hover:before {
	visibility: visible;
	opacity: 1;
  }
  
  @media (max-width: 992px) {
	.alert-validate::before {
	  visibility: visible;
	  opacity: 1;
	}
  }
  /* Basic styles for the dropdown container */
.wrap-input100 {
	position: relative;
	width: 100%;
  }

  .form-select {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 30px 10px 10px;
    width: 100%;
    font-size: 18px;
    color: #43383e !important;
    cursor: pointer;
    position: relative;
    font-family: "DM Sans", sans-serif;}
  
  /* Arrow icon for select */
 
  input:focus-visible {
	border-color: #ccc!important;
	outline: 0;
	box-shadow: none !important;
  }
  .form-select:focus {
	border-color: #ccc!important;
	outline: 0;
	box-shadow: none !important;
  color: #43383e !important;
  }
  
  /* Add icon to the options */
  .form-select option {
	padding-left: 30px;
	font-size: 18px;
	color:#43383e !important;
  }
  
  /* Custom icon for select options */
  .form-select option i {
	margin-right: 10px;
  color: #43383e !important; 
	}
  
  /* Style the dropdown arrow */
  .form-select::after {
	content: '\f0d7'; /* FontAwesome down arrow */
	font-family: 'Font Awesome 5 Free'; /* FontAwesome icon */
	font-weight: 900;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
  color: #43383e !important;
}
  
/* Styling the input container */
.input100 {
	position: relative;
	height: 62px;
  }
 .Footernew {
	background-color: #1C1C1C;
   padding: 40px 0px !important;
}
 .custom-text-white {
	color: white !important;
	text-decoration: none;
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	padding-top: 10px;

	}
 .text-uppercase.fw-bold.mb-4.text-white {
	font-size: 20px;
	font-family: "DM Sans", sans-serif;
	margin-top: 20px;
  }
  .contact-info  {
	color: #fff;  
 }





/* .main-section{
  position: relative;
  width: 100%;
  top: -80px;
}   */
.servicestitel {
margin-top: 50px;
  font-size: 46px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 30px;
   text-align: center;
   font-family: "DM Sans", sans-serif;
}


/* Tablet (widths between 768px and 1024px) */
@media (max-width: 1024px) {
  .servicestitel {
    font-size: 38px;
    line-height: 44px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

/* Mobile (widths up to 767px) */
@media (max-width: 767px) {
  .servicestitel {
    font-size: 30px;
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.services h2 {

   font-size: 46px;
   font-weight: 700;
   line-height: 50px;
   margin-bottom: 30px;
    text-align: center;
    margin-bottom: 1rem;
    font-family: "DM Sans", sans-serif;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 4rem;
   
    font-family: "DM Sans", sans-serif;
}

.whysecnice01{
  padding-bottom: 80px;

}
/* Tablet (widths between 768px and 1024px) */
@media (max-width: 1024px) {
  .section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    padding: 0px 10px;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 6rem;

}
}

/* Mobile (widths up to 767px) */
@media (max-width: 767px) {
  .section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    padding: 0px 10px;
    margin-bottom: 5rem;
    font-family: "DM Sans", sans-serif;
}
.whysecnice01{
  padding-bottom: 40px;

}

.aboutsubtext{
  text-align: center;
  margin-bottom: 0.5rem  !important;
}
contentsectitel{
  font-size: 20px;
  line-height: 30px;
}
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

/* Mobile View (Below 768px) */
@media (max-width: 767px) {
  .services-grid {
      grid-template-columns: 1fr; /* Single column for mobile */
  }
}


.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #b9b5b5 ;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.iconsimg  {
  width: 80px; 
  height: 80px;
  display: block;
}

.service-card h3 {
    font-size: 28px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    line-height: 70px;
}

.service-card p {
  font-size: 18px;
    color: var(--text-light);
    font-family: "DM Sans", sans-serif;
    line-height: 30px;
}

.contentsectitel {
  font-family:"DM Sans", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
}

.container-contact100{
  margin-left: 80px;
  margin-right: 30px;
  margin-top: 10px;

}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .container-contact100 {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .container-contact100 {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.contentsecsub{
font-size: 18px;
font-family:"DM Sans", sans-serif;
margin-top: 20px;
}
.img-contact {
  width: 100%;
  height: 340px;
}




.center-slider img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.center-slider img:hover {
  transform: scale(1.05);
}





/* Tablet (768px and below) */
@media (max-width: 768px) {
  
#news-slider{
  margin-top: 30px;
}
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  #news-slider{
    margin-top: 20px;
  }
  .contentsectitel {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
  }
}







#news-slider{
  margin-top: 0px;
}
.post-slide{
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;

}

.owl-controls .owl-buttons{
  text-align:center;
  margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
  background: #fff;
  position: absolute;
  top:-13%;
  left:15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next{
  background: #fff;
  position: absolute;
  top:-13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
  content:"\f104";
  font-family: FontAwesome;
  color: #333;
  font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
  content:"\f105";
}
@media only screen and (max-width:1280px) {
  .post-slide .post-content{
      padding: 0px 15px 25px 15px;
  }
}


.custom-nav-img {
  width: 40px;
  height: 40px;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .custom-nav-img {
    width: 30px !important;
    height: 30px !important;
    margin-left: 20px;
  }
}

.bg_sectionImage {
  background-color: #f94842;
  height: auto;
  width: 100%;
  /* padding: 50px 0;  */
  /* position: relative; */
  margin-top: 100px;
}

.services {
  margin-top: -100px;
}

.service-card {
  background: #fff; 
  margin-top: -100px;
  padding: 20px;
  margin-bottom: 100px;
  
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  
  .services {
    margin-top: -100px;
   
  }
  
  .service-card {
    background: #fff; 
    margin-top: -50px;
    padding: 20px;
    margin-bottom: 60px;
  }
  
  }
  
  /* Mobile (480px and below) */
  @media (max-width: 480px) {
    
    .services {
      margin-top: -100px;
    }

    .service-card {
      background: #fff; 
      margin-top: -50px;
      padding: 20px;
      margin-bottom: 40px;
      
    }
  }


  .producttitel{
    margin-top: 40px;
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    text-align: center;

  }

  .owl-nav{
    position: absolute;
    top: -60px;
    right: 30px;
  }

  @media (max-width: 768px) {
    
    .owl-nav{
      position: absolute;
      top: -20px;
      right: 0px;
    }
  }
  
  .footersubcop {
    color:#FFF;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding-top:10px;
    text-align: center;
      margin-top: 0rem;
     margin-bottom: 0rem;
  }
  .footerrights{
      padding: 10px 0px;
      background-color:#333333 ;
       margin-top: 0rem;
     margin-bottom: 0rem;
  }


  @media (max-width: 768px) {
.swiper-button-next:after,.swiper-button-prev:after {
    display: none;
 }
}

  @media (max-width: 768px) {
.scroll-top {
   left: 10px;
 }
}


  .dropdown-toggle {
    display: flex !important;

    justify-content: space-between !important;

    align-items: center;
    width: 100% !important;

}


.form-check-input {

  border: 1px solid #000 !important;
}
  .dropdown-menu {
    width: 100%;
    margin-top: 5px !important;
    border: 1px solid #000 !important;
    border-radius: 0px !important;
    font-weight: 400 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 18px !important;
    color: #43383e !important;
  }

  
  @media (max-width: 768px) {
    .dropdown-menu {
    font-weight: 400 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 16px !important;
    color: #43383e !important;
  }

  }

  .btn {
    width: 100%;  
    text-align: left !important;
    height: 56px;
    border-radius: 0px !important;
    margin-bottom: 17px;

  }
  .btn-primary {
    font-weight: 400 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 18px !important;
    color: #757575 !important;
    line-height:21.6px !important;
    background-color: #fff !important;
    border-color: #000000  !important;
}
.btn-primary:focus {
  box-shadow: none  !important;
}
.form-check-input:focus {
  box-shadow: none  !important;
 
}


.form-check-input:checked {
   background-color: #f33b34 !important;
   border-color: #f33b34 !important;
}


