/* guides */
/*
font-family: "Open Sans", sans-serif;
font-family: "ClashDisplay-Variable";
font-family: "ClashDisplay-Extralight";
font-family: "ClashDisplay-Light";
font-family: "ClashDisplay-Regular";
font-family: "ClashDisplay-Medium";
font-family: "ClashDisplay-Semibold";
font-family: "ClashDisplay-Bold";
color: #0b2543 (dark blue)
color: rgb(11, 37, 67) (dark blue)
color: #f9f2e8 (white)
color: rgb(249, 242, 232) (white)
color: #f48457 (orange)
color: #6ccce5 (light blue)
color: #cce9f9 (very light blue)
color: #ed1941 (error)
color: #00a359 (green)
color: #ededed (neutral)
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
*/

/* important */

.width-80proc {
  width: 80% !important;
}

.width-13-3rem {
  width: 13.3rem !important;
}

.width-14-5rem {
  width: 14.5rem !important;
}

.width-18-3rem {
  width: 18.3rem !important;
}

.width-21rem {
  width: 21rem !important;
}

.width-23-5rem {
  width: 23.5rem !important;
}

.pl-0-75rem {
  padding-left: .75rem !important;
}

@media (max-width: 767px) {
  body {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mt-minus-24px-for-desktop {
    margin-top: -24px !important;
  }
}

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
}

.page-section {
  padding: 4rem 0;
}

.btn-orange {
  position: relative;
  display: inline-block;
  padding: 0;
  width: 17.5rem;
	height: auto;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "ClashDisplay-Medium";
  text-decoration: none;
  letter-spacing: 1px;
  background: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
}

.btn-orange .circle {
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #f48457;
  border-radius: 1.625rem;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

.btn-orange .circle .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

.btn-orange .circle .icon.arrow {
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

.btn-orange .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #f9f2e8;
  border-right: 0.125rem solid #f9f2e8;
  transform: rotate(45deg);
}

.btn-orange .button-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  text-align: center;
  margin: 0 0 0 2.25rem;
  color: #000;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
}

.btn-orange:hover .circle {
  width: 100%;
}

.btn-orange:hover .circle .icon.arrow {
  background: #f9f2e8;
  transform: translate(1.1rem, 0);
}

.btn-orange:hover .button-text {
   color: #f9f2e8;
}

.btn-blue .circle {
  background: #6ccce5;
}

.btn-blue .circle .icon.arrow::before {
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
}

.btn-blue:hover .circle .icon.arrow {
  background: #fff;
}

.btn-blue:hover .button-text {
   color: #fff;
}

/* navigation */

.navbar {
  box-shadow: none;
  background-color: #fff;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-brand {
  font-weight: 700;
  color: #000;
}

.navbar .navbar-brand img {
  width: 200px;
  height: auto;
  margin-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.75rem 0;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active {
  color: #f4623a;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #f4623a !important;
}

@media (min-width: 992px) {
  .navbar {
    box-shadow: none;
    background-color: #f9f2e8;
  }

  .navbar .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar .navbar-brand:hover {
    color: #fff;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    margin: 0 1.25rem;
    margin-top: 4px;
    padding: 0;
    /*padding-bottom: 2px;*/
    color: #000;
    /*border-bottom: 2px solid transparent;*/
  }

  .navbar .navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover:before {
    visibility: visible;
    transform: scaleX(1);
  }

  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #000;
    /*border-bottom: 2px solid #0b2543;*/
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
    margin-right: 0;
  }

  .navbar.navbar-shrink {
    box-shadow: none;
    background-color: #f9f2e8;
  }

  .navbar.navbar-shrink .navbar-brand {
    color: #000;
  }

  .navbar.navbar-shrink .navbar-brand:hover {
    color: #f4623a;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link {
    color: #000;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: #000;
  }
}

/* header */

header {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(to bottom, rgba(249, 242, 232, 1) 0%, rgba(249, 242, 232, 0.7) 50%, rgba(249, 242, 232, 1) 100%), url("../images/cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

header h1 {
  width: 90%;
  font-family: "ClashDisplay-Regular";
  font-size: 2.1rem;
  color: #000;
  letter-spacing: 1px;
}

header h6 {
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #f48457;
  letter-spacing: 1px;
}

header p {
  width: 75%;
  color: #000;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1px;
}

@media (min-width: 992px) {
  header {
    height: calc(75vh - 88px);
    margin-top: 88px;
    padding-bottom: 0;
  }
}

/* about index */

.front-about-index-section {
  padding-top: 5.25rem;
  background-color: #fff;
  background-image: url("../images/waves_white_filled_inverted.png");
  background-repeat: repeat-x;
  background-size: 250px;
  background-position: 50% 0;
}

.front-about-index-section h2 {
  font-family: "ClashDisplay-Regular";
  font-size: 2.1rem;
  color: #000;
  letter-spacing: 1px;
}

.front-about-index-section h3 {
  margin-bottom: .75rem;
  font-family: "ClashDisplay-Regular";
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 1px;
}

.front-about-index-section h6 {
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #6ccce5;
  letter-spacing: 1px;
}

.front-about-index-section p {
  color: #000;
  font-size: .95rem;
  font-weight: 400;
}

.about-index-div-first {
  display: flex;
  gap: 3rem;
  margin-top: 35px;
}

.about-index-div-first > div {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  background-color: #ededed;
  border-radius: 1rem;
}

.about-index-div-first p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.3rem;
}

.about-index-div-first .left-vertical-line {
  position: absolute;
  width: 4rem;
  height: 3rem;
  bottom: -3rem;
  left: 4.5rem;
  border-left: 2px solid #ededed;
  border-bottom: 2px solid #ededed;
  border-radius: 1rem;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about-index-div-first .left-wave-stroke {
  position: absolute;
  bottom: -171px;
  left: 5.5rem;
  width: 200px;
  height: 200px;
  background-image: url('../images/wave_stroke.svg');
  background-size: 200px;
  transform: rotate(180deg);
}

.about-index-div-first .right-vertical-line {
  position: absolute;
  width: 4rem;
  height: 3rem;
  bottom: -3rem;
  right: 4.5rem;
  border-right: 2px solid #ededed;
  border-bottom: 2px solid #ededed;
  border-radius: 1rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.about-index-div-first .right-wave-stroke {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -171px;
  right: 5.5rem;
  background-image: url('../images/wave_stroke.svg');
  background-size: 200px;
  transform: rotate(180deg);
}

.about-index-div-first .horizontal-line {
  position: absolute;
  width: 19rem;
  height: 2px;
  bottom: -3rem;
  left: -11rem;
  border-bottom: 2px solid #ededed;
}

.about-index-div-first .plus-icon-span {
  position: absolute;
  width: 3rem;
  height: 3rem;
  bottom: -4.5rem;
  left: -3rem;
  border-radius: 50%;
  background-color: #cce9f9;
}

.about-index-div-first .plus-icon-span i {
  color: #000;
  font-size: 1.25rem;
  line-height: 3rem;
}

.about-index-div-second {
  display: flex;
  gap: 3rem;
  margin-top: calc(6rem - 1px);
}

.about-index-div-second > div {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  flex: 1;
}

.about-index-div-second .circle-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  vertical-align: middle;
  font-size: .9rem;
  line-height: 1.3rem;
  background-color: #ededed;
  border-radius: 50%;
}

.about-index-div-second .vertical-line-top {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 2rem;
  background-color: #ededed;
}

.about-index-div-second .vertical-line-bottom {
  position: absolute;
  bottom: -2rem;
  left: calc(50% - 1px);
  width: 2px;
  height: 2rem;
  background-color: #ededed;
}

.about-index-div-third {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.about-index-div-third > div {
  position: relative;
  padding: 3.5rem 4rem 1.75rem;
  flex: 1;
  text-align: center;
  max-width: 82%;
  background-color: #ededed;
  border-radius: 1rem;
  /* padding-bottom: 3rem; */
}

.about-index-div-third p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.3rem;
}

.about-index-div-third .bump {
  position: absolute;
  height: 150px;
  width: 150px;
  top: -50px;
  left: calc(50% - 75px);
  background-image: url('../images/bump.svg');
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
}

.about-index-div-third .equals-icon-span {
  position: absolute;
  bottom: calc(50% - 1.5rem);
  width: 3rem;
  height: 3rem;
  left: -1.5rem;
  border-radius: 50%;
  background-color: #cce9f9;
  z-index: 1;
}

.about-index-div-third .equals-icon-span i {
  color: #000;
  font-size: 1.25rem;
  line-height: 3rem;
}
.about-index-div-third .circle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: -215px;
  width: 199.5px;
  height: 199.5px;
  margin-top: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  vertical-align: middle;
  font-size: .9rem;
  line-height: 1.3rem;
  border-radius: 50%;
  background-color: #ededed;
}

.about-index-div-third .circle h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

/* services */

.front-services-section {
  background-color: #fff;
  padding-top: 1.25rem;
  padding-bottom: 0;
  background-image: url("../images/waves_grey.png");
  background-image: url("../images/waves_white_filled.png");
  background-repeat: repeat-x;
  background-size: 250px;
  background-position: 50% 0;
}

.front-services-section > div {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9f2e8;
}

.front-services-section h2 {
  font-family: "ClashDisplay-Regular";
  font-size: 2.1rem;
  color: #000;
  letter-spacing: 1px;
}

.front-services-section h3 {
  margin-bottom: .75rem;
  font-family: "ClashDisplay-Regular";
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 1px;
}

.front-services-section h6 {
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #6ccce5;
  color: #f48457;
  letter-spacing: 1px;
}

.service-packets-div {
  display: flex;
  gap: 3rem;
}

.service-packets-div > div {
  position: relative;
  flex: 1;
  padding: 3.5rem 1.5rem 1.75rem;
  text-align: center;
  background-color: #ededed;
  background-color: #f9f2e8;
  background-color: #fff;
  border-radius: 1rem;
}

.service-packets-div .bump {
  position: absolute;
  height: 150px;
  width: 150px;
  top: -50px;
  left: calc(50% - 75px);
  background-image: url("../images/bump_white.svg");
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
}

.service-packets-div p {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: .9rem;
  line-height: 1.3rem;
  width: 60%;
}

.service-packets-div > div:nth-child(1) p {
  width: 60%;
}

.service-packets-div > div:nth-child(2) p {
  width: 70%;
}

.service-packets-div > div:nth-child(3) p {
  width: 80%;
}

.service-packets-ctas-div {
  display: flex;
  gap: 3rem;
}

.service-packets-ctas-div > div {
  flex: 1;
}

/* know how */

.front-know-how-section {
  padding-top: 5.25rem;
  background-color: #fff;
  background-image: url("../images/waves_white_filled_inverted.png");
  background-repeat: repeat-x;
  background-size: 250px;
  background-position: 50% 0;
}

.front-know-how-section h2 {
  font-family: "ClashDisplay-Regular";
  font-size: 2.1rem;
  color: #000;
  letter-spacing: 1px;
}

.front-know-how-section h3 {
  margin-bottom: .75rem;
  font-family: "ClashDisplay-Regular";
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 1px;
}

.front-know-how-section h6 {
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #6ccce5;
  letter-spacing: 1px;
}

.front-know-how-section p {
  color: #000;
  font-size: .95rem;
  font-weight: 400;
}

.know-how-articles-div {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 35px;
}

.know-how-articles-div p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.3rem;
}

.individual-know-how-article {
  position: relative;
  display: flex;
  flex: 1 1 100%;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 0;
  border-radius: 1rem;
}

.individual-know-how-article > div:first-child {
  position: relative;
  flex: 1;
  width: 150px;
  height: 150px;
  max-width: 150px;
  background-color: #ededed;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.individual-know-how-article > div:first-child span {
  position: absolute;
  width: 2rem;
  height: 2px;
  top: 50%;
  right: -2rem;
  background-color: #ededed;
}

.individual-know-how-article > div:nth-child(2) {
  position: relative;
  flex: 2;
  text-align: left;
  padding: 2rem;
  padding-left: 3rem;
  padding-right: 5rem;
  background-color: #ededed;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-know-how-article > div:nth-child(2):hover {
  background-color: #cce9f9;
}

.individual-know-how-article > div:nth-child(2) p {
  margin-bottom: 0;
}

.individual-know-how-article > div:nth-child(2) span {
  position: absolute;
  height: 150px;
  width: 150px;
  top: calc(50% - 75px);
  right: -50px;
  background-image: url('../images/bump.svg');
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(270deg);
}

/* footer */

footer {
  background-color: #fff;
  padding-top: 1.25rem;
  padding-bottom: 0;
  background-image: url("../images/waves_grey.png");
  background-image: url("../images/waves_white_filled.png");
  background-repeat: repeat-x;
  background-size: 250px;
  background-position: 50% 0;
}

footer > div {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f2e8;
}

footer h6 {
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #f48457;
  letter-spacing: 1px;
}

footer ul {
  list-style-type: none;
  padding-inline-start: 0;
  margin-bottom: 0;
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #000;
  letter-spacing: 1px;
}

footer ul a {
  position: relative;
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #000 !important;
  text-decoration: none !important;
  letter-spacing: 1px;
}

footer ul a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #000;
  visibility: hidden;
  transform: scaleX(0);
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer ul a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

footer p {
  position: relative;
  margin-bottom: 0;
  font-family: "ClashDisplay-Medium";
  font-size: 1rem;
  color: #000 !important;
  text-decoration: none !important;
  letter-spacing: 1px;
}






















/* */
