:root {
  --white: #FFFFFF;
  --bright: #F5F5F5;
  --light: #EFEFEF;
  --primary: #CABFB2;
  --black: #000000;
  --dark: #1D1D1D;
  --border-radius: 10px;
  --border-radius-big: 60px;
}

* {
  scrollbar-width: auto;
  scrollbar-color: var(--primary) var(--primary-light);
}

*::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--light);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
  border: 0px none var(--light);
}

html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: var(--bright);
  color: var(--black);
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.44;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  -webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
  position: relative;
  z-index: 2;
}

@media (min-width: 1600px) {
  .container {
      max-width: 1170px;
  }
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--white);
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-only {
  display: none !important
}

@media (max-width: 640px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
}

/* PARAGRAPH */

a {
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  display: inline-block;
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.text-underline {
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

button, button:hover, button:focus {
  background-color: transparent;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

input, input:hover, input:focus, select, textarea {
  border: none;
  outline: none;
  background-color: transparent;
  box-shadow: none;
  padding: 0.5em 1em;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

::placeholder {
  color: var(--primary);
  font-weight: 400;
}

:-ms-input-placeholder {
  color: var(--primary);
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--primary);
  font-weight: 400;
 }

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right[class*="button"], .align-right[class*="read-more"] {
  text-align: center;
  float: right;
}

.align-center[class*="button"], .align-center[class*="read-more"] {
  text-align: center;
  float: none;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  float:right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float:left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float:right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float:left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-normal {
  font-size: 1em;
}

.text-smaller {
  font-size: 0.9em;
  line-height: 1.4em;
}

.text-smallest {
  font-size: 0.8em;
  line-height: 1.4em;
}

.text-bigger {
  font-size: 1.1em;
  line-height: 1.4em;
}

.text-biggest {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

footer ul, header ul {
  list-style: none;
}

strong, b {
  font-weight: bold;
}

.invert {
  color: var(--white);
}

/* HEADINGS */

h1, .h1 {
  font-size: 4em;
  font-weight: 500;
  display: table;
  margin-bottom: 30px;
}

h2, .h2 {
  font-size: 3em;
  font-weight: 500;
  display: table;
  margin-bottom: 30px;
}

h3, .h3 {
  font-size: 1.5em;
  font-weight: 500;
  display: table;
  margin-bottom: 30px;
  text-transform: uppercase;
}

h4, .h4 {
  font-size: 1.25em;
  font-weight: 500;
  display: table;
  margin-bottom: 30px;
  text-transform: uppercase;
}

h5, .h5 {
  font-size: 1.15em;
  font-weight: 700;
  display: table;
  margin-bottom: 30px;
}

h6, .h6 {
  font-size: 1em;
  font-weight: 700;
  display: table;
  margin-bottom: 30px;
}

/* SPACES */

section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* OTHER */

.break-after:after {
  content: '\A';
  white-space: pre;
}

.break-before:before {
  content: '\A';
  white-space: pre;
}

.va-middle {
  vertical-align: middle;
}

.va-top {
  vertical-align: top;
}

.va-bottom {
  vertical-align: bottom;
}

.no-border {
  border: none;
}

.inline-block {
  display: inline-block !important;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.vertical-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.navbar-toggler {
  display: none;
}

.screen-reader-text {
  font-size: 0;
}

.invert .section-title {
  color: var(--white);
}

/* BUTTONS */

.primary-button, .secondary-button, .primary-button:focus, .secondary-button:focus, .primary-button:active, .secondary-button:active {
  cursor: pointer;
  display: table;
  border-radius: var(--border-radius-big);
  position: relative;
  text-decoration: none;
  padding: 1em 1.875em;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  font-weight: 500;
  text-align: center;
  line-height: 1em;
}

.primary-button {
  background: var(--primary);
  color: var(--white);
}

.secondary-button {
  color: var(--black);
  border: 1px solid var(--primary);
}

.primary-button:hover, .primary-button:focus, .primary-button:active {
  background: var(--black);
  color: var(--white);
  transform: scale(1.05);
  padding: 1em 1.875em;
  line-height: 1em;
}

.secondary-button:hover, .secondary-button:focus, .secondary-button:active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  padding: 1em 1.875em;
  line-height: 1em;
}

a.section-end, button.section-end {
  margin: 50px auto 0 auto;
}

/* HEADER */

header {
  position: fixed;
  background-color: var(--bright);
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.navbar-toggler {
  display: none;
}

header .container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

header .logo {
  width: 155px;
}

header .logo img {
  max-width: 100%;
}

header .main-nav {
  padding-left: 55px;
  display: flex;
  gap: 30px;
}

header .main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header .main-nav ul li {
  margin: 0.5em 1em 0 1em;
  position: relative;
}

header .main-nav ul li a {
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  font-weight: 500;
  color: var(--black);
}

header .main-nav ul li.active a {
  color: var(--primary);
}

header .main-nav ul li a:hover {
  color: var(--primary);
}

header .main-nav ul li a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: var(--primary);
  height: 2px;
  border-radius: 3px;
  width: 100%;
  transform: scaleX(0);
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  transform-origin: center;
}

header .main-nav ul li a:hover:before {
  transform: scaleX(1);
}

#top-spacer {
  content: "";
  position: relative;
  height: 0;
  display: block;
}

header .main-nav ul li.special a {
  padding: 10px 15px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: var(--border-radius-big);
}

header .main-nav ul li.special a:hover {
  background-color: var(--black);
}

header .main-nav ul li.menu-item-has-children {
  position: relative;
}

header .main-nav ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bright);
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: block;
}

header .main-nav ul li .sub-menu li {
  margin: 0;
}

header .main-nav ul li .sub-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  color: var(--black);
  font-weight: 400;
}

header .main-nav ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 5px);
}


/* MAIN CAROUSEL */

.main-carousel {
  width: 100%;
}

.main-carousel .item {
  height: 0;
  padding-bottom: 45.1%;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mobile-only.main-carousel .item {
  padding-bottom: 133%;
}

.main-carousel .item .text {
  width: 50%;
  left: 40px;
  top: 70px;
  position: absolute;
  z-index: 1;
}

.main-carousel .item .text h2 {
  font-size: 7em;
  font-weight: 300;
}

.main-carousel .item .button {
  width: 50%;
  left: 40px;
  bottom: 70px;
  position: absolute;
  z-index: 1;
}

/* PHONE MODULE */

.phone-module {
  display: flex;
  gap: 50px;
  font-size: 1.25em;
}

.phone-module .text {
  text-transform: uppercase;
}

.phone-module .phone span {
  color: var(--primary);
  font-weight: 500;
}

.phone-module .phone a {
  font-weight: 700;
  text-decoration: none;
}

/* TEXT AND NUMBERS MODULE */

.text-and-numbers-module {
  display: flex;
  gap: 100px;
}

.text-and-numbers-module .text {
  width: calc(50% - 100px);
}

.text-and-numbers-module .text .primary-button {
  margin-top: 40px;
}

.text-and-numbers-module .numbers-01, .text-and-numbers-module .numbers-02 {
  width: 25%;
  text-transform: uppercase;
  position: relative;
}

.text-and-numbers-module .numbers-01 .counter, .text-and-numbers-module .numbers-02 .counter {
  color: var(--primary);
  font-size: 7em;
  font-weight: 300;
  display: block;
  line-height: 1em;
}

.text-and-numbers-module .numbers-02 {
  padding-top: 140px;
  padding-left: 30px;
}

.text-and-numbers-module .numbers-02:before {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-position: center top;
  background-image: url(../img/sign_part.svg);
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

/* GALLERY CAROUSEL */

.gallery-carousel {
  width: 100%;
}

.gallery-carousel .item {
  height: 0;
  padding-top: 43%;
  background-position: center;
  background-size: cover;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.owl-dots {
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 0;
  margin-top: 30px;
}

.owl-dots .owl-dot {
  width: 40px;
  height: 7px;
  background-color: var(--primary);
  border-radius: 10px;
  border: 1px solid var(--primary) !important;
  margin-left: 3px;
  margin-right: 3px;
}

.owl-dots .owl-dot.active {
  background-color: var(--primary);
}

/* TEXT IMAGES TEXT MODULE */

.text-images-text-module {
  display: flex;
  gap: 45px;
}

.text-images-text-module .title {
  width: calc(33.33% - 30px);
}

.text-images-text-module .image {
  width: calc(33.33% - 30px);
}

.text-images-text-module .image img {
  border-radius: var(--border-radius);
  width: 100%;
  display: block;
}

.text-images-text-module .text-image {
  width: calc(33.33% - 30px);
}

.text-images-text-module .text-image img {
  border-radius: var(--border-radius);
  width: 70%;
  display: block;
  margin-top: 30px;
}

/* TITLE BUTTON MODULE */

.title-button-module {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.title-button-module .secondary-button {
  margin-top: 30px;
}

/* TITLE BUTTON MODULE */

.title-sign-text-module {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.title-sign-text-module:before {
  width: 33%;
  height: 130px;
  content: "";
  z-index: 0;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  background-image: url(../img/sign_part.svg);
  left: 33.33%;
  top: 0;
}

.title-sign-text-module .text {
  width: 20%;
}

/* OFFER MODULE */

.offer-carousel {
  width: 100%;
}

.offer-item .image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  display: block;
  width: 100%;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.offer-item .image:before {
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: center;
  transform: scale(0);
  z-index: 2;
  background-color: var(--primary);
  content: "";
}

.offer-item:hover .image:before {
  transform: scale(1);
}

.offer-item .image:after {
  -webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: center;
  transform: scale(0);
  z-index: 3;
  background-size: 40%;
  background-image: url(../img/sign_hover.svg);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

.offer-item:hover .image:after {
  transform: scale(1);
}
  

.offer-item .title {
  margin-top: 15px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.read-more {
  font-size: 0.85em;
  text-decoration: none;
  position: relative;
  padding-right: 30px;
}

.read-more:before {
  width: 17px;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -5px;
  background-image: url(../img/icon_arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.read-more:hover:before {
  right: 0;
}

.offer-item .read-more {
  margin-top: 25px;
}

/* GALLERY */

.fl-module.gallery {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.fl-module.gallery .twenty20 {
  width: calc(33.33% - 27px) !important;
  max-width: calc(33.33% - 27px) !important;
  border-radius: var(--border-radius) !important;
  overflow: hidden !important;
}

.fl-module.gallery:before {
  display: none;
}

.fl-module.gallery > p {
  display: none !important;
}

/* TEAM MODULE */

.team-carousel {
  width: 100%;
  margin-top: 30px;
}

.team-item .image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  display: block;
  width: 100%;
}

.team-item .title {
  margin-top: 15px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.team-item .position {
  font-size: 0.85em;
  margin-top: 20px;
  display: block;
}

/* FOOTER */

footer {
  width: 100%;
  margin-top: 60px;
}

footer a {
  text-decoration: none;
}

.footer-top-columns {
  display: flex;
  gap: 40px;
}

.footer-bottom-columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 40px;
}

.footer-social-media {
  display: flex;
  gap: 40px;
}

.footer-social-media > .column {
  width: calc(50% - 20px);
  border-top: 1px solid var(--primary);
  padding-top: 15px;
  margin-top: 40px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.footer-top-columns .column {
  width: calc(25% - 30px);
}

footer h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 300;
}

.footer-menu, footer ul {
  padding-left: 0;
  list-style: none;
}

footer .logo {
  width: 100px;
  display: block;
}

footer .logo img {
  display: block;
  width: 100%;
}

/* TEXT PHOTO SIGN MODULE */

.text-photo-sign-module {
  display: flex;
  gap: 0 150px;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 60px;
}

.text-photo-sign-module:before {
  z-index: 1;
  width: 176px;
  height: 177px;
  background-image: url(../img/sign_alt.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
}

.text-photo-sign-module .title {
  width: 100%;
}

.text-photo-sign-module .text {
  width: calc(50% - 75px);
}

.text-photo-sign-module .photo {
  width: calc(50% - 75px);
}

.text-photo-sign-module .photo img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* TEXT IMAGE MODULE */

.text-image-module {
  display: flex;
  gap: 0 150px;
  flex-wrap: wrap;
  position: relative;
}

.text-image-module .title {
  width: 100%;
}

.text-image-module .text {
  width: calc(50% - 75px);
}

.text-image-module .image {
  width: calc(50% - 75px);
}

.text-image-module .image img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* TEXT PHOTO MODULE */

.text-photo-module {
  display: flex;
  gap: 0 150px;
  flex-wrap: wrap;
  position: relative;
}

.text-photo-module .title {
  width: 100%;
}

.text-photo-module .text {
  width: calc(50% - 75px);
}

.text-photo-module .photo {
  width: calc(50% - 75px);
}

.text-photo-module .photo img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* TWO COLUMNS MODULE */

.text-two-columns-module {
  display: flex;
  gap: 150px;
}

.text-two-columns-module .column {
  width: calc(50% - 75px);
}

/* OFFER LIST MODULE */

.offer-list-module {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.offer-list-module .offer-item {
  width: calc(25% - 30px);
}

.offer-list-module .offer-item .image, .offer-list-module .offer-item .image img {
  width: 100%;
  display: block;
}

/* PERKS MODULE */

.perks-module {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.perks-module .perk-item {
  width: calc(33.33% - 20px);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary);
  padding-bottom: 40px;
  position: relative;
}

.perks-module .perk-item h3 {
  text-transform: none;
  font-size: 1.25em;
  font-weight: 600;
}

.perks-module .perk-item img {
  width: 50px;
  height: auto;
  right: 10px;
  bottom: 10px;
  position: absolute;
  z-index: 2;
}

body.invisalign .perks-module .perk-item {
  border: 1px solid #B21F2F;
}

/* CONTACT LOCATIONS MODULE */

.contact-locations-module {
  display: flex;
  gap: 100px;
}

/* CONTACT FORM */

input[type=text], input[type=tel], input[type=email], input[type=date], textarea {
  width: 100%;
  padding: 10px 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary);
  display: block;
  margin-bottom: 15px;
}

textarea {
  min-height: 250px;
}

.contact-form {
  max-width: 800px;
}

.contact-form .send {
  margin-left: auto;
  display: table;
}

/* TITLE TEXT MODULE */

.title-text-module {
  display: flex;
  gap: 50px;
}

.title-text-module h2, .title-text-module .text {
  width: calc(50% - 25px);
}

/* TEAM LIST MODULE */

.team-list-module {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.team-list-module .team-item {
  width: calc(25% - 30px);
}

/* SINGLE TEAM MODULE */

.team-single-module {
  display: flex;
  gap: 100px;
}

.team-single-module .image {
  width: 40%;
}

.team-single-module .image img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.team-single-module .text {
  width: calc(60% - 100px);
}

.team-single-module .position {
  display: block;
  margin-bottom: 30px;
  color: var(--primary);
}

.team-single-module .primary-button {
  margin-top: 100px;
}

/* PRICELIST MODULE */

.pricelist-module {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pricelist-module .pricelist-section {
  width: 100%;
  display: block;
}

.pricelist-module .pricelist-section-title {
  margin-bottom: 20px;
}

.pricelist-module .pricelist-section .pricelist-position {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--primary);
}

.pricelist-module .pricelist-section .pricelist-position:nth-child(even) {
  background-color: var(--light);
}

.pricelist-module .pricelist-section .pricelist-position:last-child {
  border-bottom: none;
}

/* BORDER INFO MODULE */

.border-info-module {
  padding: 40px;
  text-align: center;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  border: 1px solid #f5103b;
  display: block;
}

/* INVISALIGN */

body.invisalign, body.invisalign header {
  background-color: #E5E0DB;
}

body.invisalign .title-text-module img {
  display: block;
  margin-left: auto;
}

.video-image-button, .video-image-button img {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius);
}

/* STEPS MODULE */

.steps-module {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.steps-module .step {
  width: 100%;
  display: flex;
  gap: 50px;
}

.steps-module .step .text {
  width: calc(55% - 50px);
}

.steps-module .step .image {
  width: 45%;
}

.steps-module .step .image img {
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: var(--border-radius);
}

.steps-module .step .number {
  width: 100%;
  display: block;
  font-weight: 300;
  border-bottom: 1px solid var(--primary);
}

.steps-module .step:nth-child(even) .text {
  order: 2;
}


.steps-module .step:nth-child(even) .image {
  order: 1;
}

@media (max-width: 1600px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 1300px) {
  header .main-nav ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 980px) {
  header .navbar-toggler, header .navbar-toggler:hover, header .navbar-toggler:focus {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -8px;
    right: 15px;
    width: 24px;
    height: 21px;
    border-radius: 0;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: none;
  }

  header .navbar-toggler span {
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }

  header .navbar-toggler span:nth-child(2) {
    top: 7px;
    width: 11px;
  }

  header .navbar-toggler:hover span:nth-child(2) {
    width: 21px;
  }

  header .navbar-toggler span:nth-child(3) {
    top: 14px;
    width: 21px;
  }

  header .navbar-toggler.open span:nth-child(1) {
    width: 21px;
    transform: rotate(45deg);
    top: 0;
  }

  header .navbar-toggler.open span:nth-child(2) {
    width: 0;
  }

  header .navbar-toggler.open span:nth-child(3) {
    width: 21px;
    transform: rotate(-45deg);
    top: 0;
  }

  header .navbar-toggler.open {
    z-index: 1001;
    position: fixed;
    top: 35px;
    margin-top: 0;
  }

  header .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--bright);
    z-index: 1000;
    right: -100%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: left;
    font-size: 1.25em;
    display: block;
  }

  header .main-nav.open {
    right: 0;
  }

  header .nav-bar {
    padding: 15px;
  }

  header .nav-bar.container {
    max-width: 100%;
  }

  header .main-nav {
    padding: 15px;
  }

  header .main-nav ul {
    display: block;
  }

  header .main-nav ul li {
    margin-left: 0;
    margin-right: 0;
  }
  
  header .navbar-toggler .text {
    font-size: 0;
  }
  
  header .main-nav ul {
    display: block;
    padding-top: 60px;
  }
  
  header .main-nav ul.social-media {
    display: flex;
    gap: 20px;
  }
  
  header .main-nav ul li {
    width: 100%;
  }
  
  header .main-nav ul.social-media li {
    width: auto;
  }
  
  .team-list-module .team-item, .offer-list-module .offer-item {
  width: calc(33.33% - 27px);
}

}

@media (min-width:576px){.fl-row-content{max-width:540px}}@media (min-width:768px){.fl-row-content{max-width:720px}}@media (min-width:992px){.fl-row-content{max-width:960px}}@media (min-width:1200px){.fl-row-content{max-width:1140px}}
@media (max-width:576px){.fl-row-content{padding-right: 15px; padding-left: 15px;}}

@media (max-width: 640px) {
  .phone-module, .text-and-numbers-module, .text-images-text-module, .title-button-module, .title-sign-text-module, .footer-top-columns, .text-photo-sign-module, .text-image-module, .text-two-columns-module, .offer-list-module, .steps-module, .steps-module .step, .perks-module, .team-list-module, .contact-locations-module, .text-photo-module {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .text-and-numbers-module .text, .text-and-numbers-module .numbers-01, .text-and-numbers-module .numbers-02, .text-images-text-module .title, .text-images-text-module .image, .text-images-text-module .text-image, .title-button-module h2, .title-sign-text-module h2, .footer-top-columns .column, .text-photo-sign-module .text, .text-photo-sign-module .photo, .text-image-module .text, .text-image-module .image, .text-two-columns-module .column, .team-list-module .team-item, .offer-list-module .offer-item, .steps-module .step .text, .steps-module .step .image, .perks-module .perk-item, .team-list-module .team-item, .offer-list-module .offer-item, .title-sign-text-module .text, .footer-top-columns .column, .text-photo-module .text, .text-photo-module .photo {
    width: 100%;
  }
  
  .steps-module .step:nth-child(even) .text {
    order: 1;
  }
  
  .steps-module .step:nth-child(even) .image {
    order: 2;
  }
  
  .team-carousel {
    margin-top: 30px;
  }
  
  .main-carousel .item {
    padding-bottom: 130%;
  }
}