@font-face {
    font-family: "LibreFranklin-Medium";
    src: url("../fonts/LibreFranklin-Medium.eot?") format("embedded-opentype"),url("../fonts/LibreFranklin-Medium.ttf") format("truetype"),url("../fonts/LibreFranklin-Medium.woff") format("woff");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.eot?") format("embedded-opentype"),url("../fonts/Roboto-Regular.otf") format("opentype"),url("../fonts/Roboto-Regular.woff") format("woff");
}

@-webkit-keyframes fadeInRight {
    0% {
        -webkit-transform: translateX(-80px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        -webkit-transform: translateX(-80px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

html * {
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

html a {
    color: #000;
    text-decoration: none;
}

html body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html body .css300 {
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

html body .nav-wrapper {
    position: fixed;
    font-family: "LibreFranklin-Medium";
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 6;
    top: 0;
    left: 0;
    transition: transform .5s;
    transform: translateX(-100%);
}

html body .nav-wrapper.show-menu {
    width: 100%;
    transform: none;
}

html body nav::-webkit-scrollbar {
    display: none;
}

html body nav {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 0 5px 1px #ddd;
    background-color: #fff;
}

html body nav #mobile-nav-top {
    height: fit-content;
    display: flex;
    width: 100%;
}

html body nav #mobile-nav-top #mobile-nav-logo {
    margin: 0 auto;
    display: block;
    height: fit-content;
    padding: 2em 2em;
    z-index: 100;
    cursor: pointer;
}

html body nav #mobile-nav-top #mobile-nav-logo img {
    margin: 0 auto;
    display: block;
    vertical-align: middle;
}

html body nav #mobile-nav-top #mobile-nav-close {
    position: absolute;
    right: 0;
    display: inline-flex;
    height: fit-content;
    align-self: center;
    align-items: center;
    padding: 2em 2em;
    z-index: 100;
    cursor: pointer;
}

html body nav #mobile-nav-top #mobile-nav-close #nav-close-icon {
    display: inline-flex;
    align-items: center;
}

html body nav #mobile-nav-top #mobile-nav-close #nav-close-icon img {
    width: 35px;
}

html body nav .nav-toggle {
    display: none;
}

html body nav .nav-dropdown-open ul {
    padding: 179px 0 0;
}

html body nav .back-visible {
    display: unset;
    position: absolute;
    top: 135px;
    left: 0;
    width: 100%;
    padding: .45em 0;
    background-color: #ff9f00;
    color: #fff;
    z-index: 100;
    cursor: pointer;
    transition: background-color .2s;
}

html body nav .back-visible:hover {
    background-color: #ff9f00;
}

html body nav .back-visible.back-visible .nav-back {
    opacity: 1;
}

html body nav .back-visible.back-visible .nav-title {
    margin-left: 20px;
}

html body nav .back-visible {
    padding-left: 2em;
}

html body nav .nav-title {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transition: transform .3s;
}

html body nav .nav-back {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    z-index: 1;
    opacity: 0;
    transition: opacity .2s;
}

html body nav .nav-back:before,html body nav .nav-back:after {
    content: "";
    position: absolute;
    top: 50%;
}

html body nav .nav-back:before {
    left: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid currentcolor;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: translate(-50%,-50%) rotateZ(-45deg);
}

html body nav .nav-back:after {
    left: 28%;
    width: 15px;
    height: 2px;
    background-color: currentcolor;
    margin-top: -1px;
}

html body nav li a {
    display: block;
    position: relative;
    padding: 1em 0 1em 2em;
    border-bottom: 1px solid #eee;
    color: #000;
    text-decoration: none;
    transition: color .15s,background-color .15s;
}

html body nav li a:hover {
    color: #fff;
    background-color: #ffba3c;
}

html body nav li img {
    filter: grayscale(100%) brightness(0) invert(0);
    -webkit-filter: grayscale(100%) brightness(0) invert(0);
    width: 20px;
    vertical-align: middle;
    margin-right: 20px;
}

html body nav ul {
    list-style: none;
    padding: 135px 0 0;
    transition: transform .5s;
    background-color: #fafafa;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

html body nav ul ul {
    display: none;
    left: 100%;
}

html body nav li.has-dropdown>a {
    padding-right: 2.5em;
}

html body nav li.has-dropdown>a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 9px;
    height: 9px;
    border: 1px solid currentcolor;
    border-left-color: transparent;
    border-top-color: transparent;
    transform: translateY(-90%) rotateZ(-45deg);
    transition: transform .3s;
    transform-origin: 100%;
}

html body nav li.nav-dropdown-open>ul {
    display: block!important;
}

html body nav #mobile-nav-bottom {
    bottom: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-top {
    font-size: 10px;
    width: 100%;
    display: flex;
    text-align: center;
    background-color: #fff5c2;
    padding: 10px;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm {
    font-size: 12px;
    width: 100%;
    display: flex;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm a {
    text-align: center;
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm a img {
    width: 25px;
    margin-bottom: 10px;
    vertical-align: middle;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm #btn-locate-us img {
    width: 30px;
    margin-bottom: 5px;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm #btn-locate-us:hover {
    color: #ffba3c;
    transition: color .15s,background-color .15s;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm #btn-book-apmt {
    color: #fff;
    background-image: linear-gradient(58deg,#ffba3c,#ffdd6c);
    background-size: 300% 100%;
    cursor: pointer;
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm #btn-book-apmt img {
    filter: brightness(0) invert(1);
}

html body nav #mobile-nav-bottom #mobile-nav-bottom-btm #btn-book-apmt:hover {
    background-position: 100% 0;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

html body #navbar-wrapper #menu-section {
    display: none;
}

html body #navbar-wrapper #navbar-btn-section {
    display: none;
}

html body #navbar-wrapper {
    background-color: #fff;
    width: 100%;
    min-height: 80px;
    z-index: 4;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 15px -6px rgba(0,0,0,.12);
}

@media screen and (min-width: 1600px) {
    html body #navbar-wrapper #menu-section .menu-table .menu-item {
        font-size:1vw;
    }

    html body #navbar-wrapper #menu-section .menu-table #appoint-nav {
        padding-right: 1vw;
    }

    html body #navbar-wrapper #menu-section .menu-table #appoint-nav #appoint-button .btn {
        margin-right: 1vw;
    }

    html body #navbar-wrapper #menu-section .menu-table #appoint-nav #appoint-button .btn #book-apmt-text {
        font-size: 1vw;
    }
}

html body #navbar-wrapper #nav-icon-section {
    position: absolute;
    display: flex;
    align-self: center;
    align-items: center;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    cursor: pointer;
    padding: 10px;
    vertical-align: middle;
}

html body #navbar-wrapper #nav-icon-section img {
    width: 35px;
}

html body #navbar-wrapper #nav-icon-section #nav-icon.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

html body #navbar-wrapper #nav-icon-section #nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

html body #navbar-wrapper #nav-icon-section #nav-icon.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #nav-icon-section {
        display:none;
    }
}

html body #navbar-wrapper #navbar-left-section {
    width: 100%;
    text-align: center;
}

html body #navbar-wrapper #navbar-left-section #logo-section {
    text-align: center;
}

html body #navbar-wrapper #navbar-left-section #logo-section img {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    max-width: 100px;
}

@media screen and (min-width: 1118px) {
    html body .nav-wrapper {
        display:none;
    }

    html body #navbar-wrapper {
        background-image: linear-gradient(0deg,#ffba3c,#ffdd6c);
    }

    html body #navbar-wrapper #navbar-left-section {
        display: table;
        align-items: center;
        background-color: #fff;
        border-radius: 0 50px 50px 0;
        width: 65%;
        padding: 0 1vw;
    }

    html body #navbar-wrapper #navbar-left-section #logo-section {
        display: table-cell;
        vertical-align: middle;
        height: 100%;
        cursor: pointer;
        text-align: left;
    }

    html body #navbar-wrapper #navbar-left-section #logo-section img {
        display: table-cell;
        vertical-align: middle;
        min-width: 120px;
        max-width: 145px;
        padding: 15px 0;
        margin: auto;
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-left-section #logo-section img {
        padding:.9px 0;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section {
        display:table-cell;
        vertical-align: middle;
        height: 5.9vw;
        width: auto;
        flex: 1;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table {
        display: inline-table;
        vertical-align: middle;
        height: 100%;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table #services-nav:hover .service-nav-list {
        display: block;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table #about-us-nav:hover .about-us-nav-list {
        display: block;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item {
        font-size: 12px;
        letter-spacing: .007vw;
        color: #000;
        display: table-cell;
        position: relative;
        width: 2%;
        vertical-align: middle;
        text-align: center;
        cursor: pointer;
    }
}

@media screen and (min-width: 1118px) and (min-width:1280px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item {
        font-size:15px;
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item {
        font-size:1vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .subservice-a-item {
        font-family:"LibreFranklin-Medium";
        vertical-align: middle;
        display: inline-block;
        padding: 0 .625vw;
        white-space: nowrap;
        -moz-transition: all 300ms;
        -webkit-transition: all 300ms;
        -o-transition: all 300ms;
        transition: all 300ms;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item:hover .nav-a-item {
        color:#ff9f00;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list {
        left: -7%!important;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        left:0;
        bottom: -14.4vw;
        box-shadow: 0 .588vw .882vw 0 rgba(0,0,0,.1);
        position: absolute;
        z-index: -1;
        display: none;
        background-color: #fff;
        white-space: nowrap;
        border-radius: 0 0 10px 10px;
        cursor: default;
        width: 1072px;
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        border-radius:0 0 .625vw .625vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list>ul,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list>ul {
        display:flex;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul {
        list-style:none;
        text-align: left;
        padding: 0;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .service-nav-item:hover .subservice-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .service-nav-item:hover .about-us-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .about-us-nav-item:hover .subservice-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .about-us-nav-item:hover .about-us-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .service-nav-item:hover .subservice-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .service-nav-item:hover .about-us-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .about-us-nav-item:hover .subservice-nav-list,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .about-us-nav-item:hover .about-us-nav-list {
        left: 28vw;
        opacity: 1;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .service-nav-item:hover .service-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .service-nav-item:hover .about-us-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .about-us-nav-item:hover .service-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul .about-us-nav-item:hover .about-us-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .service-nav-item:hover .service-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .service-nav-item:hover .about-us-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .about-us-nav-item:hover .service-nav-a-item,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul .about-us-nav-item:hover .about-us-nav-a-item {
        color: #ffdd6c;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul li a,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul li a {
        display: block;
        font-size: 1.029vw;
        padding: 1vw .7vw;
        opacity: .7;
    }

    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list ul li:hover>a,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul li:hover>a {
        opacity: 1;
        color: #ffdd6c;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list img,html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list img {
        width:1vw;
        vertical-align: middle;
        display: inline-block;
        filter: grayscale(100%) brightness(0) invert(0);
        -webkit-filter: grayscale(100%) brightness(0) invert(0);
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        bottom: -14.5vw !important;
        left: -2.5vw;
        width: auto !important;
    }
}

@media screen and (min-width: 1118px) and (min-width:1100px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        left:-26%;
    }
}

@media screen and (min-width: 1118px) and (min-width:1380px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        left:-22%;
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        left:-21%;
    }
}

@media screen and (min-width: 1118px) and (min-width:2000px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list {
        left:-19%;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .about-us-nav-list ul {
        padding:1vw .7vw;
        flex-direction: column;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table .menu-item .service-nav-list>ul {
        padding:1vw .7vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-left-section #menu-section .menu-table #services-nav {
        position:unset;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section {
        display:flex;
        vertical-align: middle;
        flex: 1;
        text-align: center;
        justify-content: space-around;
        align-items: center;
        padding: 0 20px;
    }

    html body #navbar-wrapper #navbar-btn-section #location-nav img {
        vertical-align: middle;
        width: 1.5vw;
    }

    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper a,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper a {
        padding: 0;
    }

    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn {
        display: table;
        border-radius: 30px;
        padding: .735vw 2vw;
        color: #ff9f00;
        background-color: #fff;
        height: 50px;
        cursor: pointer;
        box-shadow: 0 8px 15px -6px rgba(0,0,0,.2);
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn {
        border-radius:1.875vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn:hover,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn:hover {
        transform:scale(1.05);
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn div,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn div {
        display:table-cell;
        vertical-align: middle;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn .nav-btn-img,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn .nav-btn-img {
        padding-right:10px;
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn .nav-btn-img,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn .nav-btn-img {
        padding-right:.625vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn .nav-btn-img img,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn .nav-btn-img img {
        vertical-align:middle;
        width: 1.5vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn .nav-btn-text,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn .nav-btn-text {
        font-size:12px;
        font-family: "LibreFranklin-Medium";
    }
}

@media screen and (min-width: 1118px) and (min-width:1280px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn .nav-btn-text,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn .nav-btn-text {
        font-size:15px;
    }
}

@media screen and (min-width: 1118px) and (min-width:1600px) {
    html body #navbar-wrapper #navbar-btn-section #appoint-nav .nav-button-wrapper .btn .nav-btn-text,html body #navbar-wrapper #navbar-btn-section #clinics-nav .nav-button-wrapper .btn .nav-btn-text {
        font-size:1vw;
    }
}

@media screen and (min-width: 1118px) {
    html body #navbar-wrapper #navbar-btn-section #clinics-nav {
        padding-right:10px;
    }
}

html body #back-to-top-btn {
    width: 40px;
    display: none;
    position: fixed;
    text-align: center;
    bottom: 11%;
    left: 8px;
    z-index: 2;
    font-size: 14px;
    border: 0;
    outline: 0;
    background-color: #ffba3c;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all .3s ease;
    animation: fadeInRight .3s;
    -moz-animation: fadeInRight .3s;
    -webkit-animation: fadeInRight .3s;
    -o-animation: fadeInRight .3s;
    box-shadow: 0 0 9.343px rgba(0,0,0,.1);
}

@media screen and (min-width: 520px) {
    html body #back-to-top-btn {
        bottom:12%;
    }
}

@media screen and (min-width: 720px) {
    html body #back-to-top-btn {
        font-size:18px;
        width: 60px;
        padding: 16px;
    }
}

@media screen and (min-width: 1024px) {
    html body #back-to-top-btn {
        bottom:auto;
        top: 80%;
    }
}

@media screen and (min-width: 1600px) {
    html body #back-to-top-btn {
        width:3.75vw;
        font-size: 1.125vw;
        padding: 1vw;
        left: 1%;
    }
}

html body #back-to-top-btn img {
    transform: rotate(-180deg);
    margin: auto;
    width: 20px;
    vertical-align: middle;
}

@media screen and (min-width: 1600px) {
    html body #back-to-top-btn img {
        width:1.25vw;
    }
}

html body #back-to-top-btn:hover {
    opacity: 1;
}

html body #back-to-top-btn.hide {
    animation: fadeInRight .3s;
    -moz-animation: fadeInRight .3s;
    -webkit-animation: fadeInRight .3s;
    -o-animation: fadeInRight .3s;
}

html body #footer-container {
    z-index: 1;
    position: relative;
    background: #fffceb;
    box-shadow: 2px 1px 20px 2px rgba(0,0,0,.16);
}

html body #footer-wrapper {
    font-family: "Roboto-Regular";
    font-size: 12px;
    color: #555;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper {
        padding-top:50px;
    }
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper {
        font-size:.8vw;
    }
}

html body #footer-wrapper #footer-top {
    width: 80%;
    padding: 30px 0;
    margin: auto;
    font-family: "Roboto-Regular";
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top {
        padding:0;
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 1280px) {
    html body #footer-wrapper #footer-top {
        width:85%;
    }
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top {
        margin-bottom:1.2vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu {
    flex-direction: row;
    display: none;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #footer-menu {
        display:flex;
    }
}

html body #footer-wrapper #footer-top #footer-menu ul {
    list-style: none;
    margin: 0 auto;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #footer-menu ul {
        margin:unset;
    }
}

html body #footer-wrapper #footer-top #footer-menu span {
    font-size: 15px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu span {
        font-size:.938vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu h1 {
    font-size: 18px;
    font-weight: unset;
    color: #ff9f00;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu h1 {
        font-size:1.1vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #sitemap {
    width: 100%;
    display: none;
}

@media screen and (min-width: 720px) {
    html body #footer-wrapper #footer-top #footer-menu #sitemap {
        display:unset;
    }
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #footer-menu #sitemap {
        width:20%;
    }
}

html body #footer-wrapper #footer-top #footer-menu #sitemap #sitemap-container {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #footer-menu #sitemap #sitemap-container {
        width:80%;
        border-right: solid 1px rgba(0,0,0,.1);
    }
}

html body #footer-wrapper #footer-top #footer-menu #sitemap #sitemap-container ul {
    margin-top: 15px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu #sitemap #sitemap-container ul {
        margin-top:1vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #sitemap #sitemap-container ul li {
    margin-bottom: 10px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu #sitemap #sitemap-container ul li {
        margin-top:.5vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services {
    width: 100%;
    margin-top: 20px;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #footer-menu #services {
        width:80%;
        margin-top: unset;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services span {
    text-align: center;
    display: block;
}

html body #footer-wrapper #footer-top #footer-menu #services #services-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 15px;
}

@media screen and (min-width: 720px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container {
        flex-direction:row;
    }
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container {
        margin-top:1vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services #services-container ul {
    margin-top: 10px;
}

@media screen and (min-width: 720px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container ul {
        width:33%;
        margin-top: 0;
    }
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container ul {
        width:unset;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services #services-container ul li {
    margin-bottom: 10px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container ul li {
        margin-bottom:.5vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services #services-container ul li h1 {
    margin: 0 0 10px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container ul li h1 {
        margin:0 0 1vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services #services-container ul li a {
    font-size: 15px;
    color: #555;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-top #footer-menu #services #services-container ul li a {
        font-size:.9vw;
    }
}

html body #footer-wrapper #footer-top #footer-menu #services #services-container ul:first-child {
    margin-top: 0;
}

html body #footer-wrapper #footer-top #mobile-footer-menu {
    text-align: center;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-top #mobile-footer-menu {
        display:none;
    }
}

html body #footer-wrapper #footer-top #mobile-footer-menu span {
    font-size: 20px;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion {
    width: 100%;
    margin: 0 auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: left;
    list-style: none;
    padding-top: 15px;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #4b4a5e;
    position: relative;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion .link .fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
    width: 15px;
    vertical-align: middle;
    float: right;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion ul {
    list-style: none;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li:last-child .link {
    border-bottom: 0;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li .submenu {
    display: none;
    font-size: 14px;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li .submenu li {
    border-bottom: 1px solid #ccc;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li .submenu a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 12px;
    padding-left: 42px;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li .submenu a:hover {
    background: linear-gradient(58deg,#ffba3c,#ffdd6c);
    color: #fff;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li.open .link {
    color: #ffdd6c;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li.open i {
    color: #ffdd6c;
}

html body #footer-wrapper #footer-top #mobile-footer-menu .accordion li.open .fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

html body #footer-wrapper #footer-middle {
    display: none;
    text-align: center;
    background-color: #fff5c2;
    padding: 1vw 23vw;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-middle {
        display:block;
    }
}

html body #footer-wrapper #footer-bottom {
    background-color: #fff5c2;
    padding-bottom: 80px;
}

@media screen and (min-width: 1024px) {
    html body #footer-wrapper #footer-bottom {
        background:none;
        padding-bottom: 0;
    }
}

html body #footer-wrapper #footer-bottom #social-media-section {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 18px 0;
    margin: 0 auto;
}

@media screen and (min-width: 1280px) {
    html body #footer-wrapper #footer-bottom #social-media-section {
        display:flex;
        justify-content: space-between;
        width: 200px;
        position: absolute;
        margin-left: 50px;
    }
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-bottom #social-media-section {
        width:12.5vw;
        margin-left: 3.1vw;
        padding: 1.1vw 0;
    }
}

html body #footer-wrapper #footer-bottom #social-media-section a:nth-child(odd) {
    margin-right: 10px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-bottom #social-media-section a:nth-child(odd) {
        margin-right:.6vw;
    }
}

html body #footer-wrapper #footer-bottom #social-media-section a:nth-child(2n+3) {
    margin-left: 10px;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-bottom #social-media-section a:nth-child(2n+3) {
        margin-right:.6vw;
    }
}

html body #footer-wrapper #footer-bottom #copyright-section {
    display: block;
    padding: 25px 0;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

@media screen and (min-width: 1600px) {
    html body #footer-wrapper #footer-bottom #copyright-section {
        padding:1.5vw 0;
    }
}

html body #footer-wrapper #footer-bottom #copyright-section a {
    text-decoration: underline;
}

html body .pusha-blocker {
    display: none;
}

html body .pusha-wrapper {
    z-index: 0;
}

html body .ui-datepicker {
    width: 100%;
}

html body .ui-datepicker-title {
    color: #fff;
}

html body .ui-icon {
    filter: brightness(0) invert(1);
}

html body .ui-widget-header {
    background: linear-gradient(to right,#ffdd6c,#ffba3c);
}

html body .ui-state-hover,html body .ui-widget-content .ui-state-hover,html body .ui-widget-header .ui-state-hover,html body .ui-state-focus,html body .ui-widget-content .ui-state-focus,html body .ui-widget-header .ui-state-focus,html body .ui-button:hover,html body .ui-button:focus {
    background: none;
    border: 0;
}

html body .ui-datepicker-prev span {
    transform: rotate(-90deg);
    background-position: 0 0!important;
}

html body .ui-datepicker-next span {
    transform: rotate(90deg);
    background-position: 0 0!important;
}

html body .ui-state-hover .ui-datepicker-prev span {
    transform: rotate(-90deg) scale(1.2);
}

html body .ui-state-hover .ui-datepicker-next span {
    transform: rotate(90deg) scale(1.2);
}

html body .ui-state-highlight,html body .ui-widget-content .ui-state-highlight,html body .ui-widget-header .ui-state-highlight {
    color: #fff;
    border: 0;
    background: #b5ceeb;
}

html body .ui-state-active,html body .ui-widget-content .ui-state-active,html body .ui-widget-header .ui-state-active,html body a.ui-button:active,html body .ui-button:active,html body .ui-button.ui-state-active:hover {
    border: 0;
    background: #ff9f00;
}

html body .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0);
    z-index: 101;
}

html body .overlay.shown {
    background-color: rgba(0,0,0,.3);
}

html body .pusha-panel--right.pusha-panel--active {
    -webkit-transition: opacity 300ms,-webkit-transform .6s ease;
    transition: opacity 100ms,-webkit-transform .6s ease;
    transition: opacity 100ms,transform .6s ease;
    transition: opacity 100ms,transform .6s ease,-webkit-transform .6s ease;
}

html body .pusha-panel--right.pusha-panel--active~.pusha-blocker,html body .pusha-panel--right.pusha-panel--active~.pusha-push,html body .pusha-panel--right.pusha-panel--active~.pusha-wrapper {
    -webkit-transform: none;
    transform: none;
}

html body .AcceptedPDPA input {
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

html body .pusha-panel {
    box-shadow: 0 10px 25px 2px rgba(0,0,0,.1),0 10px 80px 5px rgba(0,0,0,.1);
    text-align: left;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    html body .pusha-panel {
        width:40%;
    }
}

html body .pusha-panel .hamburger-border.top {
    top: 10px;
    right: unset;
    transform: rotate(-45deg);
    transition: 300ms;
}

html body .pusha-panel .hamburger-border.center {
    opacity: 0;
}

html body .pusha-panel .hamburger-border.bottom {
    bottom: 10px;
    width: 30px;
    right: unset;
    transform: rotate(45deg);
    transition: 300ms;
}

html body .pusha-panel .burger-section {
    padding: 20px 20px 0 0;
    text-align: right;
    width: 100%;
}

html body .hamburger-border.top.active {
    top: 10px;
    right: unset;
    transform: rotate(-45deg);
    transition: 300ms;
}

html body .hamburger-border.center.active {
    opacity: 0;
}

html body .hamburger-border.bottom.active {
    bottom: 10px;
    width: 30px;
    right: unset;
    transform: rotate(45deg);
    transition: 300ms;
}

html body .captcha_Img {
    position: absolute;
    top: 3px;
    right: 13px;
    width: 65px;
}

html body .burger-section {
    display: inline-block;
    width: 50px;
    display: none;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper {
    padding: 30px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container #apmt-close-btn-wrapper {
    width: 100%;
    text-align: right;
    padding-bottom: 15px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container #apmt-close-btn-wrapper img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-title {
    font-family: "Roboto-Regular";
    color: #ff9f00;
    margin: auto;
    display: block;
    text-align: left;
    letter-spacing: 1.5px;
    font-size: 18px;
    width: 90%;
    margin: auto;
}

@media screen and (min-width: 1024px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-title {
        font-size:20px;
        width: 80%;
    }
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-title {
        font-size:1.25vw;
        font-size: 1.125vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-subsubtext {
    display: block;
    color: #393d43;
    font-family: "LibreFranklin-Regular";
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    width: 90%;
    margin: 15px auto 0;
}

@media screen and (min-width: 720px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-subsubtext {
        font-size:16px;
    }
}

@media screen and (min-width: 1024px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-subsubtext {
        width:80%;
    }
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-subsubtext {
        font-size:1vw;
        margin: .938vw auto 0;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-title-container .form-subsubtext a {
    color: #ff9f00;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section {
    margin: 30px auto 0;
    width: 90%;
}

@media screen and (min-width: 1024px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section {
        width:80%;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section label {
    font-family: "Roboto-Regular";
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section input {
    font-family: "LibreFranklin-Regular";
    background-color: rgba(238,238,238,.9333333333);
    height: 2.941vw;
    padding: 1.176vw;
    border-radius: .735vw;
    font-size: 14px;
    border: .074vw solid #dad6da;
    display: block;
    width: 100%;
    min-height: 40px;
    border-radius: 30px;
    box-shadow: 0 7px 9px -7px rgba(0,0,0,.2) inset;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .error-div span {
    color: #f00;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row {
    margin-top: 5px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row {
        margin-top:.313vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row.pb-28 {
    margin-top: 80px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row.pb-28 {
        margin-top:5vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#email-each-row {
    margin-top: 20px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#email-each-row {
        margin-top:1.25vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#service-each-row {
    margin-top: 75px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#service-each-row {
        margin-top:4.688vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .apmt-label-wrapper label,html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .apmt-label-wrapper .error-div {
    display: inline-block;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .apmt-label-wrapper .error-div {
    float: right;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row #flag-container {
    position: relative;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row #flag-container input {
    padding-left: 105px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row #flag-container #flag-wrapper {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 0 20px;
    background: #d2d2d2;
    border-radius: 30px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row #flag-container #flag-wrapper img {
    width: 20px;
    height: 20px;
    display: inline-block;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row #flag-container #flag-wrapper span {
    display: inline-block;
    margin-left: 10px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row input {
    -webkit-appearance: none;
    margin-top: 10px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row input {
        margin-top:.625vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .iti {
    display: block;
    margin-top: 10px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .iti {
        margin-top:.625vw;
    }
}

@media screen and (min-width: 1024px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .iti .iti__country-list {
        width:31.25vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .iti .iti__selected-flag {
    border-radius: 30px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .nice-select {
    display: block;
    width: 100%;
    background-color: rgba(238,238,238,.9333333333);
    min-height: 40px;
    height: 2.941vw;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 0 7px 9px -7px rgba(0,0,0,.2) inset;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .nice-select {
        margin-top:.625vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .nice-select span {
    position: absolute;
    top: 50%;
    margin-top: -20px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .nice-select ul {
    height: 400px;
    overflow-y: scroll;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .nice-select:after {
    right: 20px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row .nice-select .list {
    width: 100%;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .enquiry-row input {
    -webkit-appearance: none;
    margin-top: 10px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#captcha-wrapper {
    margin-top: 25px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#captcha-wrapper input {
    -webkit-appearance: none;
    margin-top: 10px;
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#captcha-wrapper input {
        margin-top:.625vw;
    }
}

@media screen and (min-width: 1600px) {
    html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row#captcha-wrapper {
        margin-top:1.563vw;
    }
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row-full .AcceptedPDPA {
    display: inline-block;
    vertical-align: top;
    margin: 1%;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row-full .AcceptedPDPA input {
    width: auto;
    height: auto;
    min-width: 15px;
    min-height: 15px;
    box-shadow: none;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row-full #agreement {
    display: inline-block;
    vertical-align: top;
    width: 90%;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row-full #agreement a {
    color: #ff9f00;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row-full.submit-btn-row input {
    font-family: "Roboto-Regular";
    padding: 0;
    background: linear-gradient(to right,#ffba3c,#ffdd6c,#ffba3c);
    background-size: 200%;
    background-position: right;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.2);
    border: 0;
    border-radius: 30px;
    margin: 0 auto;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
}

html body .appointment-form .appointment-form-wrapper .appointment-inner-form-wrapper .form-section .each-row .appointment-row-full.submit-btn-row input:hover {
    background-position: left;
}

html body #scroll-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 75px;
    border-radius: 25px 25px 0 0;
    background-color: #fff;
    border-top: 1px solid rgba(29,114,102,.2);
    border-left: 1px solid rgba(29,114,102,.2);
    border-right: 1px solid rgba(29,114,102,.2);
}

@media screen and (min-width: 1024px) {
    html body #scroll-footer {
        display:none;
    }
}

html body #scroll-footer #scroll-footer-wrapper {
    display: flex;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    height: 100%;
    font-family: "LibreFranklin-Medium";
    font-size: 12px;
    cursor: pointer;
}

html body #scroll-footer #btn-locate-us-scroll {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(29,114,102,.2);
}

html body #scroll-footer #btn-locate-us-scroll .mobile-img-scroll img {
    width: 30px;
    margin-bottom: 5px;
}

html body #scroll-footer #btn-book-apmt-scroll {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-image: linear-gradient(58deg,#ffba3c,#ffdd6c);
    background-size: 300% 100%;
    border-top-right-radius: 25px;
}

html body #scroll-footer #btn-book-apmt-scroll .mobile-img-scroll img {
    width: 25px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

html body #launcher {
    bottom: 9%!important;
}

@media screen and (min-width: 520px) {
    html body #launcher {
        bottom:10%!important;
    }
}

@media screen and (min-width: 1024px) {
    html body #launcher {
        bottom:0!important;
    }
}
