/* Tabs container */

.tabs {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 50px 10px;
  grid-column-gap: 30px;
}
@media (max-width: 850px) {
  .tabs {
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 300px;
    grid-gap: 30px;
  }
}
/* Tabs */

.tabs__tab {
  position: relative;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 5px 10px;
  border: 1px solid transparent;
  background: #525053;
  transition: all .3s;
}
.tabs__tab.active {
  font-weight: bold;
  border-color: #ffffff;
}

{# Tab 1 Custom Color and Hover Affects #}
.tabs__tab.active#tabs__tab-1--module_17480101015161864 {
  background: #4F8941;
}

#tabs__tab-1--module_17480101015161864 .tabs__content-label {
  border-color: #4F8941;
}
.tabs__tab#tabs__tab-1--module_17480101015161864:hover {
  background: #4F8941;
  border-color: #ffffff;
  transition: all .3s;
}

{# Tab 2 Custom Color and Hover Affects #}
.tabs__tab.active#tabs__tab-2--module_17480101015161864 {
  background: #CC7A28;
}
#tabs__tab-2--module_17480101015161864 .tabs__content-label {
  border-color: #CC7A28;
}
.tabs__tab#tabs__tab-2--module_17480101015161864:hover {
  background: #CC7A28;
  border-color: #ffffff;
  transition: all .3s;
}

{# Tab 3 Custom Color and Hover Affects #}
.tabs__tab.active#tabs__tab-3--module_17480101015161864 {
  background: #1C76B1;
}
#tabs__tab-3--module_17480101015161864 .tabs__content-label {
  border-color: #1C76B1;
}
.tabs__tab#tabs__tab-3--module_17480101015161864:hover {
  background: #1C76B1;
  border-color: #ffffff;
  transition: all .3s;
}

{# Tab 4 Custom Color and Hover Affects #}
.tabs__tab.active#tabs__tab-4--module_17480101015161864 {
  background: #9151C6;
}
#tabs__tab-4--module_17480101015161864 .tabs__content-label {
  border-color: #9151C6;
}
.tabs__tab#tabs__tab-4--module_17480101015161864:hover {
  background: #9151C6;
  border-color: #ffffff;
  transition: all .3s;
}

.tabs__tab,
.tabs__tab:hover,
.tabs__tab:focus,
.tabs__tab:active {
  flex: 1;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

/* Applies border to pseudo element to prevent jitter when hovering over tabs */

.tabs__tab span {
  position: relative;
  padding: 0 20px;
}

.tabs__tab:not(.active):hover:after,
.tabs__tab:not(.active):focus:after,
.tabs__tab:not(.active):after {
  border-bottom: 2px solid #FCAE57;
}

/* Tab content */

.tabs__content {
  margin: 30px auto;
  padding-bottom: 32px;
}
.tabs__content:not([hidden]) {
  display: flex;
  grid-gap: 70px;
  align-items: center;
}
.tabs__image {
  display: block;
  margin: auto;
  width: 550px;
  height: auto;
}
.tabs__text-content {
  max-width: 640px;
  margin: auto;
}
.tabs__button-icon {
  margin-right: 7px;
}
.tabs__content-label {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
  border-bottom: 2px solid #ffffff;
}
.tabs__text-content .button-container {
  margin: 25px 0;
  max-width: fit-content;
}