
ul,
ol {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

a:focus {
	outline: none;
}

a,
i,
input[type="submit"] {
	text-decoration: none;
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	text-decoration: none !important;
}

img {
	max-width: 100%;
}

textarea:focus,
input:focus,
select:focus {
	outline: 0;
}

.marg--15 {
	margin: 0 -15px;
}

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
	text-align: center;
}

/* Make Appointment */
section.appointment {
    padding: 60px 0;
    background: #F5F5F5;
    width: 100%;
}
section.appointment h2 {
    font-weight: bold;
    font-size: 45px;
    color: #121212;
    text-transform: uppercase;
    padding-bottom: 30px;
}

/* Multistep Form */
.multistep-scrollbar {
    width: 95%;
    height: 10px;
    background: #d9d9d9;
    border-radius: 100px;
    position: relative;
    margin: 0 auto;
}
.multistep-scrollbar-circle {
    width: 25px;
    height: 25px;
    background: #F5F7FA;
    border-radius: 100%;
    position: absolute;
    z-index: 99;
    top: -9px;
    border: 3px solid #D0112B;
}
.multistep-scrollbar-circle.multistep-scrollbar-circle1 {
    left: -1px;
}
.multistep-scrollbar-circle.multistep-scrollbar-circle2 {
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
    left: 5%;
}
.multistep-scrollbar-wrapper {
    height: 100%;
    background: #D0112B;
    width: 6%;
    transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
}
ul.multistep-titles {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
ul.multistep-titles li {
    width: 16.66667%;
    text-align: center;
    font-size: 20px;
    color: #D0112B;
    font-weight: 500;
}
ul.multistep-titles li.active-title {
    color: #121212;
}
.multistep-form-fields {
    width: 97%;
    margin: 50px auto 0;
    display: none;
}
.multistep-form-fields h3 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 20px;
    color: #121212;
}
ul.multistep-form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
ul.multistep-form-checkboxes label {
    color: #121212;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
ul.multistep-form-checkboxes label input {
    opacity: 0;
}
ul.multistep-form-checkboxes label:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    background: url("../images/tabler-icon-square-rounded-check.png");
    background-size: 100% 100%;
    top: 4px;
    cursor: pointer;
    z-index: 99;
}
ul.multistep-form-checkboxes label.active-label:before {
    background: url("../images/tabler-icon-square-rounded-check-filled.png");
    background-size: 100% 100%;
}
ul.multistep-form-fields123 {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
ul.multistep-form-fields123 li {
    width: 100%;
    padding: 10px;
}
ul.multistep-form-fields123 li input, ul.multistep-form-fields123 li textarea {
    width: 100%;
    padding: 10px;
    color: #121212;
    font-size: 18px;
    font-weight: 600;
    resize: none;
    border: 1px solid #121212;
    border-radius: 10px;
}
li.multistep-form-next-btn {
    text-align: right;
}
li.multistep-form-next-btn a {
    background: #D0112B;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
}
ul.multistep-form-fields123 li.w-50 {
    width: 50%;
}

/* responsive */

@media (min-width:1440px) and (max-width:1920px){
  .container{
    max-width: 1298px;
  }
}

@media (min-width:992px) and (max-width:1199px) {
	
}

@media (min-width:768px) and (max-width:991px) {
	.container{
		max-width: 720px;
	}
}

@media only screen and (max-width:767px) {
	section.appointment h2 {
	    font-size: 22px;
	}
	ul.multistep-titles li {
	    font-size: 12px;
	}
}