/* Grid Layout */
.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

@media screen and (max-width: 767px) {
  .new-sticky-menu-btn {
    position: relative;
    z-index: 9999; /* Ensure it's above other elements */
    display: flex;
    align-items: center;
    gap: 6px; /* space between icon and text */
    cursor: pointer;
  }

  .new-sticky-menu-btn .menu-text {
    pointer-events: none; /* allows clicks to pass through text to <a> */
  }

  .new-sticky-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9998; /* ensure menu container is above content */
  }
}
/* Modal */
.modal {
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Tabs */
.tabs-underlined {
  display: flex;
  align-items: center;
  list-style: none;
}

li {
  list-style: none !important;
}

.tabs-underlined .tab-underlined {
  color: white;
  padding: 8px;
  margin: 8px 16px;
  opacity: 0.4;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 4px solid transparent;
}

.tabs-underlined .tab-underlined.active {
  opacity: 1;
  color: white;
  border-bottom: 3px solid #83aa46;
}

/* Content Wrapper */
.content-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.content-wp {
  max-width: 93%;
  width: 93%;
}

.project-images img {
  padding: 20px;
}

.project-description {
  margin-top: 30px;
  font-weight: 600;
  padding: 20px;
}

/* Responsive Project Details */
@media screen and (max-width: 700px) {
  .detail {
    padding: 0px !important;
    padding-top: 20px !important;
    width: 100%;
  }
  .project-details {
    justify-content: space-evenly;
  }
}

.project-details {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 33.33333%;
}

.detail {
  text-transform: uppercase;
  padding: 20px 30px;
  font-size: 13px;
}

.detail-value {
  color: white;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}

.content-wp p {
  color: white;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.content-wp figcaption {
  color: #707070;
  font-size: 15px;
}

/* Modal Content */
.modal-content {
  background-color: black;
  margin: auto;
  position: relative;
  width: 80%;
}

.modal-cover {
  position: relative;
  display: inline-block;
  color: white;
}

.modal-cover::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.modal-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* Close Button */
.close {
  color: #aaaaaa;
  position: absolute;
  right: 0px;
  top: -40px;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

/* Base Styles */
body {
  background-color: #191a1a;
  font-family: Heebo, sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 38px;
  font-weight: 400;
}

h1 {
  margin-top: 0px;
  margin-bottom: 40px;
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  font-family: Junge, sans-serif;
  color: #fff;
  font-size: 130px;
  line-height: 150px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

h2 {
  margin-top: 0px;
  margin-bottom: 40px;
  font-family: Junge, sans-serif;
  color: #fff;
  font-size: 100px;
  line-height: 120px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

h3 {
  margin-top: 0px;
  margin-bottom: 40px;
  font-family: Junge, sans-serif;
  color: #fff;
  font-size: 70px;
  line-height: 90px;
  font-weight: 400;
}

h4 {
  margin-top: 0px;
  margin-bottom: 30px;
  font-family: Junge, sans-serif;
  color: #fff;
  font-size: 56px;
  line-height: 76px;
  font-weight: 400;
}

h5 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Junge, sans-serif;
  color: #fff;
  font-size: 46px;
  line-height: 66px;
  font-weight: 400;
}

h6 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 36px;
  line-height: 56px;
  font-weight: 400;
}

p {
  margin-bottom: 40px;
  font-family: Heebo, sans-serif;
  color: #bbb;
  font-size: 16px;
  line-height: 33px;
  font-weight: 300;
}

a {
  color: #fff;
  text-decoration: none;
}

ul {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 30px;
}

ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

blockquote {
  margin-bottom: 10px;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}

/* Banner */
.banner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.banner.about {
  background-image: url('../images/elena-saharova-hzNnJyC9FOA-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner.services {
  background-image: url('../images/5e16fef2cb9d511da2e01f48_joshua-oluwagbemiga-QZ9cVpMUpZ4-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner.contact-us {
  background-image: url('../images/mike-yukhtenko-wfh8dDlNFOk-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner.thank-you {
  background-image: url('../images/jeremy-bishop-uAfZBP-GtiA-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner.portfolio {
  background-image: url('../images/tobias-van-schneider-lHGeqh3XhRY-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}


/* Mouse Scroll */
.mouse-scroll {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 10;
  width: 20px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.mouse-scroll-weel {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  margin-top: 6px;
  margin-right: auto;
  margin-left: auto;
}

.mouse-scroll-link {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
}

/* Sticky Menu */
.sticky-menu {
  display: none;
}

.sticky-menu.new-sticky-menu {
  display: block;
}

.alpha {
  position: absolute;
  left: auto;
  top: 100px;
  right: 4vw;
  bottom: auto;
  z-index: 9999;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.alpha:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.alpha.w--current {
  position: absolute;
}

.menu-text {
  margin-left: 15px;
}

.info-left {
  position: absolute;
  left: 0px;
  top: auto;
  right: auto;
  bottom: 200px;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-family: Heebo, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.vertical-link {
  margin-left: 15px;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

.vertical-link:hover {
  color: #83aa46;
}

.middle-line {
  width: 48px;
  height: 1px;
  margin-left: 15px;
  background-color: #707070;
}

.info-right {
  position: fixed;
  left: auto;
  top: auto;
  right: 0px;
  bottom: 210px;
  z-index: 9999;
  display: none;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

/* Containers */
.container-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}

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

.link {
  margin-right: 50px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  box-shadow: inset 0 -2px 0 0 #707070;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.link.gray {
  margin-right: 0px;
  color: #bbb;
}

.link.last {
  margin-right: 0px;
  padding: 5px 20px;
  border-style: solid;
  border-width: 1px;
  background-color: #83aa46;
  color: white !important;
  border-color: hsla(0, 0%, 100%, 0.5);
  border-radius: 20px;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}

.link.last .text-block {
  color: white !important;
}

.link.last:hover {
  border-color: #83aa46;
}

.link-underline {
  width: 12px;
  height: 2px;
  margin-top: 5px;
  background-color: #83aa46;
}

.banner-content-half {
  width: 50%;
}

.main-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
}

.coordinates-text-span {
  color: #bbb;
}

.coordinates {
  margin-left: 15px;
}

.sticky-info {
  margin-right: auto;
  margin-left: auto;
}

.container-banner {
  position: relative;
  z-index: 10;
  margin-right: 13vw;
  margin-left: 13vw;
  font-family: Montserrat, sans-serif;
}

.container-banner.second {
  margin-right: 11vw;
  margin-left: 11vw;
}

.heading-span {
  display: block;
}

.content-half {
  position: relative;
}

.step {
  margin-right: 60px;
  margin-bottom: 200px;
}

.step.last {
  margin-bottom: 0px;
}

.background-video {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  height: 100%;
  opacity: 0.65;
  -webkit-filter: grayscale(70%);
  filter: grayscale(70%);
}

.style-guide-banner-holder {
  color: #fff;
  text-align: center;
}

.template-banner {
  padding-right: 20px;
  padding-left: 20px;
  background-color: #000;
}

.main-content {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.main-content.style-content {
  padding-top: 200px;
  padding-bottom: 200px;
}

.main-content.style-guide-main-content {
  margin-right: 13vw;
  margin-left: 13vw;
  padding-top: 140px;
  padding-bottom: 100px;
}

.paragraph-banner {
  margin-bottom: 50px;
}

.yellow-text-block {
  margin-bottom: 60px;
  font-family: Heebo, sans-serif;
  color: #83aa46;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content-holder {
  margin-bottom: 100px;
}

.style-guide-holder {
  padding-right: 20px;
  padding-left: 20px;
}

.yellow {
  font-family: Montserrat, sans-serif;
  color: #83aa46;
  font-weight: 600;
}

.headline-7 {
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 50px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.headline-7.no-margin-bottom {
  margin-bottom: 0px;
  text-align: left;
}

.section-steps {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #101010;
  background-image: url('../images/Section-Shapes-Top.png'), url('../images/Section-Shapes-Middle.png');
  background-position: 100% 0%, 0% 60%;
  background-size: auto, auto;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
}

.section-steps.our-skills {
  display: none;
}

.steps-icon {
  margin-bottom: 40px;
}

.sticky-heading {
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
  margin-bottom: 180px;
  font-family: Montserrat, sans-serif;
}

.section {
  padding-right: 20px;
  padding-left: 20px;
}

/* Corrected "Who we are" Section */
.section.cta {
  position: relative;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bonsanco-team.jpg');
  background-position: 0 0, 50% 50%; /* Center image */
  background-size: auto, cover; /* Full coverage on desktop */
  background-repeat: repeat, no-repeat;
}

.section.cta .container-big.aboutus {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: #191a1a; /* Solid background for text */
  width: 50%; /* Narrow on desktop */
  margin: 40px auto 40px 4vw; /* Left-aligned with spacing */
  box-sizing: border-box;
}

.section.cta .content-width {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .section.cta {
    background-position: 0 0, 50% 50%;
    background-size: auto, cover;
  }
  .section.cta .container-big.aboutus {
    width: 100%; /* Full width on mobile */
    margin: 20px 0; /* Vertical spacing */
    padding: 20px;
  }
  .section.cta .content-width {
    font-size: 16px !important;
  }
  .section.cta .content-width h5 {
    font-size: 36px !important;
    line-height: 46px !important;
  }
}

.section.awards {
  background-image: url('../images/5e16f13a3c053f5f6d836d62_samuel-scalzo-xyuYk9oLA8I-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section.visit-our-work {
  background-image: url('../images/visit-work-shapes.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.section.faq {
  background-color: #131313;
}

.section.form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/mille-sanders-Bc6qPj_f-r0-unsplash.jpg');
  background-position: 0% 50%;
  background-size: 850px;
  background-repeat: no-repeat;
}

.container-big {
  display: block;
  margin-right: 4vw;
  margin-left: 4vw;
  padding-bottom: 150px;
}

.container-big.small-cards {
  display: none;
}

.container-big.aboutus {
  display: block;
}

.container-big.hardcoded-data {
  display: block;
  padding-top: 100px !important;
  padding-bottom: 80px !important;
}

@media screen and (min-width: 1280px) {
  .data-item {
    flex: 1 1 calc(50% - 20px);
  }
  .container-big.hardcoded-data {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.yellow-separator {
  width: 76px;
  height: 2px;
  margin-bottom: 60px;
  background-color: #83aa46;
}

._3d-content {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  margin: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: flex;
  justify-content: center;
  align-items: center;
}

._3d-card-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/aurore.jpg');
  background-position: 50% 50%;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

._3d-card-wrapper.fautor-aurore {
  background-position: 50% 100%;
}

._3d-card-wrapper.test-new {
  background-image: url('../images/aurore.jpg');
  background-size: cover;
}

._3d-card-wrapper.fautor-310 {
  background-image: url('../images/fautor.jpg');
  background-size: cover;
}

._3d-card-wrapper.legenda {
  background-image: url('../images/legenda1.png');
  background-position: 50% 100%;
  background-size: cover;
}

._3d-card-wrapper.neamul {
  background-image: url('../images/neamul1.jpg');
}

._3d-card-wrapper.somewhere {
  background-image: url('../images/somewhere.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-1 {
  background-position: center;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-3 {
  background-image: url('../images/3102.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-4 {
  background-image: url('../images/adventure.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-5 {
  background-image: url('../images/aridami.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-6 {
  background-image: url('../images/bardar.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-7 {
  background-image: url('../images/bsweet-catalog.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-8 {
  background-image: url('../images/bsweet.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-9 {
  background-image: url('../images/bsweet2.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-10 {
  background-image: url('../images/bucolic.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-11 {
  background-image: url('../images/cabernet.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-12 {
  background-image: url('../images/carmen-low.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-13 {
  background-image: url('../images/catalog.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-14 {
  background-image: url('../images/cezar.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-15 {
  background-image: url('../images/fata.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-16 {
  background-image: url('../images/fautor.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-17 {
  background-image: url('../images/harvest.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-18 {
  background-image: url('../images/ict.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-19 {
  background-image: url('../images/investment.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-20 {
  background-image: url('../images/legenda1.png'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-21 {
  background-image: url('../images/map.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-22 {
  background-image: url('../images/merlot.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-wrapper.bonsanco-23 {
  background-image: url('../images/neamul1.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-24 {
  background-image: url('../images/paradise.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-25 {
  background-image: url('../images/pasta.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-26 {
  background-image: url('../images/peaches.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-27 {
  background-image: url('../images/scris.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-28 {
  background-image: url('../images/soltan.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-29 {
  background-image: url('../images/somewhere.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-30 {
  background-image: url('../images/tezaur.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-31 {
  background-image: url('../images/unicorn_1.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-32 {
  background-image: url('../images/yellow-wine.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.bonsanco-33 {
  background-image: url('../images/yoma.jpg'), url('../images/aurore.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, cover;
}

._3d-card-wrapper.unicorn {
  background-image: url('../images/unicorn3.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card {
  position: relative;
  width: 100%;
  height: 610px;
  /*margin-bottom: 5%;*/
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

._3d-card.smaller {
  display: block;
  width: 100%;
  height: 500px;
  margin-right: 3%;
  -o-object-fit: fill;
  object-fit: fill;
}

._3d-card.smaller.no-margin-left {
  margin-right: 0px;
  margin-left: 3%;
}

._3d-card.smaller.fautor {
  background-image: url('../images/fautor.jpg');
  background-position: 0px 0px;
  background-size: 125px;
}

._3d-card.smaller.bonsanco-1 {
  min-height: 0px;
}

._3d-content-wrapper-bottom {
  position: relative;
}

.d-133-image-wrapper {
  position: absolute;
  right: auto;
  width: 200%;
  height: 200%;
  background-image: url('../images/alexander-slattery-311438-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.d-133-image-wrapper._2 {
  background-image: url('../images/jon-flobrant-65429-unsplash.jpg');
  background-size: cover;
}

.d-133-image-wrapper._3 {
  background-image: url('../images/annie-spratt-jue3sIqVz2Y-unsplash.jpg');
  background-size: cover;
}

._3d-card-image-wrapper {
  width: 110%;
  height: 110%;
  background-image: url('../images/annie-spratt-jue3sIqVz2Y-unsplash.jpg');
}

._3d-card-image-wrapper.aurore {
  display: block;
  background-image: none;
}

._3d-card-image-wrapper._3 {
  background-image: url('../images/lucrezia-carnelos-IMUwe-p1yqs-unsplash.jpg');
}

._3d-card-image-wrapper._4 {
  background-image: none;
}

._3d-card-image-wrapper._5 {
  background-image: url('../images/ilnur-kalimullin-kP1AxmCyEXM-unsplash.jpg');
}

._3d-card-image-wrapper._6 {
  background-image: none;
}

._3d-card-image-wrapper._7 {
  background-image: none;
}

._3d-card-image-wrapper._8 {
  background-image: none;
}

._3d-card-image-wrapper._9 {
  background-image: none;
}

._3d-card-image-wrapper._10 {
  background-image: none;
}

._3d-card-image-wrapper._11 {
  background-image: none;
}

._3d-card-image-wrapper._12 {
  background-image: none;
}

._3d-card-image-wrapper._310 {
  background-image: url('../images/fautor.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

._3d-card-image-wrapper.fautor-aurore {
  background-image: none;
}

._3d-card-image-wrapper.fautor-310 {
  background-image: none;
}

._3d-card-image-wrapper.unicorn {
  background-image: none;
}

._3d-card-image-wrapper.bonsanco-3 {
  background-image: none;
}

._3d-content-wrapper-top {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
}

.container-small-grid {
  display: -ms-grid;
  display: grid;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 200px;
  padding-bottom: 200px;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.center-width {
  width: 64%;
  margin-right: auto;
  margin-left: auto;
  font-family: Montserrat, sans-serif;
}

.logos-grid {
  margin-top: 100px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 164px 164px 164px 164px;
  grid-template-rows: 164px 164px 164px 164px;
}

.friends-section {
  padding-right: 20px;
  padding-left: 20px;
  background-image: url('../images/jeremy-bishop-uAfZBP-GtiA-unsplash.jpg'), url('../images/andrew-seaman-Y8ruVPHUSnc-unsplash.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: cover, auto;
  background-repeat: repeat, no-repeat;
  opacity: 1;
}

.friends-section.black-image {
  display: block;
  background-image: url('../images/tobias-van-schneider-MWFWz4DWwKI-unsplash.jpg');
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.plus-margin-bottom {
  margin-bottom: 80px;
  font-family: Montserrat, sans-serif;
}

.content-width {
  width: 70%;
}

.content-left-right {
  display: -ms-grid;
  display: grid;
  margin-right: auto;
  margin-left: auto;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-logo {
  z-index: 9999;
  margin-bottom: 60px;
}

.headline-8 {
  max-width: 100%;
  margin-bottom: 120px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  line-height: 46px;
}

.yellow-footer-link {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #83aa46;
}

.yellow-footer-link:hover {
  color: #fff;
}

.footer {
  padding-right: 20px;
  padding-left: 20px;
  background-color: #131313;
}

.footer-title {
  margin-bottom: 30px;
  font-family: Heebo, sans-serif;
  color: #83aa46;
  font-size: 16px;
  line-height: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.top {
  padding-left: 20px;
}

.bottom {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding-left: 20px;
}

.footer-nav-link {
  margin-right: 20px;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #707070;
}

.footer-nav-link:hover {
  color: #fff;
}

.container-footer {
  margin-right: 13vw;
  margin-left: 13vw;
  padding-top: 150px;
  padding-bottom: 150px;
}

.menu-block {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 9999;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #191a1a;
  -webkit-transform-origin: 4vw 100px;
  -ms-transform-origin: 4vw 100px;
  transform-origin: 4vw 100px;
}

.menu-block.drawer-menu {
  display: block;
  width: 250px;
}

.menu-span {
  margin-top: 15px;
  margin-right: 15px;
  font-family: Heebo, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.heading-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  font-family: Montserrat, sans-serif;
  color: #707070;
}

.heading-menu:hover {
  color: #fff;
}

.heading-menu.heading-drawer {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  margin-top: 20px;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 50px;
  line-height: 75px;
  text-align: left;
}

.link-heading-menu {
  display: inline;
}

.link-heading-menu.drawer-link-item {
  display: inline;
  height: auto;
  line-height: 36px;
  -o-object-fit: fill;
  object-fit: fill;
}

.menu-links {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.menu-links.drawer-links {
  overflow: scroll;
  height: 100%;
}

.menu-contact {
  padding-left: 10%;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.menu-wrap {
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 800vh;
  margin-right: 20vw;
  margin-left: 20vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.menu-circles {
  margin-bottom: 90px;
}

.menu-contact-link {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #83aa46;
}

.menu-contact-link:hover {
  color: #707070;
}

.link-2 {
  margin-right: 50px;
  box-shadow: inset 0 -2px 0 0 #707070;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.headline-top-text {
  margin-bottom: 40px;
  font-family: Heebo, sans-serif;
  color: #83aa46;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.menu {
  position: fixed;
  left: 4vw;
  top: 100px;
  right: auto;
  bottom: auto;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 600ms ease;
  transition: color 600ms ease;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.menu:hover {
  color: #83aa46;
}

.menu.new-sticky-menu-btn {
  z-index: 10;
} 

.paragraph {
  font-family: Heebo, sans-serif;
  color: #bbb;
  font-size: 16px;
  line-height: 33px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.slide {
  margin-right: 60px;
}

.content-grid {
  display: -ms-grid;
  display: grid;
  justify-items: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.content-left {
  width: 60%;
  margin-right: auto;
}

.content-left.right {
  margin-right: 0px;
  margin-left: auto;
}

.left-arrow {
  left: 30%;
  top: auto;
  right: auto;
  bottom: 0%;
  height: 120px;
  background-image: url('../images/left-arrow2x_1left-arrow@2x.png');
  background-position: 50% 50%;
  background-size: 24px;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: background-position 300ms ease, -webkit-filter 300ms ease;
  transition: background-position 300ms ease, -webkit-filter 300ms ease;
  transition: filter 300ms ease, background-position 300ms ease;
  transition: filter 300ms ease, background-position 300ms ease, -webkit-filter 300ms ease;
  font-size: 14px;
}

.left-arrow:hover {
  background-position: 30% 50%;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.slide-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 120px;
  padding-top: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  font-size: 8px;
  line-height: 8px;
}

.right-arrow {
  left: auto;
  top: auto;
  right: 30%;
  bottom: 0%;
  height: 120px;
  background-image: url('../images/right-arrow2x_1right-arrow@2x.png');
  background-position: 50% 50%;
  background-size: 24px;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: background-position 300ms ease, -webkit-filter 300ms ease;
  transition: background-position 300ms ease, -webkit-filter 300ms ease;
  transition: filter 300ms ease, background-position 300ms ease;
  transition: filter 300ms ease, background-position 300ms ease, -webkit-filter 300ms ease;
  font-size: 14px;
}

.right-arrow:hover {
  background-position: 70% 50%;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.slider {
  height: auto;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
}

.awards-grid {
  margin-top: 100px;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 164px;
  grid-template-rows: 164px;
}

.accordion-item-wrapper {
  margin-bottom: 40px;
}

.accordion-item-wrapper.last {
  margin-bottom: 0px;
}

.accordion-tab-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #252525;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  cursor: pointer;
}

.accordion-tab-button:hover {
  background-color: #191a1a;
}

.accordion-arrow {
  width: 15px;
  opacity: 0.8;
}

.accordion-pane {
  overflow: hidden;
  background-color: #191a1a;
}

.accordion-pane-content {
  margin-right: 25px;
  margin-left: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
}

.container-faq {
  margin-right: 20vw;
  margin-left: 20vw;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}

.form-content {
  width: 50%;
  margin-right: 0px;
  margin-left: auto;
  padding: 10px 20px 10px 60px;
  background-color: #191a1a;
}

.form-container {
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 150px;
  padding-bottom: 150px;
}

.form-block {
  margin-top: 80px;
}

.text-field {
  width: 100%;
  margin-bottom: 30px;
  padding: 40px;
  border: 1px none #000;
  background-color: #252525;
  color: #fff;
  font-size: 16px;
  line-height: 33px;
  letter-spacing: 0.3px;
}

.submit-button {
  padding: 0px;
  border-bottom: 2px solid #83aa46;
  background-color: transparent;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #bbb;
  line-height: 40px;
}

.submit-button:hover {
  color: #83aa46;
}

.submit-button.protected-page {
  width: auto;
  margin-right: auto;
  margin-left: auto;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 500px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.div-block {
  background-image: url('../images/alli-elder-1dTIVth36WQ-unsplash.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-block-2 {
  padding-right: 20px;
  padding-left: 20px;
  background-image: url('../images/Layer-709.jpg');
  background-position: 50% 50%;
  background-size: cover;
}

.block-quote {
  border-left-width: 3px;
  border-left-color: #bbb;
}

.link-wrapper {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.color-wrapper {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.color {
  width: 100%;
  height: 50px;
  background-color: #83aa46;
}

.color._3 {
  background-color: #707070;
}

.color._2 {
  background-color: #bbb;
}

.color._4 {
  background-color: #252525;
}

.licencing-holder {
  margin-bottom: 100px;
}

.licencing-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 4%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #83aa46;
  border-radius: 14px;
  box-shadow: 0 15px 30px 5px rgba(26, 35, 126, 0.1);
  -webkit-transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
}

.licencing-wrapper:hover {
  box-shadow: none;
}

.licencing-left {
  width: 50%;
}

.licencing-right {
  width: 48%;
  color: #1a237e;
  text-align: center;
}

.secondary-link {
  display: inline-block;
  color: #a7a9c5;
  font-weight: 400;
}

.secondary-link:hover {
  color: #1a237e;
}

.secondary-link.licencing-link {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #83aa46;
}

.secondary-link.licencing-link:hover {
  color: #707070;
}

.license-video {
  height: 300px;
  opacity: 0.65;
  -webkit-filter: grayscale(70%);
  filter: grayscale(70%);
}

.list-item {
  margin-bottom: 20px;
}

.list-item.ordered {
  padding-left: 10px;
}

.list-block {
  width: 50%;
}

.list-text {
  margin-bottom: 20px;
  color: #bbb;
}

.list-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.no-margin-bottom {
  margin-bottom: 0px;
}

.image-2 {
  border: 1px solid transparent;
  background-color: transparent;
  opacity: 1;
  color: #fff;
}

.heading {
  display: block;
  margin-bottom: 13px;
  font-size: 20px;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -o-object-fit: fill;
  object-fit: fill;
}

.project-image {
  height: 400px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/example-bg.png');
  background-position: 0px 0px;
  background-size: cover;
}

.collection-item {
  width: 100%;
}

.body {
  font-family: Montserrat, sans-serif;
}

.paragraph-2 {
  font-family: Montserrat, sans-serif;
}

.paragraph-3 {
  font-family: Montserrat, sans-serif;
}

.paragraph-4 {
  font-family: Montserrat, sans-serif;
}

.paragraph-5 {
  font-family: Montserrat, sans-serif;
}

.paragraph-6 {
  font-family: Montserrat, sans-serif;
}

.paragraph-7 {
  font-family: Montserrat, sans-serif;
}

.paragraph-8 {
  font-family: Montserrat, sans-serif;
}

.paragraph-9 {
  font-family: Montserrat, sans-serif;
}

.paragraph-10 {
  font-family: Montserrat, sans-serif;
}

.heading-2 {
  font-family: Montserrat, sans-serif;
}

.paragraph-11 {
  font-family: Montserrat, sans-serif;
}

.paragraph-12 {
  font-family: Montserrat, sans-serif;
}

.heading-3 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.heading-4 {
  font-family: Montserrat, sans-serif;
}

.btn-wrap {
  display: inline-block;
  max-width: 500px;
}

.btn-liquid {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
  height: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 27px;
  font-family: Oswald, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}

.inner {
  position: relative;
  z-index: 2;
}

.text-block {
  border-radius: 0px;
  color: #83aa46;
}

.heading-5 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  text-align: right;
}

.image-3 {
  background-image: url('../images/fautor.jpg');
  background-position: 0px 0px;
  background-size: cover;
}

.link-3 {
  font-family: Montserrat, sans-serif;
  color: #83aa46;
  font-weight: 900;
}

.heading-6 {
  font-family: Montserrat, sans-serif;
}

.heading-7 {
  font-family: Montserrat, sans-serif;
}

.heading-7.portfolio-header-top {
  color: #83aa46;
  font-weight: 800;
}

.collection-list {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.collection-list.portfolio-collection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.icon {
  color: #fffcfc;
}

.text-block-2 {
  color: #fff;
}

.dropdown-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
}

.dropdown-link {
  color: #000;
}

.dropdown-toggle {
  display: inline-block;
}

/* .dropdown {
  display: none;
} */

.collection-list-wrapper-2 {
  display: none;
}

.div-block-4 {
  display: block;
  width: 250px;
}

.navbar {
  display: none;
}

.div-block-5 {
  width: 250px;
  height: 100%;
}

.menu-drawer {
  position: fixed;
  z-index: 11;
  overflow: hidden;
  width: 0px;
  height: 100%;
  min-height: 100vh;
  background-color: #252525;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#191a1a), to(#191a1a));
  background-image: linear-gradient(180deg, #191a1a, #191a1a);
}

.link-4 {
  margin-bottom: 0px;
  float: right;
  border: 1px none #000;
  text-decoration: none;
  cursor: pointer;
}

.link-block {
  margin-top: 10px;
  float: right;
}

.link-block.closebtn {
  opacity: 0.33;
  -webkit-transition: opacity 375ms ease;
  transition: opacity 375ms ease;
}

.link-block.closebtn:hover {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.image-4 {
  margin-right: 10px;
  opacity: 1;
}

.div-block-6 {
  margin-top: 40px;
}

/* Media Queries */
@media screen and (min-width: 1280px) {
  .menu-text {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
  }
  ._3d-card.smaller {
    height: 300px;
  }
  .menu-links.drawer-links {
    overflow: hidden;
  }
  .menu-drawer {
    width: 0px;
  }
}

@media screen and (min-width: 1441px) {
  ._3d-card-wrapper.bonsanco-20 {
    background-image: url('../images/legenda1.png'), url('../images/aurore.jpg');
    background-position: 0px 0px, 50% 50%;
    background-size: cover, cover;
  }
  ._3d-card.smaller {
    height: 360px;
  }
  .menu-links.drawer-links {
    overflow: hidden;
  }
  .menu-drawer {
    overflow: hidden;
    width: 0px;
  }
}

@media screen and (max-width: 1440px) {
  ._3d-card-wrapper.bonsanco-20 {
    background-image: url('../images/legenda1.png'), url('../images/aurore.jpg');
    background-position: 0px 0px, 50% 50%;
    background-size: cover, cover;
  }
  ._3d-card.smaller {
    height: 300px;
  }
  .menu-links.drawer-links {
    overflow: hidden;
  }
  .menu-drawer {
    overflow: hidden;
    width: 0px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 80px;
    line-height: 100px;
  }
  h2 {
    font-size: 60px;
    line-height: 80px;
  }
  h3 {
    font-size: 50px;
    line-height: 70px;
  }
  h4 {
    font-size: 46px;
    line-height: 66px;
  }
  h5 {
    font-size: 36px;
    line-height: 56px;
  }
  h6 {
    font-size: 30px;
    line-height: 50px;
  }
  .banner {
    height: auto;
  }
  .mouse-scroll {
    display: none;
  }
  .alpha {
    position: absolute;
    top: 40px;
  }
  .alpha.w--current {
    position: absolute;
    top: 40px;
  }
  .info-left {
    display: none;
  }
  .info-right {
    display: none;
  }
  .container-small {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .link.gray {
    margin-right: 0px;
  }
  .link-underline {
    width: 100%;
  }
  .banner-content-half {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .main-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .container-banner {
    margin-right: 4vw;
    margin-left: 4vw;
    padding-top: 150px;
    padding-bottom: 50px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .content-half.c-footer {
    min-height: 260px;
    margin-top: 60px;
  }
  .step {
    margin-right: 0px;
  }
  .main-content.style-content {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  .main-content.style-guide-main-content {
    margin-right: auto;
    margin-left: auto;
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .content-holder {
    margin-bottom: 60px;
  }
  .headline-7 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 40px;
  }
  .section-steps {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
  }
  .section.cta {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #000), to(transparent));
    background-image: linear-gradient(90deg, #000 25%, transparent);
    background-position: 0px 0px;
  }
  .section.form {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
  }
  .container-big {
    margin-right: 4vw;
    margin-left: 4vw;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
  }
  .yellow-separator {
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
  }
  ._3d-card-wrapper.bonsanco-20 {
    background-image: url('../images/legenda1.png'), url('../images/legenda.jpg'), url('../images/aurore.jpg');
    background-position: 0px 0px, 0px 0px, 50% 50%;
    background-size: cover, cover, cover;
  }
  ._3d-content-wrapper-top {
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
  }
  .container-small-grid {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .center-width {
    width: 90%;
  }
  .logos-grid {
    width: 90%;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 164px 164px 164px 164px 164px 164px 164px 164px;
    grid-template-rows: 164px 164px 164px 164px 164px 164px 164px 164px;
  }
  .plus-margin-bottom {
    margin-bottom: 40px;
  }
  .content-width {
    width: 100%;
  }
  .content-left-right {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 40px;
  }
  .footer-logo.w--current {
    margin-bottom: 30px;
  }

  .headline-8 {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .footer-title {
    margin-bottom: 10px;
  }
  .top {
    padding-left: 0px;
  }
  .bottom {
    padding-left: 0px;
  }
  .container-footer {
    margin-right: 4vw;
    margin-left: 4vw;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: left;
  }
  .menu-block {
    -webkit-transform-origin: 4vw 50px;
    -ms-transform-origin: 4vw 50px;
    transform-origin: 4vw 50px;
  }
  .menu-contact {
    display: none;
  }
  .menu-wrap {
    margin-right: 10vw;
    margin-left: 10vw;
  }
  .headline-top-text {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 35px;
  }
  .menu {
    position: fixed;
    top: 50px;
  }
  .content-grid {
    grid-auto-columns: auto;
    grid-row-gap: 40px;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .content-left {
    width: 100%;
    margin-top: 0px;
    text-align: center;
  }
  .slider {
    margin-right: auto;
    margin-left: auto;
  }
  .awards-grid {
    width: 90%;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 164px 164px 164px;
    grid-template-rows: 164px 164px 164px;
  }
  .accordion-tab-button {
    padding-right: 25px;
    padding-left: 25px;
  }
  .container-faq {
    margin-right: 4vw;
    margin-left: 4vw;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
  }
  .form-content {
    width: 100%;
    margin-top: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 60px;
    padding-bottom: 0px;
    text-align: center;
  }
  .form-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .form-block {
    margin-top: 60px;
  }
  .text-field {
    padding: 30px;
  }
  .utility-page-form {
    width: 100%;
  }
  .licencing-holder {
    margin-bottom: 60px;
  }
  .section-2 {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(25%, #000),
        to(transparent)
      ),
      url('../images/Untitled-1.png');
    background-image: linear-gradient(90deg, #000 25%, transparent),
      url('../images/Untitled-1.png');
    background-position: 0px 0px, 100.5% 50%;
    background-size: auto, contain;
    background-repeat: repeat, no-repeat;
    background-attachment: scroll, scroll;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 65px;
    line-height: 85px;
  }
  h2 {
    font-size: 56px;
    line-height: 76px;
  }
  .container-small {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .container-banner {
    margin-right: auto;
    margin-left: auto;
  }
  .content-half.c-footer {
    margin-top: 40px;
  }
  .step {
    margin-bottom: 60px;
  }
  .main-content.style-content {
    padding-bottom: 40px;
  }
  .main-content.style-guide-main-content {
    padding-top: 40px;
  }
  .yellow-text-block {
    margin-bottom: 40px;
  }
  .sticky-heading {
    position: static;
    margin-bottom: 40px;
  }
  .container-big {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  ._3d-card {
    height: 300px;
  }
  ._3d-card.smaller {
    width: 100%;
    height: 300px;
    margin-right: 0%;
  }
  ._3d-card.smaller.no-margin-left {
    margin-left: 0%;
  }
  .container-small-grid {
    padding-top: 80px;
    padding-bottom: 80px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .logos-grid {
    -ms-grid-rows: 130px 130px 130px 130px 130px 130px 130px 130px;
    grid-template-rows: 130px 130px 130px 130px 130px 130px 130px 130px;
  }
  .footer-nav-link.last {
    margin-right: 0px;
  }
  .heading-menu {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 60px;
  }
  .menu-wrap {
    overflow: auto;
  }
  .logo {
    display: inline-block;
    height: 110px;
  }
  .headline-top-text {
    font-size: 20px;
    line-height: 30px;
  }
  .menu {
    top: 45px;
  }
  .left-arrow {
    left: 26%;
  }
  .right-arrow {
    right: 26%;
  }
  .container-faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .form-content {
    padding-right: 0px;
    padding-left: 0px;
  }
  .div-block {
    padding-right: 20px;
    padding-left: 20px;
  }
  .link-wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .color-wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .licencing-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .licencing-left {
    width: 100%;
    margin-bottom: 40px;
  }
  .licencing-right {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 50px;
    line-height: 70px;
  }
  h2 {
    font-size: 46px;
    line-height: 66px;
  }
  h3 {
    font-size: 42px;
    line-height: 61px;
  }
  h4 {
    font-size: 36px;
    line-height: 56px;
  }
  h5 {
    font-size: 28px;
    line-height: 48px;
  }
  h6 {
    font-size: 24px;
    line-height: 44px;
  }
  .banner {
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -o-object-fit: fill;
    object-fit: fill;
  }
  .info-left {
    display: none;
  }
  .banner-content-half {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .main-links {
    display: none;
  }
  .sticky-info {
    display: block;
  }
  .container-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .container-banner.second {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .content-half.c-footer {
    min-height: 490px;
  }
  .yellow {
    margin-right: 0px;
  }
  ._3d-content {
    margin: 30px 10px;
  }
  ._3d-card-wrapper.bonsanco-5 {
    background-position: 50% 50%;
    background-repeat: repeat;
  }
  ._3d-card-wrapper.bonsanco-7 {
    background-position: 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-8 {
    background-position: 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-9 {
    background-position: 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-10 {
    background-position: 100% 50%;
  }
  ._3d-card-wrapper.bonsanco-13 {
    background-position: 50% 50%, 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-14 {
    background-position: 50% 50%, 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-15 {
    background-position: 50% 50%, 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-16 {
    background-position: 50% 50%, 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-18 {
    background-position: 50% 50%, 50% 50%;
  }
  ._3d-card-wrapper.bonsanco-19 {
    background-position: 50% 100%, 50% 50%;
  }
  ._3d-card.smaller {
    height: 200px;
    min-height: 0px;
  }
  ._3d-card.smaller.bonsanco-1 {
    min-height: 0px;
  }
  .center-width {
    width: 100%;
  }
  .logos-grid {
    grid-column-gap: 30px;
  }
  .headline-8 {
    font-size: 20px;
    line-height: 40px;
  }
  .bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-nav-link {
    margin-right: 0px;
  }
  .bottom-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-block {
    z-index: 9999;
  }
  .menu-wrap {
    z-index: 9999;
  }
  .logo {
    height: 60px;
  }
  .left-arrow {
    left: 13%;
  }
  .right-arrow {
    right: 13%;
  }
  .awards-grid {
    grid-column-gap: 30px;
  }
  .link-wrapper {
    justify-items: stretch;
    grid-auto-columns: auto;
  }
  .color-wrapper {
    justify-items: stretch;
    grid-auto-columns: auto;
  }
  .list-block {
    width: 100%;
  }
  .list-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .heading-7 {
    font-size: 20px;
    font-weight: 700;
  }
  .heading-7.portfolio-header-top {
    font-size: 20px;
  }
  .div-block-4 {
    display: none;
  }
  .navbar {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  #w-node-4c2bae2ac980-149a4d29 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-2015dcdcb8e0-149a4d29 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-2015dcdcb8e0-459a4d2c {
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

/* dropdown */
#selected-value {
  opacity: 1 !important;
}
#selected-value span {
  color: white;
  opacity: 1;
  border-bottom: 3px solid #83aa46;
}

#selected-value:hover,
.item-span {
  cursor: pointer;
}

.item-span {
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  color: white;
  opacity: 0.6;
}
.item-span:hover {
  /* color: white; */
  opacity: 1;
}
@media only screen and (min-device-width: 768px) {
  .dropdown-content {
    display: inherit !important;
    column-count: 4;
    /* grid-template-columns: 1fr 1fr 1fr !important; */
    /* grid-template-rows: 1fr 1fr 1fr; */
  }

  .dropdown-item {
    /* width: 50%; */
  }
  .dropdown {
    padding-left: 50px;
    padding-top: 25px;
  }
}
.dropdown-content {
  display: grid;
  grid-template-columns: 1fr;
}

/* pagination */

.current-page {
  font-size: 1.5rem;
  vertical-align: middle;
}

.country-card-container {
  height: 60px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.country-name {
  font-size: 0.9rem;
}

.country-region {
  font-size: 0.7rem;
}

.current-page,
.country-name,
.country-region {
  line-height: 1;
}

/* Override some Bootstrap pagination styles */
ul.pagination {
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
ul.pagination li.page-item.active a.page-link {
  color: white !important;
  opacity: 1;
  border-bottom: 3px solid #83aa46;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
}
ul.pagination a.page-link {
  padding: 0.75rem 1rem;
  min-width: 3.5rem;
  text-align: center;
  box-shadow: none !important;
  color: white;
  opacity: 0.6;
  font-weight: 500;
  font-size: 1rem;
}
ul.pagination a.page-link:hover {
  opacity: 1;
}

/* loader */

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
