* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Cambay', sans-serif;
  font-family: 'Dancing Script', cursive;
  font-family: 'Poppins', sans-serif;
  font-family: 'Roboto', sans-serif;
}

.main___slider img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}

/* ++++++++++HOVER ACTIEE=========== */
a {
  color: #e03a3c;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

.head_area {
  background-color: #313131;
  height: 54px;
  display: flex;
  align-items: center;
}

.head_info a {
  color: #fff;

}

.top_btn a {
  color: #fff;
  background: #df4521;
  padding: 17px 31px;
  font-size: 17px;
}

.top_btn {
  float: inline-end;
}

.head_info a i {
  padding-right: 5px;
}

.head_info {
  font-size: 17px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e03a3c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {

  transition: all 0.5s;
  z-index: 997;

}

.main__header {
  background-color: #fff;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #e03a3c;
}


/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #e03a3c;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 58px;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.main__header {
  margin-top: 14px;
}

.img_logo img {
  height: 72px;
  width: 150px;
  margin-top: -22px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  /* text-align: center; */
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.order_list i {
  font-size: 20px;
  padding-right: 8px;
}

.order_list li:hover .bi-check-circle-fill {
  color: #df4521;
}

.active,
.dot:hover {
  /* background-color: #717171; */
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

  .prev,
  .next,
  .text {
    font-size: 11px
  }
}

.fade:not(.show) {
  opacity: 1;
}

.login__content {
  color: #f2f2f2;
  border: none;
  background-color: rgba(0, 0, 0, 0.466);
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 5px;
  padding: 10px 25px;
}

.login__content2 {
  color: #f2f2f2;
  border: none;
  background-color: rgba(0, 0, 0, 0.466);
  font-family: 'Poppins';
  margin-bottom: 5px;
  padding: 15px 25px;
}

.dani_gold {
  /* height: 342px; */
  object-fit: cover;
  width: 100%;
}

.that_deals h1 {
  color: #202020;
  font-size: 26px;
  font-weight: 700;
  margin: 0px;
  padding-left: 20px;
}

.that_deals p {
  padding-left: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  font-family: 'Poppins';
  ;
  
}

.order_list li {
  list-style: none;
  padding-left: 20px;
  font-weight: 600;
  line-height: 46px;
  font-size: 17px;
  color: #3d3d3d;
}

.bi-check-lg::before {
  /* content: "\f135"; */
  background-color: black;
  height: 33px;
  width: 33px;
  margin-right: 13px;
  color: white;
  padding-top: 8px;
  border-radius: 50%;
}

.bi-arrow-right-short::before:hover {
  background-color: rgb(248, 94, 23);
}

.order_list li i {
  text-align: center;
}

.Flat {
  background-color: #faf9f9;
  width: 100%;
  height: auto;
}

.repair {
  text-align: center;
  font-size: 32px;
  color: #202020;
  font-weight: bold;
}

.carry {
  margin-top: 20px;
  height: auto;
  width: 100%;
  background-color: #fff;
}

.repair::after {
  content: "";
  display: block;
  margin: auto;
  margin-top: 21px;
  height: 2px;
  width: 40px;
  background-color: #df4521;
  text-align: center;
}

.carry h6 {
  font-size: 20px;
  padding: 10px;
  color: #ffff;
  z-index: 11;
  position: relative;
}

.carry img {
  display: block;
  margin: auto;

}

.close_icon {
  display: none;
}

@media only screen and (max-width: 767px) {
  .navbar ul {
    position: fixed;
    display: block;
    top: 0px;
    width: 50%;
    background: antiquewhite;
    right: 0px;
    bottom: 0px;
    z-index: 11;
    margin-right: -100%;
    transition: 0.5s all;
    padding-top: 50px;
  }

  .close_icon {
    display: block;
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 30px;
  }
}

.carry_div {
  width: 100px;
  height: 100px;
  background-color: #df4521;
  clip-path: polygon(100% 0, 0 0, 0 90%);
  position: absolute;
  transition: 0.5s all;
}

.carry:hover .carry_div {
  background-color: #faf9f9;
}

.carry:hover.carry h6 {
  color: rgb(0, 0, 0);
}

.carry:hover.carry h5 {
  color: red;
}

.carry:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, .2);
}

.carry h5 {
  font-size: 19px;
  text-align: center;
  color: #222222;
}

.carry p {
  text-align: center;
  font-size: 17px;
  padding: 10px;
}

.main_bg {
  background-image: url(/assets/img/main_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  width: 100%;
  /*margin-top: 30px;*/
}

.repair_service {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  font-family: 'Poppins';
  text-align: center;
}

.cover_p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Poppins';
  text-align: center;
  line-height: 35px;
}

.resolve_p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Poppins';
  text-align: center;
  line-height: 35px;

}

.ruined {
  margin-top: 0px;
}

.contact_btn {
  border: none;
  color: #3d3d3d;
  background: #ffffff;
  display: table;
  margin: 0 auto;
  border-radius: 100px;
  padding: 12px 50px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: 0.3s;
}

.contact_btn:hover {
  background-color: #df4521;
  color: #ffff;
}

.choose_h {
  color: #222222;
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 800;
  text-align: left;
}

.goto_p {
  color: #575757;
  font-size: 17px;
  line-height: 29px;

}

.team_work {
  height: auto;
  width: 100%;
  padding: 10px 10px;
  border: solid 0px #ededed;
  margin: 25px 0px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px #ededed;
}

.team_work a {
  color: #282828;
  font-size: 19px;
  padding-left: 10px;
  font-weight: 600;
}

.team_work a:hover {
  color: #df4521;
}

.team_work p {
  padding-left: 60px;
  font-size: 16px;
}

.main_people img {}

.atlanta {
  color: #202020;
  font-size: 26px;
  font-weight: 800;
  font-family: 'Poppins';
  text-align: center;
}

.atlanta:after {
  content: "";
  display: block;
  margin: auto;
  margin-top: 21px;
  height: 2px;
  width: 40px;
  background-color: #df4521;
  text-align: center;
}

.team_repair img {
  width: 100%;
  height: 250px;
  object-fit: cover;

}

.about-section {
  background-color: #faf9f9;
  height: auto;
  width: 100%;
}

.about_h1 {
  font-size: 32px;
  color: #282828;
  font-weight: 600;
  padding-top: 27px;
  padding-bottom: 27px;
  font-family: 'Poppins';
}

.welcome {
  font-size: 16px;
  color: #000000c7;
  padding-bottom: 19px;

}

.gold_tier {
  font-size: 16px;
  line-height: 29px;
  padding-bottom: 25px;
}

strong {
  font-weight: bolder;
}

.footercol8 {

  text-align: left;
  float: left;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  margin-top: -4%;
}

.main_footer {
  background-color: #171717;
}

.footer-main h3 {
  color: #ffff;
}

.footer_p {
  color: #838282;
  font-size: 15px;
  line-height: 27px;
}

.menu-footer-container ul li a {
  color: #fff;
  line-height: 25px;
  list-style: none;
}


.footmenu li a {
  color: #fff;

  border-bottom: solid 1px #2c2c2c;

  border-bottom-style: dashed;

  line-height: 25px;
  margin: 0 10% 5px 0;
  padding-bottom: 5px;

}

.repair-out {
  text-align: center;
  font-size: 32px;
  padding-top: 30px;
  font-weight: 700;
  color: #202020;
  font-weight: bold;
}

.repair-out::after {
  content: "";
  display: block;
  margin: auto;
  margin-top: 21px;
  height: 2px;
  width: 40px;
  background-color: #df4521;
  text-align: center;
}

.danil-btn {
  position: absolute;
  color: rgb(253, 253, 253);
  border: none;
  left: 0px;
  padding: 4px 14px;
  bottom: -14px;
  background: #df4521;

}

.comon__tiers a {
  color: black;
  font-size: 19px;
  font-weight: 700;
}

.comon__tiers {
  margin-top: 50px;
}

.compare {
  font-size: 16px;
  padding-top: 10px;
  line-height: 29px;
}

.view-btn {
  display: block;
  margin: auto;
  color: #fff;
  border: none;
  background: #df4521;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: bold;
}

.client {
  text-align: center;
  color: #202020;
  font-weight: 700;
}

.slide_info {
  height: auto;
  margin-top: 30px;
  width: 100%;
  background-color: #faf9f9;

}

.sliding_people {
  height: 367px;
  background-color: hsl(0, 0%, 100%);
  width: 100%;
}

.sliding_people i {
  font-size: 50px;
  display: flex;
  justify-content: center;
  padding-top: 49px;
}

.footer-main h3 {
  font-weight: 700;
  /*padding-bottom: 30px;*/
}

.program-content {
  margin-top: 70px;
}












.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;

  margin: 18px auto;

}

.accordion h1 {
  font-size: 32px;
  text-align: center;
}

.accordion-item {
  margin-top: 16px;
  border: 1px solid #fcfcfc;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.accordion-item .accordion-item-title {
  position: relative;
  margin: 0;
  display: flex;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0px 20px;
  box-sizing: border-box;
  align-items: center;
}

.accordion-item .accordion-item-desc {
  display: none;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  color: #444;
  border-top: 1px dashed #ddd;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}

.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-desc {
  display: block;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-title .icon:after {
  content: "-";
  font-size: 20px;
}

.accordion-item input[type="checkbox"]~.accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item .icon {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 0 16px;
  }

  .ruined {
    margin-top: 8px;
    margin-bottom: 30px;
  }

  .accordion {
    margin: 0px;
  }

  .accordion h1 {
    font-size: 22px;
  }
}

.accordion-item-title {

  border: 1px solid #0000001f;
}

.sliding_people p {
  line-height: 30px;
  text-align: center;
  padding-top: 30px;
  font-size: 17px;
  color: #898686;
  padding: 0 24px;
}

.copyright {
  color: #838282;
  font-size: 14px;
  line-height: 27px;
}

.main_footers {
  margin-right: 0px;
}
.content-common{
  overflow-x: hidden;
}
.footercol8 {
  /*background: #171717;*/
  margin-top: -4%;

}

@media screen and (max-width: 500px) {
  .cover_p {
    font-size: 19px;
  }

  .that_deals h1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .that_deals p {
    margin-bottom: 0px;
  }
  .submit_btn{
    margin-bottom: 0px!important;
  }
  .main_footers {
    margin-right: 0px;
  }
  .contact-inf{
    margin-top: 24px!important;
  }

  .footercol8 {
    width: 100%;
    margin-top: 7px;
  }
}

@media screen and (max-width: 400px) {

  .top_btn a {
    padding: 5px;
    font-size: 14px;

  }

  .program-content {
    margin-top: 25px;
  }
}

/* footer */