@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.text-white {
  color: #FFFFFF !important;
}
.text-light {
  color: #FAFAFA !important;
}
.text-soft {
  color: #DCE0E5 !important;
}
.text-grey {
  color: #CCCCCC !important;
}
.text-primary {
  color: #FFAA0F !important;
}
.text-dark {
  color: #202529 !important;
}
.text-muted {
  color: #5B5B5B !important;
}
.text-red {
  color: #F46C6C !important;
}
.text-green {
  color: #0FCD17 !important;
}

.navbar {
  border-bottom: 1px solid #DCE0E5;
  padding: 20px 0;
}
.navbar .navbar-brand img {
  position: relative;
  top: -2px;
  height: 25px;
}
.navbar .nav-item .nav-link {
  font-size: 12px;
  color: #5B5B5B;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 10px;
  transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.navbar .nav-item .nav-link:hover {
  color: black;
  transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.navbar .nav-item.active .nav-link {
  color: #FFAA0F !important;
}
.navbar .nav-icon {
  height: 14px;
  position: relative;
  top: -1px;
}

.card {
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.card .card-body {
  padding: 50px;
}
@media screen and (max-width: 992px) {
  .card .card-body {
    padding: 20px;
  }
}

@media screen and (max-width: 576px) {
  .btn-full {
    width: 100%;
    display: block;
  }
}

.btn-primary {
  background-color: #FFAA0F;
  text-transform: uppercase;
  padding: 12px 25px;
  border: 0;
  font-weight: 700;
  box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.25) !important;
  -moz-box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.25) !important;
  -webkit-box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.25) !important;
  -o-box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.25) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #ef9b00 !important;
  box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.5) !important;
  -moz-box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.5) !important;
  -webkit-box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.5) !important;
  -o-box-shadow: 0px 15px 35px rgba(255, 170, 15, 0.5) !important;
}

label {
  font-size: 14px;
  font-weight: 600;
}

.form-control {
  padding: 20px 15px;
  outline: none !important;
  box-shadow: none !important;
}
.form-control:active, .form-control:focus {
  border-color: #5B5B5B;
}
.form-control-lg {
  font-size: 16px;
  padding: 25px 20px;
}

hr {
  margin: 30px auto;
}

.pricing-check {
  display: none;
}
.pricing-check:checked + label {
  border: 2px solid #FFAA0F;
}

.pricing {
  width: 100%;
  display: block;
  border: 2px solid #DCE0E5;
  padding: 20px 15px;
  text-align: center;
  font-size: 12px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.soft {
  opacity: 0.6;
}

.gutter-sm.row {
  margin-right: -5px;
  margin-left: -5px;
}
.gutter-sm > [class^=col],
.gutter-sm > [class^=col-],
.gutter-sm > [class^=" col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.caption {
  display: inline;
  font-size: 12px;
  position: relative;
  top: -1px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #0FCD17;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0FCD17;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.dripicons {
  position: relative;
  top: 2px;
}

.sidebar {
  top: 20px;
}

th {
  font-size: 12px;
}

.step-bar {
  background-color: #FAFAFA;
  padding: 30px 0;
  margin-bottom: 40px;
  font-weight: 600;
  color: #a8a8a8;
  position: relative;
}
.step-bar .step:before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  top: 16px;
  right: 0;
  height: 2px;
  background-color: #DCE0E5;
}
.step-bar .step.first:before, .step-bar .step.last:before {
  width: 50%;
}
.step-bar .step.last:before {
  left: 0;
}
.step-bar .step.completed {
  color: #FFAA0F;
}
.step-bar .step.completed:before {
  background-color: #FFAA0F;
}
.step-bar .step.completed .step-num {
  background-color: #FFAA0F;
  color: #FFFFFF;
}
.step-bar .step.completed .step-num:after {
  content: "S";
  width: 35px;
  height: 35px;
  font-family: "dripicons-v2";
  background-color: #FFAA0F;
  color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.step-bar .step.active {
  color: #FFAA0F;
}
.step-bar .step.active:before {
  background-color: #FFAA0F;
}
.step-bar .step.active .step-num {
  background-color: #FFAA0F;
  color: #FFFFFF;
}
.step-bar .step.active .step-num:before {
  content: "";
  width: 47px;
  height: 47px;
  position: absolute;
  top: -6px;
  left: -6px;
  background-color: rgba(255, 170, 15, 0.2);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.step-bar .step .step-num {
  width: 35px;
  height: 35px;
  background-color: #DCE0E5;
  line-height: 35px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 15px;
  z-index: 199;
  position: relative;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}

footer {
  background-color: #202529;
  color: #CCCCCC;
  padding: 30px 0;
}
footer hr {
  border-color: #5B5B5B;
  margin: 15px 0;
}
footer ul {
  list-style-type: none;
  margin-left: -40px;
}
footer ul li {
  margin-bottom: 7px;
}
footer a {
  color: #CCCCCC;
}
footer a:hover {
  color: #CCCCCC;
  opacity: 0.5;
}

.map {
  height: 600px;
  background-color: #EAEAEA;
  position: relative;
}
.map .search {
  position: absolute;
  bottom: 100px;
  left: 50%;
  width: 700px;
  margin-left: -350px;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.map .search input {
  border: 0;
  font-size: 19px;
  padding-top: 22px;
}
.map .search button {
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}

.modal {
  font-family: "Rubik";
}
.modal .modal-content {
  border: 0;
  padding: 50px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.modal .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  opacity: 0.2;
  transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.modal .modal-close:hover {
  opacity: 1;
  cursor: pointer;
  transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.modal .popup-menu {
  text-align: center;
  font-size: 16px;
  border: 1px solid #CCC;
  padding: 20px;
  color: #5B5B5B !important;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.modal .popup-menu:hover {
  background: #EEE;
  cursor: pointer;
  text-decoration: none !important;
  transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
}
.modal .popup-menu .icon {
  height: 80px;
  margin: 10px auto 20px;
  display: block;
}

img {
  max-width: 100%;
}

body {
  color: #5B5B5B;
  font-size: 14px;
}

.content {
  margin: 60px 0 120px;
}
@media screen and (max-width: 576px) {
  .content {
    margin: 30px 0 40px;
  }
}

/*# sourceMappingURL=styles.css.map */
