/********** General **********/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
body.state--nav-open {
  overflow: hidden;
}

button {
  cursor: pointer;
}





/* Header */
.header {
  padding: 10px 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color--white);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .header {
    padding: 15px 0;
  }
}





/* Nav */
@media (max-width: 1023px) {
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 61px;
    right: -1200px;
    width: 100%;
    height: calc(100vh - 61px);
    border-top: 1px solid var(--color--grey);
    background-color: var(--color--white);
    transition: right .3s ease-in-out;
  }
  .state--nav-open .nav {
    right: 0;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 15px;
  }
}





/* Nav List */
@media (max-width: 1023px) {
  .nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px;
  }
  .nav-list__item {
    margin-bottom: 8px;
  }
  .nav-list__item:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }
  .nav-list__item {
    margin-right: 12px;
  }
  .nav-list__item:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1100px) {
  .nav-list {
    margin-right: 30px;
  }
  .nav-list__item {
    margin-right: 17px;
  }
}

@media (min-width: 1250px) {
  .nav-list {
    margin-right: 40px;
  }
  .nav-list__item {
    margin-right: 25px;
  }
}

@media (min-width: 1350px) {
  .nav-list {
    margin-right: 65px;
  }
  .nav-list__item {
    margin-right: 38px;
  }
}




/* Smart Nav List */
.smart-nav-list {
  display: flex;
}

@media (max-width: 1023px) {
  .smart-nav-list {
    justify-content: space-between;
    align-items: center;
    padding: 26px;
    border-top: 1px solid var(--color--grey);
  }
}

@media (min-width: 1024px) {
  .smart-nav-list__item {
    margin-right: 25px;
  }
  .smart-nav-list__item:last-child {
    margin-right: 0;
  }
}













/* Footer */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 38px;
  padding: 50px 26px;
  background-color: var(--color--grey);
}
.colgrid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 38px;
}

@media (max-width: 824px) {
  .footer-column:first-child {
    order: 2;
  }
  .footer-column:last-child {
    order: 1;
  }
}

@media (min-width: 600px) {
  .footer-inner {
    padding: 60px 36px;
  }
  .colgrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 825px) {
  .footer-inner {
    padding: 60px 38px;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
  }
  .bayan {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (min-width: 1250px) {
  .footer-inner {
    padding: 80px 70px;
    column-gap: 70px;
  }
}

@media (min-width: 1600px) {
  .footer-inner {
    padding: 90px 6.818%;
    column-gap: 100px;
  }
}





/* Main */
.main {
  overflow: hidden;
  margin-top: 62px;
}

@media (min-width: 1024px) {
  .main {
    margin-top: 76px;
  }
}

@media (min-width: 1250px) {
  .main {
    margin-top: 79px;
  }
}





/* Section, Container */
.section {
  margin-bottom: 60px;
}
.section--pt {
  padding-top: 60px;
}
.container {
  padding-left: 26px;
  padding-right: 26px;
}

@media (min-width: 825px) {
  .section {
    margin-bottom: 70px;
  }
  .section--pt {
    padding-top: 70px;
  }
}

@media (min-width: 1024px) {
  .section {
    margin-bottom: 80px;
  }
  .section--pt {
    padding-top: 80px;
  }
}

@media (min-width: 1250px) {
  .section {
    margin-bottom: 95px;
  }
  .section--pt {
    padding-top: 95px;
  }
}

@media (min-width: 1600px) {
  .section {
    margin-bottom: 110px;
  }
  .section--pt {
    padding-top: 110px;
  }
  .container {
    padding-left: 6%;
    padding-right: 6%;
  }
}





/* Intro */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 38px;
}
.intro__image {
  margin-left: -26px;
  margin-right: -26px;
}
.intro__main {
  position: relative;
}
.intro__main::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 15px;
  width: 245px;
  height: 150px;
  background-image: url(/assets/images/bubbles-1.png);
  background-position: center center;
  background-size: cover;
}

@media (min-width: 450px) {
  .intro__image {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 825px) {
  .intro {
    grid-template-columns: 1fr 1fr;
  }
  .intro__main {
    display: flex;
    flex-direction: column;
    margin-left: -130px;
  }
  .intro__main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;;
  }
}

@media (min-width: 1024px) {
  .intro__main::before {
    right: -47px;
  }
  .intro__main::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: 424px;
    height: 220px;
    background-image: url(/assets/images/bubbles-2.png);
    background-position: center center;
    background-size: cover;
  }
}

@media (min-width: 1250px) {
  .intro {
    grid-template-columns: 1.33fr 1.66fr;
  }
  .intro__main::before {
    right: 20px;
    width: 294px;
    height: 180px;
  }
  .intro__main::after {
    left: 60px;
    bottom: 80px;
    width: 598px;
    height: 310px;
  }
}





/* Promo */
.promo__header {
  position: relative;
  padding: 150px 26px;
  margin-left: -26px;
  margin-right: -26px;
  background-image: url(/assets/images/servicesbg--mobile.webp);
  background-position: center center;
  background-size: cover;
}
.promo__header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 24, 24, 0.5);
}
.promo__main {
  margin-top: -112px;
}

@media (min-width: 450px) {
  .promo__header {
    padding: 150px 26px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .promo__main {
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media (min-width: 600px) {
  .promo__header {
    background-image: url(/assets/images/servicesbg--tablet.webp);
  }
}

@media (min-width: 1024px) {
  .promo__header {
    background-image: url(/assets/images/servicesbg--laptop.webp);
  }
}

@media (min-width: 1250px) {
  .promo__header {
    padding: 250px 26px;
    background-image: url(/assets/images/servicesbg--desktop.webp);
  }
  .promo__main {
    margin-top: -190px;
  }
}

@media (min-width: 1600px) {
  .promo__header {
    padding: 250px 6.818%;
  }
  .promo__main {
    padding-left: 6.818%;
    padding-right: 6.818%;
  }
}





/* I List */
.ilist {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8px;
}
.ilist__item {
  padding-right: 5px;
}

@media (min-width: 600px) {
  .ilist {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 825px) {
  .ilist {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1250px) {
  .ilist {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }
}

@media (min-width: 1600px) {
  .ilist {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 10px;
  }
}





/* IS List */
.islist {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2px;
}

@media (min-width: 450px) {
  .islist {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .islist {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 825px) {
  .islist {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .islist {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1250px) {
  .islist {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1600px) {
  .islist {
    grid-template-columns: 1fr 1fr 1fr;
  }
}





/* B List */
.blist {
  display: inline-flex;
  align-items: center;
}
.blist__item {
  margin-right: 10px;
}
.blist__item:last-child {
  margin-right: 0;
}





/* Bubbles 3 */
.bubbles-3::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 250px;
  height: 100px;
  background-image: url(/assets/images/bubbles-3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 450px) {
  .bubbles-3::before {
    width: 426px;
    height: 170px;
    bottom: -50px;
  }
}

@media (min-width: 825px) {
  .bubbles-3::before {
    bottom: -160px;
  }
}

@media (min-width: 1250px) {
  .bubbles-3::before {
    width: 501px;
    height: 200px;
  }
}

@media (min-width: 1600px) {
  .bubbles-3::before {
    bottom: -220px;
    width: 576px;
    height: 230px;
  }
}





/* Bubbles 4 */
@media (min-width: 825px) {
  .bubbles-4::after {
    content: "";
    display: block;
    position: absolute;
    top: -140px;
    left: -15px;
    width: 115px;
    height: 160px;
    background-image: url(/assets/images/bubbles-4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

@media (min-width: 1250px) {
  .bubbles-4::after {
    top: -170px;
    left: 40px;
    width: 129px;
    height: 180px;
  }
}

@media (min-width: 1250px) {
  .bubbles-4::after {
    top: -240px;
    left: 60px;
    width: 150px;
    height: 210px;
  }
}





/* Bubbles 5 */
.bubbles-5::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 521px;
  left: -30px;
  width: 200px;
  height: 185px;
  background-image: url(/assets/images/bubbles-5.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 825px) {
  .bubbles-5::after {
    width: 328px;
    height: 304px;
    bottom: 200px;
    left: -20px;
  }
}

@media (min-width: 1250px) {
  .bubbles-5::after {
    width: 328px;
    height: 304px;
    bottom: -100px;
    left: -80px;
  }
}

@media (min-width: 1600px) {
  .bubbles-5::after {
    width: 328px;
    height: 304px;
    bottom: 200px;
    left: -80px;
  }
}





/* Bubbles 6 */
.bubbles-6::after {
  content: "";
  display: block;
  position: absolute;
  top: -226px;
  left: -47px;
  width: 257px;
  height: 224px;
  background-image: url(/assets/images/bubbles-6.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 1600px) {
  .bubbles-6::after {
    left: -8%;
  }
}






/* Bubbles 7 */
.bubbles-7::after {
  content: "";
  display: block;
  position: absolute;
  top: -70px;
  right: 1px;
  width: 260px;
  height: 285px;
  background-image: url(/assets/images/bubbles-7.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 600px) {
  .bubbles-7::after {
    right: -30px;
    top: -40px;
  }
}

@media (min-width: 825px) {
  .bubbles-7::after {
    width: 340px;
    height: 373px;
  }
}

@media (min-width: 1250px) {
  .bubbles-7::after {
    width: 402px;
    height: 441px;
  }
}

@media (min-width: 1600px) {
  .bubbles-7::after {
    top: -80px;
    right: -15%;
  }
}






/* Bubbles 8 */
.bubbles-8::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 200px;
  height: 136px;
  background-image: url(/assets/images/bubbles-8.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 600px) {
  .bubbles-8::after {
    top: auto;
    bottom: -90px;
  }
}

@media (min-width: 825px) {
  .bubbles-8::after {
    top: auto;
    bottom: 50px;
    left: -270px;
    right: auto;
  }
}

@media (min-width: 1250px) {
  .bubbles-8::after {
    width: 300px;
    height: 204px;
    left: -400px;
    bottom: -40px;
    width: 350px;
    height: 238px;
  }
}

@media (min-width: 1600px) {
  .bubbles-8::after {
    left: -500px;
    bottom: -50px;
    width: 400px;
    height: 271px;
  }
}






/* Bubbles 9 */
.bubbles-9::after {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 224px;
  background-image: url(/assets/images/bubbles-9.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 1250px) {
  .bubbles-9::after {
    width: 300px;
    height: 336px;
  }
}

@media (min-width: 1600px) {
  .bubbles-9::after {
    width: 410px;
    height: 459px;
    left: -100px;
  }
}






/* Bubbles 10 */
.bubbles-10::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -70px;
  right: -100px;
  width: 350px;
  height: 181px;
  background-image: url(/assets/images/bubbles-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 825px) {
  .bubbles-10::after {
    bottom: -150px;
    right: -70px;
    width: 450px;
    height: 233px;
  }
}

@media (min-width: 1250px) {
  .bubbles-10::after {
    bottom: -100px;
    right: -70px;
    width: 600px;
    height: 311px;
  }
}

@media (min-width: 1600px) {
  .bubbles-10::after {
    bottom: -100px;
    right: -150px;
    width: 660px;
    height: 337px;
  }
}








/* Bubbles 11 */
.bubbles-11::after {
  content: "";
  display: block;
  position: absolute;
  top: -110px;
  left: -260px;
  width: 400px;
  height: 160px;
  background-image: url(/assets/images/bubbles-3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 825px) {
  .bubbles-11::after {
    top: -160px;
    left: -260px;
    width: 700px;
    height: 279px;
  }
}





/* Bubbles 12, 13 */
.bubbles-12::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: -30px;
  width: 100px;
  height: 140px;
  background-image: url(/assets/images/bubbles-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bubbles-13::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 150px;
  height: 139px;
  background-image: url(/assets/images/bubbles-5.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 825px) {
  .bubbles-12::before {
    top: -40px;
    left: -120px;
    width: 150px;
    height: 210px;
  }
  .bubbles-13::after {
    bottom: -50px;
    right: -250px;
    width: 220px;
    height: 204px;
  }
}

@media (min-width: 1024px) {
  .bubbles-12::before {
    top: -60px;
    left: -320px;
    width: 214px;
    height: 299px;
  }
  .bubbles-13::after {
    bottom: -50px;
    right: -450px;
    width: 328px;
    height: 304px;
  }
}







/* Bubbles 14 */
.bubbles-14::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: -30px;
  width: 270px;
  height: 296px;
  background-image: url(/assets/images/bubbles-7.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 825px) {
  .bubbles-14::before {
    top: -50px;
    right: -130px;
    width: 402px;
    height: 441px;
  }
}






/* Bubbles 15 */
.bubbles-15::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: -30px;
  width: 150px;
  height: 210px;
  background-image: url(/assets/images/bubbles-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 1250px) {
  .bubbles-15::before {
    top: -50px;
    right: -50px;
    width: 214px;
    height: 299px;
  }
}









/* Locations */
.locations-sidebar {
  padding-bottom: 38px;
}
.locations-map {
  overflow: hidden;
  padding-bottom: 150%;
  position: relative;
  height: 0;
}
.locations-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

@media (min-width: 450px) {
  .locations-map {
    padding-bottom: 120%;
  }
}

@media (min-width: 600px) {
  .locations-map {
    padding-bottom: 70%;
  }
}

@media (min-width: 825px) {
  .locations-map {
    padding-bottom: 55%;
  }
}

@media (min-width: 1024px) {
  .locations-map {
    padding-bottom: 50%;
  }
}

@media (min-width: 1250px) {
  .locations-sidebar {
    padding-bottom: 60px;
  }
  .locations-map {
    padding-bottom: 45%;
  }
}

@media (min-width: 1600px) {
  .locations {
    position: relative;
  }
  .locations-sidebar {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 40%;
    padding: 0 60px 60px;
    background-color: var(--color--white);
  }
  .locations-map {
    padding-bottom: 49%;
  }
}





/* Collage */
.collage {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 26px;
}
.collage__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.collage__item-image--01 {
  background-image: url(/assets/images/full--01.webp);
}
.collage__item-image--02 {
  background-image: url(/assets/images/full--02.webp);
}
.collage__item-image--03 {
  background-image: url(/assets/images/premium--01.webp);
}
.collage__item-image--04 {
  background-image: url(/assets/images/premium--02.webp);
}
.collage__item-image--05 {
  background-image: url(/assets/images/premium--03.webp);
}
.collage__item-image--06 {
  background-image: url(/assets/images/premium--04.webp);
}
.collage__item-image--06 {
  background-image: url(/assets/images/premium--04.webp);
}
.collage__item-image--07 {
  background-image: url(/assets/images/signature--01.webp);
}
.collage__item-image--08 {
  background-image: url(/assets/images/signature--02.webp);
}
.collage__item-image--09 {
  background-image: url(/assets/images/signature--03.webp);
}
.collage__item-image--10 {
  background-image: url(/assets/images/signature--04.webp);
}
.collage__item--hide {
  display: none;
}

@media (min-width: 600px) {
  .collage {
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }
  .collage__item--hide {
    display: block;
  }
  .collage__item:nth-child(2),
  .collage__item:nth-child(4) {
    transform: translateY(26px);
  }
}

@media (min-width: 825px) {
  .collage {
    grid-template-columns: 1fr;
  }
  .collage__item--hide {
    display: none;
  }
  .collage__item:nth-child(2),
  .collage__item:nth-child(4) {
    transform: translateY(0px);
  }
}

@media (min-width: 1250px) {
  .collage {
    grid-template-columns: 1fr 1fr;
  }
  .collage__item--hide {
    display: block;
  }
  .collage__item:nth-child(2),
  .collage__item:nth-child(4) {
    transform: translateY(26px);
  }
}





/* Inner Section */
.inner-section {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color--grey);
}
.inner-section:first-child {
  padding-top: 0;
}
.inner-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media (min-width: 1024px) {
  .inner-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

@media (min-width: 1250px) {
  .inner-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1600px) {
  .inner-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}





/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 13px;
  column-gap: 13px;
}
.gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
  }
}

@media (min-width: 825px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 26px;
    column-gap: 26px;
  }
}





/* Schedule Online */
.schedule-online-wrapper {
  height: 1200px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}





/* Schedule Form */
.schedule-form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.schedule-form__item {
  position: relative;
  width: 50%;
}
.schedule-form__item:nth-child(1) {
  padding-right: 5px;
  margin-bottom: 10px;
}
.schedule-form__item:nth-child(1) .ej-dropdown {
  padding-right: 5px;
}
.schedule-form__item:nth-child(2) {
  padding-left: 5px;
  margin-bottom: 10px;
}
.schedule-form__item:nth-child(2) .ej-dropdown {
  padding-left: 5px;
}
.schedule-form__item:nth-child(3) {
  width: 100%;
}
.schedule-form-input {
  width: 100%;
  color: var(--color--black);
  padding: 12px 30px 12px 10px;
  background-color: var(--color--white);
  border: 2px solid var(--color--white);
  background-position: right center;
  background-repeat: no-repeat;
}
.schedule-form-input:focus {
  outline: none;
}
.schedule-form-input--location {
  background-image: url(/assets/images/location-bg.png);
}
.schedule-form-input--select {
  background-image: url(/assets/images/select-arrow-bg.png);
}
.schedule-form .button {
  padding: 14px 26px;
  width: 100%;
}
.ej-dropdown {
  position: absolute;
  z-index: 2;
  top: 90%;
  left: 0;
  width: 100%;
}
.ej-dropdown-content {
  box-shadow: 0px 4px 10px rgba(42, 94, 81, 0.20);
  position: relative;
  z-index: 2;
}
.dd-content {
  padding: 13px 18px;
  background-color: var(--color--white);
  width: 100%;
  text-align: left;
}
.ej-dropdown-item {
  color: var(--color--black);
  transition: color .2s ease-in-out;
  margin-bottom: 7px;
  cursor: pointer;
}
.ej-dropdown-item:last-child {
  margin-bottom: 0;
}
.ej-dropdown-item:hover {
  color: var(--color--red);
}

@media (min-width: 768px) {
  .schedule-form-input {
    padding: 12px 30px 12px 10px;
  }
  .schedule-form__item:nth-child(1) {
    width: 40%;
    margin-bottom: 0;
  }
  .schedule-form__item:nth-child(2) {
    width: 40%;
    margin-bottom: 0;
  }
  .schedule-form__item:nth-child(3) {
    width: 20%;
    padding-left: 10px;
  }
}

@media (min-width: 825px) {
  .schedule-form-input {
    padding: 13px 30px 12px 10px;
  }
}





/* Form */
.contact-form-wrapper {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cf {
  text-align: left;
}
.cf__row {
  margin-bottom: 20px;
  position: relative;
}
.cf__row:last-of-type {
  margin-bottom: 0;
}
.cf__label {
  display: block;
  font-weight: 400;
  color: var(--color--grey-dark);
}
.cf__input {
  width: 100%;
  border: none;
  padding: 12px;
  border: 2px solid var(--color--grey-dark);
  color: var(--color--black);
  transition: all .3s ease;
}
.cf__input:focus {
  border-color: var(--color--black);
  outline: none;
}
.cf__input--textarea {
  height: 110px;
  min-height: 110px;
  max-height: 110px;
  max-width: 100%;
  min-width: 100%;
}
.cf__input--textarea ~ .focus-border {
  top: 131px;
}
.cf__alert {
  font-size: 0.7em;
  line-height: 1.4;
  color: var(--color--red);
  font-weight: 500;
}

.form-status {
  display: none;
  padding: 3px 7px;
  background-color: #999999;
  color: #fff;
}
.form-status.success {
  background-color: #08a300;
}
.form-status.error {
  background-color: var(--color--red);
}
.form-status.active {
  display: block;
}

.cf__info {
  display: none;
  font-size: 1.37em;
  text-align: center;
  color: var(--color--black);
}
.cf--sent .cf__info {
  display: block;
}
.cf--sent .cf__row-list {
  display: none;
}