/* @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Josefin+Sans:wght@100;300;400;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap'); */
/* --primary-font: 'Josefin Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

:root {
  --primary-color: #76cabd;
  --secondary-color: #e6f4f5;
  --dark-color: #231f20;
  --accent-color: #484d77;
  --primary-font: 'Roboto Slab', serif;
  --secondary-font: 'Quicksand', sans-serif;
  --decor-font: 'Caveat', cursive;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  :root {
    font-size: 12px;
  }
}
html,
body {
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/* -- BG -- */
.bg-primary-dd {
  background-color: var(--primary-color);
}
.bg-secondary-dd {
  background-color: var(--secondary-color);
}
.bg-accent-dd {
  background-color: var(--accent-color);
}
.bg-dark-dd {
  background-color: var(--dark-color);
}

/* -- TEXT -- */
.text-primary-dd {
  color: var(--primary-color);
}
.text-secondary-dd {
  color: var(--secondary-color);
}
.text-accent-dd {
  color: var(--accent-color);
}
.text-dark-dd {
  color: var(--dark-color);
}

.font-primary-dd {
  font-family: var(--primary-font);
}
.font-secondary-dd {
  font-family: var(--secondary-font);
}
.font-decor-dd {
  font-family: var(--decor-font);
}

.btn-primary-dd {
  background: var(--primary-color);
  color: white;
}
.btn-primary-dd:hover {
  background: #4e9187;
  color: white;
}
.btn-accent-dd {
  background: var(--accent-color);
  color: white;
}
.btn-accent-dd:hover {
  background: #666fb3;
  color: white;
}

.btn-outline-primary-dd {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary-dd:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-accent-dd {
  color: #231f20;
  border-color: var(--accent-color);
}
.btn-outline-accent-dd:hover {
  color: #fff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-rounded-dd {
  border-radius: 100px;
}

.border-primary-dd {
  border-color: var(--primary-color) !important;
}

/* == CUSTOM BUTTON == */
.cust-btn-a {
  background-color: var(--accent-color);
  border-radius: 100px;
  box-shadow: rgba(72, 77, 119, 0.2) 0 -25px 18px -14px inset, rgba(72, 77, 119, 0.15) 0 1px 2px,
    rgba(72, 77, 119, 0.15) 0 2px 4px, rgba(72, 77, 119, 0.15) 0 4px 8px, rgba(72, 77, 119, 0.15) 0 8px 16px,
    rgba(72, 77, 119, 0.15) 0 16px 32px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: var(--decor-font);
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 2rem;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.cust-btn-a:hover {
  box-shadow: rgba(72, 77, 119, 0.35) 0 -25px 18px -14px inset, rgba(72, 77, 119, 0.25) 0 1px 2px,
    rgba(72, 77, 119, 0.25) 0 2px 4px, rgba(72, 77, 119, 0.25) 0 4px 8px, rgba(72, 77, 119, 0.25) 0 8px 16px,
    rgba(72, 77, 119, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
  color: white;
}
@media (max-width: 576px) {
  .cust-btn-a {
    padding: 7px 20px;
    font-size: 20px;
  }
}

/* == SLICK NAV == */
.slick-prev:before,
.slick-next:before {
  color: var(--accent-color);
}

/* == NAV == */
.navbar {
  background: var(--primary-color);
}
.nav-logo-dd {
  width: 160px;
  height: auto;
}
.nav-link {
  color: var(--accent-color);
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--secondary-color);
}

.fries-menu {
  position: absolute;
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 30px;
  transform: translateY(-40%) translateX(15px);
  transition: 0.3s ease transform;
  cursor: pointer;
}
.fries-menu div {
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  margin-left: 0;
  margin-bottom: 6px;
  border-radius: 4px;
  transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom, 0.3s ease background-color;
}
.fries-menu div:first-child {
  width: 22px;
}
.fries-menu div:nth-child(2) {
  width: 15px;
}
.fries-menu div:last-child {
  width: 30px;
  margin-bottom: 0;
}

.offcanvas {
  transition: 0.5s all;
}

/* == HERO == */
.hero-text {
  font-size: 2.5rem;
}
.hero-text-highlight {
  display: block;
  font-size: 4rem;
  text-shadow: 1px 2px 3px var(--dark-color);
}
.hero-img {
  width: 700px;
  height: auto;
}

/* == ABOUT US == */
.about-us {
  color: white;
  background: url(../img/clinic.jpeg);
  background-size: cover;
  background-position: center;
}
.about-us h1 {
  font-size: 2.25rem;
}
.about-us-content-wrapper {
  border: 2px solid var(--secondary-color);
  border-radius: 0 80px 20px 80px;
}
.about-us p {
  font-size: 1.15rem !important;
}
.about-us ul li span {
  font-size: 1rem;
}
.about-us-img {
  width: 580px;
  height: auto;
  border-radius: 0 20px 10px 0;
}
@media only screen and (max-width: 576px) {
  .about-us p {
    font-size: 1rem !important;
  }
  .about-us-img {
    width: 360px;
    height: auto;
  }
  .about-us ul li span {
    font-size: 1rem;
  }
}

/* == INVIS-ALIGN == */
.invis_promo_img_wrap,
.invis_promo_cont_wrap {
  position: relative;
}
.invis_promo_img_wrap svg {
  position: absolute;
  top: -15px;
  left: -85px;
  z-index: -1;
  max-width: 90%;
  width: 400px;
  height: 400px;
  max-height: 90%;
  -webkit-transition: 0.16s ease;
  -o-transition: 0.16s ease;
  transition: 0.16s ease;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media (min-width: 576px) {
  .invis_promo_img_wrap svg {
    top: -30px;
    left: -40px;
    bottom: initial;
  }
}

/* == SERVICES == */
.services {
  background: url(../img/services-.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.services-heading h1 {
  font-size: 2.25rem;
}

.services-col-wrap {
  position: relative;
  margin: 0px 0px 26px 0px;
  background-color: #ffffff;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.05);
}
.services-content {
  position: relative;
  text-align: center;
}
.services-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px 4px 4px 4px;
}
.services-text {
  position: relative;
  border-radius: 50px;
  padding: 0px 10px;
  margin: 20px 0px 0px 0px;
  font-family: var(--secondary-font);
}
.services-title h1 a {
  font-size: 1.2rem;
  color: var(--accent-color);
  text-decoration: none;
}
.services-btn {
  margin: 0;
  position: relative;
  top: 22px;
}
.services-btn a {
  background: var(--primary-color);
  padding: 10px 20px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.85rem;
  border-radius: 4px 4px 4px 4px;
}
.icon-after:hover .fa-arrow-right-long {
  transform: translateX(3px);
  transition: all 0.3s;
}
.service-col-wrap:hover {
  transition: all 0.5s;
}

/* == BEFORE AFTER == */
.bef-aft {
  background: url(../img/service-bg4.jpg);
}
.bef-aft h1 {
  font-size: 2.25rem;
}
.bef-aft-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px solid white;
}
.bef-aft-wrap .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 900px 100%;
}
.bef-aft-wrap .background-img {
  background-image: url('../img/bef-aft/case-1_aft.jpg');
  background-size: cover;
}
.bef-aft-wrap .foreground-img {
  background-image: url('../img/bef-aft/case-1_bef.jpg');
  width: 50%;
  background-size: cover;
}
.bef-aft-wrap .slider {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 0.3);
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bef-aft-wrap .slider:hover {
  background: rgba(242, 242, 242, 0.1);
}
.bef-aft-wrap .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 300px;
  background: white;
  cursor: pointer;
}
.bef-aft-wrap .slider::-moz-range-thumb {
  width: 6px;
  height: 400px;
  background: white;
  cursor: pointer;
}
.bef-aft-wrap .slider-button {
  pointer-events: none;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  left: calc(50% - 18px);
  top: calc(50% - 18px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bef-aft-wrap .slider-button:after {
  content: '';
  padding: 3px;
  display: inline-block;
  border: solid #5d5d5d;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}
.bef-aft-wrap .slider-button:before {
  content: '';
  padding: 3px;
  display: inline-block;
  border: solid #5d5d5d;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
}
@media (max-width: 576px) {
  .bef-aft-wrap {
    height: 200px;
  }
  .bef-aft-wrap .slider::-webkit-slider-thumb {
    height: 200px;
  }
  .bef-aft-wrap .slider::-moz-range-thumb {
    height: 200px;
  }
}

.bef-aft-wrap-2 {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px solid white;
}
.bef-aft-wrap-2 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 900px 100%;
}
.bef-aft-wrap-2 .background-img-2 {
  background-image: url('../img/bef-aft/case-2_aft.jpg');
  background-size: cover;
}
.bef-aft-wrap-2 .foreground-img-2 {
  background-image: url('../img/bef-aft/case-2_bef.jpg');
  width: 50%;
  background-size: cover;
}
.bef-aft-wrap-2 .slider-2 {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 0.3);
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bef-aft-wrap-2 .slider-2:hover {
  background: rgba(242, 242, 242, 0.1);
}
.bef-aft-wrap-2 .slider-2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 300px;
  background: white;
  cursor: pointer;
}
.bef-aft-wrap-2 .slider-2::-moz-range-thumb {
  width: 6px;
  height: 400px;
  background: white;
  cursor: pointer;
}
.bef-aft-wrap-2 .slider-button-2 {
  pointer-events: none;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  left: calc(50% - 18px);
  top: calc(50% - 18px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bef-aft-wrap-2 .slider-button-2:after {
  content: '';
  padding: 3px;
  display: inline-block;
  border: solid #5d5d5d;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}
.bef-aft-wrap-2 .slider-button-2:before {
  content: '';
  padding: 3px;
  display: inline-block;
  border: solid #5d5d5d;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
}
@media (max-width: 576px) {
  .bef-aft-wrap-2 {
    height: 200px;
  }
  .bef-aft-wrap-2 .slider-2::-webkit-slider-thumb {
    height: 200px;
  }
  .bef-aft-wrap-2 .slider-2::-moz-range-thumb {
    height: 200px;
  }
}

.bef-aft-wrap-3 {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px solid white;
}
.bef-aft-wrap-3 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 900px 100%;
}
.bef-aft-wrap-3 .background-img-3 {
  background-image: url('../img/bef-aft/case-3_aft.jpg');
  background-size: cover;
}
.bef-aft-wrap-3 .foreground-img-3 {
  background-image: url('../img/bef-aft/case-3_bef.jpg');
  width: 50%;
  background-size: cover;
}
.bef-aft-wrap-3 .slider-3 {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 0.3);
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bef-aft-wrap-3 .slider-3:hover {
  background: rgba(242, 242, 242, 0.1);
}
.bef-aft-wrap-3 .slider-3::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 300px;
  background: white;
  cursor: pointer;
}
.bef-aft-wrap-3 .slider-3::-moz-range-thumb {
  width: 6px;
  height: 300px;
  background: white;
  cursor: pointer;
}
.bef-aft-wrap-3 .slider-button-3 {
  pointer-events: none;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  left: calc(50% - 18px);
  top: calc(50% - 18px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bef-aft-wrap-3 .slider-button-3:after {
  content: '';
  padding: 3px;
  display: inline-block;
  border: solid #5d5d5d;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}
.bef-aft-wrap-3 .slider-button-3:before {
  content: '';
  padding: 3px;
  display: inline-block;
  border: solid #5d5d5d;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
}
@media (max-width: 576px) {
  .bef-aft-wrap-3 {
    height: 200px;
  }
  .bef-aft-wrap-3 .slider-3::-webkit-slider-thumb {
    height: 200px;
  }
  .bef-aft-wrap-3 .slider-3::-moz-range-thumb {
    height: 200px;
  }
}

/* == VIRTUAL TOUR == */
.virtual-tour h1 {
  font-size: 2.25rem;
}
.gg-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
}
.gg-box img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, #eaee44, #33d0ff);
}
@media only screen and (max-width: 576px) {
  .gg-box img {
    width: 100%;
    height: 200px;
  }
}

/* == CTA APPOINTMENT == */
.cta-appointment h1 {
  font-size: 2.25rem;
}
.cta-appointment a {
  text-decoration: none;
  transition: all 0.4s;
}
.cta-appointment a:hover {
  color: var(--secondary-color);
  transition: all 0.5s;
}
.cta-or-text {
  background: var(--secondary-color);
  padding: var(--p-2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--accent-color);
  border-radius: 100px;
}

/* == DOCTOR PANEL == */
.doctors-panel h1 {
  font-size: 2.25rem;
}
.chief-doc-wrap h1 {
  font-size: 0.25rem;
}
.chief-doc {
  width: 100%;
  border-radius: 10px;
}
.other-panelists img {
  width: 150px;
  height: auto;
}
@media (max-width: 576px) {
  .other-panelists img {
    width: 75px;
  }
  .panelist-card {
    display: flex;
  }
  .panelist-card .panelist-card-img {
    flex-basis: 25%;
  }
  .panelist-card .col-9 {
    flex-basis: 75%;
  }
}

/* == TESTIMONIALS == */
.testimonials {
  background: url(../img/service-bg4-dd.jpg);
}
.testimonials h1 {
  font-size: 2.25rem;
}
#testimonials-div-wrap {
  padding: 15px 0;
}
.review-item {
  background: white;
  padding: 15px !important;
  max-width: 320px;
  height: 350px;
  max-height: 350px;
  text-align: center;
  border: solid 1px rgba(190, 190, 190, 0.35);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .review-item {
    padding: 15px !important;
    max-width: 100%;
    height: 350px;
    max-height: 350px;
    text-align: center;
    border: solid 1px rgba(190, 190, 190, 0.35);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
  }
}
.review-meta,
.review-stars {
  text-align: center;
  font-size: 115%;
  margin-bottom: 10px;
}
.review-author {
  text-transform: capitalize;
  font-weight: bold;
  font-family: var(--primary-font);
  color: var(--accent-color);
}
.review-text {
  line-height: 1.55;
  text-align: left;
  margin: auto;
  font-size: 14px;
  word-wrap: break-word;
}
.review-stars ul {
  display: inline-block;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.review-stars ul li {
  float: left;
  list-style: none !important;
  margin-right: 1px;
  line-height: 1;
}
.review-stars ul li i {
  color: #e4b248;
  font-size: 1.4em;
  font-style: normal;
}
.review-stars ul li i.inactive {
  color: #c6c6c6;
}
.star:after {
  content: '\2605';
}
.review-item .review-img {
  display: block;
}
.review-img img {
  max-height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.rate-us {
  background: white;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 100px;
}
@media (max-width: 576px) {
  .rate-us h1 {
    margin: 0;
    font-size: 25px;
  }
}

/* == BOOK APPOINTMENT == */
.book-appointment img {
  width: 100%;
  height: inherit;
}

/* == FOOTER == */
.footer {
  background: url(../img/footer-bg.jpg) no-repeat 0, 0;
  background-size: cover;
  position: relative;
}
.footer:after {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #231f20ae;
}
.footer .row {
  position: relative;
  z-index: 1;
}
footer img {
  width: 300px;
}
footer a {
  text-decoration: none;
}

/******__ invisalign.html __******/
.invisalign-hero {
  background: url(../img/invis/hero-img.jpg) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 576px) {
  .invisalign-hero {
    background: none;
  }
  .invisalign-hero_wrap {
    background-color: var(--secondary-color);
  }
}

.invis-cols-heading {
  background: var(--primary-color);
  margin: 0;
  padding: 10px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  border-radius: 100px;
}

.case-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/******__ services-*-.html __******/
.service-page-hero {
  position: relative;
  height: 300px;
}
.service-page-hero h1 {
  position: absolute;
  top: 40%;
  width: 100%;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 3;
}
.service-page-hero-wrap {
  position: relative;
}
.service-page-hero-wrap::before {
  position: absolute;
  background-color: #063a3d92;
  height: 300px;
  width: 100%;
  content: '';
  z-index: 1;
}
.service-page-hero img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

/******__ smile-analysis.html __******/
/*============== Radio Form 01==============*/

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input-container {
  position: relative;
  height: 8rem;
  width: 7rem;
  margin: 0.5rem;
}

.radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #15303c;
  background: var(--dark-color);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.icon svg {
  fill: var(--primary-color);
  width: 3rem;
  height: 3rem;
}

.radio-tile-label {
  text-align: center;
  font-size: 12px;
  margin: 0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: red;
  font-family: 'Muli', sans-serif;
}

.radio-button:checked + .radio-tile {
  background-color: var(--primary-color);
  border: 2px solid #484d77;
  color: white;
  transform: scale(1.1, 1.1);
}

.icon svg {
  fill: white;
}

.radio-tile-label {
  color: white;
}

/*============== Radio Form 02==============*/

.radio-tile-group-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input-container-two {
  position: relative;
  height: 8rem;
  width: 7rem;
  margin: 0.5rem;
}

.radio-button-two {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #15303c;
  background: var(--dark-color);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.icon-two svg {
  fill: var(--primary-color);
  width: 3rem;
  height: 3rem;
}

.radio-tile-label-two {
  text-align: center;
  font-size: 12px;
  margin: 0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: red;
  font-family: 'Muli', sans-serif;
}

.radio-button-two:checked + .radio-tile-two {
  background-color: var(--primary-color);
  border: 2px solid #484d77;
  color: white;
  transform: scale(1.1, 1.1);
}

.icon-two svg {
  fill: white;
}

.radio-tile-label-two {
  color: white;
}

/*============== Radio Form 03==============*/

.radio-tile-group-three {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input-container-three {
  position: relative;
  height: 8rem;
  width: 7rem;
  margin: 0.5rem;
}

.radio-button-three {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #15303c;
  background: var(--dark-color);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.icon-three svg {
  fill: var(--primary-color);
  width: 3rem;
  height: 3rem;
}

.radio-tile-label-three {
  text-align: center;
  font-size: 12px;
  margin: 0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: red;
  font-family: 'Muli', sans-serif;
}

.radio-button-three:checked + .radio-tile-three {
  background-color: var(--primary-color);
  border: 2px solid #484d77;
  color: white;
  transform: scale(1.1, 1.1);
}

.icon-three svg {
  fill: white;
}

.radio-tile-label-three {
  color: white;
}

/*============== Radio Form 04==============*/

.radio-tile-group-four {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input-container-four {
  position: relative;
  height: 8rem;
  width: 7rem;
  margin: 0.5rem;
}

.radio-button-four {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-four {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #15303c;
  background: var(--dark-color);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.icon-four svg {
  fill: var(--primary-color);
  width: 3rem;
  height: 3rem;
}

.radio-tile-label-four {
  text-align: center;
  font-size: 12px;
  margin: 0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: red;
  font-family: 'Muli', sans-serif;
}

.radio-button-four:checked + .radio-tile-four {
  background-color: var(--primary-color);
  border: 2px solid #484d77;
  color: white;
  transform: scale(1.1, 1.1);
}

.icon-four svg {
  fill: white;
}

.radio-tile-label-four {
  color: white;
}

/*============== Radio Form 05==============*/

.radio-tile-group-five {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input-container-five {
  position: relative;
  height: 8rem;
  width: 7rem;
  margin: 0.5rem;
}

.radio-button-five {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-five {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #15303c;
  background: var(--dark-color);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.icon-five svg {
  fill: var(--primary-color);
  width: 3rem;
  height: 3rem;
}

.radio-tile-label-five {
  text-align: center;
  font-size: 12px;
  margin: 0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: red;
  font-family: 'Muli', sans-serif;
}

.radio-button-five:checked + .radio-tile-five {
  background-color: var(--primary-color);
  border: 2px solid #484d77;
  color: white;
  transform: scale(1.1, 1.1);
}

.icon-five svg {
  fill: white;
}

.radio-tile-label-five {
  color: white;
}

/*============== Radio Form 06==============*/
.radio-tile-group-six {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.input-container-six {
  position: relative;
  height: 8rem;
  width: 7rem;
  margin: 0.5rem;
}
.radio-button-six {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-tile-six {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #15303c;
  background: var(--dark-color);
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}
.icon-six svg {
  fill: var(--primary-color);
  width: 3rem;
  height: 3rem;
}
.radio-tile-label-six {
  text-align: center;
  font-size: 12px;
  margin: 0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: red;
  font-family: 'Muli', sans-serif;
}
.radio-button-six:checked + .radio-tile-six {
  border: 2px solid #484d77;
  color: white;
  transform: scale(1.1, 1.1);
}
.icon-six svg {
  fill: white;
}
.radio-tile-label-six {
  color: white;
}

.form-area input,
.form-area select {
  margin-bottom: 7px;
}

.iti {
  position: relative;
  display: block;
}
