/*============= RESETS =============*/
/* font-family: 'Lato', sans-serif; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s ease;
}

/*-- iPhone X Remove Gutters --*/
html {
  padding: env(safe-area-inset);
}
  
html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--secondary-color);
  line-height: 1.5;
}

/*============= SCROLLBAR =============*/
::-webkit-scrollbar {
  width: 9px;
  /* background: #f4f4f4; */
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: var(--primary-color);
}

/*============= HIGHLIGHT =============*/
::selection {
  color: #fff;
  /* background: var(--primary-color); */
  background: rgba(39, 79, 153, 0.8);
}

/*============= LIGHTBOX =============*/
.fslightbox-absoluted {
  transition: none;
}

/*============= START NAVIGATION =============*/

.navbar-brand.home .navbar-contact {
  display: none;
  visibility: hidden;
}

.navbar-brand.home {
  position: fixed;
  top: 45px;
  left: 54px;
  z-index: 1005;
}

.navbar-brand > a {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}

.navbar-brand img {
  width: 42px;
  height: 35px;
}

.navbar-brand h1 {
  margin-left: 0.45rem;
  color: var(--primary-color);
  font-family: var(--font-montserrat);
  font-size: 28px;
}

.navbar-contact {
  margin-left: auto;
}

/* Pages navigation */

.navbar.show {
  background: var(--light-color);
  box-shadow: rgb(0 0 0 / 12%) 0 1px 3px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 250;
  background: transparent;
  box-shadow: none;
}

.navbar .container {
  max-width: 1720px;
  padding: 0 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.navbar-contact > a {
  transition: .6s cubic-bezier(.215,.61,.355,1);
  display: inline-block;
  position: relative;
  line-height: 2;
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font-montserrat);
  color: var(--dark-color);
}

.navbar-contact > a::before, 
.navbar-contact > a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  height: 1px;
}

.navbar-contact > a::before {
  left: 0;
  width: 30px;
  background-color: #403911;
  transition: .35s cubic-bezier(.65,.05,.36,1) .15s;
}

.navbar-contact > a::after {
  left: 100%;
  width: 100%;
  background-color: #403911;
  transform: translateX(0);
  transition: .35s cubic-bezier(.65,.05,.36,1);
}

.navbar-contact > a:hover {
  color: var(--primary-color);
}

.navbar-contact > a:hover::before {
  transform: translateX(-100%);
  transition: .35s cubic-bezier(.65,.05,.36,1) .15s;
}

.navbar-contact > a:hover::after {
  left: -100%;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.65,.05,.36,1),left 0s;
}

/*============= END NAVIGATION =============*/
/*============= START LANDING PAGE =============*/

.landing-page {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0px;
  margin-bottom: 6rem;
}

.landing-text-container {
  position: relative;
  flex: 0 0 55.333333%;
  max-width: 55.333333%;
}

.landing-tablet-container {
  background-image: var(--gradient);
  flex: 0 0 44.666667%;
  max-width: 44.666667%;
}

.xl-container {
  max-width: 1020px;
  height: 100%;
}

/* landing text */

.landing-text {
  padding-left: 6rem;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.landing-text h1 {
  font-family: 'Montserrat Title', sans-serif;
  font-size: 10.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0px;
  color: var(--primary-color);
}

.landing-text h1::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/aesthetics/landing-dots.svg);
  opacity: 0.3;
  right: 105%;
  bottom: 0.14em;
  width: 200px;
  height: 100px;
}

.caption-container {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.caption-01,
.caption-02,
.caption-03 {
  opacity: 0;
  position: absolute;
  transform: translateX(-600px);
  top: 0px;
  left: 0;
  animation: slider-one 15s infinite;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.caption-02 {
  animation: slider-two 15s infinite;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.caption-03 {
  animation: slider-three 15s infinite;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes slider-one {
  0% {
    opacity: 0;
    transform: translateX(-600px)
  }

  6% {
    opacity: 0;
    transform: translateX(-150px);
  }

  10% {
    opacity: 1;
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(0);
  }

  30% {
    opacity: 1;
    transform: translateX(0);
  }

  33% {
    opacity: 0;
    transform: translateX(300px);
  }

  40% {
    opacity: 0;
    transform: translateX(600px);
  }

  50% {
    opacity: 0;
    transform: translateX(-600px);
  }

  60% {
    opacity: 0;
    transform: translateX(-600px);
  }

  70% {
    opacity: 0;
    transform: translateX(-600px);
  }

  80% {
    opacity: 0;
    transform: translateX(-600px);
  }

  90% {
    opacity: 0;
    transform: translateX(-600px);
  }

  100% {
    opacity: 0;
    transform: translateX(-600px);
  }
}

@keyframes slider-two {
  0% {
    opacity: 0;
    transform: translateX(-600px);
  }

  10% {
    opacity: 0;
    transform: translateX(-600px);
  }

  20% {
    opacity: 0;
    transform: translateX(-600px);
  }

  30% {
    opacity: 0;
    transform: translateX(-600px);
  }

  31% {
    opacity: 0;
    transform: translateX(-150px);
  }

  35% {
    opacity: 1;
    transform: translateX(0px);
  }

  40% {
    opacity: 1;
    transform: translateX(0px);
  }

  50% {
    opacity: 1;
    transform: translateX(0px);
  }

  60% {
    opacity: 1;
    transform: translateX(0px);
  }

  63% {
    opacity: 0;
    transform: translateX(300px);
  }

  70% {
    opacity: 0;
    transform: translateX(600px);
  }

  80% {
    opacity: 0;
    transform: translateX(-600px);
  }

  90% {
    opacity: 0;
    transform: translateX(-600px);
  }

  100% {
    opacity: 0;
    transform: translateX(-600px);
  }
}

@keyframes slider-three {
  0% {
    opacity: 0;
    transform: translateX(-600px);
  }

  10% {
    opacity: 0;
    transform: translateX(-600px);
  }

  20% {
    opacity: 0;
    transform: translateX(-600px);
  }

  30% {
    opacity: 0;
    transform: translateX(-600px);
  }

  40% {
    opacity: 0;
    transform: translateX(-600px);
  }

  50% {
    opacity: 0;
    transform: translateX(-600px);
  }

  60% {
    opacity: 0;
    transform: translateX(-600px);
  }

  61% {
    opacity: 0;
    transform: translateX(-150px);
  }

  65% {
    opacity: 1;
    transform: translateX(0px);
  }

  70% {
    opacity: 1;
    transform: translateX(0px);
  }

  80% {
    opacity: 1;
    transform: translateX(0px);
  }

  90% {
    opacity: 1;
    transform: translateX(0px);
  }

  96% {
    opacity: 1;
    transform: translateX(0px);
  }

  99% {
    opacity: 0;
    transform: translateX(300px);
  }

  100% {
    opacity: 0;
    transform: translateX(600px);
  }
}

.landing-about-text {
  position: relative;
  font-size: 32px;
  padding-left: 3.6em;
}

.landing-about-text::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--dark-color);
  width: 2.4em;
  height: 1px;
  top: 0.8em;
  left: 0.5em;
}

.landing-about-text p { 
  margin-top: 32px;
  margin-bottom: 0;
  max-width: 385px;
  font-size: 2rem;
}

/* landing tablet */

.landing-tablet {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.landing-tablet .tablet {
  transition: none;
}

.landing-tablet .tablet img {
  max-height: 85vh;
  width: auto;
  transition: 0s ease;
  pointer-events: none;
  user-select: none;
}

.custom-shape-divider-top-1689294616 {
  visibility: hidden;
  display: none;
}

/* landing scroll */

.landing-scroll {
  left: 3.3vw;
  bottom: 40px;
}

.landing-scroll a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  vertical-align: middle;
  text-align: left;
  color: var(--dark-color);
  font-family: var(--font-montserrat);
  font-size: 10px;
  height: 3.2rem;
  line-height: 3.2rem;
  letter-spacing: 0.4em;
  -webkit-text-stroke: 0.025em;
  transform: rotate(90deg) translateX(-200px);
  transform-origin: left bottom;
}

.landing-scroll .horizontal-line {
  position: absolute;
  width: 32px;
  height: 200px;
  bottom: -10rem;
  left: 25px;
}

.landing-scroll .horizontal-line::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #2F60B5;
  width: 1.5px;
  top: 0;
  bottom: 0;
}

.landing-scroll a:hover {
  color: var(--primary-color);
  transform: rotate(90deg) translateX(-170px);
}

.horizontal-line.active {
  transform: translateY(30px);
}

/*============= END LANDING PAGE =============*/
/*============= START WHO WE ARE =============*/

#about {
  padding-bottom: 0;
}

#about .about-left,
#ecommerce-about .about-left {
  float: left;
  margin-right: 7vw;
  max-width: 21vw;
}

#about .about-left .line,
#ecommerce-about .about-left .line {
  display: block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 14px;
  letter-spacing: 1.56px;
  padding-left: 42px;
  margin-bottom: 32px;
}

#about .about-left .line::before,
#ecommerce-about .about-left .line::before {
  background-color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
}

#about .about-left h2,
#ecommerce-about .about-left h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px
}

#about .about-left p,
#ecommerce-about .about-left p {
  margin-bottom: 32px;
}

#about .about-right .about-grid,
#ecommerce-about .about-right .about-grid {
  display: inline-block;
  vertical-align: top;
  padding: 0 30px 37px;
}

#about .about-right .about-grid:nth-child(3n+1) {
  padding-left: 0;
}

#about .about-right .about-grid h2,
#ecommerce-about .about-right .about-grid h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

#about .about-right .about-grid h2:hover a {
  color: var(--primary-color);
}

#about .about-right .about-grid p,
#ecommerce-about .about-right .about-grid p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 24px;
}

/*============= END WHO WE ARE =============*/
/*============= START TESTIMONIALS =============*/

#testimonials {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* Testimonials Left side */

.testimonials-content {
  width: 56vw;
  padding: 121px 100px 128px;
  vertical-align: middle;
  position: relative;
  min-height: 726px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: var(--gradient);
  color: var(--light-color);
  z-index: 10;
}

.testimonials-heading.container {
  max-width: 980px;
  width: 100%;
}

.testimonials-heading .line {
  display: block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 14px;
  letter-spacing: 1.56px;
  padding-left: 42px;
  margin-bottom: 32px;
}

.testimonials-heading .line::before {
  background-color: var(--light-color);
  display: inline-block;
  vertical-align: middle;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
}

.testimonials-heading h2 {
  color: var(--light-color);
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}

.testimonials-heading > p {
  color: var(--light-color);
  font-size: 18px;
  width: 85%;
}

#testimonial-slider * {
  transition: none;
}

#testimonial-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 32px;
  padding-right: 32px;
}

#testimonial-slider .splide__slide p {
  margin-bottom: 0;
  color: var(--light-color);
  text-align: center;
}

/* Slider Arrows */

#testimonial-slider .splide__arrows .splide__arrow {
  background: transparent;
  transform: none;
  top: auto;
  bottom: -2.8em;
  width: 3em;
  height: 3em;
  z-index: 50;
}

#testimonial-slider .splide__arrows .splide__arrow:hover {
  border-radius: 0;
}

#testimonial-slider .splide__arrows .splide__arrow svg {
  width: 3em;
  height: 3em;
  fill: var(--light-color);
  transition: 0.2s ease;
}

#testimonial-slider .splide__arrows .splide__arrow:hover svg {
  transform: scale(1.1);
}

#testimonial-slider .splide__arrows .splide__arrow:first-child {
  display: none;
  visibility: hidden;
}

/* Slider Pagination */

#testimonial-slider .splide__pagination {
  display: none;
  visibility: hidden;
  bottom: -3.5em;
}

#testimonial-slider .splide__pagination.pagination__alt {
  display: flex;
  visibility: visible;
  justify-content: flex-start;
}

#testimonial-slider .splide__pagination.pagination__alt .line {
  display: block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 14px;
  letter-spacing: 1.56px;
  padding-left: 42px;
  margin-bottom: 32px;
}

#testimonial-slider .splide__pagination.pagination__alt .line::before {
  background-color: var(--light-color);
  display: inline-block;
  vertical-align: middle;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
}

.slide-01-active::before {
  content: 'The Gentlemen\0027s Barber Shop';
}

.slide-02-active::before {
  content: 'Ania';
}

.slide-03-active::before {
  content: 'Josephine D.';
}

/* Testimonials Right side */

.testimonials-img {
  position: absolute;
  right: 0;
  height: 400px;
  width: 56vw;
  top: 100px;
}

.testimonials-img .testimonials-img-container {
  height: 720px;
}

.testimonials-img .testimonials-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/*============= END TESTIMONIALS =============*/
/*============= START CUSTOM BESPOKE =============*/

#bespoke {
  justify-content: space-between;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 50px;
}

#bespoke .bespoke-step,
#bespoke .bespoke-text {
  max-width: 23.5%;
  flex: 0 0 23.5%;
}

.bespoke-step:hover .title h2 {
  color: var(--primary-color);
}

.bespoke-step:hover .title .step-number::before {
  transform: translate(-50%, -50%) rotate(375deg);
}

.bespoke-step:hover .content ul li {
  border-bottom-color: rgba(39, 79, 153, .4);
}

/* Bespoke Card Title */

.bespoke-step .title {
  display: flex;
  margin-bottom: 24px;
}

.bespoke-step .title .step-number {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-right: 36px;
}

.bespoke-step .title .step-number::before {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 1px);
  transform: translate(-50%, -50%) rotate(105deg);
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  z-index: -1;
  transition: 0.8s ease;
}

.bespoke-step .title .step-number span {
  display: inline-flex;
  justify-content: center;
  line-height: 16px;
  color: var(--light-color);
}

.bespoke-step .title .step-number .step {
  font-size: 12px;
  font-family: var(--font-montserrat-bold);
}

.bespoke-step .title .step-number .number {
  font-size: 20px;
  font-family: var(--font-montserrat-bold);
}

/* Bespoke Card Content */

.bespoke-step .content p {
  font-size: 14px;
  line-height: 22px;
}

.bespoke-step .content ul li {
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,.07);
  width: 75%;
  font-size: 14px;
  padding-bottom: 3px;
  transition: 0.8s ease;
}

/* Bespoke Text */

.bespoke-text .line {
  display: block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 14px;
  letter-spacing: 1.56px;
  padding-left: 42px;
  margin-bottom: 16px;
}

.bespoke-text .line::before {
  background-color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
}

.bespoke-text h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px
}

/* Get a quote section */

#quote {
  padding: 0;
  padding-bottom: 150px;
}

#quote .quote-text {
  max-width: 975px;
  margin: 0 auto;
  text-align: center;
}

.quote-text h2 {
  font-size: 36px;
  font-family: var(--font-montserrat-bold);
  margin-bottom: 21px;
}

.quote-text p {
  font-size: 24px;
  line-height: 40px;
}

/*============= END CUSTOM BESPOKE =============*/
/*============= START OFF THE SHELF =============*/

/* OTS Title */

#ots-title {
  padding: 0;
  margin-bottom: 5rem;
}

#ots-title .ots-title-img {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 540px;
}

#ots-title .ots-title-img-inner {
  background: url(../img/home/parallax.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
  transition: none;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.custom-shape-divider-top-1690401326 {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1690401326 svg {
  position: relative;
  display: block;
  width: calc(164% + 1.3px);
  height: 104px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1690401326 .shape-fill {
  fill: var(--light-color);
}

.custom-shape-divider-bottom-1690401688 {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1690401688 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 89px;
}

.custom-shape-divider-bottom-1690401688 .shape-fill {
  fill: var(--light-color);
}

#ots-title .ots-title-caption {
  position: absolute;
  display: flex;
  flex-flow: column;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  max-width: 567px;
}

#ots-title .ots-title-caption h2 {
  color: var(--light-color);
  font-size: 42px;
  margin-bottom: 6px;
}

#ots-title .ots-title-caption p {
  color: var(--dark-color);
  font-size: 16px;
  background: var(--light-color);
  padding: 15px;
  border-radius: 15px;
}

.ots-title-scroll a {
  display: inline-block;
  position: absolute;
  color: var(--light-color);
  letter-spacing: .1em;
  padding-top: 70px;
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translate(0, -50%);
}

.ots-title-scroll a:hover {
  opacity: 0.5;
}

.ots-title-scroll a span {
  position: absolute;
  border-left: 1px solid var(--light-color);
  border-bottom: 1px solid var(--light-color);
  top: 0;
  left: 50%;
  opacity: 0;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  transform: rotate(-45deg);
  animation: scrollLanding 2s infinite;
}

.ots-title-scroll a span:nth-of-type(1) {
  animation-delay: 0s;
}

.ots-title-scroll a span:nth-of-type(2) {
  top: 16px;
  animation-delay: .15s;
}

.ots-title-scroll a span:nth-of-type(3) {
  top: 32px;
  animation-delay: .3s;
}

@keyframes scrollLanding {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* OTS Main Section */

#ots * {
  transition: none;
}

#ots .ots-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* OTS Navigation */

.ots-nav {
  margin-bottom: 2.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ots-nav .sort-btn {
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: var(--light-color);
  color: var(--dark-color);
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  z-index: 10;
  transition: all 0.3s ease !important;
}

.ots-nav .sort-btn::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--primary-color);
  top: 105%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: top 0.3s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.ots-nav .sort-btn.checked {
  color: var(--light-color);
}

.ots-nav .sort-btn.checked::before {
  top: 0;
}

/* OTS Cards */

.ots-item {
  display: inline-block;
  padding: 10px 10px;
}

.ots-item.grid-4 {
  flex: 0 0 32.33333%;
  max-width: 32.33333%;
}

.ots-item .ots-item-box-inner {
  border-radius: 15px;
}

.ots-item img {
  object-fit: cover;
  vertical-align: middle;
  height: auto;
  width: 100%;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.ots-item .ots-item-switch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
  transition: 0.6s ease !important;
}

.ots-item .ots-item-hover {
  position: absolute;
  top: inherit;
  left: 20px;
  bottom: 20px;
  height: auto;
  width: calc(100% - 40px);
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s ease !important;
}

.ots-item .ots-item-hover-inner {
  align-self: flex-end;
  padding: 15px 30px;
  border-radius: 3px;
  background-color: var(--light-color);
}

.ots-item .ots-item-hover .text {
  margin-right: auto;
}

.ots-item .ots-item-hover .text small {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--dark-color);
  font-family: var(--font-montserrat);
}

.ots-item .ots-item-hover .text div {
  color: var(--dark-color);
  white-space: nowrap;
  font-family: var(--font-montserrat);
}

.ots-item .ots-item-hover .arrow {
  margin-left: auto;
  transition: all 0.3s ease !important;
}

/* OTS Cards Hover */

.ots-item .ots-item-box:hover .ots-item-box-inner .ots-item-switch {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.ots-item .ots-item-box:hover .ots-item-box-inner .ots-item-hover {
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
  transform: translateY(0);
  opacity: 1;
}

.ots-item .ots-item-hover .arrow:hover {
  transform: translateX(5px);
}

/*============= END OFF THE SHELF =============*/
/*============= START HOSTING / MAINTANENCE =============*/

#packages {
  padding-top: 25px;
  padding-bottom: 45px;
}

#packages .packages-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Left side */

.packages-left {
  padding-left: 0;
}

.packages-left .line {
  display: block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 14px;
  letter-spacing: 1.56px;
  padding-left: 42px;
  margin-bottom: 32px;
}

.packages-left .line::before {
  background-color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
}

.packages-left h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

/* Right side */

.packages-right {
  padding-right: 0;
  margin-right: 10vw;
}

.packages-right .packages-card-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  max-width: 700px;
}

.packages-card {
  padding-left: 0;
  padding-right: 0;
  border-radius: 15px;
  box-shadow: 0 0 15px rgb(0 0 0 / 8%);
  background-color: rgba(255, 255, 255, 1);
  flex: 0 0 calc(50% - 18px);
  max-width: 50%;
}

.packages-card:first-child {
  margin-right: 35px;
}

.packages-card .recommended-tag {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  color: var(--light-color);
  background-color: var(--primary-color);
  top: -36px;
  right: -72px;
  width: 180px;
  transform-origin: 0;
  font-size: 11px;
  padding: 10px 0 8px;
  transform: rotate(45deg);
}

.packages-card .packages-header {
  padding-top: 65px;
}

.packages-card .packages-header svg {
  display: block;
  margin: 0 auto;
  font-size: 50px;
}

.packages-card .packages-header span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  margin-top: 5px;
  font-size: 16px;
  line-height: 28px;
}

.packages-card .packages-body {
  padding: 40px 0;
}

.packages-card .packages-body h2 {
  text-align: center;
  font-family: var(--font-montserrat-bold);
  font-size: 36px;
  line-height: 3.65rem;
}

.packages-card .packages-body small {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #828282;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 30px;
}

.packages-card .packages-body ul li {
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 14px;
}

.packages-card .packages-footer {
  margin-bottom: 30px;
}

.packages-card .packages-footer a { /* unused */
  display: block;
  text-align: center;
  font-size: 14px;
}

/*============= END HOSTING / MAINTANENCE =============*/
/*============= START FREQUENTLY ASKED QUESTIONS =============*/

/* FAQ Title */

.faq-title {
  max-width: 975px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}

.faq-title h2 {
  font-size: 36px;
  font-family: var(--font-montserrat-bold);
  margin-bottom: 21px;
}

.faq-title p {
  font-size: 24px;
  line-height: 40px;
}

/* FAQ Accordion */

.faq-accordion .accordion-item {
  padding: 20px 25px;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(0,0,0,.07);
}

.accordion-item button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 20px;
  width: 100%;
  margin-bottom: 18px;
}

.accordion-item button:hover {
  cursor: pointer;
  color: var(--primary-color);
}

.accordion-item button .accordion-icon {
  transform: rotate(-180deg) translateY(0);
}

.accordion-item .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: 0.45s max-height ease;
  will-change: max-height;
  padding-left: 15px;
  padding-right: 30px;
}

.accordion-item .accordion-content p {
  font-size: 16px;
  margin-bottom: 12px;
}

.accordion-item .accordion-content p a {
  color: var(--primary-color);
  font-family: 'Montserrat Title', sans-serif;
}

/* FAQ Accordion - aria true */

.accordion-item button[aria-expanded='true'] {
  color: var(--primary-color);
}

.accordion-item button[aria-expanded='true'] .accordion-icon {
  transform: rotate(0) translateY(4px);
}

.accordion-item button[aria-expanded='true'] + .accordion-content {
  max-height: 16.5em;
}

/*============= END FREQUENTLY ASKED QUESTIONS =============*/



/*=====================                   =====================*/
/*=====================  END OF HOMEPAGE  =====================*/
/*=====================                   =====================*/



/*============= START ECOMMERCE PAGE  =============*/

#ecommerce-banner {
  position: relative;
  background: var(--dark-color);
}

.custom-shape-divider-top-1695684481 {
  position: absolute;
  bottom: -68px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1695684481 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.custom-shape-divider-top-1695684481 .shape-fill {
  fill: var(--dark-color);
}

.ecommerce-banner-wrap.container {
  max-width: 2300px;
}

.ecommerce-banner-wrap .banner-left {
  border-right: 2px solid var(--primary-color);
  padding-left: 0;
  padding-right: 75px;
}

.banner-left h2 {
  font-size: 34px;
  line-height: 44px;
  font-family: var(--font-montserrat-bold);
  color: var(--light-color);
}

.ecommerce-banner-wrap .banner-right {
  padding-left: 75px;
  padding-right: 0;
}

.banner-right p {
  color: var(--light-color);
  font-size: 24px;
  font-family: var(--font-montserrat);
}

.banner-right .occ-ref {
  display: flex;
  align-items: center;
}

.occ-ref img {
  max-width: 175px;
  height: auto;
  padding-left: 20px;
}

#ecommerce-faq {
  padding-top: 220px;
  padding-bottom: 180px;
  /* padding-left: 45px;
  padding-right: 45px; */
}

.ecommerce-faq-img img {
  max-width: 100%;
  height: fit-content;
  padding-left: 35px;
}

/*============= END ECOMMERCE PAGE  =============*/

/*============= START TEMPLATE PAGES  =============*/

.overflow-mod {
  overflow-x: unset;
}

/* template header */

.ots-header {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;  
  margin-top: 110px;
  margin-bottom: 3rem;
}

.ots-header-inner {
  position: relative;
  vertical-align: middle;
  height: 100%;
  width: 100%;
}

.ots-header-inner .container {
  max-width: 1760px;
  padding: 0 40px;
}

.ots-header-image img {
  height: 80px;
  width: 80px;
}

.ots-header-content {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
}

.ots-title,
.ots-btn {
  margin-bottom: 42px;
}

.ots-title h2 {
  white-space: normal;
  font-family: 'Montserrat Title', sans-serif;
  color: var(--primary-color);
  font-size: 32px;
  line-height: 1.25em;
  margin-bottom: 0;
}

.ots-header-breadcrumbs {
  color: #666;
  margin-top: 2px;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .01em;
  font-family: var(--font-montserrat);
}

.ots-header-breadcrumbs a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: inherit;
}

.ots-header-breadcrumbs a:hover {
  color: var(--primary-color);
}

.ots-header-breadcrumbs span {
  padding: 0 4px;
}

.ots-header-breadcrumbs span.bc-text {
  padding: 0;
}

.ots-header-description {
  max-width: 65%;
}

.ots-header-description p {
  font-size: 15px;
  margin-bottom: 12px;
}

/* template showcase content */

.ots-showcase {
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1760px;
  padding: 0 40px;
}

/* ots purchase wrap */

.ots-purchase-wrap.grid-3 {
  flex: 0 0 29%;
  max-width: 29%;
}

.ots-purchase {
  position: sticky;
  top: 100px;
  padding: 38px 25px 29px;
  line-height: 24px;
  border-radius: 15px;
  box-shadow: 0 0 17.64px 0.36px rgb(0 0 0 / 4%);
}

.ots-title h3 {
  font-family: 'Montserrat Title', sans-serif;
  font-size: 35px;
  line-height: 1.1;
  color: var(--dark-color);
}

.ots-btn a {
  display: block;
  position: relative;
  width: auto;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--light-color);
  font-family: var(--font-montserrat);
  font-size: 12px;
  line-height: 2em;
  letter-spacing: .12em;
  padding: 12px 41px;
  margin-bottom: 7px;
  outline: 0;
  border-radius: 26px;
}

.ots-btn a:hover,
.ots-btn a:active {
  background-color: #4470c2;
}

.ots-btn .price-query {
  text-align: center;
}

.ots-btn .price-query span {
  font-size: 13px;
  font-family: var(--font-montserrat);
}

.theme-info {
  list-style: none;
  padding-bottom: 33px;
  border-bottom: 1px solid #ebebeb;
  margin: 0 0 30px;
}

.theme-info li {
  font-size: 15px;
  font-family: var(--font-montserrat);
  margin-bottom: 5px;
  display: flex;
}

.theme-info li::before {
  content: '';
  display: inline-block;
  position: relative;
  background-color: var(--primary-color);
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}

.ots-description {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 29px;
  margin-bottom: 29px;
  position: relative;
}

.ots-description .highlight {
  font-family: var(--font-montserrat);
  font-size: 20px;
  line-height: 1.29em;
  margin-bottom: 11px;
}

.ots-description p {
  font-family: var(--font-montserrat);
  font-size: 15px;
  margin-bottom: 0;
}

.ots-certification {
  text-align: center;
}

.ots-certification span {
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: 'Montserrat Title', sans-serif;
  font-size: 13px;
}

/* ots visual content */

.ots-visual-content {
  background-image: url(../img/templates/riverview/riverview-bg.webp);
  background-position: 0px 0px;
  background-size: 100%;
  background-color: /*#eceaef*/ #f7f7f7;
  background-repeat: no-repeat;
  padding: 85px 0;
}

#strontium-design .ots-visual-content,
#focalpoint .ots-visual-content {
  background-image: url(../img/templates/strontium/strontium-bg.webp);
  background-repeat: repeat;
  background-color: #f1e5e5;
}

#dare-roofing .ots-visual-content {
  background-image: url(../img/templates/dare/dare-bg.webp);
  background-color: #f1e5e5;
}

#unison-consulting .ots-visual-content {
  background-image: url(../img/templates/unison/unison-bg.jpg);
  background-color: #181d20;
  color: var(--light-color);
}

#unison-consulting .title-paragraph,
#unison-consulting .fourth {
  color: var(--light-color);
}

/* ots visual wrap */

.ots-visual-wrap {
  padding: 0 12px;
}

.ots-visual-wrap.grid-9 {
  flex: 0 0 71%;
  max-width: 71%;
}

.ots-visual-content .main-content {
  max-width: 590px;
  margin: 0 auto;
}

.main-content .featured-image {
  box-shadow: 0 0 20px 0 rgb(2 2 2 / 3%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}

.main-content .featured-image img {
  margin: 0 auto;
  display: block;
  height: auto;
  max-width: 100%;
}

.title-paragraph {
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
}

.title-paragraph span {
  display: inline-block;
  font-family: var(--font-montserrat);
  color: var(--primary-color);
  font-size: 48px;
  margin-bottom: -15px;
  margin-left: -16px;
}

.main-content-text p.first {
  color: var(--primary-color);
  font-size: 28px;
  font-family: 'Montserrat Title', sans-serif;
}

.main-content-text p.second {
  color: var(--primary-color);
  font-size: 22px;
  font-family: 'Montserrat Title', sans-serif;
  font-style: italic;
}

.main-content-text .third {
  font-size: 16px;
  font-family: var(--font-montserrat);
  margin-bottom: 28px;
}

.main-content-text p.fourth {
  font-size: 20px;
}

.main-content-text p.fifth {
  font-size: 36px;
  color: var(--primary-color);
  font-family: 'Montserrat Title', sans-serif;
}

.site-showcase {
  padding: 50px 0;
}

.showcase-row {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 50px;
}

.showcase-item-inner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 0 17.64px 0.36px rgb(0 0 0 / 4%);
}

.showcase-item.grid-6 {
  margin-bottom: 32px;
}

/* ots showcase info */

.ots-showcase-info {
  padding-top: 100px;
  padding-bottom: 25px;
  margin-bottom: 125px;
}

.theme-features.container {
  max-width: 1360px;
  padding: 0 40px;
}

.ots-showcase-info .theme-features h3 {
  margin-bottom: 48px;
  font-size: 28px;
  font-family: var(--font-montserrat);
}

.theme-features-item-content {
  padding-left: 18px;
}

.theme-features-item-content h5 {
  font-size: 18px;
  margin-bottom: 16px;
}

.theme-features-item-content p {
  font-size: 15px;
}

/*============= END TEMPLATE PAGES  =============*/
/*============= START TERMS OF SERVICE  =============*/

.terms-landing {
  margin-top: 12.2rem;
  margin-bottom: 4.5rem;
  max-width: 1210px;
}

.terms-landing-layout {
  padding: 0 40px;
}

.terms-landing h1 {
  font-size: 6.15rem;
  line-height: 1;
}

.terms-landing h3 {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 14px;
  font-family: 'Montserrat Title', sans-serif;
  color: var(--primary-color);
}

.terms-landing .primary-btn {
  margin-top: 1.25rem;
}

/* Terms */

#terms {
  padding-left: 0;
  padding-right: 0;
}

.terms-table-wrap {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.terms-table {
  width: 75%;
  margin-left: auto;
}

.term {
  border-top: 2px solid rgba(0,0,0,.07);
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  position: relative;
  display: block;
}

.term-layout .layout-item {
  width: 65.3692%;
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  padding-left: 0;
}

.term-layout .layout-item h2 {
  font-size: 2.5rem;
  white-space: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1.875rem;
  line-height: 1;
}

.term-layout .layout-item p {
  margin-bottom: 0.85rem;
  font-size: 15px;
}

.term-layout .layout-item.number {
  width: 33.3333%;
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  padding-left: 0;
}

.layout-item.number span {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: 'Montserrat Title', sans-serif;
}

.term-layout .layout-item p a, 
.term-layout .layout-item ul li a {
  color: var(--primary-color);
  font-family: 'Montserrat Title', sans-serif;
}

.term-layout .layout-item ul {
  margin-bottom: 0.85rem;
}

.term-layout .layout-item ul li {
  font-family: var(--font-montserrat);
  font-size: 15px;
  list-style: disc;
  margin-left: 2.5rem;
  margin-bottom: 0.55rem;
}

/*============= END TERMS OF SERVICE  =============*/
/*============= START CONTACT PAGE  =============*/

#contact {
  position: relative;
  padding: 0;
  z-index: 10;
}

#contact .contact-wrap {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.contact-wrap .contact-left {
  padding: 299px 100px 100px;
  flex: 0 0 40%;
  max-width: 40%;
}

.contact-wrap .contact-right {
  margin-top: -100px;
  transform: translateY(100px);
  flex: 60%;
  max-width: 60%;
}

.cta-contact .cta-wrap {
  padding: 142px 120px 110px;
}

/* contact left */

.contact-left .line {
  display: block;
  position: relative;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Montserrat Title', sans-serif;
  font-size: 14px;
  letter-spacing: 1.56px;
  padding-left: 42px;
  margin-bottom: 32px;
}

.contact-left .line::before {
  background-color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
}

.contact-left h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

.contact-left .contact-info p {
  margin-bottom: 7px;
}

.contact-left .contact-info p span {
  font-family: 'Montserrat Title', sans-serif;
}

.contact-left .contact-info p a {
  color: var(--primary-color);
}

/*contact right */

.contact-right .contact-right-inner {
  background-image: linear-gradient(318deg,rgb(32, 136, 140) 0%, rgb(67, 107, 142) 60%,  rgb(39, 79, 153) 100%);
  color: #fff;
  padding: 158px 70px 67px;
  min-height: 900px;
  border-radius: 0 0 0px 15px;
}

.contact-right-inner .form-wrap {
  max-width: 100%;
  direction: ltr;
  text-align: left;
}

/* form */

form .form-fields {
  display: flex;
  flex-wrap: wrap;
}

.form-fields .form-heading {
  padding: 0;
  margin: 0 1% 43px;
}

.form-heading h3 {
  font-family: 'Montserrat Title', sans-serif;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 19px;
}

.form-heading p {
  color: var(--light-color);
  font-size: 16px;
  line-height: 22px;
}

.form-fields .form-input {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
}

.form-fields .form-input.grid-6 {
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
}

.form-fields .form-input:nth-child(even) {
  margin-right: 12px;
}

.form-input label {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  text-transform: uppercase;
  padding: 9px 15px;
  line-height: normal;
  font-family: var(--font-montserrat);
  visibility: visible;
  z-index: 3;
  display: block;
  max-width: 100%;
  margin: 0;
}

.form-input label span {
  color: var(--light-color);
  font-family: var(--font-montserrat);
  position: absolute;
  left: 9px;
  top: 9px;
  opacity: .7;
  font-size: 10px;
}

.form-input input,
.form-input textarea,
.form-input select {
  padding: 22px 32px 10px 15px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--light-color);
  border-radius: 0;
  height: 60px;
  line-height: 26px;
  border: 1px solid transparent;
  box-shadow: none;
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 400;
  min-width: 100%;
  box-sizing: border-box;
  outline: none;
}

.form-input select {
  max-width: 100%;
}

.form-input input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input select option {
  color: var(--dark-color);
}

.form-input textarea {
  height: 260px;
  resize: vertical;
  transition: none;
}

.form-submit .form-submit-btn {
  display: inline-block;
  width: auto;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  color: var(--light-color);
  background-color: var(--primary-color);
  font-family: var(--font-montserrat-bold);
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1px;
  border-style: solid;
  border-color: var(--primary-color);
  border-width: 2px 2px 2px 2px;
  border-radius: 100px 100px 100px 100px;
  box-shadow: 0px 0px 15px 0px rgb(39 79 153 / 70%);
  padding: 15px 32px 14px 32px;
  margin-right: 15px;
}

.form-submit .form-submit-btn:hover,
.form-submit .form-submit:active,
.form-submit .form-submit:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0px 0px 20px 2px rgb(39 79 153);
}

.form-submit small {
  font-family: var(--font-montserrat);
}

.form-submit small a {
  font-family: 'Montserrat Title', sans-serif;
  color: var(--light-color);
}

.form-submit #form-status {
  color: var(--light-color);
  font-family: var(--font-montserrat);
  color: #fd2323;
  font-size: 15px;
  text-transform: uppercase;
}

/*============= END CONTACT PAGE  =============*/
/*============= START 404 PAGE  =============*/

.fourohfour-body {
  height: 100vh;
  background-color: var(--dark-color);
  background-image: url(../img/404.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.error-container {
  height: 100vh;
  position: relative;
}

.error-container .error-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-title h1 {
  font-size: 275px;
  letter-spacing: 38px;
  text-shadow: rgba(39,79,153,1) 0px 0px 58px;
  text-align: center;
}

.error-title span {
  display: block;
  font-family: 'Montserrat Title', sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.error-title p {
  text-align: center;
  font-family: 'Montserrat Title', sans-serif;
  color: var(--light-color);
  font-size: 44px;
}

.error-title .primary-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}

/*============= END 404 PAGE  =============*/
/*============= START FOOTER CTA =============*/

#cta {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 0;
}

.cta-wrap {
  position: relative;
  padding: 89px 120px 110px;
}

.cta-caption {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* caption text */

.cta-caption .cta-caption-text {
  max-width: 850px;
  width: 70%;
  padding-right: 15px;
}

.cta-caption-text h2 {
  color: var(--light-color);
  font-size: 42px;
  line-height: 58px; 
  margin-bottom: 16px;
}

.cta-caption-text p {
  color: var(--light-color);
}

.cta-caption-text .primary-btn {
  margin-top: 19px;
}

/* caption bg */

.cta-caption .cta-caption-bg {
  background-image: linear-gradient(318deg,rgb(32, 136, 140) 0%, rgb(67, 107, 142) 60%,  rgb(39, 79, 153) 100%);
  position: absolute;
  top: -40px;
  right: -53.5vw;
  width: calc(30% + 50vw);
  height: calc(100% + 40px);
  transform: skew(-14deg,0deg);
}

/*============= END FOOTER CTA =============*/
/*============= START FOOTER =============*/

footer {
  padding: 99px 152px 71px 132px;
}

.footer-title {
  color: var(--dark-color);
  font-size: 18px;
  font-family: 'Montserrat Title', sans-serif;
  line-height: 30px;
  margin-bottom: 15px;
}

.footer-title::after {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: var(--dark-color);
  opacity: .15;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-links ul li {
  margin-right: 36px;
  margin-bottom: 7px;
}

.footer-contact-text p a,
.footer-links ul li a {
  display: inline-block;
  line-height: 20px;
  font-size: 14px;
}

.footer-contact-text p a::after,
.footer-links ul li a::after {
  content: "";
  width: 0;
  max-width: 100%;
  height: 1px;
  background: var(--primary-color);
  display: block;
  transition: width 0.3s ease;
}

.footer-contact-text p a:hover::after,
.footer-contact-text p a:focus::after,
.footer-links ul li a.active::after,
.footer-links ul li a:hover::after,
.footer-lniks ul li a:focus::after {
  width: 100%;
}

.footer-contact-text p a:hover,
.footer-contact-text p a:focus,
.footer-links ul li a.active,
.footer-links ul li a:hover,
.footer-links ul li a:focus {
  color: var(--primary-color);
}

/* footer top */

footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 45px;
}

.footer-top .footer-left {
  flex: 0 0 27%;
  padding-right: 25px;
}

.footer-top .footer-middle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex: 0 0 54%;
}

.footer-top .footer-right {
  flex: 0 0 19%;
  padding-left: 25px;
}

/* fl, fm, fr */

.footer-left .footer-logo a {
  display: flex;
  align-items: center;
}

.footer-left .footer-logo a span {
  margin-left: 8px;
  font-size: 28px;
  font-family: 'Montserrat Title', sans-serif;
  color: var(--primary-color);
}

.footer-left .footer-logo a img {
  height: 30px;
  width: auto;
}

.footer-left p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
}

.footer-middle .footer-ots {
  margin-right: 50px;
}

.footer-right .footer-contact .primary-btn {
  margin-top: 20px;
  margin-bottom: 22px;
}

.footer-right .footer-contact .primary-btn a {
  padding: 11px 28px 10px 28px;
}

.footer-right .footer-contact .footer-contact-text p {
  margin-bottom: 3px;
  font-size: 14px;
}

/* footer copy */

footer .footer-copy {
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 60px;
}

.footer-copy::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #1d252c;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  opacity: 0.15;
}

.footer-copy p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(29, 37, 44, 0.7);
  margin: 0;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
}

.footer-copy img {
  margin-top: 12px;
  width: 22px;
  height: 22px;
}

/*============= END FOOTER =============*/